From 925b803ae8f5471e5b08206a7926d95e84a8467c Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sun, 14 May 2017 09:16:55 +0200 Subject: [PATCH 001/125] set version to 3.5.2rc --- VERSION | 2 +- boot.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index ded27b074d..445f311196 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.5.2-dev +3.5.2-rc diff --git a/boot.php b/boot.php index e3fb320ac5..4c09785c8e 100644 --- a/boot.php +++ b/boot.php @@ -38,7 +38,7 @@ require_once 'include/dbstructure.php'; define ( 'FRIENDICA_PLATFORM', 'Friendica'); define ( 'FRIENDICA_CODENAME', 'Asparagus'); -define ( 'FRIENDICA_VERSION', '3.5.2-dev' ); +define ( 'FRIENDICA_VERSION', '3.5.2-rc' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); define ( 'DB_UPDATE_VERSION', 1224 ); From 8af7df42597627a4b27cc0ac666fef24f6129c34 Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Mon, 15 May 2017 10:36:56 +0100 Subject: [PATCH 002/125] Update nginx --- mods/sample-nginx.config | 42 ++++++++++++++++++++++++++++------------ 1 file changed, 30 insertions(+), 12 deletions(-) diff --git a/mods/sample-nginx.config b/mods/sample-nginx.config index 228c23e8bc..cac48109ca 100644 --- a/mods/sample-nginx.config +++ b/mods/sample-nginx.config @@ -1,5 +1,5 @@ ## -# Friendica Nginx configuration +# Red Nginx configuration # by Olaf Conradi # # On Debian based distributions you can add this file to @@ -22,24 +22,24 @@ ## # This configuration assumes your domain is example.net -# You have a separate subdomain friendica.example.net -# You want all Friendica traffic to be HTTPS +# You have a separate subdomain red.example.net +# You want all red traffic to be https # You have an SSL certificate and key for your subdomain # You have PHP FastCGI Process Manager (php5-fpm) running on localhost -# You have Friendica installed in /mnt/friendica/www +# You have Red installed in /var/www/red ## server { listen 80; - server_name friendica.example.net; + server_name red.example.net; index index.php; - root /mnt/friendica/www; - rewrite ^ https://friendica.example.net$request_uri? permanent; + root /var/www/red; + rewrite ^ https://red.example.net$request_uri? permanent; } ## -# Configure Friendica with SSL +# Configure Red with SSL # # All requests are routed to the front controller # except for certain known file types like images, css, etc. @@ -52,24 +52,40 @@ server { server_name friendica.example.net; ssl on; + + #Traditional SSL ssl_certificate /etc/nginx/ssl/friendica.example.net.chain.pem; ssl_certificate_key /etc/nginx/ssl/example.net.key; + + # If you have used letsencrypt as your SSL provider, remove the previous two lines, and uncomment the following two (adjusting the path) instead. + # ssl_certificate /etc/letsencrypt/live/example.com/fullchain.pem; + # ssl_certificate_key /etc/letsencrypt/live/example.com/privkey.pem; + ssl_session_timeout 5m; - ssl_protocols SSLv3 TLSv1; - ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv3:+EXP; + ssl_protocols TLSv1 TLSv1.1 TLSv1.2; + ssl_ciphers ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA:ECDHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA256:DHE-RSA-AES256-SHA:ECDHE-ECDSA-DES-CBC3-SHA:ECDHE-RSA-DES-CBC3-SHA:EDH-RSA-DES-CBC3-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:DES-CBC3-SHA:!DSS; ssl_prefer_server_ciphers on; + fastcgi_param HTTPS on; + index index.php; charset utf-8; - root /mnt/friendica/www; + root /var/www/friendica; access_log /var/log/nginx/friendica.log; + #Uncomment the following line to include a standard configuration file + #Note that the most specific rule wins and your standard configuration + #will therefore *add* to this file, but not override it. + #include standard.conf # allow uploads up to 20MB in size client_max_body_size 20m; client_body_buffer_size 128k; # rewrite to front controller as default rule location / { - rewrite ^/(.*) /index.php?q=$uri&$args last; + if ($is_args != "") { + rewrite ^/(.*) /index.php?q=$uri&$args last; + } + rewrite ^/(.*) /index.php?q=$uri last; } # make sure webfinger and other well known services aren't blocked @@ -122,5 +138,7 @@ server { location ~ /\. { deny all; } + } + From 1a1469339d36bcba0194864d2df0f89ff5f2692f Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Mon, 15 May 2017 10:39:39 +0100 Subject: [PATCH 003/125] red > Friendica --- mods/sample-nginx.config | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/mods/sample-nginx.config b/mods/sample-nginx.config index cac48109ca..3c344c5e7f 100644 --- a/mods/sample-nginx.config +++ b/mods/sample-nginx.config @@ -1,5 +1,5 @@ ## -# Red Nginx configuration +# Friendica Nginx configuration # by Olaf Conradi # # On Debian based distributions you can add this file to @@ -22,24 +22,24 @@ ## # This configuration assumes your domain is example.net -# You have a separate subdomain red.example.net -# You want all red traffic to be https +# You have a separate subdomain friendica.example.net +# You want all Friendica traffic to be https # You have an SSL certificate and key for your subdomain # You have PHP FastCGI Process Manager (php5-fpm) running on localhost -# You have Red installed in /var/www/red +# You have Friendica installed in /var/www/friendica ## server { listen 80; - server_name red.example.net; + server_name friendica.example.net; index index.php; - root /var/www/red; - rewrite ^ https://red.example.net$request_uri? permanent; + root /var/www/friendica; + rewrite ^ https://friendica.example.net$request_uri? permanent; } ## -# Configure Red with SSL +# Configure Friendica with SSL # # All requests are routed to the front controller # except for certain known file types like images, css, etc. From 83e4141639d026dfa93c4c2c0f9fe00a7cf56446 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 15 May 2017 15:17:38 +0000 Subject: [PATCH 004/125] Bugfix: dba::num_rows hadn't checked the object variable --- include/dba.php | 13 ++++++ include/dbclean.php | 97 +++++++++++++++++++++++++++++++++------------ 2 files changed, 85 insertions(+), 25 deletions(-) diff --git a/include/dba.php b/include/dba.php index 3af8522516..76ac538aa8 100644 --- a/include/dba.php +++ b/include/dba.php @@ -521,6 +521,16 @@ class dba { logger('Parameter mismatch. Query "'.$sql.'" - Parameters '.print_r($args, true), LOGGER_DEBUG); } + // beautify the SQL query - useful for "SHOW PROCESSLIST" + // This is safe because we bind the parameters later. + // The parameter values aren't part of the SQL. + $search = array("\n", "\r", " "); + $replace = array(' ', ' ', ' '); + do { + $oldsql = $sql; + $sql = str_replace($search, $replace, $sql); + } while ($oldsql != $sql); + $sql = self::$dbo->any_value_fallback($sql); if (x($a->config,'system') && x($a->config['system'], 'db_callstack')) { @@ -708,6 +718,9 @@ class dba { * @return int Number of rows */ static public function num_rows($stmt) { + if (!is_object($stmt)) { + return 0; + } switch (self::$dbo->driver) { case 'pdo': return $stmt->rowCount(); diff --git a/include/dbclean.php b/include/dbclean.php index 36f4f46e53..ff4993c4a0 100644 --- a/include/dbclean.php +++ b/include/dbclean.php @@ -19,7 +19,7 @@ function dbclean_run(&$argv, &$argc) { if ($stage == 0) { for ($i = 1; $i <= 7; $i++) { - if (!Config::get('system', 'finished-dbclean-'.$i)) { + if (!Config::get('system', 'finished-dbclean-'.$i, false)) { proc_run(PRIORITY_LOW, 'include/dbclean.php', $i); } } @@ -40,131 +40,178 @@ function remove_orphans($stage = 0) { $limit = 1000; if ($stage == 1) { - logger("Deleting old global item entries from item table without user copy"); - $r = dba::p("SELECT `id` FROM `item` WHERE `uid` = 0 - AND NOT EXISTS (SELECT `guid` FROM `item` AS `i` WHERE `item`.`guid` = `i`.`guid` AND `i`.`uid` != 0) - AND `received` < UTC_TIMESTAMP() - INTERVAL 90 DAY LIMIT ".intval($limit)); + $last_id = Config::get('system', 'dbclean-last-id-1', 0); + + logger("Deleting old global item entries from item table without user copy. Last ID: ".$last_id); + $r = dba::p("SELECT `id` FROM `item` WHERE `uid` = 0 AND + NOT EXISTS (SELECT `guid` FROM `item` AS `i` WHERE `item`.`guid` = `i`.`guid` AND `i`.`uid` != 0) AND + `received` < UTC_TIMESTAMP() - INTERVAL 90 DAY AND `id` >= ? + ORDER BY `id` LIMIT ".intval($limit), $last_id); $count = dba::num_rows($r); if ($count > 0) { logger("found global item orphans: ".$count); while ($orphan = dba::fetch($r)) { + $last_id = $orphan["id"]; dba::delete('item', array('id' => $orphan["id"])); } } else { logger("No global item orphans found"); - } dba::close($r); - logger("Done deleting ".$count." old global item entries from item table without user copy"); + logger("Done deleting ".$count." old global item entries from item table without user copy. Last ID: ".$last_id); + + Config::set('system', 'dbclean-last-id-1', $last_id); // We will eventually set this value when we found a good way to delete these items in another way. // if ($count < $limit) { // Config::set('system', 'finished-dbclean-1', true); // } } elseif ($stage == 2) { - logger("Deleting items without parents"); - $r = dba::p("SELECT `id` FROM `item` WHERE NOT EXISTS (SELECT `id` FROM `item` AS `i` WHERE `item`.`parent` = `i`.`id`) LIMIT ".intval($limit)); + $last_id = Config::get('system', 'dbclean-last-id-2', 0); + + logger("Deleting items without parents. Last ID: ".$last_id); + $r = dba::p("SELECT `id` FROM `item` + WHERE NOT EXISTS (SELECT `id` FROM `item` AS `i` WHERE `item`.`parent` = `i`.`id`) + AND `id` >= ? ORDER BY `id` LIMIT ".intval($limit), $last_id); $count = dba::num_rows($r); if ($count > 0) { logger("found item orphans without parents: ".$count); while ($orphan = dba::fetch($r)) { + $last_id = $orphan["id"]; dba::delete('item', array('id' => $orphan["id"])); } } else { logger("No item orphans without parents found"); } dba::close($r); - logger("Done deleting ".$count." items without parents"); + logger("Done deleting ".$count." items without parents. Last ID: ".$last_id); + + Config::set('system', 'dbclean-last-id-2', $last_id); if ($count < $limit) { Config::set('system', 'finished-dbclean-2', true); } } elseif ($stage == 3) { - logger("Deleting orphaned data from thread table"); - $r = dba::p("SELECT `iid` FROM `thread` WHERE NOT EXISTS (SELECT `id` FROM `item` WHERE `item`.`parent` = `thread`.`iid`) LIMIT ".intval($limit)); + $last_id = Config::get('system', 'dbclean-last-id-3', 0); + + logger("Deleting orphaned data from thread table. Last ID: ".$last_id); + $r = dba::p("SELECT `iid` FROM `thread` + WHERE NOT EXISTS (SELECT `id` FROM `item` WHERE `item`.`parent` = `thread`.`iid`) AND `iid` >= ? + ORDER BY `iid` LIMIT ".intval($limit), $last_id); $count = dba::num_rows($r); if ($count > 0) { logger("found thread orphans: ".$count); while ($orphan = dba::fetch($r)) { + $last_id = $orphan["iid"]; dba::delete('thread', array('iid' => $orphan["iid"])); } } else { logger("No thread orphans found"); } dba::close($r); - logger("Done deleting ".$count." orphaned data from thread table"); + logger("Done deleting ".$count." orphaned data from thread table. Last ID: ".$last_id); + + Config::set('system', 'dbclean-last-id-3', $last_id); if ($count < $limit) { Config::set('system', 'finished-dbclean-3', true); } } elseif ($stage == 4) { - logger("Deleting orphaned data from notify table"); - $r = dba::p("SELECT `iid` FROM `notify` WHERE NOT EXISTS (SELECT `id` FROM `item` WHERE `item`.`id` = `notify`.`iid`) LIMIT ".intval($limit)); + $last_id = Config::get('system', 'dbclean-last-id-4', 0); + + logger("Deleting orphaned data from notify table. Last ID: ".$last_id); + $r = dba::p("SELECT `iid`, `id` FROM `notify` + WHERE NOT EXISTS (SELECT `id` FROM `item` WHERE `item`.`id` = `notify`.`iid`) AND `id` >= ? + ORDER BY `id` LIMIT ".intval($limit), $last_id); $count = dba::num_rows($r); if ($count > 0) { logger("found notify orphans: ".$count); while ($orphan = dba::fetch($r)) { + $last_id = $orphan["id"]; dba::delete('notify', array('iid' => $orphan["iid"])); } } else { logger("No notify orphans found"); } dba::close($r); - logger("Done deleting ".$count." orphaned data from notify table"); + logger("Done deleting ".$count." orphaned data from notify table. Last ID: ".$last_id); + + Config::set('system', 'dbclean-last-id-4', $last_id); if ($count < $limit) { Config::set('system', 'finished-dbclean-4', true); } } elseif ($stage == 5) { - logger("Deleting orphaned data from notify-threads table"); - $r = dba::p("SELECT `id` FROM `notify-threads` WHERE NOT EXISTS (SELECT `id` FROM `item` WHERE `item`.`parent` = `notify-threads`.`master-parent-item`) LIMIT ".intval($limit)); + $last_id = Config::get('system', 'dbclean-last-id-5', 0); + + logger("Deleting orphaned data from notify-threads table. Last ID: ".$last_id); + $r = dba::p("SELECT `id` FROM `notify-threads` + WHERE NOT EXISTS (SELECT `id` FROM `item` WHERE `item`.`parent` = `notify-threads`.`master-parent-item`) AND `id` >= ? + ORDER BY `id` LIMIT ".intval($limit), $last_id); $count = dba::num_rows($r); if ($count > 0) { logger("found notify-threads orphans: ".$count); while ($orphan = dba::fetch($r)) { + $last_id = $orphan["id"]; dba::delete('notify-threads', array('id' => $orphan["id"])); } } else { logger("No notify-threads orphans found"); } dba::close($r); - logger("Done deleting ".$count." orphaned data from notify-threads table"); + logger("Done deleting ".$count." orphaned data from notify-threads table. Last ID: ".$last_id); + + Config::set('system', 'dbclean-last-id-5', $last_id); if ($count < $limit) { Config::set('system', 'finished-dbclean-5', true); } } elseif ($stage == 6) { - logger("Deleting orphaned data from sign table"); - $r = dba::p("SELECT `iid` FROM `sign` WHERE NOT EXISTS (SELECT `id` FROM `item` WHERE `item`.`id` = `sign`.`iid`) LIMIT ".intval($limit)); + $last_id = Config::get('system', 'dbclean-last-id-6', 0); + + logger("Deleting orphaned data from sign table. Last ID: ".$last_id); + $r = dba::p("SELECT `iid`, `id` FROM `sign` + WHERE NOT EXISTS (SELECT `id` FROM `item` WHERE `item`.`id` = `sign`.`iid`) AND `id` >= ? + ORDER BY `id` LIMIT ".intval($limit), $last_id); $count = dba::num_rows($r); if ($count > 0) { logger("found sign orphans: ".$count); while ($orphan = dba::fetch($r)) { + $last_id = $orphan["id"]; dba::delete('sign', array('iid' => $orphan["iid"])); } } else { logger("No sign orphans found"); } dba::close($r); - logger("Done deleting ".$count." orphaned data from sign table"); + logger("Done deleting ".$count." orphaned data from sign table. Last ID: ".$last_id); + + Config::set('system', 'dbclean-last-id-6', $last_id); if ($count < $limit) { Config::set('system', 'finished-dbclean-6', true); } } elseif ($stage == 7) { - logger("Deleting orphaned data from term table"); - $r = dba::p("SELECT `oid` FROM `term` WHERE NOT EXISTS (SELECT `id` FROM `item` WHERE `item`.`id` = `term`.`oid`) LIMIT ".intval($limit)); + $last_id = Config::get('system', 'dbclean-last-id-7', 0); + + logger("Deleting orphaned data from term table. Last ID: ".$last_id); + $r = dba::p("SELECT `oid`, `tid` FROM `term` + WHERE NOT EXISTS (SELECT `id` FROM `item` WHERE `item`.`id` = `term`.`oid`) AND `tid` >= ? + ORDER BY `tid` LIMIT ".intval($limit), $last_id); $count = dba::num_rows($r); if ($count > 0) { logger("found term orphans: ".$count); while ($orphan = dba::fetch($r)) { + $last_id = $orphan["tid"]; dba::delete('term', array('oid' => $orphan["oid"])); } } else { logger("No term orphans found"); } dba::close($r); - logger("Done deleting ".$count." orphaned data from term table"); + logger("Done deleting ".$count." orphaned data from term table. Last ID: ".$last_id); + + Config::set('system', 'dbclean-last-id-7', $last_id); if ($count < $limit) { Config::set('system', 'finished-dbclean-7', true); From 875592f2855911d3dabf31fcf82e07abf1fc953b Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 15 May 2017 20:11:33 +0000 Subject: [PATCH 005/125] API: Direct Messages via the API now work again. --- include/api.php | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/include/api.php b/include/api.php index 67e1917258..64afa8c148 100644 --- a/include/api.php +++ b/include/api.php @@ -456,10 +456,13 @@ $called_api = null; * Contact url or False if contact id is unknown */ function api_unique_id_to_url($id) { - $r = q("SELECT `url` FROM `contact` WHERE `uid` = 0 AND `id` = %d LIMIT 1", - intval($id)); + $r = dba::select('contact', array('url'), array('uid' => 0, 'id' => $id), array('limit' => 1)); - return (dbm::is_result($r) && $r[0]["url"]); + if (dbm::is_result($r)) { + return $r["url"]; + } else { + return false; + } } /** @@ -3027,8 +3030,9 @@ $called_api = null; api_best_nickname($r); $recipient = api_get_user($a, $r[0]['nurl']); - } else + } else { $recipient = api_get_user($a, $_POST['user_id']); + } $replyto = ''; $sub = ''; From 124690cc4d2a00a350b6b2b1c592e0fb0134e070 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 15 May 2017 21:06:17 +0000 Subject: [PATCH 006/125] dba: Beautification is now a separate function --- include/dba.php | 34 ++++++++++++++++++++++++---------- 1 file changed, 24 insertions(+), 10 deletions(-) diff --git a/include/dba.php b/include/dba.php index 76ac538aa8..ccce9ed816 100644 --- a/include/dba.php +++ b/include/dba.php @@ -459,6 +459,27 @@ class dba { return $sql; } + /** + * @brief beautifies the query - seful for "SHOW PROCESSLIST" + * + * This is safe when we bind the parameters later. + * The parameter values aren't part of the SQL. + * + * @param string $sql An SQL string without the values + * @return string The input SQL string modified if necessary. + */ + public function clean_query($sql) { + $search = array("\t", "\n", "\r", " "); + $replace = array(' ', ' ', ' ', ' '); + do { + $oldsql = $sql; + $sql = str_replace($search, $replace, $sql); + } while ($oldsql != $sql); + + return $sql; + } + + /** * @brief Replaces the ? placeholders with the parameters in the $args array * @@ -521,16 +542,7 @@ class dba { logger('Parameter mismatch. Query "'.$sql.'" - Parameters '.print_r($args, true), LOGGER_DEBUG); } - // beautify the SQL query - useful for "SHOW PROCESSLIST" - // This is safe because we bind the parameters later. - // The parameter values aren't part of the SQL. - $search = array("\n", "\r", " "); - $replace = array(' ', ' ', ' '); - do { - $oldsql = $sql; - $sql = str_replace($search, $replace, $sql); - } while ($oldsql != $sql); - + $sql = self::$dbo->clean_query($sql); $sql = self::$dbo->any_value_fallback($sql); if (x($a->config,'system') && x($a->config['system'], 'db_callstack')) { @@ -1213,6 +1225,7 @@ function q($sql) { unset($args[0]); if ($db && $db->connected) { + $sql = $db->clean_query($sql); $sql = $db->any_value_fallback($sql); $stmt = @vsprintf($sql,$args); // Disabled warnings //logger("dba: q: $stmt", LOGGER_ALL); @@ -1250,6 +1263,7 @@ function qu($sql) { unset($args[0]); if ($db && $db->connected) { + $sql = $db->clean_query($sql); $sql = $db->any_value_fallback($sql); $stmt = @vsprintf($sql,$args); // Disabled warnings if ($stmt === false) From 805406a9d10f3029b17eb24097f59771c9fb2cbb Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Tue, 16 May 2017 00:22:17 +0100 Subject: [PATCH 007/125] Requested changes --- mods/sample-nginx.config | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/mods/sample-nginx.config b/mods/sample-nginx.config index 3c344c5e7f..e1994dcd33 100644 --- a/mods/sample-nginx.config +++ b/mods/sample-nginx.config @@ -83,16 +83,16 @@ server { # rewrite to front controller as default rule location / { if ($is_args != "") { - rewrite ^/(.*) /index.php?q=$uri&$args last; + rewrite ^/(.*) /index.php?pagename=$uri&$args last; } - rewrite ^/(.*) /index.php?q=$uri last; + rewrite ^/(.*) /index.php?pagename=$uri last; } # make sure webfinger and other well known services aren't blocked # by denying dot files and rewrite request to the front controller location ^~ /.well-known/ { allow all; - rewrite ^/(.*) /index.php?q=$uri&$args last; + rewrite ^/(.*) /index.php?pagename=$uri&$args last; } # statically serve these file types when possible @@ -101,7 +101,7 @@ server { # added .htm for advanced source code editor library location ~* \.(jpg|jpeg|gif|png|ico|css|js|htm|html|ttf|woff|svg)$ { expires 30d; - try_files $uri /index.php?q=$uri&$args; + try_files $uri /index.php?pagename=$uri&$args; } # block these file types @@ -138,7 +138,4 @@ server { location ~ /\. { deny all; } - } - - From 3fb99e74d86f8627d1bc9bb188f39322c683c9aa Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 16 May 2017 07:39:38 +0200 Subject: [PATCH 008/125] IT translations THX fabrixxm --- view/lang/it/messages.po | 10275 +++++++++++++++++++------------------ view/lang/it/strings.php | 2052 ++++---- 2 files changed, 6189 insertions(+), 6138 deletions(-) diff --git a/view/lang/it/messages.po b/view/lang/it/messages.po index 3a8ec39edb..9b9def9ca3 100644 --- a/view/lang/it/messages.po +++ b/view/lang/it/messages.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-19 07:46+0100\n" -"PO-Revision-Date: 2017-01-18 10:36+0000\n" +"POT-Creation-Date: 2017-05-03 07:08+0200\n" +"PO-Revision-Date: 2017-05-15 11:24+0000\n" "Last-Translator: fabrixxm \n" "Language-Team: Italian (http://www.transifex.com/Friendica/friendica/language/it/)\n" "MIME-Version: 1.0\n" @@ -25,112 +25,440 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: 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:10 include/identity.php:218 -#: mod/allfriends.php:82 mod/dirfind.php:201 mod/match.php:87 -#: mod/suggest.php:101 -msgid "Connect" -msgstr "Connetti" - -#: include/contact_widgets.php:24 -#, php-format -msgid "%d invitation available" -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 include/Contact.php:354 -#: include/conversation.php:981 mod/allfriends.php:66 mod/dirfind.php:204 -#: mod/match.php:72 mod/suggest.php:83 mod/contacts.php:602 mod/follow.php:103 -msgid "Connect/Follow" -msgstr "Connetti/segui" - -#: include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Esempi: Mario Rossi, Pesca" - -#: include/contact_widgets.php:34 mod/directory.php:204 mod/contacts.php:798 -msgid "Find" -msgstr "Trova" - -#: include/contact_widgets.php:35 mod/suggest.php:114 -#: view/theme/vier/theme.php:203 -msgid "Friend Suggestions" -msgstr "Contatti suggeriti" - -#: include/contact_widgets.php:36 view/theme/vier/theme.php:202 -msgid "Similar Interests" -msgstr "Interessi simili" - -#: include/contact_widgets.php:37 -msgid "Random Profile" -msgstr "Profilo causale" - -#: include/contact_widgets.php:38 view/theme/vier/theme.php:204 -msgid "Invite Friends" -msgstr "Invita amici" - -#: include/contact_widgets.php:108 -msgid "Networks" -msgstr "Reti" - -#: include/contact_widgets.php:111 -msgid "All Networks" -msgstr "Tutte le Reti" - -#: include/contact_widgets.php:141 include/features.php:110 -msgid "Saved Folders" -msgstr "Cartelle Salvate" - -#: include/contact_widgets.php:144 include/contact_widgets.php:176 -msgid "Everything" -msgstr "Tutto" - -#: include/contact_widgets.php:173 -msgid "Categories" -msgstr "Categorie" - -#: include/contact_widgets.php:237 -#, 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" - -#: include/contact_widgets.php:242 include/ForumManager.php:119 -#: include/items.php:2245 mod/content.php:624 object/Item.php:432 -#: view/theme/vier/theme.php:260 boot.php:972 -msgid "show more" -msgstr "mostra di più" - -#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1025 -#: view/theme/vier/theme.php:255 +#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1093 +#: view/theme/vier/theme.php:254 msgid "Forums" msgstr "Forum" -#: include/ForumManager.php:116 view/theme/vier/theme.php:257 +#: include/ForumManager.php:116 view/theme/vier/theme.php:256 msgid "External link to forum" msgstr "Link esterno al forum" +#: include/ForumManager.php:119 include/contact_widgets.php:269 +#: include/items.php:2450 mod/content.php:624 object/Item.php:420 +#: view/theme/vier/theme.php:259 boot.php:1000 +msgid "show more" +msgstr "mostra di più" + +#: include/NotificationsManager.php:153 +msgid "System" +msgstr "Sistema" + +#: include/NotificationsManager.php:160 include/nav.php:158 mod/admin.php:517 +#: view/theme/frio/theme.php:253 +msgid "Network" +msgstr "Rete" + +#: include/NotificationsManager.php:167 mod/network.php:832 +#: mod/profiles.php:696 +msgid "Personal" +msgstr "Personale" + +#: include/NotificationsManager.php:174 include/nav.php:105 +#: include/nav.php:161 +msgid "Home" +msgstr "Home" + +#: include/NotificationsManager.php:181 include/nav.php:166 +msgid "Introductions" +msgstr "Presentazioni" + +#: include/NotificationsManager.php:239 include/NotificationsManager.php:251 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s ha commentato il messaggio di %s" + +#: include/NotificationsManager.php:250 +#, php-format +msgid "%s created a new post" +msgstr "%s a creato un nuovo messaggio" + +#: include/NotificationsManager.php:265 +#, php-format +msgid "%s liked %s's post" +msgstr "a %s è piaciuto il messaggio di %s" + +#: include/NotificationsManager.php:278 +#, php-format +msgid "%s disliked %s's post" +msgstr "a %s non è piaciuto il messaggio di %s" + +#: include/NotificationsManager.php:291 +#, php-format +msgid "%s is attending %s's event" +msgstr "%s partecipa all'evento di %s" + +#: include/NotificationsManager.php:304 +#, php-format +msgid "%s is not attending %s's event" +msgstr "%s non partecipa all'evento di %s" + +#: include/NotificationsManager.php:317 +#, php-format +msgid "%s may attend %s's event" +msgstr "%s potrebbe partecipare all'evento di %s" + +#: include/NotificationsManager.php:334 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s è ora amico di %s" + +#: include/NotificationsManager.php:770 +msgid "Friend Suggestion" +msgstr "Amico suggerito" + +#: include/NotificationsManager.php:803 +msgid "Friend/Connect Request" +msgstr "Richiesta amicizia/connessione" + +#: include/NotificationsManager.php:803 +msgid "New Follower" +msgstr "Qualcuno inizia a seguirti" + +#: include/Photo.php:1038 include/Photo.php:1054 include/Photo.php:1062 +#: include/Photo.php:1087 include/message.php:146 mod/wall_upload.php:249 +#: mod/item.php:467 +msgid "Wall Photos" +msgstr "Foto della bacheca" + +#: include/delivery.php:427 +msgid "(no subject)" +msgstr "(nessun oggetto)" + +#: include/delivery.php:439 include/enotify.php:43 +msgid "noreply" +msgstr "nessuna risposta" + +#: include/like.php:27 include/conversation.php:153 include/diaspora.php:1576 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "A %1$s piace %3$s di %2$s" + +#: include/like.php:31 include/like.php:36 include/conversation.php:156 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "A %1$s non piace %3$s di %2$s" + +#: include/like.php:41 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%1$s parteciperà a %3$s di %2$s" + +#: include/like.php:46 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%1$s non parteciperà a %3$s di %2$s" + +#: include/like.php:51 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%1$s forse parteciperà a %3$s di %2$s" + +#: include/like.php:178 include/conversation.php:141 +#: include/conversation.php:293 include/text.php:1872 mod/subthread.php:88 +#: mod/tagger.php:62 +msgid "photo" +msgstr "foto" + +#: include/like.php:178 include/conversation.php:136 +#: include/conversation.php:146 include/conversation.php:288 +#: include/conversation.php:297 include/diaspora.php:1580 mod/subthread.php:88 +#: mod/tagger.php:62 +msgid "status" +msgstr "stato" + +#: include/like.php:180 include/conversation.php:133 +#: include/conversation.php:285 include/text.php:1870 +msgid "event" +msgstr "l'evento" + +#: include/message.php:15 include/message.php:169 +msgid "[no subject]" +msgstr "[nessun oggetto]" + +#: include/nav.php:35 mod/navigation.php:19 +msgid "Nothing new here" +msgstr "Niente di nuovo qui" + +#: include/nav.php:39 mod/navigation.php:23 +msgid "Clear notifications" +msgstr "Pulisci le notifiche" + +#: include/nav.php:40 include/text.php:1083 +msgid "@name, !forum, #tags, content" +msgstr "@nome, !forum, #tag, contenuto" + +#: include/nav.php:78 view/theme/frio/theme.php:243 boot.php:1867 +msgid "Logout" +msgstr "Esci" + +#: include/nav.php:78 view/theme/frio/theme.php:243 +msgid "End this session" +msgstr "Finisci questa sessione" + +#: include/nav.php:81 include/identity.php:769 mod/contacts.php:645 +#: mod/contacts.php:841 view/theme/frio/theme.php:246 +msgid "Status" +msgstr "Stato" + +#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:246 +msgid "Your posts and conversations" +msgstr "I tuoi messaggi e le tue conversazioni" + +#: include/nav.php:82 include/identity.php:622 include/identity.php:744 +#: include/identity.php:777 mod/contacts.php:647 mod/contacts.php:849 +#: mod/newmember.php:32 mod/profperm.php:105 view/theme/frio/theme.php:247 +msgid "Profile" +msgstr "Profilo" + +#: include/nav.php:82 view/theme/frio/theme.php:247 +msgid "Your profile page" +msgstr "Pagina del tuo profilo" + +#: include/nav.php:83 include/identity.php:785 mod/fbrowser.php:31 +#: view/theme/frio/theme.php:248 +msgid "Photos" +msgstr "Foto" + +#: include/nav.php:83 view/theme/frio/theme.php:248 +msgid "Your photos" +msgstr "Le tue foto" + +#: include/nav.php:84 include/identity.php:793 include/identity.php:796 +#: view/theme/frio/theme.php:249 +msgid "Videos" +msgstr "Video" + +#: include/nav.php:84 view/theme/frio/theme.php:249 +msgid "Your videos" +msgstr "I tuoi video" + +#: include/nav.php:85 include/nav.php:149 include/identity.php:805 +#: include/identity.php:816 mod/cal.php:270 mod/events.php:374 +#: view/theme/frio/theme.php:250 view/theme/frio/theme.php:254 +msgid "Events" +msgstr "Eventi" + +#: include/nav.php:85 view/theme/frio/theme.php:250 +msgid "Your events" +msgstr "I tuoi eventi" + +#: include/nav.php:86 +msgid "Personal notes" +msgstr "Note personali" + +#: include/nav.php:86 +msgid "Your personal notes" +msgstr "Le tue note personali" + +#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1868 +msgid "Login" +msgstr "Accedi" + +#: include/nav.php:95 +msgid "Sign in" +msgstr "Entra" + +#: include/nav.php:105 +msgid "Home Page" +msgstr "Home Page" + +#: include/nav.php:109 mod/register.php:289 boot.php:1844 +msgid "Register" +msgstr "Registrati" + +#: include/nav.php:109 +msgid "Create an account" +msgstr "Crea un account" + +#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:297 +msgid "Help" +msgstr "Guida" + +#: include/nav.php:115 +msgid "Help and documentation" +msgstr "Guida e documentazione" + +#: include/nav.php:119 +msgid "Apps" +msgstr "Applicazioni" + +#: include/nav.php:119 +msgid "Addon applications, utilities, games" +msgstr "Applicazioni, utilità e giochi aggiuntivi" + +#: include/nav.php:123 include/text.php:1080 mod/search.php:149 +msgid "Search" +msgstr "Cerca" + +#: include/nav.php:123 +msgid "Search site content" +msgstr "Cerca nel contenuto del sito" + +#: include/nav.php:126 include/text.php:1088 +msgid "Full Text" +msgstr "Testo Completo" + +#: include/nav.php:127 include/text.php:1089 +msgid "Tags" +msgstr "Tags:" + +#: include/nav.php:128 include/nav.php:192 include/identity.php:838 +#: include/identity.php:841 include/text.php:1090 mod/contacts.php:800 +#: mod/contacts.php:861 mod/viewcontacts.php:121 view/theme/frio/theme.php:257 +msgid "Contacts" +msgstr "Contatti" + +#: include/nav.php:143 include/nav.php:145 mod/community.php:32 +msgid "Community" +msgstr "Comunità" + +#: include/nav.php:143 +msgid "Conversations on this site" +msgstr "Conversazioni su questo sito" + +#: include/nav.php:145 +msgid "Conversations on the network" +msgstr "Conversazioni nella rete" + +#: include/nav.php:149 include/identity.php:808 include/identity.php:819 +#: view/theme/frio/theme.php:254 +msgid "Events and Calendar" +msgstr "Eventi e calendario" + +#: include/nav.php:152 +msgid "Directory" +msgstr "Elenco" + +#: include/nav.php:152 +msgid "People directory" +msgstr "Elenco delle persone" + +#: include/nav.php:154 +msgid "Information" +msgstr "Informazioni" + +#: include/nav.php:154 +msgid "Information about this friendica instance" +msgstr "Informazioni su questo server friendica" + +#: include/nav.php:158 view/theme/frio/theme.php:253 +msgid "Conversations from your friends" +msgstr "Conversazioni dai tuoi amici" + +#: include/nav.php:159 +msgid "Network Reset" +msgstr "Reset pagina Rete" + +#: include/nav.php:159 +msgid "Load Network page with no filters" +msgstr "Carica la pagina Rete senza nessun filtro" + +#: include/nav.php:166 +msgid "Friend Requests" +msgstr "Richieste di amicizia" + +#: include/nav.php:169 mod/notifications.php:96 +msgid "Notifications" +msgstr "Notifiche" + +#: include/nav.php:170 +msgid "See all notifications" +msgstr "Vedi tutte le notifiche" + +#: include/nav.php:171 mod/settings.php:906 +msgid "Mark as seen" +msgstr "Segna come letto" + +#: include/nav.php:171 +msgid "Mark all system notifications seen" +msgstr "Segna tutte le notifiche come viste" + +#: include/nav.php:175 mod/message.php:179 view/theme/frio/theme.php:255 +msgid "Messages" +msgstr "Messaggi" + +#: include/nav.php:175 view/theme/frio/theme.php:255 +msgid "Private mail" +msgstr "Posta privata" + +#: include/nav.php:176 +msgid "Inbox" +msgstr "In arrivo" + +#: include/nav.php:177 +msgid "Outbox" +msgstr "Inviati" + +#: include/nav.php:178 mod/message.php:16 +msgid "New Message" +msgstr "Nuovo messaggio" + +#: include/nav.php:181 +msgid "Manage" +msgstr "Gestisci" + +#: include/nav.php:181 +msgid "Manage other pages" +msgstr "Gestisci altre pagine" + +#: include/nav.php:184 mod/settings.php:81 +msgid "Delegations" +msgstr "Delegazioni" + +#: include/nav.php:184 mod/delegate.php:130 +msgid "Delegate Page Management" +msgstr "Gestione delegati per la pagina" + +#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111 +#: mod/admin.php:1618 mod/admin.php:1894 view/theme/frio/theme.php:256 +msgid "Settings" +msgstr "Impostazioni" + +#: include/nav.php:186 view/theme/frio/theme.php:256 +msgid "Account settings" +msgstr "Parametri account" + +#: include/nav.php:189 include/identity.php:290 +msgid "Profiles" +msgstr "Profili" + +#: include/nav.php:189 +msgid "Manage/Edit Profiles" +msgstr "Gestisci/Modifica i profili" + +#: include/nav.php:192 view/theme/frio/theme.php:257 +msgid "Manage/edit friends and contacts" +msgstr "Gestisci/modifica amici e contatti" + +#: include/nav.php:197 mod/admin.php:196 +msgid "Admin" +msgstr "Amministrazione" + +#: include/nav.php:197 +msgid "Site setup and configuration" +msgstr "Configurazione del sito" + +#: include/nav.php:200 +msgid "Navigation" +msgstr "Navigazione" + +#: include/nav.php:200 +msgid "Site map" +msgstr "Mappa del sito" + +#: include/plugin.php:530 include/plugin.php:532 +msgid "Click here to upgrade." +msgstr "Clicca qui per aggiornare." + +#: include/plugin.php:538 +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:543 +msgid "This action is not available under your subscription plan." +msgstr "Questa azione non è disponibile nel tuo piano di sottoscrizione." + #: include/profile_selectors.php:6 msgid "Male" msgstr "Maschio" @@ -183,7 +511,7 @@ msgstr "Non specificato" msgid "Other" msgstr "Altro" -#: include/profile_selectors.php:6 include/conversation.php:1487 +#: include/profile_selectors.php:6 include/conversation.php:1547 msgid "Undecided" msgid_plural "Undecided" msgstr[0] "Indeciso" @@ -277,7 +605,7 @@ msgstr "Infedele" msgid "Sex Addict" msgstr "Sesso-dipendente" -#: include/profile_selectors.php:42 include/user.php:280 include/user.php:284 +#: include/profile_selectors.php:42 include/user.php:263 include/user.php:267 msgid "Friends" msgstr "Amici" @@ -365,75 +693,232 @@ msgstr "Non interessa" msgid "Ask me" msgstr "Chiedimelo" -#: 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/security.php:61 +msgid "Welcome " +msgstr "Ciao" -#: include/auth.php:45 +#: include/security.php:62 +msgid "Please upload a profile photo." +msgstr "Carica una foto per il profilo." + +#: include/security.php:65 +msgid "Welcome back " +msgstr "Ciao " + +#: include/security.php:429 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lungo (più di tre ore) prima di inviarla." + +#: include/uimport.php:91 +msgid "Error decoding account file" +msgstr "Errore decodificando il file account" + +#: include/uimport.php:97 +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:113 include/uimport.php:124 +msgid "Error! Cannot check nickname" +msgstr "Errore! Non posso controllare il nickname" + +#: include/uimport.php:117 include/uimport.php:128 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "L'utente '%s' esiste già su questo server!" + +#: include/uimport.php:150 +msgid "User creation error" +msgstr "Errore creando l'utente" + +#: include/uimport.php:170 +msgid "User profile creation error" +msgstr "Errore creando il profilo dell'utente" + +#: include/uimport.php:219 +#, 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:289 +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/Contact.php:395 include/Contact.php:408 include/Contact.php:453 +#: include/conversation.php:1004 include/conversation.php:1020 +#: mod/allfriends.php:68 mod/directory.php:157 mod/match.php:73 +#: mod/suggest.php:82 mod/dirfind.php:209 +msgid "View Profile" +msgstr "Visualizza profilo" + +#: include/Contact.php:409 include/contact_widgets.php:32 +#: include/conversation.php:1017 mod/allfriends.php:69 mod/contacts.php:610 +#: mod/match.php:74 mod/suggest.php:83 mod/dirfind.php:210 mod/follow.php:106 +msgid "Connect/Follow" +msgstr "Connetti/segui" + +#: include/Contact.php:452 include/conversation.php:1003 +msgid "View Status" +msgstr "Visualizza stato" + +#: include/Contact.php:454 include/conversation.php:1005 +msgid "View Photos" +msgstr "Visualizza foto" + +#: include/Contact.php:455 include/conversation.php:1006 +msgid "Network Posts" +msgstr "Post della Rete" + +#: include/Contact.php:456 include/conversation.php:1007 +msgid "View Contact" +msgstr "Mostra contatto" + +#: include/Contact.php:457 +msgid "Drop Contact" +msgstr "Rimuovi contatto" + +#: include/Contact.php:458 include/conversation.php:1008 +msgid "Send PM" +msgstr "Invia messaggio privato" + +#: include/Contact.php:459 include/conversation.php:1012 +msgid "Poke" +msgstr "Stuzzica" + +#: include/Contact.php:840 +msgid "Organisation" +msgstr "Organizzazione" + +#: include/Contact.php:843 +msgid "News" +msgstr "Notizie" + +#: include/Contact.php:846 +msgid "Forum" +msgstr "Forum" + +#: include/acl_selectors.php:353 +msgid "Post to Email" +msgstr "Invia a email" + +#: include/acl_selectors.php:358 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Connettore disabilitato, dato che \"%s\" è abilitato." + +#: include/acl_selectors.php:359 mod/settings.php:1188 +msgid "Hide your profile details from unknown viewers?" +msgstr "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?" + +#: include/acl_selectors.php:365 +msgid "Visible to everybody" +msgstr "Visibile a tutti" + +#: include/acl_selectors.php:366 view/theme/vier/config.php:108 +msgid "show" +msgstr "mostra" + +#: include/acl_selectors.php:367 view/theme/vier/config.php:108 +msgid "don't show" +msgstr "non mostrare" + +#: include/acl_selectors.php:373 mod/editpost.php:123 +msgid "CC: email addresses" +msgstr "CC: indirizzi email" + +#: include/acl_selectors.php:374 mod/editpost.php:130 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Esempio: bob@example.com, mary@example.com" + +#: include/acl_selectors.php:376 mod/events.php:508 mod/photos.php:1196 +#: mod/photos.php:1593 +msgid "Permissions" +msgstr "Permessi" + +#: include/acl_selectors.php:377 +msgid "Close" +msgstr "Chiudi" + +#: include/api.php:1089 +#, 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:1110 +#, 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:1131 +#, 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/auth.php:51 msgid "Logged out." msgstr "Uscita effettuata." -#: include/auth.php:116 include/auth.php:178 mod/openid.php:100 +#: include/auth.php:122 include/auth.php:184 mod/openid.php:110 msgid "Login failed." msgstr "Accesso fallito." -#: include/auth.php:132 include/user.php:75 +#: include/auth.php:138 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:132 include/user.php:75 +#: include/auth.php:138 include/user.php:75 msgid "The error message was:" msgstr "Il messaggio riportato era:" -#: 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/bb2diaspora.php:230 include/event.php:17 mod/localtime.php:12 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\@ G:i" -#: include/group.php:209 -msgid "Default privacy group for new contacts" -msgstr "Gruppo predefinito per i nuovi contatti" +#: include/bb2diaspora.php:236 include/event.php:34 include/event.php:54 +#: include/event.php:525 +msgid "Starts:" +msgstr "Inizia:" -#: include/group.php:242 -msgid "Everybody" -msgstr "Tutti" +#: include/bb2diaspora.php:244 include/event.php:37 include/event.php:60 +#: include/event.php:526 +msgid "Finishes:" +msgstr "Finisce:" -#: include/group.php:265 -msgid "edit" -msgstr "modifica" +#: include/bb2diaspora.php:253 include/event.php:41 include/event.php:67 +#: include/event.php:527 include/identity.php:336 mod/contacts.php:636 +#: mod/directory.php:139 mod/events.php:493 mod/notifications.php:244 +msgid "Location:" +msgstr "Posizione:" -#: include/group.php:286 mod/newmember.php:61 -msgid "Groups" -msgstr "Gruppi" +#: include/bbcode.php:380 include/bbcode.php:1132 include/bbcode.php:1133 +msgid "Image/photo" +msgstr "Immagine/foto" -#: include/group.php:288 -msgid "Edit groups" -msgstr "Modifica gruppi" +#: include/bbcode.php:497 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" -#: include/group.php:290 -msgid "Edit group" -msgstr "Modifica gruppo" +#: include/bbcode.php:1089 include/bbcode.php:1111 +msgid "$1 wrote:" +msgstr "$1 ha scritto:" -#: include/group.php:291 -msgid "Create a new group" -msgstr "Crea un nuovo gruppo" +#: include/bbcode.php:1141 include/bbcode.php:1142 +msgid "Encrypted content" +msgstr "Contenuto criptato" -#: include/group.php:292 mod/group.php:94 mod/group.php:178 -msgid "Group Name: " -msgstr "Nome del gruppo:" +#: include/bbcode.php:1257 +msgid "Invalid source protocol" +msgstr "Protocollo sorgente non valido" -#: include/group.php:294 -msgid "Contacts not in any group" -msgstr "Contatti in nessun gruppo." - -#: include/group.php:296 mod/network.php:201 -msgid "add" -msgstr "aggiungi" +#: include/bbcode.php:1267 +msgid "Invalid link protocol" +msgstr "Protocollo link non valido" #: include/contact_selectors.php:32 msgid "Unknown | Not categorised" @@ -459,19 +944,19 @@ msgstr "E' ok, probabilmente innocuo" msgid "Reputable, has my trust" msgstr "Rispettabile, ha la mia fiducia" -#: include/contact_selectors.php:56 mod/admin.php:890 +#: include/contact_selectors.php:56 mod/admin.php:980 msgid "Frequently" msgstr "Frequentemente" -#: include/contact_selectors.php:57 mod/admin.php:891 +#: include/contact_selectors.php:57 mod/admin.php:981 msgid "Hourly" msgstr "Ogni ora" -#: include/contact_selectors.php:58 mod/admin.php:892 +#: include/contact_selectors.php:58 mod/admin.php:982 msgid "Twice daily" msgstr "Due volte al dì" -#: include/contact_selectors.php:59 mod/admin.php:893 +#: include/contact_selectors.php:59 mod/admin.php:983 msgid "Daily" msgstr "Giornalmente" @@ -483,7 +968,7 @@ msgstr "Settimanalmente" msgid "Monthly" msgstr "Mensilmente" -#: include/contact_selectors.php:76 mod/dfrn_request.php:868 +#: include/contact_selectors.php:76 mod/dfrn_request.php:886 msgid "Friendica" msgstr "Friendica" @@ -496,12 +981,12 @@ msgid "RSS/Atom" msgstr "RSS / Atom" #: include/contact_selectors.php:79 include/contact_selectors.php:86 -#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1440 +#: mod/admin.php:1490 mod/admin.php:1503 mod/admin.php:1516 mod/admin.php:1534 msgid "Email" msgstr "Email" -#: include/contact_selectors.php:80 mod/settings.php:842 -#: mod/dfrn_request.php:870 +#: include/contact_selectors.php:80 mod/dfrn_request.php:888 +#: mod/settings.php:848 msgid "Diaspora" msgstr "Diaspora" @@ -542,257 +1027,586 @@ msgid "Diaspora Connector" msgstr "Connettore Diaspora" #: include/contact_selectors.php:91 -msgid "GNU Social" -msgstr "GNU Social" +msgid "GNU Social Connector" +msgstr "Connettore GNU Social" #: include/contact_selectors.php:92 +msgid "pnut" +msgstr "pnut" + +#: include/contact_selectors.php:93 msgid "App.net" msgstr "App.net" -#: include/contact_selectors.php:103 -msgid "Hubzilla/Redmatrix" -msgstr "Hubzilla/Redmatrix" +#: include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Aggiungi nuovo contatto" -#: include/acl_selectors.php:327 -msgid "Post to Email" -msgstr "Invia a email" +#: include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Inserisci posizione o indirizzo web" -#: include/acl_selectors.php:332 +#: 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:10 include/identity.php:224 +#: mod/allfriends.php:85 mod/match.php:89 mod/suggest.php:101 +#: mod/dirfind.php:207 +msgid "Connect" +msgstr "Connetti" + +#: include/contact_widgets.php:24 #, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "Connettore disabilitato, dato che \"%s\" è abilitato." +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invito disponibile" +msgstr[1] "%d inviti disponibili" -#: include/acl_selectors.php:333 mod/settings.php:1181 -msgid "Hide your profile details from unknown viewers?" -msgstr "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?" +#: include/contact_widgets.php:30 +msgid "Find People" +msgstr "Trova persone" -#: include/acl_selectors.php:338 -msgid "Visible to everybody" -msgstr "Visibile a tutti" +#: include/contact_widgets.php:31 +msgid "Enter name or interest" +msgstr "Inserisci un nome o un interesse" -#: include/acl_selectors.php:339 view/theme/vier/config.php:103 -msgid "show" -msgstr "mostra" +#: include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Esempi: Mario Rossi, Pesca" -#: include/acl_selectors.php:340 view/theme/vier/config.php:103 -msgid "don't show" -msgstr "non mostrare" +#: include/contact_widgets.php:34 mod/contacts.php:806 mod/directory.php:206 +msgid "Find" +msgstr "Trova" -#: include/acl_selectors.php:346 mod/editpost.php:133 -msgid "CC: email addresses" -msgstr "CC: indirizzi email" +#: include/contact_widgets.php:35 mod/suggest.php:114 +#: view/theme/vier/theme.php:201 +msgid "Friend Suggestions" +msgstr "Contatti suggeriti" -#: include/acl_selectors.php:347 mod/editpost.php:140 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Esempio: bob@example.com, mary@example.com" +#: include/contact_widgets.php:36 view/theme/vier/theme.php:200 +msgid "Similar Interests" +msgstr "Interessi simili" -#: include/acl_selectors.php:349 mod/events.php:509 mod/photos.php:1156 -#: mod/photos.php:1535 -msgid "Permissions" -msgstr "Permessi" +#: include/contact_widgets.php:37 +msgid "Random Profile" +msgstr "Profilo causale" -#: include/acl_selectors.php:350 -msgid "Close" -msgstr "Chiudi" +#: include/contact_widgets.php:38 view/theme/vier/theme.php:202 +msgid "Invite Friends" +msgstr "Invita amici" -#: include/like.php:163 include/conversation.php:130 -#: include/conversation.php:266 include/text.php:1804 mod/subthread.php:87 -#: mod/tagger.php:62 -msgid "photo" -msgstr "foto" +#: include/contact_widgets.php:125 +msgid "Networks" +msgstr "Reti" -#: include/like.php:163 include/diaspora.php:1406 include/conversation.php:125 -#: include/conversation.php:134 include/conversation.php:261 -#: include/conversation.php:270 mod/subthread.php:87 mod/tagger.php:62 -msgid "status" -msgstr "stato" +#: include/contact_widgets.php:128 +msgid "All Networks" +msgstr "Tutte le Reti" -#: include/like.php:165 include/conversation.php:122 -#: include/conversation.php:258 include/text.php:1802 -msgid "event" -msgstr "l'evento" +#: include/contact_widgets.php:160 include/features.php:104 +msgid "Saved Folders" +msgstr "Cartelle Salvate" -#: include/like.php:182 include/diaspora.php:1402 include/conversation.php:141 +#: include/contact_widgets.php:163 include/contact_widgets.php:198 +msgid "Everything" +msgstr "Tutto" + +#: include/contact_widgets.php:195 +msgid "Categories" +msgstr "Categorie" + +#: include/contact_widgets.php:264 #, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "A %1$s piace %3$s di %2$s" +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d contatto in comune" +msgstr[1] "%d contatti in comune" -#: include/like.php:184 include/conversation.php:144 +#: include/conversation.php:159 #, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "A %1$s non piace %3$s di %2$s" +msgid "%1$s attends %2$s's %3$s" +msgstr "%1$s partecipa a %3$s di %2$s" -#: include/like.php:186 +#: include/conversation.php:162 #, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%1$s parteciperà a %3$s di %2$s" +msgid "%1$s doesn't attend %2$s's %3$s" +msgstr "%1$s non partecipa a %3$s di %2$s" -#: include/like.php:188 +#: include/conversation.php:165 #, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%1$s non parteciperà a %3$s di %2$s" +msgid "%1$s attends maybe %2$s's %3$s" +msgstr "%1$s forse partecipa a %3$s di %2$s" -#: include/like.php:190 +#: include/conversation.php:198 mod/dfrn_confirm.php:478 #, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%1$s forse parteciperà a %3$s di %2$s" +msgid "%1$s is now friends with %2$s" +msgstr "%1$s e %2$s adesso sono amici" -#: include/message.php:15 include/message.php:173 -msgid "[no subject]" -msgstr "[nessun oggetto]" - -#: include/message.php:145 include/Photo.php:1040 include/Photo.php:1056 -#: include/Photo.php:1064 include/Photo.php:1089 mod/wall_upload.php:218 -#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:478 -msgid "Wall Photos" -msgstr "Foto della bacheca" - -#: include/plugin.php:526 include/plugin.php:528 -msgid "Click here to upgrade." -msgstr "Clicca qui per aggiornare." - -#: include/plugin.php:534 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Questa azione eccede i limiti del tuo piano di sottoscrizione." - -#: include/plugin.php:539 -msgid "This action is not available under your subscription plan." -msgstr "Questa azione non è disponibile nel tuo piano di sottoscrizione." - -#: include/uimport.php:94 -msgid "Error decoding account file" -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 +#: include/conversation.php:239 #, php-format -msgid "User '%s' already exists on this server!" -msgstr "L'utente '%s' esiste già su questo server!" +msgid "%1$s poked %2$s" +msgstr "%1$s ha stuzzicato %2$s" -#: 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 profilo dell'utente" - -#: include/uimport.php:222 +#: include/conversation.php:260 mod/mood.php:63 #, 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 "%1$s is currently %2$s" +msgstr "%1$s al momento è %2$s" -#: 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/conversation.php:307 mod/tagger.php:95 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s ha taggato %3$s di %2$s con %4$s" -#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705 +#: include/conversation.php:334 +msgid "post/item" +msgstr "post/elemento" + +#: include/conversation.php:335 +#, 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:614 mod/content.php:372 mod/photos.php:1662 +#: mod/profiles.php:340 +msgid "Likes" +msgstr "Mi piace" + +#: include/conversation.php:614 mod/content.php:372 mod/photos.php:1662 +#: mod/profiles.php:344 +msgid "Dislikes" +msgstr "Non mi piace" + +#: include/conversation.php:615 include/conversation.php:1541 +#: mod/content.php:373 mod/photos.php:1663 +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Partecipa" +msgstr[1] "Partecipano" + +#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1663 +msgid "Not attending" +msgstr "Non partecipa" + +#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1663 +msgid "Might attend" +msgstr "Forse partecipa" + +#: include/conversation.php:747 mod/content.php:453 mod/content.php:759 +#: mod/photos.php:1728 object/Item.php:137 +msgid "Select" +msgstr "Seleziona" + +#: include/conversation.php:748 mod/contacts.php:816 mod/contacts.php:1015 +#: mod/content.php:454 mod/content.php:760 mod/photos.php:1729 +#: mod/settings.php:744 mod/admin.php:1508 object/Item.php:138 +msgid "Delete" +msgstr "Rimuovi" + +#: include/conversation.php:791 mod/content.php:487 mod/content.php:915 +#: mod/content.php:916 object/Item.php:356 object/Item.php:357 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Vedi il profilo di %s @ %s" + +#: include/conversation.php:803 object/Item.php:344 +msgid "Categories:" +msgstr "Categorie:" + +#: include/conversation.php:804 object/Item.php:345 +msgid "Filed under:" +msgstr "Archiviato in:" + +#: include/conversation.php:811 mod/content.php:497 mod/content.php:928 +#: object/Item.php:370 +#, php-format +msgid "%s from %s" +msgstr "%s da %s" + +#: include/conversation.php:827 mod/content.php:513 +msgid "View in context" +msgstr "Vedi nel contesto" + +#: include/conversation.php:829 include/conversation.php:1298 +#: mod/content.php:515 mod/content.php:953 mod/editpost.php:114 +#: mod/wallmessage.php:140 mod/message.php:337 mod/message.php:522 +#: mod/photos.php:1627 object/Item.php:395 +msgid "Please wait" +msgstr "Attendi" + +#: include/conversation.php:906 +msgid "remove" +msgstr "rimuovi" + +#: include/conversation.php:910 +msgid "Delete Selected Items" +msgstr "Cancella elementi selezionati" + +#: include/conversation.php:1002 +msgid "Follow Thread" +msgstr "Segui la discussione" + +#: include/conversation.php:1139 +#, php-format +msgid "%s likes this." +msgstr "Piace a %s." + +#: include/conversation.php:1142 +#, php-format +msgid "%s doesn't like this." +msgstr "Non piace a %s." + +#: include/conversation.php:1145 +#, php-format +msgid "%s attends." +msgstr "%s partecipa." + +#: include/conversation.php:1148 +#, php-format +msgid "%s doesn't attend." +msgstr "%s non partecipa." + +#: include/conversation.php:1151 +#, php-format +msgid "%s attends maybe." +msgstr "%s forse partecipa." + +#: include/conversation.php:1162 +msgid "and" +msgstr "e" + +#: include/conversation.php:1168 +#, php-format +msgid ", and %d other people" +msgstr "e altre %d persone" + +#: include/conversation.php:1177 +#, php-format +msgid "%2$d people like this" +msgstr "Piace a %2$d persone." + +#: include/conversation.php:1178 +#, php-format +msgid "%s like this." +msgstr "a %s piace." + +#: include/conversation.php:1181 +#, php-format +msgid "%2$d people don't like this" +msgstr "Non piace a %2$d persone." + +#: include/conversation.php:1182 +#, php-format +msgid "%s don't like this." +msgstr "a %s non piace." + +#: include/conversation.php:1185 +#, php-format +msgid "%2$d people attend" +msgstr "%2$d persone partecipano" + +#: include/conversation.php:1186 +#, php-format +msgid "%s attend." +msgstr "%s partecipa." + +#: include/conversation.php:1189 +#, php-format +msgid "%2$d people don't attend" +msgstr "%2$d persone non partecipano" + +#: include/conversation.php:1190 +#, php-format +msgid "%s don't attend." +msgstr "%s non partecipa." + +#: include/conversation.php:1193 +#, php-format +msgid "%2$d people attend maybe" +msgstr "%2$d persone forse partecipano" + +#: include/conversation.php:1194 +#, php-format +msgid "%s anttend maybe." +msgstr "%s forse partecipano." + +#: include/conversation.php:1223 include/conversation.php:1239 +msgid "Visible to everybody" +msgstr "Visibile a tutti" + +#: include/conversation.php:1224 include/conversation.php:1240 +#: mod/wallmessage.php:114 mod/wallmessage.php:121 mod/message.php:271 +#: mod/message.php:278 mod/message.php:418 mod/message.php:425 +msgid "Please enter a link URL:" +msgstr "Inserisci l'indirizzo del link:" + +#: include/conversation.php:1225 include/conversation.php:1241 +msgid "Please enter a video link/URL:" +msgstr "Inserisci un collegamento video / URL:" + +#: include/conversation.php:1226 include/conversation.php:1242 +msgid "Please enter an audio link/URL:" +msgstr "Inserisci un collegamento audio / URL:" + +#: include/conversation.php:1227 include/conversation.php:1243 +msgid "Tag term:" +msgstr "Tag:" + +#: include/conversation.php:1228 include/conversation.php:1244 +#: mod/filer.php:30 +msgid "Save to Folder:" +msgstr "Salva nella Cartella:" + +#: include/conversation.php:1229 include/conversation.php:1245 +msgid "Where are you right now?" +msgstr "Dove sei ora?" + +#: include/conversation.php:1230 +msgid "Delete item(s)?" +msgstr "Cancellare questo elemento/i?" + +#: include/conversation.php:1279 +msgid "Share" +msgstr "Condividi" + +#: include/conversation.php:1280 mod/editpost.php:100 mod/wallmessage.php:138 +#: mod/message.php:335 mod/message.php:519 +msgid "Upload photo" +msgstr "Carica foto" + +#: include/conversation.php:1281 mod/editpost.php:101 +msgid "upload photo" +msgstr "carica foto" + +#: include/conversation.php:1282 mod/editpost.php:102 +msgid "Attach file" +msgstr "Allega file" + +#: include/conversation.php:1283 mod/editpost.php:103 +msgid "attach file" +msgstr "allega file" + +#: include/conversation.php:1284 mod/editpost.php:104 mod/wallmessage.php:139 +#: mod/message.php:336 mod/message.php:520 +msgid "Insert web link" +msgstr "Inserisci link" + +#: include/conversation.php:1285 mod/editpost.php:105 +msgid "web link" +msgstr "link web" + +#: include/conversation.php:1286 mod/editpost.php:106 +msgid "Insert video link" +msgstr "Inserire collegamento video" + +#: include/conversation.php:1287 mod/editpost.php:107 +msgid "video link" +msgstr "link video" + +#: include/conversation.php:1288 mod/editpost.php:108 +msgid "Insert audio link" +msgstr "Inserisci collegamento audio" + +#: include/conversation.php:1289 mod/editpost.php:109 +msgid "audio link" +msgstr "link audio" + +#: include/conversation.php:1290 mod/editpost.php:110 +msgid "Set your location" +msgstr "La tua posizione" + +#: include/conversation.php:1291 mod/editpost.php:111 +msgid "set location" +msgstr "posizione" + +#: include/conversation.php:1292 mod/editpost.php:112 +msgid "Clear browser location" +msgstr "Rimuovi la localizzazione data dal browser" + +#: include/conversation.php:1293 mod/editpost.php:113 +msgid "clear location" +msgstr "canc. pos." + +#: include/conversation.php:1295 mod/editpost.php:127 +msgid "Set title" +msgstr "Scegli un titolo" + +#: include/conversation.php:1297 mod/editpost.php:129 +msgid "Categories (comma-separated list)" +msgstr "Categorie (lista separata da virgola)" + +#: include/conversation.php:1299 mod/editpost.php:115 +msgid "Permission settings" +msgstr "Impostazioni permessi" + +#: include/conversation.php:1300 mod/editpost.php:144 +msgid "permissions" +msgstr "permessi" + +#: include/conversation.php:1308 mod/editpost.php:124 +msgid "Public post" +msgstr "Messaggio pubblico" + +#: include/conversation.php:1313 mod/content.php:737 mod/editpost.php:135 +#: mod/events.php:503 mod/photos.php:1647 mod/photos.php:1689 +#: mod/photos.php:1769 object/Item.php:714 +msgid "Preview" +msgstr "Anteprima" + +#: include/conversation.php:1317 include/items.php:2167 mod/contacts.php:455 +#: mod/editpost.php:138 mod/fbrowser.php:100 mod/fbrowser.php:135 +#: mod/suggest.php:32 mod/tagrm.php:11 mod/tagrm.php:96 +#: mod/dfrn_request.php:894 mod/follow.php:124 mod/message.php:209 +#: mod/photos.php:245 mod/photos.php:337 mod/settings.php:682 +#: mod/settings.php:708 mod/videos.php:132 +msgid "Cancel" +msgstr "Annulla" + +#: include/conversation.php:1323 +msgid "Post to Groups" +msgstr "Invia ai Gruppi" + +#: include/conversation.php:1324 +msgid "Post to Contacts" +msgstr "Invia ai Contatti" + +#: include/conversation.php:1325 +msgid "Private post" +msgstr "Post privato" + +#: include/conversation.php:1330 include/identity.php:264 mod/editpost.php:142 +msgid "Message" +msgstr "Messaggio" + +#: include/conversation.php:1331 mod/editpost.php:143 +msgid "Browser" +msgstr "Browser" + +#: include/conversation.php:1513 +msgid "View all" +msgstr "Mostra tutto" + +#: include/conversation.php:1535 +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Mi piace" +msgstr[1] "Mi piace" + +#: include/conversation.php:1538 +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Non mi piace" +msgstr[1] "Non mi piace" + +#: include/conversation.php:1544 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Non partecipa" +msgstr[1] "Non partecipano" + +#: include/datetime.php:66 include/datetime.php:68 mod/profiles.php:698 msgid "Miscellaneous" msgstr "Varie" -#: include/datetime.php:183 include/identity.php:629 +#: include/datetime.php:196 include/identity.php:644 msgid "Birthday:" msgstr "Compleanno:" -#: include/datetime.php:185 mod/profiles.php:728 +#: include/datetime.php:198 mod/profiles.php:721 msgid "Age: " msgstr "Età : " -#: include/datetime.php:187 +#: include/datetime.php:200 msgid "YYYY-MM-DD or MM-DD" msgstr "AAAA-MM-GG o MM-GG" -#: include/datetime.php:341 +#: include/datetime.php:370 msgid "never" msgstr "mai" -#: include/datetime.php:347 +#: include/datetime.php:376 msgid "less than a second ago" msgstr "meno di un secondo fa" -#: include/datetime.php:350 +#: include/datetime.php:379 msgid "year" msgstr "anno" -#: include/datetime.php:350 +#: include/datetime.php:379 msgid "years" msgstr "anni" -#: include/datetime.php:351 include/event.php:480 mod/cal.php:284 -#: mod/events.php:389 +#: include/datetime.php:380 include/event.php:519 mod/cal.php:279 +#: mod/events.php:384 msgid "month" msgstr "mese" -#: include/datetime.php:351 +#: include/datetime.php:380 msgid "months" msgstr "mesi" -#: include/datetime.php:352 include/event.php:481 mod/cal.php:285 -#: mod/events.php:390 +#: include/datetime.php:381 include/event.php:520 mod/cal.php:280 +#: mod/events.php:385 msgid "week" msgstr "settimana" -#: include/datetime.php:352 +#: include/datetime.php:381 msgid "weeks" msgstr "settimane" -#: include/datetime.php:353 include/event.php:482 mod/cal.php:286 -#: mod/events.php:391 +#: include/datetime.php:382 include/event.php:521 mod/cal.php:281 +#: mod/events.php:386 msgid "day" msgstr "giorno" -#: include/datetime.php:353 +#: include/datetime.php:382 msgid "days" msgstr "giorni" -#: include/datetime.php:354 +#: include/datetime.php:383 msgid "hour" msgstr "ora" -#: include/datetime.php:354 +#: include/datetime.php:383 msgid "hours" msgstr "ore" -#: include/datetime.php:355 +#: include/datetime.php:384 msgid "minute" msgstr "minuto" -#: include/datetime.php:355 +#: include/datetime.php:384 msgid "minutes" msgstr "minuti" -#: include/datetime.php:356 +#: include/datetime.php:385 msgid "second" msgstr "secondo" -#: include/datetime.php:356 +#: include/datetime.php:385 msgid "seconds" msgstr "secondi" -#: include/datetime.php:365 +#: include/datetime.php:394 #, php-format msgid "%1$d %2$s ago" msgstr "%1$d %2$s fa" -#: include/datetime.php:572 +#: include/datetime.php:620 #, php-format msgid "%s's birthday" msgstr "Compleanno di %s" -#: include/datetime.php:573 include/dfrn.php:1109 +#: include/datetime.php:621 include/dfrn.php:1252 #, php-format msgid "Happy Birthday %s" msgstr "Buon compleanno %s" +#: include/dba_pdo.php:72 include/dba.php:47 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Non trovo le informazioni DNS per il database server '%s'" + #: include/enotify.php:24 msgid "Friendica Notification" msgstr "Notifica Friendica" @@ -811,10 +1625,6 @@ msgstr "Amministratore %s" msgid "%1$s, %2$s Administrator" msgstr "%1$s, amministratore di %2$s" -#: include/enotify.php:43 include/delivery.php:457 -msgid "noreply" -msgstr "nessuna risposta" - #: include/enotify.php:70 #, php-format msgid "%s " @@ -1090,1313 +1900,408 @@ 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/event.php:16 include/bb2diaspora.php:152 mod/localtime.php:12 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" - -#: include/event.php:33 include/event.php:51 include/event.php:487 -#: include/bb2diaspora.php:158 -msgid "Starts:" -msgstr "Inizia:" - -#: include/event.php:36 include/event.php:57 include/event.php:488 -#: include/bb2diaspora.php:166 -msgid "Finishes:" -msgstr "Finisce:" - -#: include/event.php:39 include/event.php:63 include/event.php:489 -#: include/bb2diaspora.php:174 include/identity.php:328 -#: mod/notifications.php:232 mod/directory.php:137 mod/events.php:494 -#: mod/contacts.php:628 -msgid "Location:" -msgstr "Posizione:" - -#: include/event.php:441 -msgid "Sun" -msgstr "Dom" - -#: include/event.php:442 -msgid "Mon" -msgstr "Lun" - -#: include/event.php:443 -msgid "Tue" -msgstr "Mar" - -#: include/event.php:444 -msgid "Wed" -msgstr "Mer" - -#: include/event.php:445 -msgid "Thu" -msgstr "Gio" - -#: include/event.php:446 -msgid "Fri" -msgstr "Ven" - -#: include/event.php:447 -msgid "Sat" -msgstr "Sab" - -#: include/event.php:448 include/text.php:1130 mod/settings.php:972 -msgid "Sunday" -msgstr "Domenica" - -#: include/event.php:449 include/text.php:1130 mod/settings.php:972 -msgid "Monday" -msgstr "Lunedì" - -#: include/event.php:450 include/text.php:1130 -msgid "Tuesday" -msgstr "Martedì" - -#: include/event.php:451 include/text.php:1130 -msgid "Wednesday" -msgstr "Mercoledì" - -#: include/event.php:452 include/text.php:1130 -msgid "Thursday" -msgstr "Giovedì" - -#: include/event.php:453 include/text.php:1130 -msgid "Friday" -msgstr "Venerdì" - -#: include/event.php:454 include/text.php:1130 -msgid "Saturday" -msgstr "Sabato" - -#: include/event.php:455 -msgid "Jan" -msgstr "Gen" - -#: include/event.php:456 -msgid "Feb" -msgstr "Feb" - -#: include/event.php:457 -msgid "Mar" -msgstr "Mar" - -#: include/event.php:458 -msgid "Apr" -msgstr "Apr" - -#: include/event.php:459 include/event.php:471 include/text.php:1134 -msgid "May" -msgstr "Maggio" - -#: include/event.php:460 -msgid "Jun" -msgstr "Giu" - -#: include/event.php:461 -msgid "Jul" -msgstr "Lug" - -#: include/event.php:462 -msgid "Aug" -msgstr "Ago" - -#: include/event.php:463 -msgid "Sept" -msgstr "Set" - -#: include/event.php:464 -msgid "Oct" -msgstr "Ott" - -#: include/event.php:465 -msgid "Nov" -msgstr "Nov" - -#: include/event.php:466 -msgid "Dec" -msgstr "Dic" - -#: include/event.php:467 include/text.php:1134 -msgid "January" -msgstr "Gennaio" - -#: include/event.php:468 include/text.php:1134 -msgid "February" -msgstr "Febbraio" - -#: include/event.php:469 include/text.php:1134 -msgid "March" -msgstr "Marzo" - -#: include/event.php:470 include/text.php:1134 -msgid "April" -msgstr "Aprile" - -#: include/event.php:472 include/text.php:1134 -msgid "June" -msgstr "Giugno" - -#: include/event.php:473 include/text.php:1134 -msgid "July" -msgstr "Luglio" - -#: include/event.php:474 include/text.php:1134 -msgid "August" -msgstr "Agosto" - -#: include/event.php:475 include/text.php:1134 -msgid "September" -msgstr "Settembre" - -#: include/event.php:476 include/text.php:1134 -msgid "October" -msgstr "Ottobre" - -#: include/event.php:477 include/text.php:1134 -msgid "November" -msgstr "Novembre" - -#: include/event.php:478 include/text.php:1134 -msgid "December" -msgstr "Dicembre" - -#: include/event.php:479 mod/cal.php:283 mod/events.php:388 -msgid "today" -msgstr "oggi" - -#: include/event.php:483 +#: include/event.php:474 msgid "all-day" msgstr "tutto il giorno" -#: include/event.php:485 +#: include/event.php:476 +msgid "Sun" +msgstr "Dom" + +#: include/event.php:477 +msgid "Mon" +msgstr "Lun" + +#: include/event.php:478 +msgid "Tue" +msgstr "Mar" + +#: include/event.php:479 +msgid "Wed" +msgstr "Mer" + +#: include/event.php:480 +msgid "Thu" +msgstr "Gio" + +#: include/event.php:481 +msgid "Fri" +msgstr "Ven" + +#: include/event.php:482 +msgid "Sat" +msgstr "Sab" + +#: include/event.php:484 include/text.php:1198 mod/settings.php:981 +msgid "Sunday" +msgstr "Domenica" + +#: include/event.php:485 include/text.php:1198 mod/settings.php:981 +msgid "Monday" +msgstr "Lunedì" + +#: include/event.php:486 include/text.php:1198 +msgid "Tuesday" +msgstr "Martedì" + +#: include/event.php:487 include/text.php:1198 +msgid "Wednesday" +msgstr "Mercoledì" + +#: include/event.php:488 include/text.php:1198 +msgid "Thursday" +msgstr "Giovedì" + +#: include/event.php:489 include/text.php:1198 +msgid "Friday" +msgstr "Venerdì" + +#: include/event.php:490 include/text.php:1198 +msgid "Saturday" +msgstr "Sabato" + +#: include/event.php:492 +msgid "Jan" +msgstr "Gen" + +#: include/event.php:493 +msgid "Feb" +msgstr "Feb" + +#: include/event.php:494 +msgid "Mar" +msgstr "Mar" + +#: include/event.php:495 +msgid "Apr" +msgstr "Apr" + +#: include/event.php:496 include/event.php:509 include/text.php:1202 +msgid "May" +msgstr "Maggio" + +#: include/event.php:497 +msgid "Jun" +msgstr "Giu" + +#: include/event.php:498 +msgid "Jul" +msgstr "Lug" + +#: include/event.php:499 +msgid "Aug" +msgstr "Ago" + +#: include/event.php:500 +msgid "Sept" +msgstr "Set" + +#: include/event.php:501 +msgid "Oct" +msgstr "Ott" + +#: include/event.php:502 +msgid "Nov" +msgstr "Nov" + +#: include/event.php:503 +msgid "Dec" +msgstr "Dic" + +#: include/event.php:505 include/text.php:1202 +msgid "January" +msgstr "Gennaio" + +#: include/event.php:506 include/text.php:1202 +msgid "February" +msgstr "Febbraio" + +#: include/event.php:507 include/text.php:1202 +msgid "March" +msgstr "Marzo" + +#: include/event.php:508 include/text.php:1202 +msgid "April" +msgstr "Aprile" + +#: include/event.php:510 include/text.php:1202 +msgid "June" +msgstr "Giugno" + +#: include/event.php:511 include/text.php:1202 +msgid "July" +msgstr "Luglio" + +#: include/event.php:512 include/text.php:1202 +msgid "August" +msgstr "Agosto" + +#: include/event.php:513 include/text.php:1202 +msgid "September" +msgstr "Settembre" + +#: include/event.php:514 include/text.php:1202 +msgid "October" +msgstr "Ottobre" + +#: include/event.php:515 include/text.php:1202 +msgid "November" +msgstr "Novembre" + +#: include/event.php:516 include/text.php:1202 +msgid "December" +msgstr "Dicembre" + +#: include/event.php:518 mod/cal.php:278 mod/events.php:383 +msgid "today" +msgstr "oggi" + +#: include/event.php:523 msgid "No events to display" msgstr "Nessun evento da mostrare" -#: include/event.php:574 +#: include/event.php:636 msgid "l, F j" msgstr "l j F" -#: include/event.php:593 +#: include/event.php:658 msgid "Edit event" msgstr "Modifica l'evento" -#: include/event.php:615 include/text.php:1532 include/text.php:1539 +#: include/event.php:659 +msgid "Delete event" +msgstr "Elimina evento" + +#: include/event.php:685 include/text.php:1600 include/text.php:1607 msgid "link to source" msgstr "Collegamento all'originale" -#: include/event.php:850 +#: include/event.php:939 msgid "Export" msgstr "Esporta" -#: include/event.php:851 +#: include/event.php:940 msgid "Export calendar as ical" msgstr "Esporta il calendario in formato ical" -#: include/event.php:852 +#: include/event.php:941 msgid "Export calendar as csv" msgstr "Esporta il calendario in formato csv" -#: include/nav.php:35 mod/navigation.php:19 -msgid "Nothing new here" -msgstr "Niente di nuovo qui" - -#: include/nav.php:39 mod/navigation.php:23 -msgid "Clear notifications" -msgstr "Pulisci le notifiche" - -#: include/nav.php:40 include/text.php:1015 -msgid "@name, !forum, #tags, content" -msgstr "@nome, !forum, #tag, contenuto" - -#: include/nav.php:78 view/theme/frio/theme.php:246 boot.php:1792 -msgid "Logout" -msgstr "Esci" - -#: include/nav.php:78 view/theme/frio/theme.php:246 -msgid "End this session" -msgstr "Finisci questa sessione" - -#: include/nav.php:81 include/identity.php:714 mod/contacts.php:637 -#: mod/contacts.php:833 view/theme/frio/theme.php:249 -msgid "Status" -msgstr "Stato" - -#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:249 -msgid "Your posts and conversations" -msgstr "I tuoi messaggi e le tue conversazioni" - -#: include/nav.php:82 include/identity.php:605 include/identity.php:691 -#: include/identity.php:722 mod/profperm.php:104 mod/newmember.php:32 -#: mod/contacts.php:639 mod/contacts.php:841 view/theme/frio/theme.php:250 -msgid "Profile" -msgstr "Profilo" - -#: include/nav.php:82 view/theme/frio/theme.php:250 -msgid "Your profile page" -msgstr "Pagina del tuo profilo" - -#: include/nav.php:83 include/identity.php:730 mod/fbrowser.php:32 -#: view/theme/frio/theme.php:251 -msgid "Photos" -msgstr "Foto" - -#: include/nav.php:83 view/theme/frio/theme.php:251 -msgid "Your photos" -msgstr "Le tue foto" - -#: include/nav.php:84 include/identity.php:738 include/identity.php:741 -#: view/theme/frio/theme.php:252 -msgid "Videos" -msgstr "Video" - -#: include/nav.php:84 view/theme/frio/theme.php:252 -msgid "Your videos" -msgstr "I tuoi video" - -#: include/nav.php:85 include/nav.php:149 include/identity.php:750 -#: include/identity.php:761 mod/cal.php:275 mod/events.php:379 -#: view/theme/frio/theme.php:253 view/theme/frio/theme.php:257 -msgid "Events" -msgstr "Eventi" - -#: include/nav.php:85 view/theme/frio/theme.php:253 -msgid "Your events" -msgstr "I tuoi eventi" - -#: include/nav.php:86 -msgid "Personal notes" -msgstr "Note personali" - -#: include/nav.php:86 -msgid "Your personal notes" -msgstr "Le tue note personali" - -#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1793 -msgid "Login" -msgstr "Accedi" - -#: include/nav.php:95 -msgid "Sign in" -msgstr "Entra" - -#: include/nav.php:105 include/nav.php:161 -#: include/NotificationsManager.php:174 -msgid "Home" -msgstr "Home" - -#: include/nav.php:105 -msgid "Home Page" -msgstr "Home Page" - -#: include/nav.php:109 mod/register.php:289 boot.php:1768 -msgid "Register" -msgstr "Registrati" - -#: include/nav.php:109 -msgid "Create an account" -msgstr "Crea un account" - -#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298 -msgid "Help" -msgstr "Guida" - -#: include/nav.php:115 -msgid "Help and documentation" -msgstr "Guida e documentazione" - -#: include/nav.php:119 -msgid "Apps" -msgstr "Applicazioni" - -#: include/nav.php:119 -msgid "Addon applications, utilities, games" -msgstr "Applicazioni, utilità e giochi aggiuntivi" - -#: include/nav.php:123 include/text.php:1012 mod/search.php:149 -msgid "Search" -msgstr "Cerca" - -#: include/nav.php:123 -msgid "Search site content" -msgstr "Cerca nel contenuto del sito" - -#: include/nav.php:126 include/text.php:1020 -msgid "Full Text" -msgstr "Testo Completo" - -#: include/nav.php:127 include/text.php:1021 -msgid "Tags" -msgstr "Tags:" - -#: include/nav.php:128 include/nav.php:192 include/identity.php:783 -#: include/identity.php:786 include/text.php:1022 mod/contacts.php:792 -#: mod/contacts.php:853 mod/viewcontacts.php:116 view/theme/frio/theme.php:260 -msgid "Contacts" -msgstr "Contatti" - -#: include/nav.php:143 include/nav.php:145 mod/community.php:36 -msgid "Community" -msgstr "Comunità" - -#: include/nav.php:143 -msgid "Conversations on this site" -msgstr "Conversazioni su questo sito" - -#: include/nav.php:145 -msgid "Conversations on the network" -msgstr "Conversazioni nella rete" - -#: include/nav.php:149 include/identity.php:753 include/identity.php:764 -#: view/theme/frio/theme.php:257 -msgid "Events and Calendar" -msgstr "Eventi e calendario" - -#: include/nav.php:152 -msgid "Directory" -msgstr "Elenco" - -#: include/nav.php:152 -msgid "People directory" -msgstr "Elenco delle persone" - -#: include/nav.php:154 -msgid "Information" -msgstr "Informazioni" - -#: include/nav.php:154 -msgid "Information about this friendica instance" -msgstr "Informazioni su questo server friendica" - -#: include/nav.php:158 include/NotificationsManager.php:160 mod/admin.php:411 -#: view/theme/frio/theme.php:256 -msgid "Network" -msgstr "Rete" - -#: include/nav.php:158 view/theme/frio/theme.php:256 -msgid "Conversations from your friends" -msgstr "Conversazioni dai tuoi amici" - -#: include/nav.php:159 -msgid "Network Reset" -msgstr "Reset pagina Rete" - -#: include/nav.php:159 -msgid "Load Network page with no filters" -msgstr "Carica la pagina Rete senza nessun filtro" - -#: include/nav.php:166 include/NotificationsManager.php:181 -msgid "Introductions" -msgstr "Presentazioni" - -#: include/nav.php:166 -msgid "Friend Requests" -msgstr "Richieste di amicizia" - -#: include/nav.php:169 mod/notifications.php:96 -msgid "Notifications" -msgstr "Notifiche" - -#: include/nav.php:170 -msgid "See all notifications" -msgstr "Vedi tutte le notifiche" - -#: include/nav.php:171 mod/settings.php:902 -msgid "Mark as seen" -msgstr "Segna come letto" - -#: include/nav.php:171 -msgid "Mark all system notifications seen" -msgstr "Segna tutte le notifiche come viste" - -#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:258 -msgid "Messages" -msgstr "Messaggi" - -#: include/nav.php:175 view/theme/frio/theme.php:258 -msgid "Private mail" -msgstr "Posta privata" - -#: include/nav.php:176 -msgid "Inbox" -msgstr "In arrivo" - -#: include/nav.php:177 -msgid "Outbox" -msgstr "Inviati" - -#: include/nav.php:178 mod/message.php:16 -msgid "New Message" -msgstr "Nuovo messaggio" - -#: include/nav.php:181 -msgid "Manage" -msgstr "Gestisci" - -#: include/nav.php:181 -msgid "Manage other pages" -msgstr "Gestisci altre pagine" - -#: include/nav.php:184 mod/settings.php:81 -msgid "Delegations" -msgstr "Delegazioni" - -#: include/nav.php:184 mod/delegate.php:130 -msgid "Delegate Page Management" -msgstr "Gestione delegati per la pagina" - -#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111 -#: mod/admin.php:1524 mod/admin.php:1782 view/theme/frio/theme.php:259 -msgid "Settings" -msgstr "Impostazioni" - -#: include/nav.php:186 view/theme/frio/theme.php:259 -msgid "Account settings" -msgstr "Parametri account" - -#: include/nav.php:189 include/identity.php:282 -msgid "Profiles" -msgstr "Profili" - -#: include/nav.php:189 -msgid "Manage/Edit Profiles" -msgstr "Gestisci/Modifica i profili" - -#: include/nav.php:192 view/theme/frio/theme.php:260 -msgid "Manage/edit friends and contacts" -msgstr "Gestisci/modifica amici e contatti" - -#: include/nav.php:197 mod/admin.php:186 -msgid "Admin" -msgstr "Amministrazione" - -#: include/nav.php:197 -msgid "Site setup and configuration" -msgstr "Configurazione del sito" - -#: include/nav.php:200 -msgid "Navigation" -msgstr "Navigazione" - -#: include/nav.php:200 -msgid "Site map" -msgstr "Mappa del sito" - -#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62 -#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211 -#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807 -msgid "Contact Photos" -msgstr "Foto dei contatti" - -#: include/security.php:22 -msgid "Welcome " -msgstr "Ciao" - -#: include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Carica una foto per il profilo." - -#: include/security.php:26 -msgid "Welcome back " -msgstr "Ciao " - -#: include/security.php:373 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lungo (più di tre ore) prima di inviarla." - -#: include/NotificationsManager.php:153 -msgid "System" -msgstr "Sistema" - -#: include/NotificationsManager.php:167 mod/profiles.php:703 -#: mod/network.php:845 -msgid "Personal" -msgstr "Personale" - -#: include/NotificationsManager.php:234 include/NotificationsManager.php:244 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s ha commentato il messaggio di %s" - -#: include/NotificationsManager.php:243 -#, php-format -msgid "%s created a new post" -msgstr "%s a creato un nuovo messaggio" - -#: include/NotificationsManager.php:256 -#, php-format -msgid "%s liked %s's post" -msgstr "a %s è piaciuto il messaggio di %s" - -#: include/NotificationsManager.php:267 -#, php-format -msgid "%s disliked %s's post" -msgstr "a %s non è piaciuto il messaggio di %s" - -#: include/NotificationsManager.php:278 -#, php-format -msgid "%s is attending %s's event" -msgstr "%s partecipa all'evento di %s" - -#: include/NotificationsManager.php:289 -#, php-format -msgid "%s is not attending %s's event" -msgstr "%s non partecipa all'evento di %s" - -#: include/NotificationsManager.php:300 -#, php-format -msgid "%s may attend %s's event" -msgstr "%s potrebbe partecipare all'evento di %s" - -#: include/NotificationsManager.php:315 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s è ora amico di %s" - -#: include/NotificationsManager.php:748 -msgid "Friend Suggestion" -msgstr "Amico suggerito" - -#: include/NotificationsManager.php:781 -msgid "Friend/Connect Request" -msgstr "Richiesta amicizia/connessione" - -#: include/NotificationsManager.php:781 -msgid "New Follower" -msgstr "Qualcuno inizia a seguirti" - -#: include/dbstructure.php:26 -#, php-format -msgid "" -"\n" -"\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." -msgstr "\nGli sviluppatori di Friendica hanno rilasciato l'aggiornamento %s\nrecentemente, ma quando ho provato a installarlo, qualcosa è \nandato terribilmente storto.\nBisogna sistemare le cose e non posso farlo da solo.\nContatta uno sviluppatore se non puoi aiutarmi da solo. Il mio database potrebbe essere invalido." - -#: include/dbstructure.php:31 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "Il messaggio di errore è\n[pre]%s[/pre]" - -#: include/dbstructure.php:183 -msgid "Errors encountered creating database tables." -msgstr "La creazione delle tabelle del database ha generato errori." - -#: include/dbstructure.php:260 -msgid "Errors encountered performing database changes." -msgstr "Riscontrati errori applicando le modifiche al database." - -#: include/delivery.php:446 -msgid "(no subject)" -msgstr "(nessun oggetto)" - -#: include/diaspora.php:1958 -msgid "Sharing notification from Diaspora network" -msgstr "Notifica di condivisione dal network Diaspora*" - -#: include/diaspora.php:2864 -msgid "Attachments:" -msgstr "Allegati:" - -#: include/network.php:595 -msgid "view full size" -msgstr "vedi a schermo intero" - -#: include/Contact.php:340 include/Contact.php:353 include/Contact.php:398 -#: include/conversation.php:968 include/conversation.php:984 -#: mod/allfriends.php:65 mod/directory.php:155 mod/dirfind.php:203 -#: mod/match.php:71 mod/suggest.php:82 -msgid "View Profile" -msgstr "Visualizza profilo" - -#: include/Contact.php:397 include/conversation.php:967 -msgid "View Status" -msgstr "Visualizza stato" - -#: include/Contact.php:399 include/conversation.php:969 -msgid "View Photos" -msgstr "Visualizza foto" - -#: include/Contact.php:400 include/conversation.php:970 -msgid "Network Posts" -msgstr "Post della Rete" - -#: include/Contact.php:401 include/conversation.php:971 -msgid "View Contact" -msgstr "Mostra contatto" - -#: include/Contact.php:402 -msgid "Drop Contact" -msgstr "Rimuovi contatto" - -#: include/Contact.php:403 include/conversation.php:972 -msgid "Send PM" -msgstr "Invia messaggio privato" - -#: include/Contact.php:404 include/conversation.php:976 -msgid "Poke" -msgstr "Stuzzica" - -#: include/Contact.php:775 -msgid "Organisation" -msgstr "Organizzazione" - -#: include/Contact.php:778 -msgid "News" -msgstr "Notizie" - -#: include/Contact.php:781 -msgid "Forum" -msgstr "Forum" - -#: include/api.php:1018 -#, php-format -msgid "Daily posting limit of %d posts reached. The post was rejected." -msgstr "Limite giornaliero di %d messaggi raggiunto. Il messaggio è stato rifiutato" - -#: include/api.php:1038 -#, php-format -msgid "Weekly posting limit of %d posts reached. The post was rejected." -msgstr "Limite settimanale di %d messaggi raggiunto. Il messaggio è stato rifiutato" - -#: include/api.php:1059 -#, php-format -msgid "Monthly posting limit of %d posts reached. The post was rejected." -msgstr "Limite mensile di %d messaggi raggiunto. Il messaggio è stato rifiutato" - -#: include/bbcode.php:350 include/bbcode.php:1057 include/bbcode.php:1058 -msgid "Image/photo" -msgstr "Immagine/foto" - -#: include/bbcode.php:467 -#, php-format -msgid "%2$s %3$s" -msgstr "%2$s %3$s" - -#: include/bbcode.php:1017 include/bbcode.php:1037 -msgid "$1 wrote:" -msgstr "$1 ha scritto:" - -#: include/bbcode.php:1066 include/bbcode.php:1067 -msgid "Encrypted content" -msgstr "Contenuto criptato" - -#: include/bbcode.php:1169 -msgid "Invalid source protocol" -msgstr "Protocollo sorgente non valido" - -#: include/bbcode.php:1179 -msgid "Invalid link protocol" -msgstr "Protocollo link non valido" - -#: include/conversation.php:147 -#, php-format -msgid "%1$s attends %2$s's %3$s" -msgstr "%1$s partecipa a %3$s di %2$s" - -#: include/conversation.php:150 -#, php-format -msgid "%1$s doesn't attend %2$s's %3$s" -msgstr "%1$s non partecipa a %3$s di %2$s" - -#: include/conversation.php:153 -#, php-format -msgid "%1$s attends maybe %2$s's %3$s" -msgstr "%1$s forse partecipa a %3$s di %2$s" - -#: include/conversation.php:185 mod/dfrn_confirm.php:477 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s e %2$s adesso sono amici" - -#: include/conversation.php:219 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s ha stuzzicato %2$s" - -#: include/conversation.php:239 mod/mood.php:62 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s al momento è %2$s" - -#: include/conversation.php:278 mod/tagger.php:95 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s ha taggato %3$s di %2$s con %4$s" - -#: include/conversation.php:303 -msgid "post/item" -msgstr "post/elemento" - -#: include/conversation.php:304 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s ha segnato il/la %3$s di %2$s come preferito" - -#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:346 -#: mod/photos.php:1607 -msgid "Likes" -msgstr "Mi piace" - -#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350 -#: mod/photos.php:1607 -msgid "Dislikes" -msgstr "Non mi piace" - -#: include/conversation.php:586 include/conversation.php:1481 -#: mod/content.php:373 mod/photos.php:1608 -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Partecipa" -msgstr[1] "Partecipano" - -#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608 -msgid "Not attending" -msgstr "Non partecipa" - -#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608 -msgid "Might attend" -msgstr "Forse partecipa" - -#: include/conversation.php:708 mod/content.php:453 mod/content.php:758 -#: mod/photos.php:1681 object/Item.php:133 -msgid "Select" -msgstr "Seleziona" - -#: include/conversation.php:709 mod/group.php:171 mod/content.php:454 -#: mod/content.php:759 mod/photos.php:1682 mod/settings.php:741 -#: mod/admin.php:1414 mod/contacts.php:808 mod/contacts.php:1007 -#: object/Item.php:134 -msgid "Delete" -msgstr "Rimuovi" - -#: include/conversation.php:753 mod/content.php:487 mod/content.php:910 -#: mod/content.php:911 object/Item.php:367 object/Item.php:368 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Vedi il profilo di %s @ %s" - -#: include/conversation.php:765 object/Item.php:355 -msgid "Categories:" -msgstr "Categorie:" - -#: include/conversation.php:766 object/Item.php:356 -msgid "Filed under:" -msgstr "Archiviato in:" - -#: include/conversation.php:773 mod/content.php:497 mod/content.php:923 -#: object/Item.php:381 -#, php-format -msgid "%s from %s" -msgstr "%s da %s" - -#: include/conversation.php:789 mod/content.php:513 -msgid "View in context" -msgstr "Vedi nel contesto" - -#: include/conversation.php:791 include/conversation.php:1264 -#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356 -#: mod/message.php:548 mod/content.php:515 mod/content.php:948 -#: mod/photos.php:1570 object/Item.php:406 -msgid "Please wait" -msgstr "Attendi" - -#: include/conversation.php:870 -msgid "remove" -msgstr "rimuovi" - -#: include/conversation.php:874 -msgid "Delete Selected Items" -msgstr "Cancella elementi selezionati" - -#: include/conversation.php:966 -msgid "Follow Thread" -msgstr "Segui la discussione" - -#: include/conversation.php:1097 -#, php-format -msgid "%s likes this." -msgstr "Piace a %s." - -#: include/conversation.php:1100 -#, php-format -msgid "%s doesn't like this." -msgstr "Non piace a %s." - -#: include/conversation.php:1103 -#, php-format -msgid "%s attends." -msgstr "%s partecipa." - -#: include/conversation.php:1106 -#, php-format -msgid "%s doesn't attend." -msgstr "%s non partecipa." - -#: include/conversation.php:1109 -#, php-format -msgid "%s attends maybe." -msgstr "%s forse partecipa." - -#: include/conversation.php:1119 -msgid "and" -msgstr "e" - -#: include/conversation.php:1125 -#, php-format -msgid ", and %d other people" -msgstr "e altre %d persone" - -#: include/conversation.php:1134 -#, php-format -msgid "%2$d people like this" -msgstr "Piace a %2$d persone." - -#: include/conversation.php:1135 -#, php-format -msgid "%s like this." -msgstr "a %s piace." - -#: include/conversation.php:1138 -#, php-format -msgid "%2$d people don't like this" -msgstr "Non piace a %2$d persone." - -#: include/conversation.php:1139 -#, php-format -msgid "%s don't like this." -msgstr "a %s non piace." - -#: include/conversation.php:1142 -#, php-format -msgid "%2$d people attend" -msgstr "%2$d persone partecipano" - -#: include/conversation.php:1143 -#, php-format -msgid "%s attend." -msgstr "%s partecipa." - -#: include/conversation.php:1146 -#, php-format -msgid "%2$d people don't attend" -msgstr "%2$d persone non partecipano" - -#: include/conversation.php:1147 -#, php-format -msgid "%s don't attend." -msgstr "%s non partecipa." - -#: include/conversation.php:1150 -#, php-format -msgid "%2$d people attend maybe" -msgstr "%2$d persone forse partecipano" - -#: include/conversation.php:1151 -#, php-format -msgid "%s anttend maybe." -msgstr "%s forse partecipano." - -#: include/conversation.php:1190 include/conversation.php:1208 -msgid "Visible to everybody" -msgstr "Visibile a tutti" - -#: include/conversation.php:1191 include/conversation.php:1209 -#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291 -#: mod/message.php:299 mod/message.php:442 mod/message.php:450 -msgid "Please enter a link URL:" -msgstr "Inserisci l'indirizzo del link:" - -#: include/conversation.php:1192 include/conversation.php:1210 -msgid "Please enter a video link/URL:" -msgstr "Inserisci un collegamento video / URL:" - -#: include/conversation.php:1193 include/conversation.php:1211 -msgid "Please enter an audio link/URL:" -msgstr "Inserisci un collegamento audio / URL:" - -#: include/conversation.php:1194 include/conversation.php:1212 -msgid "Tag term:" -msgstr "Tag:" - -#: include/conversation.php:1195 include/conversation.php:1213 -#: mod/filer.php:30 -msgid "Save to Folder:" -msgstr "Salva nella Cartella:" - -#: include/conversation.php:1196 include/conversation.php:1214 -msgid "Where are you right now?" -msgstr "Dove sei ora?" - -#: include/conversation.php:1197 -msgid "Delete item(s)?" -msgstr "Cancellare questo elemento/i?" - -#: include/conversation.php:1245 mod/photos.php:1569 -msgid "Share" -msgstr "Condividi" - -#: include/conversation.php:1246 mod/editpost.php:110 mod/wallmessage.php:154 -#: mod/message.php:354 mod/message.php:545 -msgid "Upload photo" -msgstr "Carica foto" - -#: include/conversation.php:1247 mod/editpost.php:111 -msgid "upload photo" -msgstr "carica foto" - -#: include/conversation.php:1248 mod/editpost.php:112 -msgid "Attach file" -msgstr "Allega file" - -#: include/conversation.php:1249 mod/editpost.php:113 -msgid "attach file" -msgstr "allega file" - -#: include/conversation.php:1250 mod/editpost.php:114 mod/wallmessage.php:155 -#: mod/message.php:355 mod/message.php:546 -msgid "Insert web link" -msgstr "Inserisci link" - -#: include/conversation.php:1251 mod/editpost.php:115 -msgid "web link" -msgstr "link web" - -#: include/conversation.php:1252 mod/editpost.php:116 -msgid "Insert video link" -msgstr "Inserire collegamento video" - -#: include/conversation.php:1253 mod/editpost.php:117 -msgid "video link" -msgstr "link video" - -#: include/conversation.php:1254 mod/editpost.php:118 -msgid "Insert audio link" -msgstr "Inserisci collegamento audio" - -#: include/conversation.php:1255 mod/editpost.php:119 -msgid "audio link" -msgstr "link audio" - -#: include/conversation.php:1256 mod/editpost.php:120 -msgid "Set your location" -msgstr "La tua posizione" - -#: include/conversation.php:1257 mod/editpost.php:121 -msgid "set location" -msgstr "posizione" - -#: include/conversation.php:1258 mod/editpost.php:122 -msgid "Clear browser location" -msgstr "Rimuovi la localizzazione data dal browser" - -#: include/conversation.php:1259 mod/editpost.php:123 -msgid "clear location" -msgstr "canc. pos." - -#: include/conversation.php:1261 mod/editpost.php:137 -msgid "Set title" -msgstr "Scegli un titolo" - -#: include/conversation.php:1263 mod/editpost.php:139 -msgid "Categories (comma-separated list)" -msgstr "Categorie (lista separata da virgola)" - -#: include/conversation.php:1265 mod/editpost.php:125 -msgid "Permission settings" -msgstr "Impostazioni permessi" - -#: include/conversation.php:1266 mod/editpost.php:154 -msgid "permissions" -msgstr "permessi" - -#: include/conversation.php:1274 mod/editpost.php:134 -msgid "Public post" -msgstr "Messaggio pubblico" - -#: include/conversation.php:1279 mod/editpost.php:145 mod/content.php:737 -#: mod/events.php:504 mod/photos.php:1591 mod/photos.php:1639 -#: mod/photos.php:1725 object/Item.php:729 -msgid "Preview" -msgstr "Anteprima" - -#: include/conversation.php:1283 include/items.php:1974 mod/fbrowser.php:101 -#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/editpost.php:148 -#: mod/message.php:220 mod/suggest.php:32 mod/photos.php:235 -#: mod/photos.php:322 mod/settings.php:679 mod/settings.php:705 -#: mod/videos.php:128 mod/contacts.php:445 mod/dfrn_request.php:876 -#: mod/follow.php:121 -msgid "Cancel" -msgstr "Annulla" - -#: include/conversation.php:1289 -msgid "Post to Groups" -msgstr "Invia ai Gruppi" - -#: include/conversation.php:1290 -msgid "Post to Contacts" -msgstr "Invia ai Contatti" - -#: include/conversation.php:1291 -msgid "Private post" -msgstr "Post privato" - -#: include/conversation.php:1296 include/identity.php:256 mod/editpost.php:152 -msgid "Message" -msgstr "Messaggio" - -#: include/conversation.php:1297 mod/editpost.php:153 -msgid "Browser" -msgstr "Browser" - -#: include/conversation.php:1453 -msgid "View all" -msgstr "Mostra tutto" - -#: include/conversation.php:1475 -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Mi piace" -msgstr[1] "Mi piace" - -#: include/conversation.php:1478 -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Non mi piace" -msgstr[1] "Non mi piace" - -#: include/conversation.php:1484 -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Non partecipa" -msgstr[1] "Non partecipano" - -#: include/dfrn.php:1108 -#, php-format -msgid "%s\\'s birthday" -msgstr "compleanno di %s" - -#: include/features.php:70 +#: include/features.php:65 msgid "General Features" msgstr "Funzionalità generali" -#: include/features.php:72 +#: include/features.php:67 msgid "Multiple Profiles" msgstr "Profili multipli" -#: include/features.php:72 +#: include/features.php:67 msgid "Ability to create multiple profiles" msgstr "Possibilità di creare profili multipli" -#: include/features.php:73 +#: include/features.php:68 msgid "Photo Location" msgstr "Località Foto" -#: include/features.php:73 +#: include/features.php:68 msgid "" "Photo metadata is normally stripped. This extracts the location (if present)" " prior to stripping metadata and links it to a map." msgstr "I metadati delle foto vengono rimossi. Questa opzione estrae la località (se presenta) prima di rimuovere i metadati e la collega a una mappa." -#: include/features.php:74 +#: include/features.php:69 msgid "Export Public Calendar" msgstr "Esporta calendario pubblico" -#: include/features.php:74 +#: include/features.php:69 msgid "Ability for visitors to download the public calendar" msgstr "Permesso ai visitatori di scaricare il calendario pubblico" -#: include/features.php:79 +#: include/features.php:74 msgid "Post Composition Features" msgstr "Funzionalità di composizione dei post" -#: include/features.php:80 -msgid "Richtext Editor" -msgstr "Editor visuale" - -#: include/features.php:80 -msgid "Enable richtext editor" -msgstr "Abilita l'editor visuale" - -#: include/features.php:81 +#: include/features.php:75 msgid "Post Preview" msgstr "Anteprima dei post" -#: include/features.php:81 +#: include/features.php:75 msgid "Allow previewing posts and comments before publishing them" msgstr "Permetti di avere un'anteprima di messaggi e commenti prima di pubblicarli" -#: include/features.php:82 +#: include/features.php:76 msgid "Auto-mention Forums" msgstr "Auto-cita i Forum" -#: include/features.php:82 +#: include/features.php:76 msgid "" "Add/remove mention when a forum page is selected/deselected in ACL window." msgstr "Aggiunge/rimuove una menzione quando una pagina forum è selezionata/deselezionata nella finestra dei permessi." -#: include/features.php:87 +#: include/features.php:81 msgid "Network Sidebar Widgets" msgstr "Widget della barra laterale nella pagina Rete" -#: include/features.php:88 +#: include/features.php:82 msgid "Search by Date" msgstr "Cerca per data" -#: include/features.php:88 +#: include/features.php:82 msgid "Ability to select posts by date ranges" msgstr "Permette di filtrare i post per data" -#: include/features.php:89 include/features.php:119 +#: include/features.php:83 include/features.php:113 msgid "List Forums" msgstr "Elenco forum" -#: include/features.php:89 +#: include/features.php:83 msgid "Enable widget to display the forums your are connected with" msgstr "Abilita il widget che mostra i forum ai quali sei connesso" -#: include/features.php:90 +#: include/features.php:84 msgid "Group Filter" msgstr "Filtra gruppi" -#: include/features.php:90 +#: include/features.php:84 msgid "Enable widget to display Network posts only from selected group" msgstr "Abilita il widget per filtrare i post solo per il gruppo selezionato" -#: include/features.php:91 +#: include/features.php:85 msgid "Network Filter" msgstr "Filtro reti" -#: include/features.php:91 +#: include/features.php:85 msgid "Enable widget to display Network posts only from selected network" msgstr "Abilita il widget per mostrare i post solo per la rete selezionata" -#: include/features.php:92 mod/search.php:34 mod/network.php:200 +#: include/features.php:86 mod/network.php:206 mod/search.php:34 msgid "Saved Searches" msgstr "Ricerche salvate" -#: include/features.php:92 +#: include/features.php:86 msgid "Save search terms for re-use" msgstr "Salva i termini cercati per riutilizzarli" -#: include/features.php:97 +#: include/features.php:91 msgid "Network Tabs" msgstr "Schede pagina Rete" -#: include/features.php:98 +#: include/features.php:92 msgid "Network Personal Tab" msgstr "Scheda Personali" -#: include/features.php:98 +#: include/features.php:92 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "Abilita la scheda per mostrare solo i post a cui hai partecipato" -#: include/features.php:99 +#: include/features.php:93 msgid "Network New Tab" msgstr "Scheda Nuovi" -#: include/features.php:99 +#: include/features.php:93 msgid "Enable tab to display only new Network posts (from the last 12 hours)" msgstr "Abilita la scheda per mostrare solo i post nuovi (nelle ultime 12 ore)" -#: include/features.php:100 +#: include/features.php:94 msgid "Network Shared Links Tab" msgstr "Scheda Link Condivisi" -#: include/features.php:100 +#: include/features.php:94 msgid "Enable tab to display only Network posts with links in them" msgstr "Abilita la scheda per mostrare solo i post che contengono link" -#: include/features.php:105 +#: include/features.php:99 msgid "Post/Comment Tools" msgstr "Strumenti per messaggi/commenti" -#: include/features.php:106 +#: include/features.php:100 msgid "Multiple Deletion" msgstr "Eliminazione multipla" -#: include/features.php:106 +#: include/features.php:100 msgid "Select and delete multiple posts/comments at once" msgstr "Seleziona ed elimina vari messaggi e commenti in una volta sola" -#: include/features.php:107 +#: include/features.php:101 msgid "Edit Sent Posts" msgstr "Modifica i post inviati" -#: include/features.php:107 +#: include/features.php:101 msgid "Edit and correct posts and comments after sending" msgstr "Modifica e correggi messaggi e commenti dopo averli inviati" -#: include/features.php:108 +#: include/features.php:102 msgid "Tagging" msgstr "Aggiunta tag" -#: include/features.php:108 +#: include/features.php:102 msgid "Ability to tag existing posts" msgstr "Permette di aggiungere tag ai post già esistenti" -#: include/features.php:109 +#: include/features.php:103 msgid "Post Categories" msgstr "Categorie post" -#: include/features.php:109 +#: include/features.php:103 msgid "Add categories to your posts" msgstr "Aggiungi categorie ai tuoi post" -#: include/features.php:110 +#: include/features.php:104 msgid "Ability to file posts under folders" msgstr "Permette di archiviare i post in cartelle" -#: include/features.php:111 +#: include/features.php:105 msgid "Dislike Posts" msgstr "Non mi piace" -#: include/features.php:111 +#: include/features.php:105 msgid "Ability to dislike posts/comments" msgstr "Permetti di inviare \"non mi piace\" ai messaggi" -#: include/features.php:112 +#: include/features.php:106 msgid "Star Posts" msgstr "Post preferiti" -#: include/features.php:112 +#: include/features.php:106 msgid "Ability to mark special posts with a star indicator" msgstr "Permette di segnare i post preferiti con una stella" -#: include/features.php:113 +#: include/features.php:107 msgid "Mute Post Notifications" msgstr "Silenzia le notifiche di nuovi post" -#: include/features.php:113 +#: include/features.php:107 msgid "Ability to mute notifications for a thread" msgstr "Permette di silenziare le notifiche di nuovi post in una discussione" -#: include/features.php:118 +#: include/features.php:112 msgid "Advanced Profile Settings" msgstr "Impostazioni Avanzate Profilo" -#: include/features.php:119 +#: include/features.php:113 msgid "Show visitors public community forums at the Advanced Profile Page" msgstr "Mostra ai visitatori i forum nella pagina Profilo Avanzato" -#: include/follow.php:81 mod/dfrn_request.php:509 +#: include/follow.php:81 mod/dfrn_request.php:512 msgid "Disallowed profile URL." msgstr "Indirizzo profilo non permesso." -#: include/follow.php:86 +#: include/follow.php:86 mod/dfrn_request.php:518 mod/friendica.php:114 +#: mod/admin.php:279 mod/admin.php:297 +msgid "Blocked domain" +msgstr "Dominio bloccato" + +#: include/follow.php:91 msgid "Connect URL missing." msgstr "URL di connessione mancante." -#: include/follow.php:113 +#: include/follow.php:119 msgid "" "This site is not configured to allow communications with other networks." msgstr "Questo sito non è configurato per permettere la comunicazione con altri network." -#: include/follow.php:114 include/follow.php:134 +#: include/follow.php:120 include/follow.php:134 msgid "No compatible communication protocols or feeds were discovered." msgstr "Non sono stati trovati protocolli di comunicazione o feed compatibili." @@ -2404,554 +2309,324 @@ msgstr "Non sono stati trovati protocolli di comunicazione o feed compatibili." msgid "The profile address specified does not provide adequate information." msgstr "L'indirizzo del profilo specificato non fornisce adeguate informazioni." -#: include/follow.php:136 +#: include/follow.php:137 msgid "An author or name was not found." msgstr "Non è stato trovato un nome o un autore" -#: include/follow.php:138 +#: include/follow.php:140 msgid "No browser URL could be matched to this address." msgstr "Nessun URL può essere associato a questo indirizzo." -#: include/follow.php:140 +#: include/follow.php:143 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email." -#: include/follow.php:141 +#: include/follow.php:144 msgid "Use mailto: in front of address to force email check." msgstr "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email." -#: include/follow.php:147 +#: include/follow.php:150 msgid "" "The profile address specified belongs to a network which has been disabled " "on this site." msgstr "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito." -#: include/follow.php:157 +#: include/follow.php:155 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te." -#: include/follow.php:258 +#: include/follow.php:256 msgid "Unable to retrieve contact information." msgstr "Impossibile recuperare informazioni sul contatto." -#: include/identity.php:42 +#: 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:210 +msgid "Default privacy group for new contacts" +msgstr "Gruppo predefinito per i nuovi contatti" + +#: include/group.php:243 +msgid "Everybody" +msgstr "Tutti" + +#: include/group.php:266 +msgid "edit" +msgstr "modifica" + +#: include/group.php:287 mod/newmember.php:61 +msgid "Groups" +msgstr "Gruppi" + +#: include/group.php:289 +msgid "Edit groups" +msgstr "Modifica gruppi" + +#: include/group.php:291 +msgid "Edit group" +msgstr "Modifica gruppo" + +#: include/group.php:292 +msgid "Create a new group" +msgstr "Crea un nuovo gruppo" + +#: include/group.php:293 mod/group.php:99 mod/group.php:196 +msgid "Group Name: " +msgstr "Nome del gruppo:" + +#: include/group.php:295 +msgid "Contacts not in any group" +msgstr "Contatti in nessun gruppo." + +#: include/group.php:297 mod/network.php:207 +msgid "add" +msgstr "aggiungi" + +#: include/identity.php:43 msgid "Requested account is not available." msgstr "L'account richiesto non è disponibile." -#: include/identity.php:51 mod/profile.php:21 +#: include/identity.php:52 mod/profile.php:21 msgid "Requested profile is not available." msgstr "Profilo richiesto non disponibile." -#: include/identity.php:95 include/identity.php:311 include/identity.php:688 +#: include/identity.php:96 include/identity.php:319 include/identity.php:740 msgid "Edit profile" msgstr "Modifica il profilo" -#: include/identity.php:251 +#: include/identity.php:259 msgid "Atom feed" msgstr "Feed Atom" -#: include/identity.php:282 +#: include/identity.php:290 msgid "Manage/edit profiles" msgstr "Gestisci/modifica i profili" -#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795 +#: include/identity.php:295 include/identity.php:321 mod/profiles.php:787 msgid "Change profile photo" msgstr "Cambia la foto del profilo" -#: include/identity.php:288 mod/profiles.php:796 +#: include/identity.php:296 mod/profiles.php:788 msgid "Create New Profile" msgstr "Crea un nuovo profilo" -#: include/identity.php:298 mod/profiles.php:785 +#: include/identity.php:306 mod/profiles.php:777 msgid "Profile Image" msgstr "Immagine del Profilo" -#: include/identity.php:301 mod/profiles.php:787 +#: include/identity.php:309 mod/profiles.php:779 msgid "visible to everybody" msgstr "visibile a tutti" -#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788 +#: include/identity.php:310 mod/profiles.php:684 mod/profiles.php:780 msgid "Edit visibility" msgstr "Modifica visibilità" -#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238 -#: mod/directory.php:139 +#: include/identity.php:338 include/identity.php:633 mod/directory.php:141 +#: mod/notifications.php:250 msgid "Gender:" msgstr "Genere:" -#: include/identity.php:333 include/identity.php:636 mod/directory.php:141 +#: include/identity.php:341 include/identity.php:651 mod/directory.php:143 msgid "Status:" msgstr "Stato:" -#: include/identity.php:335 include/identity.php:647 mod/directory.php:143 +#: include/identity.php:343 include/identity.php:667 mod/directory.php:145 msgid "Homepage:" msgstr "Homepage:" -#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234 -#: mod/directory.php:145 mod/contacts.php:632 +#: include/identity.php:345 include/identity.php:687 mod/contacts.php:640 +#: mod/directory.php:147 mod/notifications.php:246 msgid "About:" msgstr "Informazioni:" -#: include/identity.php:339 mod/contacts.php:630 +#: include/identity.php:347 mod/contacts.php:638 msgid "XMPP:" msgstr "XMPP:" -#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50 +#: include/identity.php:433 mod/contacts.php:55 mod/notifications.php:258 msgid "Network:" msgstr "Rete:" -#: include/identity.php:451 include/identity.php:535 +#: include/identity.php:462 include/identity.php:552 msgid "g A l F d" msgstr "g A l d F" -#: include/identity.php:452 include/identity.php:536 +#: include/identity.php:463 include/identity.php:553 msgid "F d" msgstr "d F" -#: include/identity.php:497 include/identity.php:582 +#: include/identity.php:514 include/identity.php:599 msgid "[today]" msgstr "[oggi]" -#: include/identity.php:509 +#: include/identity.php:526 msgid "Birthday Reminders" msgstr "Promemoria compleanni" -#: include/identity.php:510 +#: include/identity.php:527 msgid "Birthdays this week:" msgstr "Compleanni questa settimana:" -#: include/identity.php:569 +#: include/identity.php:586 msgid "[No description]" msgstr "[Nessuna descrizione]" -#: include/identity.php:593 +#: include/identity.php:610 msgid "Event Reminders" msgstr "Promemoria" -#: include/identity.php:594 +#: include/identity.php:611 msgid "Events this week:" msgstr "Eventi di questa settimana:" -#: include/identity.php:614 mod/settings.php:1279 +#: include/identity.php:631 mod/settings.php:1286 msgid "Full Name:" msgstr "Nome completo:" -#: include/identity.php:621 +#: include/identity.php:636 msgid "j F, Y" msgstr "j F Y" -#: include/identity.php:622 +#: include/identity.php:637 msgid "j F" msgstr "j F" -#: include/identity.php:633 +#: include/identity.php:648 msgid "Age:" msgstr "Età:" -#: include/identity.php:642 +#: include/identity.php:659 #, php-format msgid "for %1$d %2$s" msgstr "per %1$d %2$s" -#: include/identity.php:645 mod/profiles.php:710 +#: include/identity.php:663 mod/profiles.php:703 msgid "Sexual Preference:" msgstr "Preferenze sessuali:" -#: include/identity.php:649 mod/profiles.php:737 +#: include/identity.php:671 mod/profiles.php:730 msgid "Hometown:" msgstr "Paese natale:" -#: include/identity.php:651 mod/notifications.php:236 mod/contacts.php:634 -#: mod/follow.php:134 +#: include/identity.php:675 mod/contacts.php:642 mod/follow.php:137 +#: mod/notifications.php:248 msgid "Tags:" msgstr "Tag:" -#: include/identity.php:653 mod/profiles.php:738 +#: include/identity.php:679 mod/profiles.php:731 msgid "Political Views:" msgstr "Orientamento politico:" -#: include/identity.php:655 +#: include/identity.php:683 msgid "Religion:" msgstr "Religione:" -#: include/identity.php:659 +#: include/identity.php:691 msgid "Hobbies/Interests:" msgstr "Hobby/Interessi:" -#: include/identity.php:661 mod/profiles.php:742 +#: include/identity.php:695 mod/profiles.php:735 msgid "Likes:" msgstr "Mi piace:" -#: include/identity.php:663 mod/profiles.php:743 +#: include/identity.php:699 mod/profiles.php:736 msgid "Dislikes:" msgstr "Non mi piace:" -#: include/identity.php:666 +#: include/identity.php:703 msgid "Contact information and Social Networks:" msgstr "Informazioni su contatti e social network:" -#: include/identity.php:668 +#: include/identity.php:707 msgid "Musical interests:" msgstr "Interessi musicali:" -#: include/identity.php:670 +#: include/identity.php:711 msgid "Books, literature:" msgstr "Libri, letteratura:" -#: include/identity.php:672 +#: include/identity.php:715 msgid "Television:" msgstr "Televisione:" -#: include/identity.php:674 +#: include/identity.php:719 msgid "Film/dance/culture/entertainment:" msgstr "Film/danza/cultura/intrattenimento:" -#: include/identity.php:676 +#: include/identity.php:723 msgid "Love/Romance:" msgstr "Amore:" -#: include/identity.php:678 +#: include/identity.php:727 msgid "Work/employment:" msgstr "Lavoro:" -#: include/identity.php:680 +#: include/identity.php:731 msgid "School/education:" msgstr "Scuola:" -#: include/identity.php:684 +#: include/identity.php:736 msgid "Forums:" msgstr "Forum:" -#: include/identity.php:692 mod/events.php:507 +#: include/identity.php:745 mod/events.php:506 msgid "Basic" msgstr "Base" -#: include/identity.php:693 mod/events.php:508 mod/admin.php:959 -#: mod/contacts.php:870 +#: include/identity.php:746 mod/contacts.php:878 mod/events.php:507 +#: mod/admin.php:1059 msgid "Advanced" msgstr "Avanzate" -#: include/identity.php:717 mod/contacts.php:836 mod/follow.php:142 +#: include/identity.php:772 mod/contacts.php:844 mod/follow.php:145 msgid "Status Messages and Posts" msgstr "Messaggi di stato e post" -#: include/identity.php:725 mod/contacts.php:844 +#: include/identity.php:780 mod/contacts.php:852 msgid "Profile Details" msgstr "Dettagli del profilo" -#: include/identity.php:733 mod/photos.php:87 +#: include/identity.php:788 mod/photos.php:93 msgid "Photo Albums" msgstr "Album foto" -#: include/identity.php:772 mod/notes.php:46 +#: include/identity.php:827 mod/notes.php:47 msgid "Personal Notes" msgstr "Note personali" -#: include/identity.php:775 +#: include/identity.php:830 msgid "Only You Can See This" msgstr "Solo tu puoi vedere questo" -#: include/items.php:1575 mod/dfrn_confirm.php:730 mod/dfrn_request.php:746 -msgid "[Name Withheld]" -msgstr "[Nome Nascosto]" +#: include/network.php:687 +msgid "view full size" +msgstr "vedi a schermo intero" -#: include/items.php:1930 mod/viewsrc.php:15 mod/notice.php:15 -#: mod/display.php:103 mod/display.php:279 mod/display.php:478 -#: mod/admin.php:234 mod/admin.php:1471 mod/admin.php:1705 -msgid "Item not found." -msgstr "Elemento non trovato." - -#: include/items.php:1969 -msgid "Do you really want to delete this item?" -msgstr "Vuoi veramente cancellare questo elemento?" - -#: include/items.php:1971 mod/api.php:105 mod/message.php:217 -#: mod/profiles.php:648 mod/profiles.php:651 mod/profiles.php:677 -#: mod/suggest.php:29 mod/register.php:245 mod/settings.php:1163 -#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181 -#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198 -#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231 -#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234 -#: mod/contacts.php:442 mod/dfrn_request.php:862 mod/follow.php:110 -msgid "Yes" -msgstr "Si" - -#: include/items.php:2134 mod/notes.php:22 mod/uimport.php:23 -#: mod/nogroup.php:25 mod/invite.php:15 mod/invite.php:101 -#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33 -#: mod/editpost.php:10 mod/group.php:19 mod/wallmessage.php:9 -#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 -#: mod/api.php:26 mod/api.php:31 mod/ostatus_subscribe.php:9 -#: mod/message.php:46 mod/message.php:182 mod/manage.php:96 -#: mod/crepair.php:100 mod/fsuggest.php:78 mod/mood.php:114 mod/poke.php:150 -#: mod/profile_photo.php:19 mod/profile_photo.php:175 -#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/regmod.php:110 -#: mod/notifications.php:71 mod/profiles.php:166 mod/profiles.php:605 -#: mod/allfriends.php:12 mod/cal.php:304 mod/common.php:18 mod/dirfind.php:11 -#: mod/display.php:475 mod/events.php:190 mod/suggest.php:58 -#: mod/photos.php:159 mod/photos.php:1072 mod/register.php:42 -#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:665 -#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wall_upload.php:77 -#: mod/wall_upload.php:80 mod/contacts.php:350 mod/dfrn_confirm.php:61 -#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/item.php:199 -#: mod/item.php:211 mod/network.php:4 mod/viewcontacts.php:45 index.php:401 -msgid "Permission denied." -msgstr "Permesso negato." - -#: include/items.php:2239 -msgid "Archives" -msgstr "Archivi" - -#: include/oembed.php:264 +#: include/oembed.php:255 msgid "Embedded content" msgstr "Contenuto incorporato" -#: include/oembed.php:272 +#: include/oembed.php:263 msgid "Embedding disabled" msgstr "Embed disabilitato" -#: include/ostatus.php:1825 -#, php-format -msgid "%s is now following %s." -msgstr "%s sta seguendo %s" +#: include/photos.php:57 include/photos.php:66 mod/fbrowser.php:40 +#: mod/fbrowser.php:61 mod/photos.php:187 mod/photos.php:1123 +#: mod/photos.php:1256 mod/photos.php:1277 mod/photos.php:1839 +#: mod/photos.php:1853 +msgid "Contact Photos" +msgstr "Foto dei contatti" -#: include/ostatus.php:1826 -msgid "following" -msgstr "segue" - -#: include/ostatus.php:1829 -#, php-format -msgid "%s stopped following %s." -msgstr "%s ha smesso di seguire %s" - -#: include/ostatus.php:1830 -msgid "stopped following" -msgstr "tolto dai seguiti" - -#: include/text.php:304 -msgid "newer" -msgstr "nuovi" - -#: include/text.php:306 -msgid "older" -msgstr "vecchi" - -#: include/text.php:311 -msgid "prev" -msgstr "prec" - -#: include/text.php:313 -msgid "first" -msgstr "primo" - -#: include/text.php:345 -msgid "last" -msgstr "ultimo" - -#: include/text.php:348 -msgid "next" -msgstr "succ" - -#: include/text.php:403 -msgid "Loading more entries..." -msgstr "Carico più elementi..." - -#: include/text.php:404 -msgid "The end" -msgstr "Fine" - -#: include/text.php:889 -msgid "No contacts" -msgstr "Nessun contatto" - -#: include/text.php:912 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d contatto" -msgstr[1] "%d contatti" - -#: include/text.php:925 -msgid "View Contacts" -msgstr "Visualizza i contatti" - -#: include/text.php:1013 mod/notes.php:61 mod/filer.php:31 -#: mod/editpost.php:109 -msgid "Save" -msgstr "Salva" - -#: include/text.php:1076 -msgid "poke" -msgstr "stuzzica" - -#: include/text.php:1076 -msgid "poked" -msgstr "ha stuzzicato" - -#: include/text.php:1077 -msgid "ping" -msgstr "invia un ping" - -#: include/text.php:1077 -msgid "pinged" -msgstr "ha inviato un ping" - -#: include/text.php:1078 -msgid "prod" -msgstr "pungola" - -#: include/text.php:1078 -msgid "prodded" -msgstr "ha pungolato" - -#: include/text.php:1079 -msgid "slap" -msgstr "schiaffeggia" - -#: include/text.php:1079 -msgid "slapped" -msgstr "ha schiaffeggiato" - -#: include/text.php:1080 -msgid "finger" -msgstr "tocca" - -#: include/text.php:1080 -msgid "fingered" -msgstr "ha toccato" - -#: include/text.php:1081 -msgid "rebuff" -msgstr "respingi" - -#: include/text.php:1081 -msgid "rebuffed" -msgstr "ha respinto" - -#: include/text.php:1095 -msgid "happy" -msgstr "felice" - -#: include/text.php:1096 -msgid "sad" -msgstr "triste" - -#: include/text.php:1097 -msgid "mellow" -msgstr "rilassato" - -#: include/text.php:1098 -msgid "tired" -msgstr "stanco" - -#: include/text.php:1099 -msgid "perky" -msgstr "vivace" - -#: include/text.php:1100 -msgid "angry" -msgstr "arrabbiato" - -#: include/text.php:1101 -msgid "stupified" -msgstr "stupefatto" - -#: include/text.php:1102 -msgid "puzzled" -msgstr "confuso" - -#: include/text.php:1103 -msgid "interested" -msgstr "interessato" - -#: include/text.php:1104 -msgid "bitter" -msgstr "risentito" - -#: include/text.php:1105 -msgid "cheerful" -msgstr "giocoso" - -#: include/text.php:1106 -msgid "alive" -msgstr "vivo" - -#: include/text.php:1107 -msgid "annoyed" -msgstr "annoiato" - -#: include/text.php:1108 -msgid "anxious" -msgstr "ansioso" - -#: include/text.php:1109 -msgid "cranky" -msgstr "irritabile" - -#: include/text.php:1110 -msgid "disturbed" -msgstr "disturbato" - -#: include/text.php:1111 -msgid "frustrated" -msgstr "frustato" - -#: include/text.php:1112 -msgid "motivated" -msgstr "motivato" - -#: include/text.php:1113 -msgid "relaxed" -msgstr "rilassato" - -#: include/text.php:1114 -msgid "surprised" -msgstr "sorpreso" - -#: include/text.php:1324 mod/videos.php:380 -msgid "View Video" -msgstr "Guarda Video" - -#: include/text.php:1356 -msgid "bytes" -msgstr "bytes" - -#: include/text.php:1388 include/text.php:1400 -msgid "Click to open/close" -msgstr "Clicca per aprire/chiudere" - -#: include/text.php:1526 -msgid "View on separate page" -msgstr "Vedi in una pagina separata" - -#: include/text.php:1527 -msgid "view on separate page" -msgstr "vedi in una pagina separata" - -#: include/text.php:1806 -msgid "activity" -msgstr "attività" - -#: include/text.php:1808 mod/content.php:623 object/Item.php:431 -#: object/Item.php:444 -msgid "comment" -msgid_plural "comments" -msgstr[0] "" -msgstr[1] "commento" - -#: include/text.php:1809 -msgid "post" -msgstr "messaggio" - -#: include/text.php:1977 -msgid "Item filed" -msgstr "Messaggio salvato" - -#: include/user.php:39 mod/settings.php:373 +#: include/user.php:39 mod/settings.php:375 msgid "Passwords do not match. Password unchanged." msgstr "Le password non corrispondono. Password non cambiata." @@ -2979,62 +2654,62 @@ msgstr "Usa un nome più corto." msgid "Name too short." msgstr "Il nome è troppo corto." -#: include/user.php:113 +#: include/user.php:106 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 +#: include/user.php:111 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 +#: include/user.php:114 msgid "Not a valid email address." msgstr "L'indirizzo email non è valido." -#: include/user.php:134 +#: include/user.php:127 msgid "Cannot use that email." msgstr "Non puoi usare quell'email." -#: include/user.php:140 +#: include/user.php:133 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 +#: include/user.php:140 include/user.php:228 msgid "Nickname is already registered. Please choose another." msgstr "Nome utente già registrato. Scegline un altro." -#: include/user.php:157 +#: include/user.php:150 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 +#: include/user.php:166 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita." -#: include/user.php:231 +#: include/user.php:214 msgid "An error occurred during registration. Please try again." msgstr "C'è stato un errore durante la registrazione. Prova ancora." -#: include/user.php:256 view/theme/duepuntozero/config.php:44 +#: include/user.php:239 view/theme/duepuntozero/config.php:43 msgid "default" msgstr "default" -#: include/user.php:266 +#: include/user.php:249 msgid "An error occurred creating your default profile. Please try again." msgstr "C'è stato un errore nella creazione del tuo profilo. Prova ancora." -#: include/user.php:326 include/user.php:333 include/user.php:340 -#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 -#: mod/profile_photo.php:210 mod/profile_photo.php:302 -#: mod/profile_photo.php:311 mod/photos.php:66 mod/photos.php:180 -#: mod/photos.php:751 mod/photos.php:1211 mod/photos.php:1232 -#: mod/photos.php:1819 +#: include/user.php:309 include/user.php:317 include/user.php:325 +#: mod/profile_photo.php:74 mod/profile_photo.php:82 mod/profile_photo.php:90 +#: mod/profile_photo.php:215 mod/profile_photo.php:310 +#: mod/profile_photo.php:320 mod/photos.php:71 mod/photos.php:187 +#: mod/photos.php:774 mod/photos.php:1256 mod/photos.php:1277 +#: mod/photos.php:1863 msgid "Profile Photos" msgstr "Foto del profilo" -#: include/user.php:414 +#: include/user.php:400 #, php-format msgid "" "\n" @@ -3043,12 +2718,12 @@ msgid "" "\t" msgstr "\nCaro %1$s,\n Grazie per la tua registrazione su %2$s. Il tuo account è in attesa di approvazione da parte di un amministratore.\n " -#: include/user.php:424 +#: include/user.php:410 #, php-format msgid "Registration at %s" msgstr "Registrazione su %s" -#: include/user.php:434 +#: include/user.php:420 #, php-format msgid "" "\n" @@ -3057,7 +2732,7 @@ msgid "" "\t" msgstr "\nGentile %1$s,\nGrazie per esserti registrato su %2$s. Il tuo account è stato creato." -#: include/user.php:438 +#: include/user.php:424 #, php-format msgid "" "\n" @@ -3087,103 +2762,1331 @@ msgid "" "\t\tThank you and welcome to %2$s." msgstr "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %3$s\n Nome utente: %1$s\n Password: %5$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %2$s" -#: include/user.php:470 mod/admin.php:1213 +#: include/user.php:456 mod/admin.php:1308 #, php-format msgid "Registration details for %s" msgstr "Dettagli della registrazione di %s" -#: mod/oexchange.php:25 -msgid "Post successful." -msgstr "Inviato!" +#: include/dbstructure.php:20 +msgid "There are no tables on MyISAM." +msgstr "Non ci sono tabelle MyISAM" -#: mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Accesso negato." - -#: mod/home.php:35 +#: include/dbstructure.php:61 #, php-format -msgid "Welcome to %s" -msgstr "Benvenuto su %s" +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." -#: mod/notify.php:60 -msgid "No more system notifications." -msgstr "Nessuna nuova notifica di sistema." - -#: mod/notify.php:64 mod/notifications.php:111 -msgid "System Notifications" -msgstr "Notifiche di sistema" - -#: mod/search.php:25 mod/network.php:191 -msgid "Remove term" -msgstr "Rimuovi termine" - -#: mod/search.php:93 mod/search.php:99 mod/community.php:22 -#: mod/directory.php:37 mod/display.php:200 mod/photos.php:944 -#: mod/videos.php:194 mod/dfrn_request.php:791 mod/viewcontacts.php:35 -msgid "Public access denied." -msgstr "Accesso negato." - -#: mod/search.php:100 -msgid "Only logged in users are permitted to perform a search." -msgstr "Solo agli utenti autenticati è permesso eseguire ricerche." - -#: mod/search.php:124 -msgid "Too Many Requests" -msgstr "Troppe richieste" - -#: mod/search.php:125 -msgid "Only one search per minute is permitted for not logged in users." -msgstr "Solo una ricerca al minuto è permessa agli utenti non autenticati." - -#: mod/search.php:224 mod/community.php:66 mod/community.php:75 -msgid "No results." -msgstr "Nessun risultato." - -#: mod/search.php:230 +#: include/dbstructure.php:66 #, php-format -msgid "Items tagged with: %s" -msgstr "Elementi taggati con: %s" +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "Il messaggio di errore è\n[pre]%s[/pre]" -#: mod/search.php:232 mod/contacts.php:797 mod/network.php:146 +#: include/dbstructure.php:190 +#, php-format +msgid "" +"\n" +"Error %d occurred during database update:\n" +"%s\n" +msgstr "\nErrore %d durante l'aggiornamento del database:\n%s\n" + +#: include/dbstructure.php:193 +msgid "Errors encountered performing database changes: " +msgstr "Errori riscontrati eseguendo le modifiche al database:" + +#: include/dbstructure.php:201 +msgid ": Database update" +msgstr ": Aggiornamento database" + +#: include/dbstructure.php:425 +#, php-format +msgid "%s: updating %s table." +msgstr "%s: aggiornando la tabella %s." + +#: include/dfrn.php:1251 +#, php-format +msgid "%s\\'s birthday" +msgstr "compleanno di %s" + +#: include/diaspora.php:2137 +msgid "Sharing notification from Diaspora network" +msgstr "Notifica di condivisione dal network Diaspora*" + +#: include/diaspora.php:3146 +msgid "Attachments:" +msgstr "Allegati:" + +#: include/items.php:1738 mod/dfrn_confirm.php:736 mod/dfrn_request.php:759 +msgid "[Name Withheld]" +msgstr "[Nome Nascosto]" + +#: include/items.php:2123 mod/display.php:103 mod/display.php:279 +#: mod/display.php:484 mod/notice.php:15 mod/viewsrc.php:15 mod/admin.php:247 +#: mod/admin.php:1565 mod/admin.php:1816 +msgid "Item not found." +msgstr "Elemento non trovato." + +#: include/items.php:2162 +msgid "Do you really want to delete this item?" +msgstr "Vuoi veramente cancellare questo elemento?" + +#: include/items.php:2164 mod/api.php:105 mod/contacts.php:452 +#: mod/suggest.php:29 mod/dfrn_request.php:880 mod/follow.php:113 +#: mod/message.php:206 mod/profiles.php:640 mod/profiles.php:643 +#: mod/profiles.php:670 mod/register.php:245 mod/settings.php:1171 +#: mod/settings.php:1177 mod/settings.php:1184 mod/settings.php:1188 +#: mod/settings.php:1193 mod/settings.php:1198 mod/settings.php:1203 +#: mod/settings.php:1208 mod/settings.php:1234 mod/settings.php:1235 +#: mod/settings.php:1236 mod/settings.php:1237 mod/settings.php:1238 +msgid "Yes" +msgstr "Si" + +#: include/items.php:2327 mod/allfriends.php:12 mod/api.php:26 mod/api.php:31 +#: mod/attach.php:33 mod/common.php:18 mod/contacts.php:360 +#: mod/crepair.php:102 mod/delegate.php:12 mod/display.php:481 +#: mod/editpost.php:10 mod/fsuggest.php:79 mod/invite.php:15 +#: mod/invite.php:103 mod/mood.php:115 mod/nogroup.php:27 mod/notes.php:23 +#: mod/ostatus_subscribe.php:9 mod/poke.php:154 mod/profile_photo.php:19 +#: mod/profile_photo.php:180 mod/profile_photo.php:191 +#: mod/profile_photo.php:204 mod/regmod.php:113 mod/repair_ostatus.php:9 +#: mod/suggest.php:58 mod/uimport.php:24 mod/viewcontacts.php:46 +#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wallmessage.php:9 +#: mod/wallmessage.php:33 mod/wallmessage.php:73 mod/wallmessage.php:97 +#: mod/cal.php:299 mod/dfrn_confirm.php:61 mod/dirfind.php:11 +#: mod/events.php:185 mod/follow.php:11 mod/follow.php:74 mod/follow.php:158 +#: mod/group.php:19 mod/manage.php:102 mod/message.php:46 mod/message.php:171 +#: mod/network.php:4 mod/photos.php:166 mod/photos.php:1109 +#: mod/profiles.php:168 mod/profiles.php:607 mod/register.php:42 +#: mod/settings.php:22 mod/settings.php:130 mod/settings.php:668 +#: mod/wall_upload.php:101 mod/wall_upload.php:104 mod/item.php:196 +#: mod/item.php:208 mod/notifications.php:71 index.php:407 +msgid "Permission denied." +msgstr "Permesso negato." + +#: include/items.php:2444 +msgid "Archives" +msgstr "Archivi" + +#: include/ostatus.php:1947 +#, php-format +msgid "%s is now following %s." +msgstr "%s sta seguendo %s" + +#: include/ostatus.php:1948 +msgid "following" +msgstr "segue" + +#: include/ostatus.php:1951 +#, php-format +msgid "%s stopped following %s." +msgstr "%s ha smesso di seguire %s" + +#: include/ostatus.php:1952 +msgid "stopped following" +msgstr "tolto dai seguiti" + +#: include/text.php:307 +msgid "newer" +msgstr "nuovi" + +#: include/text.php:308 +msgid "older" +msgstr "vecchi" + +#: include/text.php:313 +msgid "first" +msgstr "primo" + +#: include/text.php:314 +msgid "prev" +msgstr "prec" + +#: include/text.php:348 +msgid "next" +msgstr "succ" + +#: include/text.php:349 +msgid "last" +msgstr "ultimo" + +#: include/text.php:403 +msgid "Loading more entries..." +msgstr "Carico più elementi..." + +#: include/text.php:404 +msgid "The end" +msgstr "Fine" + +#: include/text.php:955 +msgid "No contacts" +msgstr "Nessun contatto" + +#: include/text.php:980 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d contatto" +msgstr[1] "%d contatti" + +#: include/text.php:993 +msgid "View Contacts" +msgstr "Visualizza i contatti" + +#: include/text.php:1081 mod/editpost.php:99 mod/filer.php:31 mod/notes.php:62 +msgid "Save" +msgstr "Salva" + +#: include/text.php:1144 +msgid "poke" +msgstr "stuzzica" + +#: include/text.php:1144 +msgid "poked" +msgstr "ha stuzzicato" + +#: include/text.php:1145 +msgid "ping" +msgstr "invia un ping" + +#: include/text.php:1145 +msgid "pinged" +msgstr "ha inviato un ping" + +#: include/text.php:1146 +msgid "prod" +msgstr "pungola" + +#: include/text.php:1146 +msgid "prodded" +msgstr "ha pungolato" + +#: include/text.php:1147 +msgid "slap" +msgstr "schiaffeggia" + +#: include/text.php:1147 +msgid "slapped" +msgstr "ha schiaffeggiato" + +#: include/text.php:1148 +msgid "finger" +msgstr "tocca" + +#: include/text.php:1148 +msgid "fingered" +msgstr "ha toccato" + +#: include/text.php:1149 +msgid "rebuff" +msgstr "respingi" + +#: include/text.php:1149 +msgid "rebuffed" +msgstr "ha respinto" + +#: include/text.php:1163 +msgid "happy" +msgstr "felice" + +#: include/text.php:1164 +msgid "sad" +msgstr "triste" + +#: include/text.php:1165 +msgid "mellow" +msgstr "rilassato" + +#: include/text.php:1166 +msgid "tired" +msgstr "stanco" + +#: include/text.php:1167 +msgid "perky" +msgstr "vivace" + +#: include/text.php:1168 +msgid "angry" +msgstr "arrabbiato" + +#: include/text.php:1169 +msgid "stupified" +msgstr "stupefatto" + +#: include/text.php:1170 +msgid "puzzled" +msgstr "confuso" + +#: include/text.php:1171 +msgid "interested" +msgstr "interessato" + +#: include/text.php:1172 +msgid "bitter" +msgstr "risentito" + +#: include/text.php:1173 +msgid "cheerful" +msgstr "giocoso" + +#: include/text.php:1174 +msgid "alive" +msgstr "vivo" + +#: include/text.php:1175 +msgid "annoyed" +msgstr "annoiato" + +#: include/text.php:1176 +msgid "anxious" +msgstr "ansioso" + +#: include/text.php:1177 +msgid "cranky" +msgstr "irritabile" + +#: include/text.php:1178 +msgid "disturbed" +msgstr "disturbato" + +#: include/text.php:1179 +msgid "frustrated" +msgstr "frustato" + +#: include/text.php:1180 +msgid "motivated" +msgstr "motivato" + +#: include/text.php:1181 +msgid "relaxed" +msgstr "rilassato" + +#: include/text.php:1182 +msgid "surprised" +msgstr "sorpreso" + +#: include/text.php:1392 mod/videos.php:386 +msgid "View Video" +msgstr "Guarda Video" + +#: include/text.php:1424 +msgid "bytes" +msgstr "bytes" + +#: include/text.php:1456 include/text.php:1468 +msgid "Click to open/close" +msgstr "Clicca per aprire/chiudere" + +#: include/text.php:1594 +msgid "View on separate page" +msgstr "Vedi in una pagina separata" + +#: include/text.php:1595 +msgid "view on separate page" +msgstr "vedi in una pagina separata" + +#: include/text.php:1874 +msgid "activity" +msgstr "attività" + +#: include/text.php:1876 mod/content.php:623 object/Item.php:419 +#: object/Item.php:431 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "commento" + +#: include/text.php:1877 +msgid "post" +msgstr "messaggio" + +#: include/text.php:2045 +msgid "Item filed" +msgstr "Messaggio salvato" + +#: mod/allfriends.php:46 +msgid "No friends to display." +msgstr "Nessun amico da visualizzare." + +#: mod/api.php:76 mod/api.php:102 +msgid "Authorize application connection" +msgstr "Autorizza la connessione dell'applicazione" + +#: mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Torna alla tua applicazione e inserisci questo codice di sicurezza:" + +#: mod/api.php:89 +msgid "Please login to continue." +msgstr "Effettua il login per continuare." + +#: mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?" + +#: mod/api.php:106 mod/dfrn_request.php:880 mod/follow.php:113 +#: mod/profiles.php:640 mod/profiles.php:644 mod/profiles.php:670 +#: mod/register.php:246 mod/settings.php:1171 mod/settings.php:1177 +#: mod/settings.php:1184 mod/settings.php:1188 mod/settings.php:1193 +#: mod/settings.php:1198 mod/settings.php:1203 mod/settings.php:1208 +#: mod/settings.php:1234 mod/settings.php:1235 mod/settings.php:1236 +#: mod/settings.php:1237 mod/settings.php:1238 +msgid "No" +msgstr "No" + +#: mod/apps.php:7 index.php:254 +msgid "You must be logged in to use addons. " +msgstr "Devi aver effettuato il login per usare i componenti aggiuntivi." + +#: mod/apps.php:11 +msgid "Applications" +msgstr "Applicazioni" + +#: mod/apps.php:14 +msgid "No installed applications." +msgstr "Nessuna applicazione installata." + +#: mod/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/bookmarklet.php:41 +msgid "The post was created" +msgstr "Il messaggio è stato creato" + +#: mod/common.php:91 +msgid "No contacts in common." +msgstr "Nessun contatto in comune." + +#: mod/common.php:141 mod/contacts.php:871 +msgid "Common Friends" +msgstr "Amici in comune" + +#: mod/contacts.php:134 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "%d contatto modificato." +msgstr[1] "%d contatti modificati" + +#: mod/contacts.php:169 mod/contacts.php:378 +msgid "Could not access contact record." +msgstr "Non è possibile accedere al contatto." + +#: mod/contacts.php:183 +msgid "Could not locate selected profile." +msgstr "Non riesco a trovare il profilo selezionato." + +#: mod/contacts.php:216 +msgid "Contact updated." +msgstr "Contatto aggiornato." + +#: mod/contacts.php:218 mod/dfrn_request.php:593 +msgid "Failed to update contact record." +msgstr "Errore nell'aggiornamento del contatto." + +#: mod/contacts.php:399 +msgid "Contact has been blocked" +msgstr "Il contatto è stato bloccato" + +#: mod/contacts.php:399 +msgid "Contact has been unblocked" +msgstr "Il contatto è stato sbloccato" + +#: mod/contacts.php:410 +msgid "Contact has been ignored" +msgstr "Il contatto è ignorato" + +#: mod/contacts.php:410 +msgid "Contact has been unignored" +msgstr "Il contatto non è più ignorato" + +#: mod/contacts.php:422 +msgid "Contact has been archived" +msgstr "Il contatto è stato archiviato" + +#: mod/contacts.php:422 +msgid "Contact has been unarchived" +msgstr "Il contatto è stato dearchiviato" + +#: mod/contacts.php:447 +msgid "Drop contact" +msgstr "Cancella contatto" + +#: mod/contacts.php:450 mod/contacts.php:809 +msgid "Do you really want to delete this contact?" +msgstr "Vuoi veramente cancellare questo contatto?" + +#: mod/contacts.php:469 +msgid "Contact has been removed." +msgstr "Il contatto è stato rimosso." + +#: mod/contacts.php:506 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Sei amico reciproco con %s" + +#: mod/contacts.php:510 +#, php-format +msgid "You are sharing with %s" +msgstr "Stai condividendo con %s" + +#: mod/contacts.php:515 +#, php-format +msgid "%s is sharing with you" +msgstr "%s sta condividendo con te" + +#: mod/contacts.php:535 +msgid "Private communications are not available for this contact." +msgstr "Le comunicazioni private non sono disponibili per questo contatto." + +#: mod/contacts.php:538 mod/admin.php:978 +msgid "Never" +msgstr "Mai" + +#: mod/contacts.php:542 +msgid "(Update was successful)" +msgstr "(L'aggiornamento è stato completato)" + +#: mod/contacts.php:542 +msgid "(Update was not successful)" +msgstr "(L'aggiornamento non è stato completato)" + +#: mod/contacts.php:544 mod/contacts.php:972 +msgid "Suggest friends" +msgstr "Suggerisci amici" + +#: mod/contacts.php:548 +#, php-format +msgid "Network type: %s" +msgstr "Tipo di rete: %s" + +#: mod/contacts.php:561 +msgid "Communications lost with this contact!" +msgstr "Comunicazione con questo contatto persa!" + +#: mod/contacts.php:564 +msgid "Fetch further information for feeds" +msgstr "Recupera maggiori informazioni per i feed" + +#: mod/contacts.php:565 mod/admin.php:987 +msgid "Disabled" +msgstr "Disabilitato" + +#: mod/contacts.php:565 +msgid "Fetch information" +msgstr "Recupera informazioni" + +#: mod/contacts.php:565 +msgid "Fetch information and keywords" +msgstr "Recupera informazioni e parole chiave" + +#: mod/contacts.php:583 +msgid "Contact" +msgstr "Contatto" + +#: mod/contacts.php:585 mod/content.php:728 mod/crepair.php:156 +#: mod/fsuggest.php:108 mod/invite.php:142 mod/localtime.php:45 +#: mod/mood.php:138 mod/poke.php:203 mod/events.php:505 mod/manage.php:155 +#: mod/message.php:338 mod/message.php:521 mod/photos.php:1141 +#: mod/photos.php:1271 mod/photos.php:1597 mod/photos.php:1646 +#: mod/photos.php:1688 mod/photos.php:1768 mod/profiles.php:681 +#: mod/install.php:242 mod/install.php:282 object/Item.php:705 +#: view/theme/duepuntozero/config.php:61 view/theme/frio/config.php:64 +#: view/theme/quattro/config.php:67 view/theme/vier/config.php:112 +msgid "Submit" +msgstr "Invia" + +#: mod/contacts.php:586 +msgid "Profile Visibility" +msgstr "Visibilità del profilo" + +#: mod/contacts.php:587 +#, 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:588 +msgid "Contact Information / Notes" +msgstr "Informazioni / Note sul contatto" + +#: mod/contacts.php:589 +msgid "Edit contact notes" +msgstr "Modifica note contatto" + +#: mod/contacts.php:594 mod/contacts.php:938 mod/nogroup.php:43 +#: mod/viewcontacts.php:102 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visita il profilo di %s [%s]" + +#: mod/contacts.php:595 +msgid "Block/Unblock contact" +msgstr "Blocca/Sblocca contatto" + +#: mod/contacts.php:596 +msgid "Ignore contact" +msgstr "Ignora il contatto" + +#: mod/contacts.php:597 +msgid "Repair URL settings" +msgstr "Impostazioni riparazione URL" + +#: mod/contacts.php:598 +msgid "View conversations" +msgstr "Vedi conversazioni" + +#: mod/contacts.php:604 +msgid "Last update:" +msgstr "Ultimo aggiornamento:" + +#: mod/contacts.php:606 +msgid "Update public posts" +msgstr "Aggiorna messaggi pubblici" + +#: mod/contacts.php:608 mod/contacts.php:982 +msgid "Update now" +msgstr "Aggiorna adesso" + +#: mod/contacts.php:613 mod/contacts.php:813 mod/contacts.php:991 +#: mod/admin.php:1510 +msgid "Unblock" +msgstr "Sblocca" + +#: mod/contacts.php:613 mod/contacts.php:813 mod/contacts.php:991 +#: mod/admin.php:1509 +msgid "Block" +msgstr "Blocca" + +#: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999 +msgid "Unignore" +msgstr "Non ignorare" + +#: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999 +#: mod/notifications.php:60 mod/notifications.php:179 +#: mod/notifications.php:263 +msgid "Ignore" +msgstr "Ignora" + +#: mod/contacts.php:618 +msgid "Currently blocked" +msgstr "Bloccato" + +#: mod/contacts.php:619 +msgid "Currently ignored" +msgstr "Ignorato" + +#: mod/contacts.php:620 +msgid "Currently archived" +msgstr "Al momento archiviato" + +#: 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:622 +msgid "Notification for new posts" +msgstr "Notifica per i nuovi messaggi" + +#: 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:625 +msgid "Blacklisted keywords" +msgstr "Parole chiave in blacklist" + +#: 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 hashtag, quando \"Recupera informazioni e parole chiave\" è selezionato" + +#: mod/contacts.php:632 mod/follow.php:129 mod/notifications.php:255 +msgid "Profile URL" +msgstr "URL Profilo" + +#: mod/contacts.php:643 +msgid "Actions" +msgstr "Azioni" + +#: mod/contacts.php:646 +msgid "Contact Settings" +msgstr "Impostazioni Contatto" + +#: mod/contacts.php:692 +msgid "Suggestions" +msgstr "Suggerimenti" + +#: mod/contacts.php:695 +msgid "Suggest potential friends" +msgstr "Suggerisci potenziali amici" + +#: mod/contacts.php:700 mod/group.php:212 +msgid "All Contacts" +msgstr "Tutti i contatti" + +#: mod/contacts.php:703 +msgid "Show all contacts" +msgstr "Mostra tutti i contatti" + +#: mod/contacts.php:708 +msgid "Unblocked" +msgstr "Sbloccato" + +#: mod/contacts.php:711 +msgid "Only show unblocked contacts" +msgstr "Mostra solo contatti non bloccati" + +#: mod/contacts.php:717 +msgid "Blocked" +msgstr "Bloccato" + +#: mod/contacts.php:720 +msgid "Only show blocked contacts" +msgstr "Mostra solo contatti bloccati" + +#: mod/contacts.php:726 +msgid "Ignored" +msgstr "Ignorato" + +#: mod/contacts.php:729 +msgid "Only show ignored contacts" +msgstr "Mostra solo contatti ignorati" + +#: mod/contacts.php:735 +msgid "Archived" +msgstr "Archiviato" + +#: mod/contacts.php:738 +msgid "Only show archived contacts" +msgstr "Mostra solo contatti archiviati" + +#: mod/contacts.php:744 +msgid "Hidden" +msgstr "Nascosto" + +#: mod/contacts.php:747 +msgid "Only show hidden contacts" +msgstr "Mostra solo contatti nascosti" + +#: mod/contacts.php:804 +msgid "Search your contacts" +msgstr "Cerca nei tuoi contatti" + +#: mod/contacts.php:805 mod/network.php:151 mod/search.php:227 #, php-format msgid "Results for: %s" msgstr "Risultati per: %s" -#: mod/friendica.php:70 -msgid "This is Friendica, version" -msgstr "Questo è Friendica, versione" +#: mod/contacts.php:812 mod/settings.php:160 mod/settings.php:707 +msgid "Update" +msgstr "Aggiorna" -#: mod/friendica.php:71 -msgid "running at web location" -msgstr "in esecuzione all'indirizzo web" +#: mod/contacts.php:815 mod/contacts.php:1007 +msgid "Archive" +msgstr "Archivia" -#: mod/friendica.php:73 +#: mod/contacts.php:815 mod/contacts.php:1007 +msgid "Unarchive" +msgstr "Dearchivia" + +#: mod/contacts.php:818 +msgid "Batch Actions" +msgstr "Azioni Batch" + +#: mod/contacts.php:864 +msgid "View all contacts" +msgstr "Vedi tutti i contatti" + +#: mod/contacts.php:874 +msgid "View all common friends" +msgstr "Vedi tutti gli amici in comune" + +#: mod/contacts.php:881 +msgid "Advanced Contact Settings" +msgstr "Impostazioni avanzate Contatto" + +#: mod/contacts.php:915 +msgid "Mutual Friendship" +msgstr "Amicizia reciproca" + +#: mod/contacts.php:919 +msgid "is a fan of yours" +msgstr "è un tuo fan" + +#: mod/contacts.php:923 +msgid "you are a fan of" +msgstr "sei un fan di" + +#: mod/contacts.php:939 mod/nogroup.php:44 +msgid "Edit contact" +msgstr "Modifica contatto" + +#: mod/contacts.php:993 +msgid "Toggle Blocked status" +msgstr "Inverti stato \"Blocca\"" + +#: mod/contacts.php:1001 +msgid "Toggle Ignored status" +msgstr "Inverti stato \"Ignora\"" + +#: mod/contacts.php:1009 +msgid "Toggle Archive status" +msgstr "Inverti stato \"Archiviato\"" + +#: mod/contacts.php:1017 +msgid "Delete contact" +msgstr "Rimuovi contatto" + +#: mod/content.php:119 mod/network.php:475 +msgid "No such group" +msgstr "Nessun gruppo" + +#: mod/content.php:130 mod/group.php:213 mod/network.php:502 +msgid "Group is empty" +msgstr "Il gruppo è vuoto" + +#: mod/content.php:135 mod/network.php:506 +#, php-format +msgid "Group: %s" +msgstr "Gruppo: %s" + +#: mod/content.php:325 object/Item.php:96 +msgid "This entry was edited" +msgstr "Questa voce è stata modificata" + +#: mod/content.php:621 object/Item.php:417 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d commento" +msgstr[1] "%d commenti" + +#: mod/content.php:638 mod/photos.php:1429 object/Item.php:117 +msgid "Private Message" +msgstr "Messaggio privato" + +#: mod/content.php:702 mod/photos.php:1625 object/Item.php:274 +msgid "I like this (toggle)" +msgstr "Mi piace (clic per cambiare)" + +#: mod/content.php:702 object/Item.php:274 +msgid "like" +msgstr "mi piace" + +#: mod/content.php:703 mod/photos.php:1626 object/Item.php:275 +msgid "I don't like this (toggle)" +msgstr "Non mi piace (clic per cambiare)" + +#: mod/content.php:703 object/Item.php:275 +msgid "dislike" +msgstr "non mi piace" + +#: mod/content.php:705 object/Item.php:278 +msgid "Share this" +msgstr "Condividi questo" + +#: mod/content.php:705 object/Item.php:278 +msgid "share" +msgstr "condividi" + +#: mod/content.php:725 mod/photos.php:1643 mod/photos.php:1685 +#: mod/photos.php:1765 object/Item.php:702 +msgid "This is you" +msgstr "Questo sei tu" + +#: mod/content.php:727 mod/content.php:950 mod/photos.php:1645 +#: mod/photos.php:1687 mod/photos.php:1767 object/Item.php:392 +#: object/Item.php:704 +msgid "Comment" +msgstr "Commento" + +#: mod/content.php:729 object/Item.php:706 +msgid "Bold" +msgstr "Grassetto" + +#: mod/content.php:730 object/Item.php:707 +msgid "Italic" +msgstr "Corsivo" + +#: mod/content.php:731 object/Item.php:708 +msgid "Underline" +msgstr "Sottolineato" + +#: mod/content.php:732 object/Item.php:709 +msgid "Quote" +msgstr "Citazione" + +#: mod/content.php:733 object/Item.php:710 +msgid "Code" +msgstr "Codice" + +#: mod/content.php:734 object/Item.php:711 +msgid "Image" +msgstr "Immagine" + +#: mod/content.php:735 object/Item.php:712 +msgid "Link" +msgstr "Link" + +#: mod/content.php:736 object/Item.php:713 +msgid "Video" +msgstr "Video" + +#: mod/content.php:746 mod/settings.php:743 object/Item.php:122 +#: object/Item.php:124 +msgid "Edit" +msgstr "Modifica" + +#: mod/content.php:772 object/Item.php:238 +msgid "add star" +msgstr "aggiungi a speciali" + +#: mod/content.php:773 object/Item.php:239 +msgid "remove star" +msgstr "rimuovi da speciali" + +#: mod/content.php:774 object/Item.php:240 +msgid "toggle star status" +msgstr "Inverti stato preferito" + +#: mod/content.php:777 object/Item.php:243 +msgid "starred" +msgstr "preferito" + +#: mod/content.php:778 mod/content.php:800 object/Item.php:263 +msgid "add tag" +msgstr "aggiungi tag" + +#: mod/content.php:789 object/Item.php:251 +msgid "ignore thread" +msgstr "ignora la discussione" + +#: mod/content.php:790 object/Item.php:252 +msgid "unignore thread" +msgstr "non ignorare la discussione" + +#: mod/content.php:791 object/Item.php:253 +msgid "toggle ignore status" +msgstr "inverti stato \"Ignora\"" + +#: mod/content.php:794 mod/ostatus_subscribe.php:73 object/Item.php:256 +msgid "ignored" +msgstr "ignorato" + +#: mod/content.php:805 object/Item.php:141 +msgid "save to folder" +msgstr "salva nella cartella" + +#: mod/content.php:853 object/Item.php:212 +msgid "I will attend" +msgstr "Parteciperò" + +#: mod/content.php:853 object/Item.php:212 +msgid "I will not attend" +msgstr "Non parteciperò" + +#: mod/content.php:853 object/Item.php:212 +msgid "I might attend" +msgstr "Forse parteciperò" + +#: mod/content.php:917 object/Item.php:358 +msgid "to" +msgstr "a" + +#: mod/content.php:918 object/Item.php:360 +msgid "Wall-to-Wall" +msgstr "Da bacheca a bacheca" + +#: mod/content.php:919 object/Item.php:361 +msgid "via Wall-To-Wall:" +msgstr "da bacheca a bacheca" + +#: mod/credits.php:16 +msgid "Credits" +msgstr "Crediti" + +#: mod/credits.php:17 msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Visita Friendica.com per saperne di più sul progetto Friendica." +"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/friendica.php:75 -msgid "Bug reports and issues: please visit" -msgstr "Segnalazioni di bug e problemi: visita" +#: mod/crepair.php:89 +msgid "Contact settings applied." +msgstr "Contatto modificato." -#: mod/friendica.php:75 -msgid "the bugtracker at github" -msgstr "il bugtracker su github" +#: mod/crepair.php:91 +msgid "Contact update failed." +msgstr "Le modifiche al contatto non sono state salvate." -#: mod/friendica.php:76 +#: mod/crepair.php:116 mod/fsuggest.php:21 mod/fsuggest.php:93 +#: mod/dfrn_confirm.php:126 +msgid "Contact not found." +msgstr "Contatto non trovato." + +#: mod/crepair.php:122 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" +"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/friendica.php:90 -msgid "Installed plugins/addons/apps:" -msgstr "Plugin/componenti aggiuntivi/applicazioni installate" +#: mod/crepair.php:123 +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/friendica.php:103 -msgid "No installed plugins/addons/apps" -msgstr "Nessun plugin/componente aggiuntivo/applicazione installata" +#: mod/crepair.php:136 mod/crepair.php:138 +msgid "No mirroring" +msgstr "Non duplicare" + +#: mod/crepair.php:136 +msgid "Mirror as forwarded posting" +msgstr "Duplica come messaggi ricondivisi" + +#: mod/crepair.php:136 mod/crepair.php:138 +msgid "Mirror as my own posting" +msgstr "Duplica come miei messaggi" + +#: mod/crepair.php:152 +msgid "Return to contact editor" +msgstr "Ritorna alla modifica contatto" + +#: mod/crepair.php:154 +msgid "Refetch contact data" +msgstr "Ricarica dati contatto" + +#: mod/crepair.php:158 +msgid "Remote Self" +msgstr "Io remoto" + +#: mod/crepair.php:161 +msgid "Mirror postings from this contact" +msgstr "Ripeti i messaggi di questo contatto" + +#: mod/crepair.php:163 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "Imposta questo contatto come 'io remoto', questo farà si che friendica re invii i nuovi messaggi da questo contatto." + +#: mod/crepair.php:167 mod/settings.php:683 mod/settings.php:709 +#: mod/admin.php:1490 mod/admin.php:1503 mod/admin.php:1516 mod/admin.php:1532 +msgid "Name" +msgstr "Nome" + +#: mod/crepair.php:168 +msgid "Account Nickname" +msgstr "Nome utente" + +#: mod/crepair.php:169 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@TagName - al posto del nome utente" + +#: mod/crepair.php:170 +msgid "Account URL" +msgstr "URL dell'utente" + +#: mod/crepair.php:171 +msgid "Friend Request URL" +msgstr "URL Richiesta Amicizia" + +#: mod/crepair.php:172 +msgid "Friend Confirm URL" +msgstr "URL Conferma Amicizia" + +#: mod/crepair.php:173 +msgid "Notification Endpoint URL" +msgstr "URL Notifiche" + +#: mod/crepair.php:174 +msgid "Poll/Feed URL" +msgstr "URL Feed" + +#: mod/crepair.php:175 +msgid "New photo from this URL" +msgstr "Nuova foto da questo URL" + +#: mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "Nessun potenziale delegato per la pagina è stato trovato." + +#: mod/delegate.php:132 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "I Delegati sono in grado di gestire tutti gli aspetti di questa pagina, tranne per le impostazioni di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente." + +#: mod/delegate.php:133 +msgid "Existing Page Managers" +msgstr "Gestori Pagina Esistenti" + +#: mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "Delegati Pagina Esistenti" + +#: mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "Delegati Potenziali" + +#: mod/delegate.php:139 mod/tagrm.php:95 +msgid "Remove" +msgstr "Rimuovi" + +#: mod/delegate.php:140 +msgid "Add" +msgstr "Aggiungi" + +#: mod/delegate.php:141 +msgid "No entries." +msgstr "Nessuna voce." + +#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:539 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "%s dà il benvenuto a %s" + +#: mod/directory.php:37 mod/display.php:200 mod/viewcontacts.php:36 +#: mod/community.php:18 mod/dfrn_request.php:804 mod/photos.php:979 +#: mod/probe.php:9 mod/search.php:93 mod/search.php:99 mod/videos.php:198 +#: mod/webfinger.php:8 +msgid "Public access denied." +msgstr "Accesso negato." + +#: mod/directory.php:199 view/theme/vier/theme.php:199 +msgid "Global Directory" +msgstr "Elenco globale" + +#: mod/directory.php:201 +msgid "Find on this site" +msgstr "Cerca nel sito" + +#: mod/directory.php:203 +msgid "Results for:" +msgstr "Risultati per:" + +#: mod/directory.php:205 +msgid "Site Directory" +msgstr "Elenco del sito" + +#: mod/directory.php:212 +msgid "No entries (some entries may be hidden)." +msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)." + +#: mod/display.php:328 mod/cal.php:143 mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "L'accesso a questo profilo è stato limitato." + +#: mod/display.php:479 +msgid "Item has been removed." +msgstr "L'oggetto è stato rimosso." + +#: mod/editpost.php:17 mod/editpost.php:27 +msgid "Item not found" +msgstr "Oggetto non trovato" + +#: mod/editpost.php:32 +msgid "Edit post" +msgstr "Modifica messaggio" + +#: mod/fbrowser.php:132 +msgid "Files" +msgstr "File" + +#: mod/fetch.php:12 mod/fetch.php:39 mod/fetch.php:48 mod/help.php:53 +#: mod/p.php:16 mod/p.php:43 mod/p.php:52 index.php:298 +msgid "Not Found" +msgstr "Non trovato" + +#: mod/filer.php:30 +msgid "- select -" +msgstr "- seleziona -" + +#: mod/fsuggest.php:64 +msgid "Friend suggestion sent." +msgstr "Suggerimento di amicizia inviato." + +#: mod/fsuggest.php:98 +msgid "Suggest Friends" +msgstr "Suggerisci amici" + +#: mod/fsuggest.php:100 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Suggerisci un amico a %s" + +#: mod/hcard.php:11 +msgid "No profile" +msgstr "Nessun profilo" + +#: mod/help.php:41 +msgid "Help:" +msgstr "Guida:" + +#: mod/help.php:56 index.php:301 +msgid "Page not found." +msgstr "Pagina non trovata." + +#: mod/home.php:39 +#, php-format +msgid "Welcome to %s" +msgstr "Benvenuto su %s" + +#: mod/invite.php:28 +msgid "Total invitation limit exceeded." +msgstr "Limite totale degli inviti superato." + +#: mod/invite.php:51 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: non è un indirizzo email valido." + +#: mod/invite.php:76 +msgid "Please join us on Friendica" +msgstr "Unisciti a noi su Friendica" + +#: mod/invite.php:87 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limite degli inviti superato. Contatta l'amministratore del tuo sito." + +#: mod/invite.php:91 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: la consegna del messaggio fallita." + +#: mod/invite.php:95 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d messaggio inviato." +msgstr[1] "%d messaggi inviati." + +#: mod/invite.php:114 +msgid "You have no more invitations available" +msgstr "Non hai altri inviti disponibili" + +#: mod/invite.php:122 +#, 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:124 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Per accettare questo invito, visita e registrati su %s o su un'altro sito web Friendica aperto al pubblico." + +#: mod/invite.php:125 +#, php-format +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks. See %s for a list of alternate Friendica " +"sites you can join." +msgstr "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:128 +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:134 +msgid "Send invitations" +msgstr "Invia inviti" + +#: mod/invite.php:135 +msgid "Enter email addresses, one per line:" +msgstr "Inserisci gli indirizzi email, uno per riga:" + +#: mod/invite.php:136 mod/wallmessage.php:135 mod/message.php:332 +#: mod/message.php:515 +msgid "Your message:" +msgstr "Il tuo messaggio:" + +#: mod/invite.php:137 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "Sei cordialmente invitato/a ad unirti a me e ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore." + +#: mod/invite.php:139 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Sarà necessario fornire questo codice invito: $invite_code" + +#: mod/invite.php:139 +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:141 +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/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/lockview.php:32 mod/lockview.php:40 +msgid "Remote privacy information not available." +msgstr "Informazioni remote sulla privacy non disponibili." + +#: mod/lockview.php:49 +msgid "Visible to:" +msgstr "Visibile a:" #: mod/lostpass.php:19 msgid "No valid account found." @@ -3193,7 +4096,7 @@ msgstr "Nessun account valido trovato." 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 +#: mod/lostpass.php:41 #, php-format msgid "" "\n" @@ -3209,7 +4112,7 @@ msgid "" "\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 +#: mod/lostpass.php:52 #, php-format msgid "" "\n" @@ -3226,38 +4129,38 @@ msgid "" "\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 +#: mod/lostpass.php:71 #, php-format msgid "Password reset requested at %s" msgstr "Richiesta reimpostazione password su %s" -#: mod/lostpass.php:92 +#: mod/lostpass.php:91 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "La richiesta non può essere verificata. (Puoi averla già richiesta precedentemente). Reimpostazione password fallita." -#: mod/lostpass.php:109 boot.php:1807 +#: mod/lostpass.php:110 boot.php:1882 msgid "Password Reset" msgstr "Reimpostazione password" -#: mod/lostpass.php:110 +#: mod/lostpass.php:111 msgid "Your password has been reset as requested." msgstr "La tua password è stata reimpostata come richiesto." -#: mod/lostpass.php:111 +#: mod/lostpass.php:112 msgid "Your new password is" msgstr "La tua nuova password è" -#: mod/lostpass.php:112 +#: mod/lostpass.php:113 msgid "Save or copy your new password - and then" msgstr "Salva o copia la tua nuova password, quindi" -#: mod/lostpass.php:113 +#: mod/lostpass.php:114 msgid "click here to login" msgstr "clicca qui per entrare" -#: mod/lostpass.php:114 +#: mod/lostpass.php:115 msgid "" "Your password may be changed from the Settings page after " "successful login." @@ -3303,7 +4206,7 @@ msgid "" "your email for further instructions." msgstr "Inserisci il tuo indirizzo email per reimpostare la password." -#: mod/lostpass.php:161 boot.php:1795 +#: mod/lostpass.php:161 boot.php:1870 msgid "Nickname or Email: " msgstr "Nome utente o email: " @@ -3311,363 +4214,33 @@ msgstr "Nome utente o email: " msgid "Reset" msgstr "Reimposta" -#: mod/hcard.php:10 -msgid "No profile" -msgstr "Nessun profilo" +#: mod/maintenance.php:20 +msgid "System down for maintenance" +msgstr "Sistema in manutenzione" -#: mod/help.php:41 -msgid "Help:" -msgstr "Guida:" +#: mod/match.php:35 +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/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52 mod/fetch.php:12 -#: mod/fetch.php:39 mod/fetch.php:48 index.php:288 -msgid "Not Found" -msgstr "Non trovato" +#: mod/match.php:88 +msgid "is interested in:" +msgstr "è interessato a:" -#: mod/help.php:56 index.php:291 -msgid "Page not found." -msgstr "Pagina non trovata." +#: mod/match.php:102 +msgid "Profile Match" +msgstr "Profili corrispondenti" -#: mod/lockview.php:31 mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Informazioni remote sulla privacy non disponibili." +#: mod/match.php:109 mod/dirfind.php:245 +msgid "No matches" +msgstr "Nessun risultato" -#: mod/lockview.php:48 -msgid "Visible to:" -msgstr "Visibile a:" +#: mod/mood.php:134 +msgid "Mood" +msgstr "Umore" -#: mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "Errore protocollo OpenID. Nessun ID ricevuto." - -#: mod/openid.php:60 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito." - -#: mod/uimport.php:50 mod/register.php:198 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." - -#: mod/uimport.php:64 mod/register.php:295 -msgid "Import" -msgstr "Importa" - -#: mod/uimport.php:66 -msgid "Move account" -msgstr "Muovi account" - -#: mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "Puoi importare un account da un altro server Friendica." - -#: mod/uimport.php:68 -msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also" -" to inform your friends that you moved here." -msgstr "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui." - -#: mod/uimport.php:69 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (GNU Social/Statusnet) or from Diaspora" -msgstr "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (GNU Social/Statusnet) o da Diaspora" - -#: mod/uimport.php:70 -msgid "Account file" -msgstr "File account" - -#: mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\"" - -#: mod/nogroup.php:41 mod/contacts.php:586 mod/contacts.php:930 -#: mod/viewcontacts.php:97 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visita il profilo di %s [%s]" - -#: mod/nogroup.php:42 mod/contacts.php:931 -msgid "Edit contact" -msgstr "Modifica contatto" - -#: mod/nogroup.php:63 -msgid "Contacts who are not members of a group" -msgstr "Contatti che non sono membri di un gruppo" - -#: mod/uexport.php:29 -msgid "Export account" -msgstr "Esporta account" - -#: mod/uexport.php:29 -msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server." - -#: mod/uexport.php:30 -msgid "Export all" -msgstr "Esporta tutto" - -#: mod/uexport.php:30 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" -msgstr "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Può diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)" - -#: mod/uexport.php:37 mod/settings.php:95 -msgid "Export personal data" -msgstr "Esporta dati personali" - -#: mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "Limite totale degli inviti superato." - -#: mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: non è un indirizzo email valido." - -#: mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Unisciti a noi su Friendica" - -#: mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limite degli inviti superato. Contatta l'amministratore del tuo sito." - -#: mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: la consegna del messaggio fallita." - -#: mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d messaggio inviato." -msgstr[1] "%d messaggi inviati." - -#: mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "Non hai altri inviti disponibili" - -#: mod/invite.php:120 -#, php-format -msgid "" -"Visit %s for a list of public sites that you can join. Friendica members on " -"other sites can all connect with each other, as well as with members of many" -" other social networks." -msgstr "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network." - -#: mod/invite.php:122 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "Per accettare questo invito, visita e registrati su %s o su un'altro sito web Friendica aperto al pubblico." - -#: mod/invite.php:123 -#, php-format -msgid "" -"Friendica sites all inter-connect to create a huge privacy-enhanced social " -"web that is owned and controlled by its members. They can also connect with " -"many traditional social networks. See %s for a list of alternate Friendica " -"sites you can join." -msgstr "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti." - -#: mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri." - -#: mod/invite.php:132 -msgid "Send invitations" -msgstr "Invia inviti" - -#: mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "Inserisci gli indirizzi email, uno per riga:" - -#: mod/invite.php:134 mod/wallmessage.php:151 mod/message.php:351 -#: mod/message.php:541 -msgid "Your message:" -msgstr "Il tuo messaggio:" - -#: mod/invite.php:135 -msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "Sei cordialmente invitato/a ad unirti a me e ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore." - -#: mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Sarà necessario fornire questo codice invito: $invite_code" - -#: mod/invite.php:137 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Una volta registrato, connettiti con me dal mio profilo:" - -#: mod/invite.php:139 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendica.com" -msgstr "Per maggiori informazioni sul progetto Friendica e perché pensiamo sia importante, visita http://friendica.com" - -#: mod/invite.php:140 mod/localtime.php:45 mod/message.php:357 -#: mod/message.php:547 mod/manage.php:143 mod/crepair.php:154 -#: mod/content.php:728 mod/fsuggest.php:107 mod/mood.php:137 mod/poke.php:199 -#: mod/profiles.php:688 mod/events.php:506 mod/photos.php:1104 -#: mod/photos.php:1226 mod/photos.php:1539 mod/photos.php:1590 -#: mod/photos.php:1638 mod/photos.php:1724 mod/contacts.php:577 -#: mod/install.php:272 mod/install.php:312 object/Item.php:720 -#: view/theme/frio/config.php:59 view/theme/quattro/config.php:64 -#: view/theme/vier/config.php:107 view/theme/duepuntozero/config.php:59 -msgid "Submit" -msgstr "Invia" - -#: mod/fbrowser.php:133 -msgid "Files" -msgstr "File" - -#: mod/profperm.php:19 mod/group.php:72 index.php:400 -msgid "Permission denied" -msgstr "Permesso negato" - -#: mod/profperm.php:25 mod/profperm.php:56 -msgid "Invalid profile identifier." -msgstr "Identificativo del profilo non valido." - -#: mod/profperm.php:102 -msgid "Profile Visibility Editor" -msgstr "Modifica visibilità del profilo" - -#: mod/profperm.php:106 mod/group.php:223 -msgid "Click on a contact to add or remove." -msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." - -#: mod/profperm.php:115 -msgid "Visible To" -msgstr "Visibile a" - -#: mod/profperm.php:131 -msgid "All Contacts (with secure profile access)" -msgstr "Tutti i contatti (con profilo ad accesso sicuro)" - -#: mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Tag rimosso" - -#: mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Rimuovi il tag" - -#: mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Seleziona un tag da rimuovere: " - -#: mod/tagrm.php:93 mod/delegate.php:139 -msgid "Remove" -msgstr "Rimuovi" - -#: mod/repair_ostatus.php:14 -msgid "Resubscribing to OStatus contacts" -msgstr "Risottoscrivi i contatti OStatus" - -#: mod/repair_ostatus.php:30 -msgid "Error" -msgstr "Errore" - -#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51 -msgid "Done" -msgstr "Fatto" - -#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73 -msgid "Keep this window open until done." -msgstr "Tieni questa finestra aperta fino a che ha finito." - -#: mod/delegate.php:101 -msgid "No potential page delegates located." -msgstr "Nessun potenziale delegato per la pagina è stato trovato." - -#: mod/delegate.php:132 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "I Delegati sono in grado di gestire tutti gli aspetti di questa pagina, tranne per le impostazioni di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente." - -#: mod/delegate.php:133 -msgid "Existing Page Managers" -msgstr "Gestori Pagina Esistenti" - -#: mod/delegate.php:135 -msgid "Existing Page Delegates" -msgstr "Delegati Pagina Esistenti" - -#: mod/delegate.php:137 -msgid "Potential Delegates" -msgstr "Delegati Potenziali" - -#: mod/delegate.php:140 -msgid "Add" -msgstr "Aggiungi" - -#: mod/delegate.php:141 -msgid "No entries." -msgstr "Nessuna voce." - -#: mod/credits.php:16 -msgid "Credits" -msgstr "Crediti" - -#: mod/credits.php:17 -msgid "" -"Friendica is a community project, that would not be possible without the " -"help of many people. Here is a list of those who have contributed to the " -"code or the translation of Friendica. Thank you all!" -msgstr "Friendica è un progetto comunitario, che non sarebbe stato possibile realizzare senza l'aiuto di molte persone.\nQuesta è una lista di chi ha contribuito al codice o alle traduzioni di Friendica. Grazie a tutti!" - -#: mod/filer.php:30 -msgid "- select -" -msgstr "- seleziona -" - -#: mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s sta seguendo %3$s di %2$s" - -#: mod/attach.php:8 -msgid "Item not available." -msgstr "Oggetto non disponibile." - -#: mod/attach.php:20 -msgid "Item was not found." -msgstr "Oggetto non trovato." - -#: mod/apps.php:7 index.php:244 -msgid "You must be logged in to use addons. " -msgstr "Devi aver effettuato il login per usare i componenti aggiuntivi." - -#: mod/apps.php:11 -msgid "Applications" -msgstr "Applicazioni" - -#: mod/apps.php:14 -msgid "No installed applications." -msgstr "Nessuna applicazione installata." - -#: mod/p.php:9 -msgid "Not Extended" -msgstr "Not Extended" +#: mod/mood.php:135 +msgid "Set your current mood and tell your friends" +msgstr "Condividi il tuo umore con i tuoi amici" #: mod/newmember.php:6 msgid "Welcome to Friendica" @@ -3719,7 +4292,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:36 mod/profile_photo.php:250 mod/profiles.php:707 +#: mod/newmember.php:36 mod/profile_photo.php:256 mod/profiles.php:700 msgid "Upload Profile Photo" msgstr "Carica la foto del profilo" @@ -3838,190 +4411,367 @@ 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/removeme.php:46 mod/removeme.php:49 +#: mod/nogroup.php:65 +msgid "Contacts who are not members of a group" +msgstr "Contatti che non sono membri di un gruppo" + +#: mod/notify.php:65 +msgid "No more system notifications." +msgstr "Nessuna nuova notifica di sistema." + +#: mod/notify.php:69 mod/notifications.php:111 +msgid "System Notifications" +msgstr "Notifiche di sistema" + +#: mod/oexchange.php:21 +msgid "Post successful." +msgstr "Inviato!" + +#: mod/ostatus_subscribe.php:14 +msgid "Subscribing to OStatus contacts" +msgstr "Iscrizione a contatti OStatus" + +#: mod/ostatus_subscribe.php:25 +msgid "No contact provided." +msgstr "Nessun contatto disponibile." + +#: mod/ostatus_subscribe.php:31 +msgid "Couldn't fetch information for contact." +msgstr "Non è stato possibile recuperare le informazioni del contatto." + +#: mod/ostatus_subscribe.php:40 +msgid "Couldn't fetch friends for contact." +msgstr "Non è stato possibile recuperare gli amici del contatto." + +#: mod/ostatus_subscribe.php:54 mod/repair_ostatus.php:44 +msgid "Done" +msgstr "Fatto" + +#: mod/ostatus_subscribe.php:68 +msgid "success" +msgstr "successo" + +#: mod/ostatus_subscribe.php:70 +msgid "failed" +msgstr "fallito" + +#: mod/ostatus_subscribe.php:78 mod/repair_ostatus.php:50 +msgid "Keep this window open until done." +msgstr "Tieni questa finestra aperta fino a che ha finito." + +#: mod/p.php:9 +msgid "Not Extended" +msgstr "Not Extended" + +#: mod/poke.php:196 +msgid "Poke/Prod" +msgstr "Tocca/Pungola" + +#: mod/poke.php:197 +msgid "poke, prod or do other things to somebody" +msgstr "tocca, pungola o fai altre cose a qualcuno" + +#: mod/poke.php:198 +msgid "Recipient" +msgstr "Destinatario" + +#: mod/poke.php:199 +msgid "Choose what you wish to do to recipient" +msgstr "Scegli cosa vuoi fare al destinatario" + +#: mod/poke.php:202 +msgid "Make this post private" +msgstr "Rendi questo post privato" + +#: mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." + +#: mod/profile_photo.php:77 mod/profile_photo.php:85 mod/profile_photo.php:93 +#: mod/profile_photo.php:323 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Il ridimensionamento dell'immagine [%s] è fallito." + +#: mod/profile_photo.php:127 +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:137 +msgid "Unable to process image" +msgstr "Impossibile elaborare l'immagine" + +#: mod/profile_photo.php:156 mod/photos.php:813 mod/wall_upload.php:181 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "La dimensione dell'immagine supera il limite di %s" + +#: mod/profile_photo.php:165 mod/photos.php:854 mod/wall_upload.php:218 +msgid "Unable to process image." +msgstr "Impossibile caricare l'immagine." + +#: mod/profile_photo.php:254 +msgid "Upload File:" +msgstr "Carica un file:" + +#: mod/profile_photo.php:255 +msgid "Select a profile:" +msgstr "Seleziona un profilo:" + +#: mod/profile_photo.php:257 +msgid "Upload" +msgstr "Carica" + +#: mod/profile_photo.php:260 +msgid "or" +msgstr "o" + +#: mod/profile_photo.php:260 +msgid "skip this step" +msgstr "salta questo passaggio" + +#: mod/profile_photo.php:260 +msgid "select a photo from your photo albums" +msgstr "seleziona una foto dai tuoi album" + +#: mod/profile_photo.php:274 +msgid "Crop Image" +msgstr "Ritaglia immagine" + +#: mod/profile_photo.php:275 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Ritaglia l'immagine per una visualizzazione migliore." + +#: mod/profile_photo.php:277 +msgid "Done Editing" +msgstr "Finito" + +#: mod/profile_photo.php:313 +msgid "Image uploaded successfully." +msgstr "Immagine caricata con successo." + +#: mod/profile_photo.php:315 mod/photos.php:883 mod/wall_upload.php:257 +msgid "Image upload failed." +msgstr "Caricamento immagine fallito." + +#: mod/profperm.php:20 mod/group.php:76 index.php:406 +msgid "Permission denied" +msgstr "Permesso negato" + +#: mod/profperm.php:26 mod/profperm.php:57 +msgid "Invalid profile identifier." +msgstr "Identificativo del profilo non valido." + +#: mod/profperm.php:103 +msgid "Profile Visibility Editor" +msgstr "Modifica visibilità del profilo" + +#: mod/profperm.php:107 mod/group.php:262 +msgid "Click on a contact to add or remove." +msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." + +#: mod/profperm.php:116 +msgid "Visible To" +msgstr "Visibile a" + +#: mod/profperm.php:132 +msgid "All Contacts (with secure profile access)" +msgstr "Tutti i contatti (con profilo ad accesso sicuro)" + +#: mod/regmod.php:58 +msgid "Account approved." +msgstr "Account approvato." + +#: mod/regmod.php:95 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrazione revocata per %s" + +#: mod/regmod.php:107 +msgid "Please login." +msgstr "Accedi." + +#: mod/removeme.php:52 mod/removeme.php:55 msgid "Remove My Account" msgstr "Rimuovi il mio account" -#: mod/removeme.php:47 +#: mod/removeme.php:53 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 +#: mod/removeme.php:54 msgid "Please enter your password for verification:" msgstr "Inserisci la tua password per verifica:" -#: mod/editpost.php:17 mod/editpost.php:27 -msgid "Item not found" -msgstr "Oggetto non trovato" +#: mod/repair_ostatus.php:14 +msgid "Resubscribing to OStatus contacts" +msgstr "Risottoscrivi i contatti OStatus" -#: mod/editpost.php:40 -msgid "Edit post" -msgstr "Modifica messaggio" +#: mod/repair_ostatus.php:30 +msgid "Error" +msgstr "Errore" -#: mod/localtime.php:24 -msgid "Time Conversion" -msgstr "Conversione Ora" +#: mod/subthread.php:104 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s sta seguendo %3$s di %2$s" -#: mod/localtime.php:26 +#: mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Vuoi veramente cancellare questo suggerimento?" + +#: mod/suggest.php:71 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." +"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/localtime.php:30 +#: mod/suggest.php:84 mod/suggest.php:104 +msgid "Ignore/Hide" +msgstr "Ignora / Nascondi" + +#: mod/tagrm.php:43 +msgid "Tag removed" +msgstr "Tag rimosso" + +#: mod/tagrm.php:82 +msgid "Remove Item Tag" +msgstr "Rimuovi il tag" + +#: mod/tagrm.php:84 +msgid "Select a tag to remove: " +msgstr "Seleziona un tag da rimuovere: " + +#: mod/uimport.php:51 mod/register.php:198 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." + +#: mod/uimport.php:66 mod/register.php:295 +msgid "Import" +msgstr "Importa" + +#: mod/uimport.php:68 +msgid "Move account" +msgstr "Muovi account" + +#: mod/uimport.php:69 +msgid "You can import an account from another Friendica server." +msgstr "Puoi importare un account da un altro server Friendica." + +#: mod/uimport.php:70 +msgid "" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also" +" to inform your friends that you moved here." +msgstr "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui." + +#: mod/uimport.php:71 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (GNU Social/Statusnet) o da Diaspora" + +#: mod/uimport.php:72 +msgid "Account file" +msgstr "File account" + +#: mod/uimport.php:72 +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/update_community.php:19 mod/update_display.php:23 +#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35 +msgid "[Embedded content - reload page to view]" +msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]" + +#: mod/viewcontacts.php:75 +msgid "No contacts." +msgstr "Nessun contatto." + +#: mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Accesso negato." + +#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76 +#: mod/wall_upload.php:36 mod/wall_upload.php:52 mod/wall_upload.php:110 +#: mod/wall_upload.php:150 mod/wall_upload.php:153 +msgid "Invalid request." +msgstr "Richiesta non valida." + +#: mod/wall_attach.php:94 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Mi spiace, forse il file che stai caricando è più grosso di quanto la configurazione di PHP permetta" + +#: mod/wall_attach.php:94 +msgid "Or - did you try to upload an empty file?" +msgstr "O.. non avrai provato a caricare un file vuoto?" + +#: mod/wall_attach.php:105 #, php-format -msgid "UTC time: %s" -msgstr "Ora UTC: %s" +msgid "File exceeds size limit of %s" +msgstr "Il file supera la dimensione massima di %s" -#: mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "Fuso orario corrente: %s" +#: mod/wall_attach.php:158 mod/wall_attach.php:174 +msgid "File upload failed." +msgstr "Caricamento del file non riuscito." -#: mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "Ora locale convertita: %s" - -#: mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Selezionare il tuo fuso orario:" - -#: mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "Il messaggio è stato creato" - -#: mod/group.php:29 -msgid "Group created." -msgstr "Gruppo creato." - -#: mod/group.php:35 -msgid "Could not create group." -msgstr "Impossibile creare il gruppo." - -#: mod/group.php:47 mod/group.php:140 -msgid "Group not found." -msgstr "Gruppo non trovato." - -#: mod/group.php:60 -msgid "Group name changed." -msgstr "Il nome del gruppo è cambiato." - -#: mod/group.php:87 -msgid "Save Group" -msgstr "Salva gruppo" - -#: mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Crea un gruppo di amici/contatti." - -#: mod/group.php:113 -msgid "Group removed." -msgstr "Gruppo rimosso." - -#: mod/group.php:115 -msgid "Unable to remove group." -msgstr "Impossibile rimuovere il gruppo." - -#: mod/group.php:177 -msgid "Group Editor" -msgstr "Modifica gruppo" - -#: mod/group.php:190 -msgid "Members" -msgstr "Membri" - -#: mod/group.php:192 mod/contacts.php:692 -msgid "All Contacts" -msgstr "Tutti i contatti" - -#: mod/group.php:193 mod/content.php:130 mod/network.php:496 -msgid "Group is empty" -msgstr "Il gruppo è vuoto" - -#: mod/wallmessage.php:42 mod/wallmessage.php:112 +#: mod/wallmessage.php:42 mod/wallmessage.php:106 #, php-format msgid "Number of daily wall messages for %s exceeded. Message failed." msgstr "Numero giornaliero di messaggi per %s superato. Invio fallito." -#: mod/wallmessage.php:56 mod/message.php:71 +#: mod/wallmessage.php:50 mod/message.php:60 msgid "No recipient selected." msgstr "Nessun destinatario selezionato." -#: mod/wallmessage.php:59 +#: mod/wallmessage.php:53 msgid "Unable to check your home location." msgstr "Impossibile controllare la tua posizione di origine." -#: mod/wallmessage.php:62 mod/message.php:78 +#: mod/wallmessage.php:56 mod/message.php:67 msgid "Message could not be sent." msgstr "Il messaggio non può essere inviato." -#: mod/wallmessage.php:65 mod/message.php:81 +#: mod/wallmessage.php:59 mod/message.php:70 msgid "Message collection failure." msgstr "Errore recuperando il messaggio." -#: mod/wallmessage.php:68 mod/message.php:84 +#: mod/wallmessage.php:62 mod/message.php:73 msgid "Message sent." msgstr "Messaggio inviato." -#: mod/wallmessage.php:86 mod/wallmessage.php:95 +#: mod/wallmessage.php:80 mod/wallmessage.php:89 msgid "No recipient." msgstr "Nessun destinatario." -#: mod/wallmessage.php:142 mod/message.php:341 +#: mod/wallmessage.php:126 mod/message.php:322 msgid "Send Private Message" msgstr "Invia un messaggio privato" -#: mod/wallmessage.php:143 +#: mod/wallmessage.php:127 #, php-format msgid "" "If you wish for %s to respond, please check that the privacy settings on " "your site allow private mail from unknown senders." msgstr "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti." -#: mod/wallmessage.php:144 mod/message.php:342 mod/message.php:536 +#: mod/wallmessage.php:128 mod/message.php:323 mod/message.php:510 msgid "To:" msgstr "A:" -#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538 +#: mod/wallmessage.php:129 mod/message.php:328 mod/message.php:512 msgid "Subject:" msgstr "Oggetto:" -#: mod/share.php:38 -msgid "link" -msgstr "collegamento" - -#: mod/api.php:76 mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autorizza la connessione dell'applicazione" - -#: mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Torna alla tua applicazione e inserisci questo codice di sicurezza:" - -#: mod/api.php:89 -msgid "Please login to continue." -msgstr "Effettua il login per continuare." - -#: mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?" - -#: mod/api.php:106 mod/profiles.php:648 mod/profiles.php:652 -#: mod/profiles.php:677 mod/register.php:246 mod/settings.php:1163 -#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181 -#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198 -#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231 -#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234 -#: mod/dfrn_request.php:862 mod/follow.php:110 -msgid "No" -msgstr "No" - -#: mod/babel.php:17 +#: mod/babel.php:16 msgid "Source (bbcode) text:" msgstr "Testo sorgente (bbcode):" @@ -4061,641 +4811,857 @@ msgstr "bb2dia2bb: " msgid "bb2md2html2bb: " msgstr "bb2md2html2bb: " -#: mod/babel.php:69 +#: mod/babel.php:65 msgid "Source input (Diaspora format): " msgstr "Sorgente (formato Diaspora):" -#: mod/babel.php:74 +#: mod/babel.php:69 msgid "diaspora2bb: " msgstr "diaspora2bb: " -#: mod/ostatus_subscribe.php:14 -msgid "Subscribing to OStatus contacts" -msgstr "Iscrizione a contatti OStatus" +#: mod/cal.php:271 mod/events.php:375 +msgid "View" +msgstr "Mostra" -#: mod/ostatus_subscribe.php:25 -msgid "No contact provided." -msgstr "Nessun contatto disponibile." +#: mod/cal.php:272 mod/events.php:377 +msgid "Previous" +msgstr "Precedente" -#: mod/ostatus_subscribe.php:30 -msgid "Couldn't fetch information for contact." -msgstr "Non è stato possibile recuperare le informazioni del contatto." +#: mod/cal.php:273 mod/events.php:378 mod/install.php:201 +msgid "Next" +msgstr "Successivo" -#: mod/ostatus_subscribe.php:38 -msgid "Couldn't fetch friends for contact." -msgstr "Non è stato possibile recuperare gli amici del contatto." +#: mod/cal.php:282 mod/events.php:387 +msgid "list" +msgstr "lista" -#: mod/ostatus_subscribe.php:65 -msgid "success" -msgstr "successo" +#: mod/cal.php:292 +msgid "User not found" +msgstr "Utente non trovato" -#: mod/ostatus_subscribe.php:67 -msgid "failed" -msgstr "fallito" +#: mod/cal.php:308 +msgid "This calendar format is not supported" +msgstr "Questo formato di calendario non è supportato" -#: mod/ostatus_subscribe.php:69 mod/content.php:792 object/Item.php:245 -msgid "ignored" -msgstr "ignorato" +#: mod/cal.php:310 +msgid "No exportable data found" +msgstr "Nessun dato esportabile trovato" -#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537 +#: mod/cal.php:325 +msgid "calendar" +msgstr "calendario" + +#: mod/community.php:23 +msgid "Not available." +msgstr "Non disponibile." + +#: mod/community.php:50 mod/search.php:219 +msgid "No results." +msgstr "Nessun risultato." + +#: mod/dfrn_confirm.php:70 mod/profiles.php:19 mod/profiles.php:135 +#: mod/profiles.php:182 mod/profiles.php:619 +msgid "Profile not found." +msgstr "Profilo non trovato." + +#: mod/dfrn_confirm.php:127 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Questo può accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e già approvata." + +#: mod/dfrn_confirm.php:244 +msgid "Response from remote site was not understood." +msgstr "Errore di comunicazione con l'altro sito." + +#: mod/dfrn_confirm.php:253 mod/dfrn_confirm.php:258 +msgid "Unexpected response from remote site: " +msgstr "La risposta dell'altro sito non può essere gestita: " + +#: mod/dfrn_confirm.php:267 +msgid "Confirmation completed successfully." +msgstr "Conferma completata con successo." + +#: mod/dfrn_confirm.php:269 mod/dfrn_confirm.php:283 mod/dfrn_confirm.php:290 +msgid "Remote site reported: " +msgstr "Il sito remoto riporta: " + +#: mod/dfrn_confirm.php:281 +msgid "Temporary failure. Please wait and try again." +msgstr "Problema temporaneo. Attendi e riprova." + +#: mod/dfrn_confirm.php:288 +msgid "Introduction failed or was revoked." +msgstr "La presentazione ha generato un errore o è stata revocata." + +#: mod/dfrn_confirm.php:418 +msgid "Unable to set contact photo." +msgstr "Impossibile impostare la foto del contatto." + +#: mod/dfrn_confirm.php:559 #, php-format -msgid "%1$s welcomes %2$s" -msgstr "%s dà il benvenuto a %s" +msgid "No user record found for '%s' " +msgstr "Nessun utente trovato '%s'" -#: mod/message.php:75 +#: mod/dfrn_confirm.php:569 +msgid "Our site encryption key is apparently messed up." +msgstr "La nostra chiave di criptazione del sito sembra essere corrotta." + +#: mod/dfrn_confirm.php:580 +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:602 +msgid "Contact record was not found for you on our site." +msgstr "Il contatto non è stato trovato sul nostro sito." + +#: mod/dfrn_confirm.php:616 +#, 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:636 +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:647 +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:709 +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:781 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s si è unito a %2$s" + +#: mod/dfrn_request.php:101 +msgid "This introduction has already been accepted." +msgstr "Questa presentazione è già stata accettata." + +#: mod/dfrn_request.php:124 mod/dfrn_request.php:528 +msgid "Profile location is not valid or does not contain profile information." +msgstr "L'indirizzo del profilo non è valido o non contiene un profilo." + +#: mod/dfrn_request.php:129 mod/dfrn_request.php:533 +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:132 mod/dfrn_request.php:536 +msgid "Warning: profile location has no profile photo." +msgstr "Attenzione: l'indirizzo del profilo non ha una foto." + +#: mod/dfrn_request.php:136 mod/dfrn_request.php:540 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d parametro richiesto non è stato trovato all'indirizzo dato" +msgstr[1] "%d parametri richiesti non sono stati trovati all'indirizzo dato" + +#: mod/dfrn_request.php:180 +msgid "Introduction complete." +msgstr "Presentazione completa." + +#: mod/dfrn_request.php:225 +msgid "Unrecoverable protocol error." +msgstr "Errore di comunicazione." + +#: mod/dfrn_request.php:253 +msgid "Profile unavailable." +msgstr "Profilo non disponibile." + +#: mod/dfrn_request.php:280 +#, 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:281 +msgid "Spam protection measures have been invoked." +msgstr "Sono state attivate le misure di protezione contro lo spam." + +#: mod/dfrn_request.php:282 +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:344 +msgid "Invalid locator" +msgstr "Indirizzo non valido" + +#: mod/dfrn_request.php:353 +msgid "Invalid email address." +msgstr "Indirizzo email non valido." + +#: mod/dfrn_request.php:378 +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:481 +msgid "You have already introduced yourself here." +msgstr "Ti sei già presentato qui." + +#: mod/dfrn_request.php:485 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Pare che tu e %s siate già amici." + +#: mod/dfrn_request.php:506 +msgid "Invalid profile URL." +msgstr "Indirizzo profilo non valido." + +#: mod/dfrn_request.php:614 +msgid "Your introduction has been sent." +msgstr "La tua presentazione è stata inviata." + +#: mod/dfrn_request.php:656 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "La richiesta di connessione remota non può essere effettuata per la tua rete. Invia la richiesta direttamente sul nostro sistema." + +#: mod/dfrn_request.php:677 +msgid "Please login to confirm introduction." +msgstr "Accedi per confermare la presentazione." + +#: mod/dfrn_request.php:687 +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:701 mod/dfrn_request.php:718 +msgid "Confirm" +msgstr "Conferma" + +#: mod/dfrn_request.php:713 +msgid "Hide this contact" +msgstr "Nascondi questo contatto" + +#: mod/dfrn_request.php:716 +#, php-format +msgid "Welcome home %s." +msgstr "Bentornato a casa %s." + +#: mod/dfrn_request.php:717 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Conferma la tua richiesta di connessione con %s." + +#: mod/dfrn_request.php:848 +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:872 +#, 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:877 +msgid "Friend/Connection Request" +msgstr "Richieste di amicizia/connessione" + +#: mod/dfrn_request.php:878 +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:879 mod/follow.php:112 +msgid "Please answer the following:" +msgstr "Rispondi:" + +#: mod/dfrn_request.php:880 mod/follow.php:113 +#, php-format +msgid "Does %s know you?" +msgstr "%s ti conosce?" + +#: mod/dfrn_request.php:884 mod/follow.php:114 +msgid "Add a personal note:" +msgstr "Aggiungi una nota personale:" + +#: mod/dfrn_request.php:887 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated Social Web" + +#: mod/dfrn_request.php:889 +#, 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:890 mod/follow.php:120 +msgid "Your Identity Address:" +msgstr "L'indirizzo della tua identità:" + +#: mod/dfrn_request.php:893 mod/follow.php:19 +msgid "Submit Request" +msgstr "Invia richiesta" + +#: mod/dirfind.php:37 +#, php-format +msgid "People Search - %s" +msgstr "Cerca persone - %s" + +#: mod/dirfind.php:48 +#, php-format +msgid "Forum Search - %s" +msgstr "Ricerca Forum - %s" + +#: mod/events.php:93 mod/events.php:95 +msgid "Event can not end before it has started." +msgstr "Un evento non può finire prima di iniziare." + +#: mod/events.php:102 mod/events.php:104 +msgid "Event title and start time are required." +msgstr "Titolo e ora di inizio dell'evento sono richiesti." + +#: mod/events.php:376 +msgid "Create New Event" +msgstr "Crea un nuovo evento" + +#: mod/events.php:481 +msgid "Event details" +msgstr "Dettagli dell'evento" + +#: mod/events.php:482 +msgid "Starting date and Title are required." +msgstr "La data di inizio e il titolo sono richiesti." + +#: mod/events.php:483 mod/events.php:484 +msgid "Event Starts:" +msgstr "L'evento inizia:" + +#: mod/events.php:483 mod/events.php:495 mod/profiles.php:709 +msgid "Required" +msgstr "Richiesto" + +#: mod/events.php:485 mod/events.php:501 +msgid "Finish date/time is not known or not relevant" +msgstr "La data/ora di fine non è definita" + +#: mod/events.php:487 mod/events.php:488 +msgid "Event Finishes:" +msgstr "L'evento finisce:" + +#: mod/events.php:489 mod/events.php:502 +msgid "Adjust for viewer timezone" +msgstr "Visualizza con il fuso orario di chi legge" + +#: mod/events.php:491 +msgid "Description:" +msgstr "Descrizione:" + +#: mod/events.php:495 mod/events.php:497 +msgid "Title:" +msgstr "Titolo:" + +#: mod/events.php:498 mod/events.php:499 +msgid "Share this event" +msgstr "Condividi questo evento" + +#: mod/events.php:528 +msgid "Failed to remove event" +msgstr "Rimozione evento fallita." + +#: mod/events.php:530 +msgid "Event removed" +msgstr "Evento rimosso" + +#: mod/follow.php:30 +msgid "You already added this contact." +msgstr "Hai già aggiunto questo contatto." + +#: mod/follow.php:39 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "Il supporto Diaspora non è abilitato. Il contatto non può essere aggiunto." + +#: mod/follow.php:46 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "Il supporto OStatus non è abilitato. Il contatto non può essere aggiunto." + +#: mod/follow.php:53 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "Non è possibile rilevare il tipo di rete. Il contatto non può essere aggiunto." + +#: mod/follow.php:186 +msgid "Contact added" +msgstr "Contatto aggiunto" + +#: mod/friendica.php:68 +msgid "This is Friendica, version" +msgstr "Questo è Friendica, versione" + +#: mod/friendica.php:69 +msgid "running at web location" +msgstr "in esecuzione all'indirizzo web" + +#: mod/friendica.php:73 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Visita Friendica.com per saperne di più sul progetto Friendica." + +#: mod/friendica.php:77 +msgid "Bug reports and issues: please visit" +msgstr "Segnalazioni di bug e problemi: visita" + +#: mod/friendica.php:77 +msgid "the bugtracker at github" +msgstr "il bugtracker su github" + +#: mod/friendica.php:80 +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:94 +msgid "Installed plugins/addons/apps:" +msgstr "Plugin/componenti aggiuntivi/applicazioni installate" + +#: mod/friendica.php:108 +msgid "No installed plugins/addons/apps" +msgstr "Nessun plugin/componente aggiuntivo/applicazione installata" + +#: mod/friendica.php:113 +msgid "On this server the following remote servers are blocked." +msgstr "In questo server i seguenti server remoti sono bloccati." + +#: mod/friendica.php:114 mod/admin.php:280 mod/admin.php:298 +msgid "Reason for the block" +msgstr "Motivazione del blocco" + +#: 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:49 mod/group.php:154 +msgid "Group not found." +msgstr "Gruppo non trovato." + +#: mod/group.php:63 +msgid "Group name changed." +msgstr "Il nome del gruppo è cambiato." + +#: mod/group.php:93 +msgid "Save Group" +msgstr "Salva gruppo" + +#: mod/group.php:98 +msgid "Create a group of contacts/friends." +msgstr "Crea un gruppo di amici/contatti." + +#: mod/group.php:123 +msgid "Group removed." +msgstr "Gruppo rimosso." + +#: mod/group.php:125 +msgid "Unable to remove group." +msgstr "Impossibile rimuovere il gruppo." + +#: mod/group.php:189 +msgid "Delete Group" +msgstr "Elimina Gruppo" + +#: mod/group.php:195 +msgid "Group Editor" +msgstr "Modifica gruppo" + +#: mod/group.php:200 +msgid "Edit Group Name" +msgstr "Modifica Nome Gruppo" + +#: mod/group.php:210 +msgid "Members" +msgstr "Membri" + +#: mod/group.php:226 +msgid "Remove Contact" +msgstr "Rimuovi Contatto" + +#: mod/group.php:250 +msgid "Add Contact" +msgstr "Aggiungi Contatto" + +#: mod/manage.php:151 +msgid "Manage Identities and/or Pages" +msgstr "Gestisci identità e/o pagine" + +#: mod/manage.php:152 +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:153 +msgid "Select an identity to manage: " +msgstr "Seleziona un'identità da gestire:" + +#: mod/message.php:64 msgid "Unable to locate contact information." msgstr "Impossibile trovare le informazioni del contatto." -#: mod/message.php:215 +#: mod/message.php:204 msgid "Do you really want to delete this message?" msgstr "Vuoi veramente cancellare questo messaggio?" -#: mod/message.php:235 +#: mod/message.php:224 msgid "Message deleted." msgstr "Messaggio eliminato." -#: mod/message.php:266 +#: mod/message.php:255 msgid "Conversation removed." msgstr "Conversazione rimossa." -#: mod/message.php:383 +#: mod/message.php:364 msgid "No messages." msgstr "Nessun messaggio." -#: mod/message.php:426 +#: mod/message.php:403 msgid "Message not available." msgstr "Messaggio non disponibile." -#: mod/message.php:503 +#: mod/message.php:477 msgid "Delete message" msgstr "Elimina il messaggio" -#: mod/message.php:529 mod/message.php:609 +#: mod/message.php:503 mod/message.php:591 msgid "Delete conversation" msgstr "Elimina la conversazione" -#: mod/message.php:531 +#: mod/message.php:505 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente." -#: mod/message.php:535 +#: mod/message.php:509 msgid "Send Reply" msgstr "Invia la risposta" -#: mod/message.php:579 +#: mod/message.php:561 #, php-format msgid "Unknown sender - %s" msgstr "Mittente sconosciuto - %s" -#: mod/message.php:581 +#: mod/message.php:563 #, php-format msgid "You and %s" msgstr "Tu e %s" -#: mod/message.php:583 +#: mod/message.php:565 #, php-format msgid "%s and You" msgstr "%s e Tu" -#: mod/message.php:612 +#: mod/message.php:594 msgid "D, d M Y - g:i A" msgstr "D d M Y - G:i" -#: mod/message.php:615 +#: mod/message.php:597 #, php-format msgid "%d message" msgid_plural "%d messages" msgstr[0] "%d messaggio" msgstr[1] "%d messaggi" -#: mod/manage.php:139 -msgid "Manage Identities and/or Pages" -msgstr "Gestisci identità e/o pagine" +#: mod/network.php:197 mod/search.php:25 +msgid "Remove term" +msgstr "Rimuovi termine" -#: mod/manage.php:140 +#: mod/network.php:404 +#, php-format msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione" +"Warning: This group contains %s member from a network that doesn't allow non" +" public messages." +msgid_plural "" +"Warning: This group contains %s members from a network that doesn't allow " +"non public messages." +msgstr[0] "Attenzione: Questo gruppo contiene %s membro da una rete che non permette la ricezione di messaggi non pubblici." +msgstr[1] "Attenzione: Questo gruppo contiene %s membri da reti che non permettono la ricezione di messaggi non pubblici." -#: mod/manage.php:141 -msgid "Select an identity to manage: " -msgstr "Seleziona un'identità da gestire:" +#: mod/network.php:407 +msgid "Messages in this group won't be send to these receivers." +msgstr "I messaggi in questo gruppo non saranno inviati ai quei contatti." -#: mod/crepair.php:87 -msgid "Contact settings applied." -msgstr "Contatto modificato." +#: mod/network.php:535 +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/crepair.php:89 -msgid "Contact update failed." -msgstr "Le modifiche al contatto non sono state salvate." +#: mod/network.php:540 +msgid "Invalid contact." +msgstr "Contatto non valido." -#: mod/crepair.php:114 mod/fsuggest.php:20 mod/fsuggest.php:92 -#: mod/dfrn_confirm.php:126 -msgid "Contact not found." -msgstr "Contatto non trovato." +#: mod/network.php:813 +msgid "Commented Order" +msgstr "Ordina per commento" -#: mod/crepair.php:120 +#: mod/network.php:816 +msgid "Sort by Comment Date" +msgstr "Ordina per data commento" + +#: mod/network.php:821 +msgid "Posted Order" +msgstr "Ordina per invio" + +#: mod/network.php:824 +msgid "Sort by Post Date" +msgstr "Ordina per data messaggio" + +#: mod/network.php:835 +msgid "Posts that mention or involve you" +msgstr "Messaggi che ti citano o coinvolgono" + +#: mod/network.php:843 +msgid "New" +msgstr "Nuovo" + +#: mod/network.php:846 +msgid "Activity Stream - by date" +msgstr "Activity Stream - per data" + +#: mod/network.php:854 +msgid "Shared Links" +msgstr "Links condivisi" + +#: mod/network.php:857 +msgid "Interesting Links" +msgstr "Link Interessanti" + +#: mod/network.php:865 +msgid "Starred" +msgstr "Preferiti" + +#: mod/network.php:868 +msgid "Favourite Posts" +msgstr "Messaggi preferiti" + +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Errore protocollo OpenID. Nessun ID ricevuto." + +#: mod/openid.php:60 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ù" +"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/crepair.php:121 +#: mod/photos.php:94 mod/photos.php:1900 +msgid "Recent Photos" +msgstr "Foto recenti" + +#: mod/photos.php:97 mod/photos.php:1328 mod/photos.php:1902 +msgid "Upload New Photos" +msgstr "Carica nuove foto" + +#: mod/photos.php:112 mod/settings.php:36 +msgid "everybody" +msgstr "tutti" + +#: mod/photos.php:176 +msgid "Contact information unavailable" +msgstr "I dati di questo contatto non sono disponibili" + +#: mod/photos.php:197 +msgid "Album not found." +msgstr "Album non trovato." + +#: mod/photos.php:230 mod/photos.php:242 mod/photos.php:1272 +msgid "Delete Album" +msgstr "Rimuovi album" + +#: mod/photos.php:240 +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:323 mod/photos.php:334 mod/photos.php:1598 +msgid "Delete Photo" +msgstr "Rimuovi foto" + +#: mod/photos.php:332 +msgid "Do you really want to delete this photo?" +msgstr "Vuoi veramente cancellare questa foto?" + +#: mod/photos.php:713 +#, 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:713 +msgid "a photo" +msgstr "una foto" + +#: mod/photos.php:821 +msgid "Image file is empty." +msgstr "Il file dell'immagine è vuoto." + +#: mod/photos.php:988 +msgid "No photos selected" +msgstr "Nessuna foto selezionata" + +#: mod/photos.php:1091 mod/videos.php:309 +msgid "Access to this item is restricted." +msgstr "Questo oggetto non è visibile a tutti." + +#: mod/photos.php:1151 +#, 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:1188 +msgid "Upload Photos" +msgstr "Carica foto" + +#: mod/photos.php:1192 mod/photos.php:1267 +msgid "New album name: " +msgstr "Nome nuovo album: " + +#: mod/photos.php:1193 +msgid "or existing album name: " +msgstr "o nome di un album esistente: " + +#: mod/photos.php:1194 +msgid "Do not show a status post for this upload" +msgstr "Non creare un post per questo upload" + +#: mod/photos.php:1205 mod/photos.php:1602 mod/settings.php:1307 +msgid "Show to Groups" +msgstr "Mostra ai gruppi" + +#: mod/photos.php:1206 mod/photos.php:1603 mod/settings.php:1308 +msgid "Show to Contacts" +msgstr "Mostra ai contatti" + +#: mod/photos.php:1207 +msgid "Private Photo" +msgstr "Foto privata" + +#: mod/photos.php:1208 +msgid "Public Photo" +msgstr "Foto pubblica" + +#: mod/photos.php:1278 +msgid "Edit Album" +msgstr "Modifica album" + +#: mod/photos.php:1283 +msgid "Show Newest First" +msgstr "Mostra nuove foto per prime" + +#: mod/photos.php:1285 +msgid "Show Oldest First" +msgstr "Mostra vecchie foto per prime" + +#: mod/photos.php:1314 mod/photos.php:1885 +msgid "View Photo" +msgstr "Vedi foto" + +#: mod/photos.php:1359 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permesso negato. L'accesso a questo elemento può essere limitato." + +#: mod/photos.php:1361 +msgid "Photo not available" +msgstr "Foto non disponibile" + +#: mod/photos.php:1422 +msgid "View photo" +msgstr "Vedi foto" + +#: mod/photos.php:1422 +msgid "Edit photo" +msgstr "Modifica foto" + +#: mod/photos.php:1423 +msgid "Use as profile photo" +msgstr "Usa come foto del profilo" + +#: mod/photos.php:1448 +msgid "View Full Size" +msgstr "Vedi dimensione intera" + +#: mod/photos.php:1538 +msgid "Tags: " +msgstr "Tag: " + +#: mod/photos.php:1541 +msgid "[Remove any tag]" +msgstr "[Rimuovi tutti i tag]" + +#: mod/photos.php:1584 +msgid "New album name" +msgstr "Nuovo nome dell'album" + +#: mod/photos.php:1585 +msgid "Caption" +msgstr "Titolo" + +#: mod/photos.php:1586 +msgid "Add a Tag" +msgstr "Aggiungi tag" + +#: mod/photos.php:1586 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." +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: mod/crepair.php:134 mod/crepair.php:136 -msgid "No mirroring" -msgstr "Non duplicare" +#: mod/photos.php:1587 +msgid "Do not rotate" +msgstr "Non ruotare" -#: mod/crepair.php:134 -msgid "Mirror as forwarded posting" -msgstr "Duplica come messaggi ricondivisi" +#: mod/photos.php:1588 +msgid "Rotate CW (right)" +msgstr "Ruota a destra" -#: mod/crepair.php:134 mod/crepair.php:136 -msgid "Mirror as my own posting" -msgstr "Duplica come miei messaggi" +#: mod/photos.php:1589 +msgid "Rotate CCW (left)" +msgstr "Ruota a sinistra" -#: mod/crepair.php:150 -msgid "Return to contact editor" -msgstr "Ritorna alla modifica contatto" +#: mod/photos.php:1604 +msgid "Private photo" +msgstr "Foto privata" -#: mod/crepair.php:152 -msgid "Refetch contact data" -msgstr "Ricarica dati contatto" +#: mod/photos.php:1605 +msgid "Public photo" +msgstr "Foto pubblica" -#: mod/crepair.php:156 -msgid "Remote Self" -msgstr "Io remoto" +#: mod/photos.php:1814 +msgid "Map" +msgstr "Mappa" -#: mod/crepair.php:159 -msgid "Mirror postings from this contact" -msgstr "Ripeti i messaggi di questo contatto" +#: mod/photos.php:1891 mod/videos.php:393 +msgid "View Album" +msgstr "Sfoglia l'album" -#: mod/crepair.php:161 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "Imposta questo contatto come 'io remoto', questo farà si che friendica re invii i nuovi messaggi da questo contatto." +#: mod/probe.php:10 mod/webfinger.php:9 +msgid "Only logged in users are permitted to perform a probing." +msgstr "Solo agli utenti loggati è permesso effettuare un probe." -#: mod/crepair.php:165 mod/settings.php:680 mod/settings.php:706 -#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1438 -msgid "Name" -msgstr "Nome" - -#: mod/crepair.php:166 -msgid "Account Nickname" -msgstr "Nome utente" - -#: mod/crepair.php:167 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@TagName - al posto del nome utente" - -#: mod/crepair.php:168 -msgid "Account URL" -msgstr "URL dell'utente" - -#: mod/crepair.php:169 -msgid "Friend Request URL" -msgstr "URL Richiesta Amicizia" - -#: mod/crepair.php:170 -msgid "Friend Confirm URL" -msgstr "URL Conferma Amicizia" - -#: mod/crepair.php:171 -msgid "Notification Endpoint URL" -msgstr "URL Notifiche" - -#: mod/crepair.php:172 -msgid "Poll/Feed URL" -msgstr "URL Feed" - -#: mod/crepair.php:173 -msgid "New photo from this URL" -msgstr "Nuova foto da questo URL" - -#: mod/content.php:119 mod/network.php:469 -msgid "No such group" -msgstr "Nessun gruppo" - -#: mod/content.php:135 mod/network.php:500 -#, php-format -msgid "Group: %s" -msgstr "Gruppo: %s" - -#: mod/content.php:325 object/Item.php:95 -msgid "This entry was edited" -msgstr "Questa voce è stata modificata" - -#: mod/content.php:621 object/Item.php:429 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d commento" -msgstr[1] "%d commenti" - -#: mod/content.php:638 mod/photos.php:1379 object/Item.php:117 -msgid "Private Message" -msgstr "Messaggio privato" - -#: mod/content.php:702 mod/photos.php:1567 object/Item.php:263 -msgid "I like this (toggle)" -msgstr "Mi piace (clic per cambiare)" - -#: mod/content.php:702 object/Item.php:263 -msgid "like" -msgstr "mi piace" - -#: mod/content.php:703 mod/photos.php:1568 object/Item.php:264 -msgid "I don't like this (toggle)" -msgstr "Non mi piace (clic per cambiare)" - -#: mod/content.php:703 object/Item.php:264 -msgid "dislike" -msgstr "non mi piace" - -#: mod/content.php:705 object/Item.php:266 -msgid "Share this" -msgstr "Condividi questo" - -#: mod/content.php:705 object/Item.php:266 -msgid "share" -msgstr "condividi" - -#: mod/content.php:725 mod/photos.php:1587 mod/photos.php:1635 -#: mod/photos.php:1721 object/Item.php:717 -msgid "This is you" -msgstr "Questo sei tu" - -#: mod/content.php:727 mod/content.php:945 mod/photos.php:1589 -#: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403 -#: object/Item.php:719 boot.php:971 -msgid "Comment" -msgstr "Commento" - -#: mod/content.php:729 object/Item.php:721 -msgid "Bold" -msgstr "Grassetto" - -#: mod/content.php:730 object/Item.php:722 -msgid "Italic" -msgstr "Corsivo" - -#: mod/content.php:731 object/Item.php:723 -msgid "Underline" -msgstr "Sottolineato" - -#: mod/content.php:732 object/Item.php:724 -msgid "Quote" -msgstr "Citazione" - -#: mod/content.php:733 object/Item.php:725 -msgid "Code" -msgstr "Codice" - -#: mod/content.php:734 object/Item.php:726 -msgid "Image" -msgstr "Immagine" - -#: mod/content.php:735 object/Item.php:727 -msgid "Link" -msgstr "Link" - -#: mod/content.php:736 object/Item.php:728 -msgid "Video" -msgstr "Video" - -#: mod/content.php:746 mod/settings.php:740 object/Item.php:122 -#: object/Item.php:124 -msgid "Edit" -msgstr "Modifica" - -#: mod/content.php:771 object/Item.php:227 -msgid "add star" -msgstr "aggiungi a speciali" - -#: mod/content.php:772 object/Item.php:228 -msgid "remove star" -msgstr "rimuovi da speciali" - -#: mod/content.php:773 object/Item.php:229 -msgid "toggle star status" -msgstr "Inverti stato preferito" - -#: mod/content.php:776 object/Item.php:232 -msgid "starred" -msgstr "preferito" - -#: mod/content.php:777 mod/content.php:798 object/Item.php:252 -msgid "add tag" -msgstr "aggiungi tag" - -#: mod/content.php:787 object/Item.php:240 -msgid "ignore thread" -msgstr "ignora la discussione" - -#: mod/content.php:788 object/Item.php:241 -msgid "unignore thread" -msgstr "non ignorare la discussione" - -#: mod/content.php:789 object/Item.php:242 -msgid "toggle ignore status" -msgstr "inverti stato \"Ignora\"" - -#: mod/content.php:803 object/Item.php:137 -msgid "save to folder" -msgstr "salva nella cartella" - -#: mod/content.php:848 object/Item.php:201 -msgid "I will attend" -msgstr "Parteciperò" - -#: mod/content.php:848 object/Item.php:201 -msgid "I will not attend" -msgstr "Non parteciperò" - -#: mod/content.php:848 object/Item.php:201 -msgid "I might attend" -msgstr "Forse parteciperò" - -#: mod/content.php:912 object/Item.php:369 -msgid "to" -msgstr "a" - -#: mod/content.php:913 object/Item.php:371 -msgid "Wall-to-Wall" -msgstr "Da bacheca a bacheca" - -#: mod/content.php:914 object/Item.php:372 -msgid "via Wall-To-Wall:" -msgstr "da bacheca a bacheca" - -#: mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Suggerimento di amicizia inviato." - -#: mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Suggerisci amici" - -#: mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Suggerisci un amico a %s" - -#: mod/mood.php:133 -msgid "Mood" -msgstr "Umore" - -#: mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Condividi il tuo umore con i tuoi amici" - -#: mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Tocca/Pungola" - -#: mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "tocca, pungola o fai altre cose a qualcuno" - -#: mod/poke.php:194 -msgid "Recipient" -msgstr "Destinatario" - -#: mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Scegli cosa vuoi fare al destinatario" - -#: mod/poke.php:198 -msgid "Make this post private" -msgstr "Rendi questo post privato" - -#: mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." - -#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 -#: mod/profile_photo.php:314 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Il ridimensionamento dell'immagine [%s] è fallito." - -#: mod/profile_photo.php:124 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente." - -#: mod/profile_photo.php:134 -msgid "Unable to process image" -msgstr "Impossibile elaborare l'immagine" - -#: mod/profile_photo.php:150 mod/photos.php:786 mod/wall_upload.php:151 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "La dimensione dell'immagine supera il limite di %s" - -#: mod/profile_photo.php:159 mod/photos.php:826 mod/wall_upload.php:188 -msgid "Unable to process image." -msgstr "Impossibile caricare l'immagine." - -#: mod/profile_photo.php:248 -msgid "Upload File:" -msgstr "Carica un file:" - -#: mod/profile_photo.php:249 -msgid "Select a profile:" -msgstr "Seleziona un profilo:" - -#: mod/profile_photo.php:251 -msgid "Upload" -msgstr "Carica" - -#: mod/profile_photo.php:254 -msgid "or" -msgstr "o" - -#: mod/profile_photo.php:254 -msgid "skip this step" -msgstr "salta questo passaggio" - -#: mod/profile_photo.php:254 -msgid "select a photo from your photo albums" -msgstr "seleziona una foto dai tuoi album" - -#: mod/profile_photo.php:268 -msgid "Crop Image" -msgstr "Ritaglia immagine" - -#: mod/profile_photo.php:269 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Ritaglia l'immagine per una visualizzazione migliore." - -#: mod/profile_photo.php:271 -msgid "Done Editing" -msgstr "Finito" - -#: mod/profile_photo.php:305 -msgid "Image uploaded successfully." -msgstr "Immagine caricata con successo." - -#: mod/profile_photo.php:307 mod/photos.php:853 mod/wall_upload.php:221 -msgid "Image upload failed." -msgstr "Caricamento immagine fallito." - -#: mod/regmod.php:55 -msgid "Account approved." -msgstr "Account approvato." - -#: mod/regmod.php:92 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrazione revocata per %s" - -#: mod/regmod.php:104 -msgid "Please login." -msgstr "Accedi." - -#: mod/notifications.php:35 -msgid "Invalid request identifier." -msgstr "L'identificativo della richiesta non è valido." - -#: mod/notifications.php:44 mod/notifications.php:180 -#: mod/notifications.php:252 -msgid "Discard" -msgstr "Scarta" - -#: mod/notifications.php:60 mod/notifications.php:179 -#: mod/notifications.php:251 mod/contacts.php:606 mod/contacts.php:806 -#: mod/contacts.php:991 -msgid "Ignore" -msgstr "Ignora" - -#: mod/notifications.php:105 -msgid "Network Notifications" -msgstr "Notifiche dalla rete" - -#: mod/notifications.php:117 -msgid "Personal Notifications" -msgstr "Notifiche personali" - -#: mod/notifications.php:123 -msgid "Home Notifications" -msgstr "Notifiche bacheca" - -#: mod/notifications.php:152 -msgid "Show Ignored Requests" -msgstr "Mostra richieste ignorate" - -#: mod/notifications.php:152 -msgid "Hide Ignored Requests" -msgstr "Nascondi richieste ignorate" - -#: mod/notifications.php:164 mod/notifications.php:222 -msgid "Notification type: " -msgstr "Tipo di notifica: " - -#: mod/notifications.php:167 -#, php-format -msgid "suggested by %s" -msgstr "suggerito da %s" - -#: mod/notifications.php:172 mod/notifications.php:239 mod/contacts.php:613 -msgid "Hide this contact from others" -msgstr "Nascondi questo contatto agli altri" - -#: mod/notifications.php:173 mod/notifications.php:240 -msgid "Post a new friend activity" -msgstr "Invia una attività \"è ora amico con\"" - -#: mod/notifications.php:173 mod/notifications.php:240 -msgid "if applicable" -msgstr "se applicabile" - -#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1412 -msgid "Approve" -msgstr "Approva" - -#: mod/notifications.php:195 -msgid "Claims to be known to you: " -msgstr "Dice di conoscerti: " - -#: mod/notifications.php:196 -msgid "yes" -msgstr "si" - -#: mod/notifications.php:196 -msgid "no" -msgstr "no" - -#: mod/notifications.php:197 -msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " -"you allow to read but you do not want to read theirs. Approve as: " -msgstr "La connessione dovrà essere bidirezionale o no? \"Amici\" implica che tu permetti al contatto di leggere i tuoi post e tu leggerai i suoi. \"Fan/Ammiratore\" significa che permetti al contatto di leggere i tuoi posto ma tu non vuoi leggere i suoi. Approva come:" - -#: mod/notifications.php:200 -msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Sharer\" means that you " -"allow to read but you do not want to read theirs. Approve as: " -msgstr "La connessione dovrà essere bidirezionale o no? \"Amici\" implica che tu permetti al contatto di leggere i tuoi post e tu leggerai i suoi. \"Condivisore\" significa che permetti al contatto di leggere i tuoi posto ma tu non vuoi leggere i suoi. Approva come:" - -#: mod/notifications.php:209 -msgid "Friend" -msgstr "Amico" - -#: mod/notifications.php:210 -msgid "Sharer" -msgstr "Condivisore" - -#: mod/notifications.php:210 -msgid "Fan/Admirer" -msgstr "Fan/Ammiratore" - -#: mod/notifications.php:243 mod/contacts.php:624 mod/follow.php:126 -msgid "Profile URL" -msgstr "URL Profilo" - -#: mod/notifications.php:260 -msgid "No introductions." -msgstr "Nessuna presentazione." - -#: mod/notifications.php:299 -msgid "Show unread" -msgstr "Mostra non letti" - -#: mod/notifications.php:299 -msgid "Show all" -msgstr "Mostra tutti" - -#: mod/notifications.php:305 -#, php-format -msgid "No more %s notifications." -msgstr "Nessun'altra notifica %s." - -#: mod/profiles.php:19 mod/profiles.php:134 mod/profiles.php:180 -#: mod/profiles.php:617 mod/dfrn_confirm.php:70 -msgid "Profile not found." -msgstr "Profilo non trovato." +#: mod/profile.php:175 +msgid "Tips for New Members" +msgstr "Consigli per i Nuovi Utenti" #: mod/profiles.php:38 msgid "Profile deleted." msgstr "Profilo eliminato." -#: mod/profiles.php:56 mod/profiles.php:90 +#: mod/profiles.php:54 mod/profiles.php:90 msgid "Profile-" msgstr "Profilo-" -#: mod/profiles.php:75 mod/profiles.php:118 +#: mod/profiles.php:73 mod/profiles.php:118 msgid "New profile created." msgstr "Il nuovo profilo è stato creato." @@ -4703,59 +5669,59 @@ msgstr "Il nuovo profilo è stato creato." msgid "Profile unavailable to clone." msgstr "Impossibile duplicare il profilo." -#: mod/profiles.php:190 +#: mod/profiles.php:192 msgid "Profile Name is required." msgstr "Il nome profilo è obbligatorio ." -#: mod/profiles.php:338 +#: mod/profiles.php:332 msgid "Marital Status" msgstr "Stato civile" -#: mod/profiles.php:342 +#: mod/profiles.php:336 msgid "Romantic Partner" msgstr "Partner romantico" -#: mod/profiles.php:354 +#: mod/profiles.php:348 msgid "Work/Employment" msgstr "Lavoro/Impiego" -#: mod/profiles.php:357 +#: mod/profiles.php:351 msgid "Religion" msgstr "Religione" -#: mod/profiles.php:361 +#: mod/profiles.php:355 msgid "Political Views" msgstr "Orientamento Politico" -#: mod/profiles.php:365 +#: mod/profiles.php:359 msgid "Gender" msgstr "Sesso" -#: mod/profiles.php:369 +#: mod/profiles.php:363 msgid "Sexual Preference" msgstr "Preferenza sessuale" -#: mod/profiles.php:373 +#: mod/profiles.php:367 msgid "XMPP" msgstr "XMPP" -#: mod/profiles.php:377 +#: mod/profiles.php:371 msgid "Homepage" msgstr "Homepage" -#: mod/profiles.php:381 mod/profiles.php:702 +#: mod/profiles.php:375 mod/profiles.php:695 msgid "Interests" msgstr "Interessi" -#: mod/profiles.php:385 +#: mod/profiles.php:379 msgid "Address" msgstr "Indirizzo" -#: mod/profiles.php:392 mod/profiles.php:698 +#: mod/profiles.php:386 mod/profiles.php:691 msgid "Location" msgstr "Posizione" -#: mod/profiles.php:477 +#: mod/profiles.php:471 msgid "Profile updated." msgstr "Profilo aggiornato." @@ -4763,16 +5729,16 @@ msgstr "Profilo aggiornato." msgid " and " msgstr "e " -#: mod/profiles.php:572 +#: mod/profiles.php:573 msgid "public profile" msgstr "profilo pubblico" -#: mod/profiles.php:575 +#: 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:576 +#: mod/profiles.php:577 #, php-format msgid " - Visit %1$s's %2$s" msgstr "- Visita %2$s di %1$s" @@ -4782,578 +5748,210 @@ msgstr "- Visita %2$s di %1$s" msgid "%1$s has an updated %2$s, changing %3$s." msgstr "%1$s ha un %2$s aggiornato. Ha cambiato %3$s" -#: mod/profiles.php:645 +#: mod/profiles.php:637 msgid "Hide contacts and friends:" msgstr "Nascondi contatti:" -#: mod/profiles.php:650 +#: mod/profiles.php:642 msgid "Hide your contact/friend list from viewers of this profile?" msgstr "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?" -#: mod/profiles.php:674 +#: mod/profiles.php:667 msgid "Show more profile fields:" msgstr "Mostra più informazioni di profilo:" -#: mod/profiles.php:686 +#: mod/profiles.php:679 msgid "Profile Actions" msgstr "Azioni Profilo" -#: mod/profiles.php:687 +#: mod/profiles.php:680 msgid "Edit Profile Details" msgstr "Modifica i dettagli del profilo" -#: mod/profiles.php:689 +#: mod/profiles.php:682 msgid "Change Profile Photo" msgstr "Cambia la foto del profilo" -#: mod/profiles.php:690 +#: mod/profiles.php:683 msgid "View this profile" msgstr "Visualizza questo profilo" -#: mod/profiles.php:692 +#: mod/profiles.php:685 msgid "Create a new profile using these settings" msgstr "Crea un nuovo profilo usando queste impostazioni" -#: mod/profiles.php:693 +#: mod/profiles.php:686 msgid "Clone this profile" msgstr "Clona questo profilo" -#: mod/profiles.php:694 +#: mod/profiles.php:687 msgid "Delete this profile" msgstr "Elimina questo profilo" -#: mod/profiles.php:696 +#: mod/profiles.php:689 msgid "Basic information" msgstr "Informazioni di base" -#: mod/profiles.php:697 +#: mod/profiles.php:690 msgid "Profile picture" msgstr "Immagine del profilo" -#: mod/profiles.php:699 +#: mod/profiles.php:692 msgid "Preferences" msgstr "Preferenze" -#: mod/profiles.php:700 +#: mod/profiles.php:693 msgid "Status information" msgstr "Informazioni stato" -#: mod/profiles.php:701 +#: mod/profiles.php:694 msgid "Additional information" msgstr "Informazioni aggiuntive" -#: mod/profiles.php:704 +#: mod/profiles.php:697 msgid "Relation" msgstr "Relazione" -#: mod/profiles.php:708 +#: mod/profiles.php:701 msgid "Your Gender:" msgstr "Il tuo sesso:" -#: mod/profiles.php:709 +#: mod/profiles.php:702 msgid " Marital Status:" msgstr " Stato sentimentale:" -#: mod/profiles.php:711 +#: mod/profiles.php:704 msgid "Example: fishing photography software" msgstr "Esempio: pesca fotografia programmazione" -#: mod/profiles.php:716 +#: mod/profiles.php:709 msgid "Profile Name:" msgstr "Nome del profilo:" -#: mod/profiles.php:716 mod/events.php:484 mod/events.php:496 -msgid "Required" -msgstr "Richiesto" - -#: mod/profiles.php:718 +#: mod/profiles.php:711 msgid "" "This is your public profile.
It may " "be visible to anybody using the internet." msgstr "Questo è il tuo profilo publico.
Potrebbe essere visto da chiunque attraverso internet." -#: mod/profiles.php:719 +#: mod/profiles.php:712 msgid "Your Full Name:" msgstr "Il tuo nome completo:" -#: mod/profiles.php:720 +#: mod/profiles.php:713 msgid "Title/Description:" msgstr "Breve descrizione (es. titolo, posizione, altro):" -#: mod/profiles.php:723 +#: mod/profiles.php:716 msgid "Street Address:" msgstr "Indirizzo (via/piazza):" -#: mod/profiles.php:724 +#: mod/profiles.php:717 msgid "Locality/City:" msgstr "Località:" -#: mod/profiles.php:725 +#: mod/profiles.php:718 msgid "Region/State:" msgstr "Regione/Stato:" -#: mod/profiles.php:726 +#: mod/profiles.php:719 msgid "Postal/Zip Code:" msgstr "CAP:" -#: mod/profiles.php:727 +#: mod/profiles.php:720 msgid "Country:" msgstr "Nazione:" -#: mod/profiles.php:731 +#: mod/profiles.php:724 msgid "Who: (if applicable)" msgstr "Con chi: (se possibile)" -#: mod/profiles.php:731 +#: mod/profiles.php:724 msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "Esempio: cathy123, Cathy Williams, cathy@example.com" -#: mod/profiles.php:732 +#: mod/profiles.php:725 msgid "Since [date]:" msgstr "Dal [data]:" -#: mod/profiles.php:734 +#: mod/profiles.php:727 msgid "Tell us about yourself..." msgstr "Raccontaci di te..." -#: mod/profiles.php:735 +#: mod/profiles.php:728 msgid "XMPP (Jabber) address:" msgstr "Indirizzo XMPP (Jabber):" -#: mod/profiles.php:735 +#: mod/profiles.php:728 msgid "" "The XMPP address will be propagated to your contacts so that they can follow" " you." msgstr "L'indirizzo XMPP verrà propagato ai tuoi contatti così che possano seguirti." -#: mod/profiles.php:736 +#: mod/profiles.php:729 msgid "Homepage URL:" msgstr "Homepage:" -#: mod/profiles.php:739 +#: mod/profiles.php:732 msgid "Religious Views:" msgstr "Orientamento religioso:" -#: mod/profiles.php:740 +#: mod/profiles.php:733 msgid "Public Keywords:" msgstr "Parole chiave visibili a tutti:" -#: mod/profiles.php:740 +#: mod/profiles.php:733 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)" -#: mod/profiles.php:741 +#: mod/profiles.php:734 msgid "Private Keywords:" msgstr "Parole chiave private:" -#: mod/profiles.php:741 +#: mod/profiles.php:734 msgid "(Used for searching profiles, never shown to others)" msgstr "(Usato per cercare tra i profili, non è mai visibile agli altri)" -#: mod/profiles.php:744 +#: mod/profiles.php:737 msgid "Musical interests" msgstr "Interessi musicali" -#: mod/profiles.php:745 +#: mod/profiles.php:738 msgid "Books, literature" msgstr "Libri, letteratura" -#: mod/profiles.php:746 +#: mod/profiles.php:739 msgid "Television" msgstr "Televisione" -#: mod/profiles.php:747 +#: mod/profiles.php:740 msgid "Film/dance/culture/entertainment" msgstr "Film/danza/cultura/intrattenimento" -#: mod/profiles.php:748 +#: mod/profiles.php:741 msgid "Hobbies/Interests" msgstr "Hobby/interessi" -#: mod/profiles.php:749 +#: mod/profiles.php:742 msgid "Love/romance" msgstr "Amore" -#: mod/profiles.php:750 +#: mod/profiles.php:743 msgid "Work/employment" msgstr "Lavoro/impiego" -#: mod/profiles.php:751 +#: mod/profiles.php:744 msgid "School/education" msgstr "Scuola/educazione" -#: mod/profiles.php:752 +#: mod/profiles.php:745 msgid "Contact information and Social Networks" msgstr "Informazioni su contatti e social network" -#: mod/profiles.php:794 +#: mod/profiles.php:786 msgid "Edit/Manage Profiles" msgstr "Modifica / Gestisci profili" -#: mod/allfriends.php:43 -msgid "No friends to display." -msgstr "Nessun amico da visualizzare." - -#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "L'accesso a questo profilo è stato limitato." - -#: mod/cal.php:276 mod/events.php:380 -msgid "View" -msgstr "Mostra" - -#: mod/cal.php:277 mod/events.php:382 -msgid "Previous" -msgstr "Precedente" - -#: mod/cal.php:278 mod/events.php:383 mod/install.php:231 -msgid "Next" -msgstr "Successivo" - -#: mod/cal.php:287 mod/events.php:392 -msgid "list" -msgstr "lista" - -#: mod/cal.php:297 -msgid "User not found" -msgstr "Utente non trovato" - -#: mod/cal.php:313 -msgid "This calendar format is not supported" -msgstr "Questo formato di calendario non è supportato" - -#: mod/cal.php:315 -msgid "No exportable data found" -msgstr "Nessun dato esportabile trovato" - -#: mod/cal.php:330 -msgid "calendar" -msgstr "calendario" - -#: mod/common.php:86 -msgid "No contacts in common." -msgstr "Nessun contatto in comune." - -#: mod/common.php:134 mod/contacts.php:863 -msgid "Common Friends" -msgstr "Amici in comune" - -#: mod/community.php:27 -msgid "Not available." -msgstr "Non disponibile." - -#: mod/directory.php:197 view/theme/vier/theme.php:201 -msgid "Global Directory" -msgstr "Elenco globale" - -#: mod/directory.php:199 -msgid "Find on this site" -msgstr "Cerca nel sito" - -#: mod/directory.php:201 -msgid "Results for:" -msgstr "Risultati per:" - -#: mod/directory.php:203 -msgid "Site Directory" -msgstr "Elenco del sito" - -#: mod/directory.php:210 -msgid "No entries (some entries may be hidden)." -msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)." - -#: mod/dirfind.php:36 -#, php-format -msgid "People Search - %s" -msgstr "Cerca persone - %s" - -#: mod/dirfind.php:47 -#, php-format -msgid "Forum Search - %s" -msgstr "Ricerca Forum - %s" - -#: mod/dirfind.php:240 mod/match.php:107 -msgid "No matches" -msgstr "Nessun risultato" - -#: mod/display.php:473 -msgid "Item has been removed." -msgstr "L'oggetto è stato rimosso." - -#: mod/events.php:95 mod/events.php:97 -msgid "Event can not end before it has started." -msgstr "Un evento non può finire prima di iniziare." - -#: mod/events.php:104 mod/events.php:106 -msgid "Event title and start time are required." -msgstr "Titolo e ora di inizio dell'evento sono richiesti." - -#: mod/events.php:381 -msgid "Create New Event" -msgstr "Crea un nuovo evento" - -#: mod/events.php:482 -msgid "Event details" -msgstr "Dettagli dell'evento" - -#: mod/events.php:483 -msgid "Starting date and Title are required." -msgstr "La data di inizio e il titolo sono richiesti." - -#: mod/events.php:484 mod/events.php:485 -msgid "Event Starts:" -msgstr "L'evento inizia:" - -#: mod/events.php:486 mod/events.php:502 -msgid "Finish date/time is not known or not relevant" -msgstr "La data/ora di fine non è definita" - -#: mod/events.php:488 mod/events.php:489 -msgid "Event Finishes:" -msgstr "L'evento finisce:" - -#: mod/events.php:490 mod/events.php:503 -msgid "Adjust for viewer timezone" -msgstr "Visualizza con il fuso orario di chi legge" - -#: mod/events.php:492 -msgid "Description:" -msgstr "Descrizione:" - -#: mod/events.php:496 mod/events.php:498 -msgid "Title:" -msgstr "Titolo:" - -#: mod/events.php:499 mod/events.php:500 -msgid "Share this event" -msgstr "Condividi questo evento" - -#: mod/maintenance.php:9 -msgid "System down for maintenance" -msgstr "Sistema in manutenzione" - -#: mod/match.php:33 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito." - -#: mod/match.php:86 -msgid "is interested in:" -msgstr "è interessato a:" - -#: mod/match.php:100 -msgid "Profile Match" -msgstr "Profili corrispondenti" - -#: mod/profile.php:179 -msgid "Tips for New Members" -msgstr "Consigli per i Nuovi Utenti" - -#: mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Vuoi veramente cancellare questo suggerimento?" - -#: mod/suggest.php:71 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore." - -#: mod/suggest.php:84 mod/suggest.php:104 -msgid "Ignore/Hide" -msgstr "Ignora / Nascondi" - -#: mod/update_community.php:19 mod/update_display.php:23 -#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35 -msgid "[Embedded content - reload page to view]" -msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]" - -#: mod/photos.php:88 mod/photos.php:1856 -msgid "Recent Photos" -msgstr "Foto recenti" - -#: mod/photos.php:91 mod/photos.php:1283 mod/photos.php:1858 -msgid "Upload New Photos" -msgstr "Carica nuove foto" - -#: mod/photos.php:105 mod/settings.php:36 -msgid "everybody" -msgstr "tutti" - -#: mod/photos.php:169 -msgid "Contact information unavailable" -msgstr "I dati di questo contatto non sono disponibili" - -#: mod/photos.php:190 -msgid "Album not found." -msgstr "Album non trovato." - -#: mod/photos.php:220 mod/photos.php:232 mod/photos.php:1227 -msgid "Delete Album" -msgstr "Rimuovi album" - -#: mod/photos.php:230 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Vuoi davvero cancellare questo album e tutte le sue foto?" - -#: mod/photos.php:308 mod/photos.php:319 mod/photos.php:1540 -msgid "Delete Photo" -msgstr "Rimuovi foto" - -#: mod/photos.php:317 -msgid "Do you really want to delete this photo?" -msgstr "Vuoi veramente cancellare questa foto?" - -#: mod/photos.php:688 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s è stato taggato in %2$s da %3$s" - -#: mod/photos.php:688 -msgid "a photo" -msgstr "una foto" - -#: mod/photos.php:794 -msgid "Image file is empty." -msgstr "Il file dell'immagine è vuoto." - -#: mod/photos.php:954 -msgid "No photos selected" -msgstr "Nessuna foto selezionata" - -#: mod/photos.php:1054 mod/videos.php:305 -msgid "Access to this item is restricted." -msgstr "Questo oggetto non è visibile a tutti." - -#: mod/photos.php:1114 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Hai usato %1$.2f MBytes su %2$.2f disponibili." - -#: mod/photos.php:1148 -msgid "Upload Photos" -msgstr "Carica foto" - -#: mod/photos.php:1152 mod/photos.php:1222 -msgid "New album name: " -msgstr "Nome nuovo album: " - -#: mod/photos.php:1153 -msgid "or existing album name: " -msgstr "o nome di un album esistente: " - -#: mod/photos.php:1154 -msgid "Do not show a status post for this upload" -msgstr "Non creare un post per questo upload" - -#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1300 -msgid "Show to Groups" -msgstr "Mostra ai gruppi" - -#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1301 -msgid "Show to Contacts" -msgstr "Mostra ai contatti" - -#: mod/photos.php:1167 -msgid "Private Photo" -msgstr "Foto privata" - -#: mod/photos.php:1168 -msgid "Public Photo" -msgstr "Foto pubblica" - -#: mod/photos.php:1234 -msgid "Edit Album" -msgstr "Modifica album" - -#: mod/photos.php:1240 -msgid "Show Newest First" -msgstr "Mostra nuove foto per prime" - -#: mod/photos.php:1242 -msgid "Show Oldest First" -msgstr "Mostra vecchie foto per prime" - -#: mod/photos.php:1269 mod/photos.php:1841 -msgid "View Photo" -msgstr "Vedi foto" - -#: mod/photos.php:1315 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permesso negato. L'accesso a questo elemento può essere limitato." - -#: mod/photos.php:1317 -msgid "Photo not available" -msgstr "Foto non disponibile" - -#: mod/photos.php:1372 -msgid "View photo" -msgstr "Vedi foto" - -#: mod/photos.php:1372 -msgid "Edit photo" -msgstr "Modifica foto" - -#: mod/photos.php:1373 -msgid "Use as profile photo" -msgstr "Usa come foto del profilo" - -#: mod/photos.php:1398 -msgid "View Full Size" -msgstr "Vedi dimensione intera" - -#: mod/photos.php:1484 -msgid "Tags: " -msgstr "Tag: " - -#: mod/photos.php:1487 -msgid "[Remove any tag]" -msgstr "[Rimuovi tutti i tag]" - -#: mod/photos.php:1526 -msgid "New album name" -msgstr "Nuovo nome dell'album" - -#: mod/photos.php:1527 -msgid "Caption" -msgstr "Titolo" - -#: mod/photos.php:1528 -msgid "Add a Tag" -msgstr "Aggiungi tag" - -#: mod/photos.php:1528 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: mod/photos.php:1529 -msgid "Do not rotate" -msgstr "Non ruotare" - -#: mod/photos.php:1530 -msgid "Rotate CW (right)" -msgstr "Ruota a destra" - -#: mod/photos.php:1531 -msgid "Rotate CCW (left)" -msgstr "Ruota a sinistra" - -#: mod/photos.php:1546 -msgid "Private photo" -msgstr "Foto privata" - -#: mod/photos.php:1547 -msgid "Public photo" -msgstr "Foto pubblica" - -#: mod/photos.php:1770 -msgid "Map" -msgstr "Mappa" - -#: mod/photos.php:1847 mod/videos.php:387 -msgid "View Album" -msgstr "Sfoglia l'album" - #: mod/register.php:93 msgid "" "Registration successful. Please check your email for further instructions." @@ -5414,7 +6012,7 @@ msgstr "La registrazione su questo sito è solo su invito." msgid "Your invitation ID: " msgstr "L'ID del tuo invito:" -#: mod/register.php:272 mod/admin.php:956 +#: mod/register.php:272 mod/admin.php:1056 msgid "Registration" msgstr "Registrazione" @@ -5426,7 +6024,7 @@ msgstr "Il tuo nome completo (es. Mario Rossi, vero o che sembri vero): " msgid "Your Email Address: " msgstr "Il tuo indirizzo email: " -#: mod/register.php:283 mod/settings.php:1271 +#: mod/register.php:283 mod/settings.php:1278 msgid "New Password:" msgstr "Nuova password:" @@ -5434,7 +6032,7 @@ msgstr "Nuova password:" msgid "Leave empty for an auto generated password." msgstr "Lascia vuoto per generare automaticamente una password." -#: mod/register.php:284 mod/settings.php:1272 +#: mod/register.php:284 mod/settings.php:1279 msgid "Confirm:" msgstr "Conferma:" @@ -5453,11 +6051,28 @@ msgstr "Scegli un nome utente: " msgid "Import your profile to this friendica instance" msgstr "Importa il tuo profilo in questo server friendica" -#: mod/settings.php:43 mod/admin.php:1396 +#: mod/search.php:100 +msgid "Only logged in users are permitted to perform a search." +msgstr "Solo agli utenti autenticati è permesso eseguire ricerche." + +#: mod/search.php:124 +msgid "Too Many Requests" +msgstr "Troppe richieste" + +#: mod/search.php:125 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "Solo una ricerca al minuto è permessa agli utenti non autenticati." + +#: mod/search.php:225 +#, php-format +msgid "Items tagged with: %s" +msgstr "Elementi taggati con: %s" + +#: mod/settings.php:43 mod/admin.php:1490 msgid "Account" msgstr "Account" -#: mod/settings.php:52 mod/admin.php:160 +#: mod/settings.php:52 mod/admin.php:169 msgid "Additional features" msgstr "Funzionalità aggiuntive" @@ -5465,11 +6080,11 @@ msgstr "Funzionalità aggiuntive" msgid "Display" msgstr "Visualizzazione" -#: mod/settings.php:67 mod/settings.php:886 +#: mod/settings.php:67 mod/settings.php:890 msgid "Social Networks" msgstr "Social Networks" -#: mod/settings.php:74 mod/admin.php:158 mod/admin.php:1522 mod/admin.php:1582 +#: mod/settings.php:74 mod/admin.php:167 mod/admin.php:1616 mod/admin.php:1679 msgid "Plugins" msgstr "Plugin" @@ -5477,1329 +6092,1896 @@ msgstr "Plugin" msgid "Connected apps" msgstr "Applicazioni collegate" +#: mod/settings.php:95 mod/uexport.php:45 +msgid "Export personal data" +msgstr "Esporta dati personali" + #: mod/settings.php:102 msgid "Remove account" msgstr "Rimuovi account" -#: mod/settings.php:155 +#: mod/settings.php:157 msgid "Missing some important data!" msgstr "Mancano alcuni dati importanti!" -#: mod/settings.php:158 mod/settings.php:704 mod/contacts.php:804 -msgid "Update" -msgstr "Aggiorna" - -#: mod/settings.php:269 +#: mod/settings.php:271 msgid "Failed to connect with email account using the settings provided." msgstr "Impossibile collegarsi all'account email con i parametri forniti." -#: mod/settings.php:274 +#: mod/settings.php:276 msgid "Email settings updated." msgstr "Impostazioni e-mail aggiornate." -#: mod/settings.php:289 +#: mod/settings.php:291 msgid "Features updated" msgstr "Funzionalità aggiornate" -#: mod/settings.php:359 +#: mod/settings.php:361 msgid "Relocate message has been send to your contacts" msgstr "Il messaggio di trasloco è stato inviato ai tuoi contatti" -#: mod/settings.php:378 +#: mod/settings.php:380 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Le password non possono essere vuote. Password non cambiata." -#: mod/settings.php:386 +#: mod/settings.php:388 msgid "Wrong password." msgstr "Password sbagliata." -#: mod/settings.php:397 +#: mod/settings.php:399 msgid "Password changed." msgstr "Password cambiata." -#: mod/settings.php:399 +#: mod/settings.php:401 msgid "Password update failed. Please try again." msgstr "Aggiornamento password fallito. Prova ancora." -#: mod/settings.php:479 +#: mod/settings.php:481 msgid " Please use a shorter name." msgstr " Usa un nome più corto." -#: mod/settings.php:481 +#: mod/settings.php:483 msgid " Name too short." msgstr " Nome troppo corto." -#: mod/settings.php:490 +#: mod/settings.php:492 msgid "Wrong Password" msgstr "Password Sbagliata" -#: mod/settings.php:495 +#: mod/settings.php:497 msgid " Not valid email." msgstr " Email non valida." -#: mod/settings.php:501 +#: mod/settings.php:503 msgid " Cannot change to that email." msgstr "Non puoi usare quella email." -#: mod/settings.php:557 +#: mod/settings.php:559 msgid "Private forum has no privacy permissions. Using default privacy group." msgstr "Il forum privato non ha permessi di privacy. Uso il gruppo di privacy predefinito." -#: mod/settings.php:561 +#: mod/settings.php:563 msgid "Private forum has no privacy permissions and no default privacy group." msgstr "Il gruppo privato non ha permessi di privacy e nessun gruppo di privacy predefinito." -#: mod/settings.php:601 +#: mod/settings.php:603 msgid "Settings updated." msgstr "Impostazioni aggiornate." -#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739 +#: mod/settings.php:680 mod/settings.php:706 mod/settings.php:742 msgid "Add application" msgstr "Aggiungi applicazione" -#: mod/settings.php:678 mod/settings.php:788 mod/settings.php:835 -#: mod/settings.php:904 mod/settings.php:996 mod/settings.php:1264 -#: mod/admin.php:955 mod/admin.php:1583 mod/admin.php:1831 mod/admin.php:1905 -#: mod/admin.php:2055 +#: mod/settings.php:681 mod/settings.php:792 mod/settings.php:841 +#: mod/settings.php:908 mod/settings.php:1005 mod/settings.php:1271 +#: mod/admin.php:1055 mod/admin.php:1680 mod/admin.php:1943 mod/admin.php:2017 +#: mod/admin.php:2170 msgid "Save Settings" msgstr "Salva Impostazioni" -#: mod/settings.php:681 mod/settings.php:707 +#: mod/settings.php:684 mod/settings.php:710 msgid "Consumer Key" msgstr "Consumer Key" -#: mod/settings.php:682 mod/settings.php:708 +#: mod/settings.php:685 mod/settings.php:711 msgid "Consumer Secret" msgstr "Consumer Secret" -#: mod/settings.php:683 mod/settings.php:709 +#: mod/settings.php:686 mod/settings.php:712 msgid "Redirect" msgstr "Redirect" -#: mod/settings.php:684 mod/settings.php:710 +#: mod/settings.php:687 mod/settings.php:713 msgid "Icon url" msgstr "Url icona" -#: mod/settings.php:695 +#: mod/settings.php:698 msgid "You can't edit this application." msgstr "Non puoi modificare questa applicazione." -#: mod/settings.php:738 +#: mod/settings.php:741 msgid "Connected Apps" msgstr "Applicazioni Collegate" -#: mod/settings.php:742 +#: mod/settings.php:745 msgid "Client key starts with" msgstr "Chiave del client inizia con" -#: mod/settings.php:743 +#: mod/settings.php:746 msgid "No name" msgstr "Nessun nome" -#: mod/settings.php:744 +#: mod/settings.php:747 msgid "Remove authorization" msgstr "Rimuovi l'autorizzazione" -#: mod/settings.php:756 +#: mod/settings.php:759 msgid "No Plugin settings configured" msgstr "Nessun plugin ha impostazioni modificabili" -#: mod/settings.php:764 +#: mod/settings.php:768 msgid "Plugin Settings" msgstr "Impostazioni plugin" -#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045 +#: mod/settings.php:782 mod/admin.php:2159 mod/admin.php:2160 msgid "Off" msgstr "Spento" -#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045 +#: mod/settings.php:782 mod/admin.php:2159 mod/admin.php:2160 msgid "On" msgstr "Acceso" -#: mod/settings.php:786 +#: mod/settings.php:790 msgid "Additional Features" msgstr "Funzionalità aggiuntive" -#: mod/settings.php:796 mod/settings.php:800 +#: mod/settings.php:800 mod/settings.php:804 msgid "General Social Media Settings" msgstr "Impostazioni Media Sociali" -#: mod/settings.php:806 +#: mod/settings.php:810 msgid "Disable intelligent shortening" msgstr "Disabilita accorciamento intelligente" -#: mod/settings.php:808 +#: mod/settings.php:812 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If this option is enabled then every shortened post will always point to the" " original friendica post." msgstr "Normalmente il sistema tenta di trovare il migliore link da aggiungere a un post accorciato. Se questa opzione è abilitata, ogni post accorciato conterrà sempre un link al post originale su Friendica." -#: mod/settings.php:814 +#: mod/settings.php:818 msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" msgstr "Segui automaticamente chiunque da GNU Social (OStatus) ti segua o ti menzioni" -#: mod/settings.php:816 +#: mod/settings.php:820 msgid "" "If you receive a message from an unknown OStatus user, this option decides " "what to do. If it is checked, a new contact will be created for every " "unknown user." msgstr "Se ricevi un messaggio da un utente OStatus sconosciuto, questa opzione decide cosa fare. Se selezionato, un nuovo contatto verrà creato per ogni utente sconosciuto." -#: mod/settings.php:822 +#: mod/settings.php:826 msgid "Default group for OStatus contacts" msgstr "Gruppo di default per i contatti OStatus" -#: mod/settings.php:828 +#: mod/settings.php:834 msgid "Your legacy GNU Social account" msgstr "Il tuo vecchio account GNU Social" -#: mod/settings.php:830 +#: mod/settings.php:836 msgid "" "If you enter your old GNU Social/Statusnet account name here (in the format " "user@domain.tld), your contacts will be added automatically. The field will " "be emptied when done." msgstr "Se inserisci il nome del tuo vecchio account GNU Social/Statusnet qui (nel formato utente@dominio.tld), i tuoi contatti verranno automaticamente aggiunti. Il campo verrà svuotato una volta terminato." -#: mod/settings.php:833 +#: mod/settings.php:839 msgid "Repair OStatus subscriptions" msgstr "Ripara le iscrizioni OStatus" -#: mod/settings.php:842 mod/settings.php:843 +#: mod/settings.php:848 mod/settings.php:849 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "Il supporto integrato per la connettività con %s è %s" -#: mod/settings.php:842 mod/settings.php:843 +#: mod/settings.php:848 mod/settings.php:849 msgid "enabled" msgstr "abilitato" -#: mod/settings.php:842 mod/settings.php:843 +#: mod/settings.php:848 mod/settings.php:849 msgid "disabled" msgstr "disabilitato" -#: mod/settings.php:843 +#: mod/settings.php:849 msgid "GNU Social (OStatus)" msgstr "GNU Social (OStatus)" -#: mod/settings.php:879 +#: mod/settings.php:883 msgid "Email access is disabled on this site." msgstr "L'accesso email è disabilitato su questo sito." -#: mod/settings.php:891 +#: mod/settings.php:895 msgid "Email/Mailbox Setup" msgstr "Impostazioni email" -#: mod/settings.php:892 +#: mod/settings.php:896 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)" -#: mod/settings.php:893 +#: mod/settings.php:897 msgid "Last successful email check:" msgstr "Ultimo controllo email eseguito con successo:" -#: mod/settings.php:895 +#: mod/settings.php:899 msgid "IMAP server name:" msgstr "Nome server IMAP:" -#: mod/settings.php:896 +#: mod/settings.php:900 msgid "IMAP port:" msgstr "Porta IMAP:" -#: mod/settings.php:897 +#: mod/settings.php:901 msgid "Security:" msgstr "Sicurezza:" -#: mod/settings.php:897 mod/settings.php:902 +#: mod/settings.php:901 mod/settings.php:906 msgid "None" msgstr "Nessuna" -#: mod/settings.php:898 +#: mod/settings.php:902 msgid "Email login name:" msgstr "Nome utente email:" -#: mod/settings.php:899 +#: mod/settings.php:903 msgid "Email password:" msgstr "Password email:" -#: mod/settings.php:900 +#: mod/settings.php:904 msgid "Reply-to address:" msgstr "Indirizzo di risposta:" -#: mod/settings.php:901 +#: mod/settings.php:905 msgid "Send public posts to all email contacts:" msgstr "Invia i messaggi pubblici ai contatti email:" -#: mod/settings.php:902 +#: mod/settings.php:906 msgid "Action after import:" msgstr "Azione post importazione:" -#: mod/settings.php:902 +#: mod/settings.php:906 msgid "Move to folder" msgstr "Sposta nella cartella" -#: mod/settings.php:903 +#: mod/settings.php:907 msgid "Move to folder:" msgstr "Sposta nella cartella:" -#: mod/settings.php:934 mod/admin.php:862 +#: mod/settings.php:943 mod/admin.php:942 msgid "No special theme for mobile devices" msgstr "Nessun tema speciale per i dispositivi mobili" -#: mod/settings.php:994 +#: mod/settings.php:1003 msgid "Display Settings" msgstr "Impostazioni Grafiche" -#: mod/settings.php:1000 mod/settings.php:1023 +#: mod/settings.php:1009 mod/settings.php:1032 msgid "Display Theme:" msgstr "Tema:" -#: mod/settings.php:1001 +#: mod/settings.php:1010 msgid "Mobile Theme:" msgstr "Tema mobile:" -#: mod/settings.php:1002 +#: mod/settings.php:1011 msgid "Suppress warning of insecure networks" msgstr "Sopprimi avvisi reti insicure" -#: mod/settings.php:1002 +#: mod/settings.php:1011 msgid "" "Should the system suppress the warning that the current group contains " "members of networks that can't receive non public postings." msgstr "Il sistema sopprimerà l'avviso che il gruppo selezionato contiene membri di reti che non possono ricevere post non pubblici." -#: mod/settings.php:1003 +#: mod/settings.php:1012 msgid "Update browser every xx seconds" msgstr "Aggiorna il browser ogni x secondi" -#: mod/settings.php:1003 +#: mod/settings.php:1012 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "Minimo 10 secondi. Inserisci -1 per disabilitarlo" -#: mod/settings.php:1004 +#: mod/settings.php:1013 msgid "Number of items to display per page:" msgstr "Numero di elementi da mostrare per pagina:" -#: mod/settings.php:1004 mod/settings.php:1005 +#: mod/settings.php:1013 mod/settings.php:1014 msgid "Maximum of 100 items" msgstr "Massimo 100 voci" -#: mod/settings.php:1005 +#: mod/settings.php:1014 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Numero di voci da visualizzare per pagina quando si utilizza un dispositivo mobile:" -#: mod/settings.php:1006 +#: mod/settings.php:1015 msgid "Don't show emoticons" msgstr "Non mostrare le emoticons" -#: mod/settings.php:1007 +#: mod/settings.php:1016 msgid "Calendar" msgstr "Calendario" -#: mod/settings.php:1008 +#: mod/settings.php:1017 msgid "Beginning of week:" msgstr "Inizio della settimana:" -#: mod/settings.php:1009 +#: mod/settings.php:1018 msgid "Don't show notices" msgstr "Non mostrare gli avvisi" -#: mod/settings.php:1010 +#: mod/settings.php:1019 msgid "Infinite scroll" msgstr "Scroll infinito" -#: mod/settings.php:1011 +#: mod/settings.php:1020 msgid "Automatic updates only at the top of the network page" msgstr "Aggiornamenti automatici solo in cima alla pagina \"rete\"" -#: mod/settings.php:1012 +#: mod/settings.php:1021 msgid "Bandwith Saver Mode" msgstr "Modalità Salva Banda" -#: mod/settings.php:1012 +#: mod/settings.php:1021 msgid "" "When enabled, embedded content is not displayed on automatic updates, they " "only show on page reload." msgstr "Quando abilitato, il contenuto embeddato non è mostrato quando la pagina si aggiorna automaticamente, ma solo quando la pagina viene ricaricata." -#: mod/settings.php:1014 +#: mod/settings.php:1023 msgid "General Theme Settings" msgstr "Opzioni Generali Tema" -#: mod/settings.php:1015 +#: mod/settings.php:1024 msgid "Custom Theme Settings" msgstr "Opzioni Personalizzate Tema" -#: mod/settings.php:1016 +#: mod/settings.php:1025 msgid "Content Settings" msgstr "Opzioni Contenuto" -#: mod/settings.php:1017 view/theme/frio/config.php:61 -#: view/theme/quattro/config.php:66 view/theme/vier/config.php:109 -#: view/theme/duepuntozero/config.php:61 +#: mod/settings.php:1026 view/theme/duepuntozero/config.php:63 +#: view/theme/frio/config.php:66 view/theme/quattro/config.php:69 +#: view/theme/vier/config.php:114 msgid "Theme settings" msgstr "Impostazioni tema" -#: mod/settings.php:1099 +#: mod/settings.php:1110 msgid "Account Types" msgstr "Tipi di Account" -#: mod/settings.php:1100 +#: mod/settings.php:1111 msgid "Personal Page Subtypes" msgstr "Sottotipi di Pagine Personali" -#: mod/settings.php:1101 +#: mod/settings.php:1112 msgid "Community Forum Subtypes" msgstr "Sottotipi di Community Forum" -#: mod/settings.php:1108 +#: mod/settings.php:1119 msgid "Personal Page" msgstr "Pagina Personale" -#: mod/settings.php:1109 +#: mod/settings.php:1120 msgid "This account is a regular personal profile" msgstr "Questo account è un profilo personale regolare" -#: mod/settings.php:1112 +#: mod/settings.php:1123 msgid "Organisation Page" msgstr "Pagina Organizzazione" -#: mod/settings.php:1113 +#: mod/settings.php:1124 msgid "This account is a profile for an organisation" msgstr "Questo account è il profilo per un'organizzazione" -#: mod/settings.php:1116 +#: mod/settings.php:1127 msgid "News Page" msgstr "Pagina Notizie" -#: mod/settings.php:1117 +#: mod/settings.php:1128 msgid "This account is a news account/reflector" msgstr "Questo account è un account di notizie" -#: mod/settings.php:1120 +#: mod/settings.php:1131 msgid "Community Forum" msgstr "Community Forum" -#: mod/settings.php:1121 +#: mod/settings.php:1132 msgid "" "This account is a community forum where people can discuss with each other" msgstr "Questo account è un forum comunitario dove le persone possono discutere tra loro" -#: mod/settings.php:1124 +#: mod/settings.php:1135 msgid "Normal Account Page" msgstr "Pagina Account Normale" -#: mod/settings.php:1125 +#: mod/settings.php:1136 msgid "This account is a normal personal profile" msgstr "Questo account è un normale profilo personale" -#: mod/settings.php:1128 +#: mod/settings.php:1139 msgid "Soapbox Page" msgstr "Pagina Sandbox" -#: mod/settings.php:1129 +#: mod/settings.php:1140 msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà solamente leggere la bacheca" -#: mod/settings.php:1132 +#: mod/settings.php:1143 msgid "Public Forum" msgstr "Forum Pubblico" -#: mod/settings.php:1133 +#: mod/settings.php:1144 msgid "Automatically approve all contact requests" msgstr "Approva automaticamente tutte le richieste di contatto" -#: mod/settings.php:1136 +#: mod/settings.php:1147 msgid "Automatic Friend Page" msgstr "Pagina con amicizia automatica" -#: mod/settings.php:1137 +#: mod/settings.php:1148 msgid "Automatically approve all connection/friend requests as friends" msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come amico" -#: mod/settings.php:1140 +#: mod/settings.php:1151 msgid "Private Forum [Experimental]" msgstr "Forum privato [sperimentale]" -#: mod/settings.php:1141 +#: mod/settings.php:1152 msgid "Private forum - approved members only" msgstr "Forum privato - solo membri approvati" -#: mod/settings.php:1153 +#: mod/settings.php:1163 msgid "OpenID:" msgstr "OpenID:" -#: mod/settings.php:1153 +#: mod/settings.php:1163 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Opzionale) Consente di loggarti in questo account con questo OpenID" -#: mod/settings.php:1163 +#: mod/settings.php:1171 msgid "Publish your default profile in your local site directory?" msgstr "Pubblica il tuo profilo predefinito nell'elenco locale del sito" -#: mod/settings.php:1169 +#: mod/settings.php:1171 +msgid "Your profile may be visible in public." +msgstr "Il tuo profilo potrebbe essere visibile pubblicamente." + +#: mod/settings.php:1177 msgid "Publish your default profile in the global social directory?" msgstr "Pubblica il tuo profilo predefinito nell'elenco sociale globale" -#: mod/settings.php:1177 +#: mod/settings.php:1184 msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "Nascondi la lista dei tuoi contatti/amici dai visitatori del tuo profilo predefinito" -#: mod/settings.php:1181 +#: mod/settings.php:1188 msgid "" "If enabled, posting public messages to Diaspora and other networks isn't " "possible." msgstr "Se abilitato, l'invio di messaggi pubblici verso Diaspora e altri network non sarà possibile" -#: mod/settings.php:1186 +#: mod/settings.php:1193 msgid "Allow friends to post to your profile page?" msgstr "Permetti agli amici di scrivere sulla tua pagina profilo?" -#: mod/settings.php:1192 +#: mod/settings.php:1198 msgid "Allow friends to tag your posts?" msgstr "Permetti agli amici di aggiungere tag ai tuoi messaggi?" -#: mod/settings.php:1198 +#: mod/settings.php:1203 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Ci permetti di suggerirti come potenziale amico ai nuovi membri?" -#: mod/settings.php:1204 +#: mod/settings.php:1208 msgid "Permit unknown people to send you private mail?" msgstr "Permetti a utenti sconosciuti di inviarti messaggi privati?" -#: mod/settings.php:1212 +#: mod/settings.php:1216 msgid "Profile is not published." msgstr "Il profilo non è pubblicato." -#: mod/settings.php:1220 +#: mod/settings.php:1224 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "L'indirizzo della tua identità è '%s' or '%s'." -#: mod/settings.php:1227 +#: mod/settings.php:1231 msgid "Automatically expire posts after this many days:" msgstr "Fai scadere i post automaticamente dopo x giorni:" -#: mod/settings.php:1227 +#: mod/settings.php:1231 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Se lasciato vuoto, i messaggi non verranno cancellati." -#: mod/settings.php:1228 +#: mod/settings.php:1232 msgid "Advanced expiration settings" msgstr "Impostazioni avanzate di scadenza" -#: mod/settings.php:1229 +#: mod/settings.php:1233 msgid "Advanced Expiration" msgstr "Scadenza avanzata" -#: mod/settings.php:1230 +#: mod/settings.php:1234 msgid "Expire posts:" msgstr "Fai scadere i post:" -#: mod/settings.php:1231 +#: mod/settings.php:1235 msgid "Expire personal notes:" msgstr "Fai scadere le Note personali:" -#: mod/settings.php:1232 +#: mod/settings.php:1236 msgid "Expire starred posts:" msgstr "Fai scadere i post Speciali:" -#: mod/settings.php:1233 +#: mod/settings.php:1237 msgid "Expire photos:" msgstr "Fai scadere le foto:" -#: mod/settings.php:1234 +#: mod/settings.php:1238 msgid "Only expire posts by others:" msgstr "Fai scadere solo i post degli altri:" -#: mod/settings.php:1262 +#: mod/settings.php:1269 msgid "Account Settings" msgstr "Impostazioni account" -#: mod/settings.php:1270 +#: mod/settings.php:1277 msgid "Password Settings" msgstr "Impostazioni password" -#: mod/settings.php:1272 +#: mod/settings.php:1279 msgid "Leave password fields blank unless changing" msgstr "Lascia questi campi in bianco per non effettuare variazioni alla password" -#: mod/settings.php:1273 +#: mod/settings.php:1280 msgid "Current Password:" msgstr "Password Attuale:" -#: mod/settings.php:1273 mod/settings.php:1274 +#: mod/settings.php:1280 mod/settings.php:1281 msgid "Your current password to confirm the changes" msgstr "La tua password attuale per confermare le modifiche" -#: mod/settings.php:1274 +#: mod/settings.php:1281 msgid "Password:" msgstr "Password:" -#: mod/settings.php:1278 +#: mod/settings.php:1285 msgid "Basic Settings" msgstr "Impostazioni base" -#: mod/settings.php:1280 +#: mod/settings.php:1287 msgid "Email Address:" msgstr "Indirizzo Email:" -#: mod/settings.php:1281 +#: mod/settings.php:1288 msgid "Your Timezone:" msgstr "Il tuo fuso orario:" -#: mod/settings.php:1282 +#: mod/settings.php:1289 msgid "Your Language:" msgstr "La tua lingua:" -#: mod/settings.php:1282 +#: mod/settings.php:1289 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Imposta la lingua che sarà usata per mostrarti l'interfaccia di Friendica e per inviarti le email" -#: mod/settings.php:1283 +#: mod/settings.php:1290 msgid "Default Post Location:" msgstr "Località predefinita:" -#: mod/settings.php:1284 +#: mod/settings.php:1291 msgid "Use Browser Location:" msgstr "Usa la località rilevata dal browser:" -#: mod/settings.php:1287 +#: mod/settings.php:1294 msgid "Security and Privacy Settings" msgstr "Impostazioni di sicurezza e privacy" -#: mod/settings.php:1289 +#: mod/settings.php:1296 msgid "Maximum Friend Requests/Day:" msgstr "Numero massimo di richieste di amicizia al giorno:" -#: mod/settings.php:1289 mod/settings.php:1319 +#: mod/settings.php:1296 mod/settings.php:1326 msgid "(to prevent spam abuse)" msgstr "(per prevenire lo spam)" -#: mod/settings.php:1290 +#: mod/settings.php:1297 msgid "Default Post Permissions" msgstr "Permessi predefiniti per i messaggi" -#: mod/settings.php:1291 +#: mod/settings.php:1298 msgid "(click to open/close)" msgstr "(clicca per aprire/chiudere)" -#: mod/settings.php:1302 +#: mod/settings.php:1309 msgid "Default Private Post" msgstr "Default Post Privato" -#: mod/settings.php:1303 +#: mod/settings.php:1310 msgid "Default Public Post" msgstr "Default Post Pubblico" -#: mod/settings.php:1307 +#: mod/settings.php:1314 msgid "Default Permissions for New Posts" msgstr "Permessi predefiniti per i nuovi post" -#: mod/settings.php:1319 +#: mod/settings.php:1326 msgid "Maximum private messages per day from unknown people:" msgstr "Numero massimo di messaggi privati da utenti sconosciuti per giorno:" -#: mod/settings.php:1322 +#: mod/settings.php:1329 msgid "Notification Settings" msgstr "Impostazioni notifiche" -#: mod/settings.php:1323 +#: mod/settings.php:1330 msgid "By default post a status message when:" msgstr "Invia un messaggio di stato quando:" -#: mod/settings.php:1324 +#: mod/settings.php:1331 msgid "accepting a friend request" msgstr "accetti una richiesta di amicizia" -#: mod/settings.php:1325 +#: mod/settings.php:1332 msgid "joining a forum/community" msgstr "ti unisci a un forum/comunità" -#: mod/settings.php:1326 +#: mod/settings.php:1333 msgid "making an interesting profile change" msgstr "fai un interessante modifica al profilo" -#: mod/settings.php:1327 +#: mod/settings.php:1334 msgid "Send a notification email when:" msgstr "Invia una mail di notifica quando:" -#: mod/settings.php:1328 +#: mod/settings.php:1335 msgid "You receive an introduction" msgstr "Ricevi una presentazione" -#: mod/settings.php:1329 +#: mod/settings.php:1336 msgid "Your introductions are confirmed" msgstr "Le tue presentazioni sono confermate" -#: mod/settings.php:1330 +#: mod/settings.php:1337 msgid "Someone writes on your profile wall" msgstr "Qualcuno scrive sulla bacheca del tuo profilo" -#: mod/settings.php:1331 +#: mod/settings.php:1338 msgid "Someone writes a followup comment" msgstr "Qualcuno scrive un commento a un tuo messaggio" -#: mod/settings.php:1332 +#: mod/settings.php:1339 msgid "You receive a private message" msgstr "Ricevi un messaggio privato" -#: mod/settings.php:1333 +#: mod/settings.php:1340 msgid "You receive a friend suggestion" msgstr "Hai ricevuto un suggerimento di amicizia" -#: mod/settings.php:1334 +#: mod/settings.php:1341 msgid "You are tagged in a post" msgstr "Sei stato taggato in un post" -#: mod/settings.php:1335 +#: mod/settings.php:1342 msgid "You are poked/prodded/etc. in a post" msgstr "Sei 'toccato'/'spronato'/ecc. in un post" -#: mod/settings.php:1337 +#: mod/settings.php:1344 msgid "Activate desktop notifications" msgstr "Attiva notifiche desktop" -#: mod/settings.php:1337 +#: mod/settings.php:1344 msgid "Show desktop popup on new notifications" msgstr "Mostra un popup di notifica sul desktop all'arrivo di nuove notifiche" -#: mod/settings.php:1339 +#: mod/settings.php:1346 msgid "Text-only notification emails" msgstr "Email di notifica in solo testo" -#: mod/settings.php:1341 +#: mod/settings.php:1348 msgid "Send text only notification emails, without the html part" msgstr "Invia le email di notifica in solo testo, senza la parte in html" -#: mod/settings.php:1343 +#: mod/settings.php:1350 msgid "Advanced Account/Page Type Settings" msgstr "Impostazioni avanzate Account/Tipo di pagina" -#: mod/settings.php:1344 +#: mod/settings.php:1351 msgid "Change the behaviour of this account for special situations" msgstr "Modifica il comportamento di questo account in situazioni speciali" -#: mod/settings.php:1347 +#: mod/settings.php:1354 msgid "Relocate" msgstr "Trasloca" -#: mod/settings.php:1348 +#: mod/settings.php:1355 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Se hai spostato questo profilo da un'altro server, e alcuni dei tuoi contatti non ricevono i tuoi aggiornamenti, prova a premere questo bottone." -#: mod/settings.php:1349 +#: mod/settings.php:1356 msgid "Resend relocate message to contacts" msgstr "Invia nuovamente il messaggio di trasloco ai contatti" -#: mod/videos.php:120 +#: mod/uexport.php:37 +msgid "Export account" +msgstr "Esporta account" + +#: mod/uexport.php:37 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "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:38 +msgid "Export all" +msgstr "Esporta tutto" + +#: mod/uexport.php:38 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Può diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)" + +#: mod/videos.php:124 msgid "Do you really want to delete this video?" msgstr "Vuoi veramente cancellare questo video?" -#: mod/videos.php:125 +#: mod/videos.php:129 msgid "Delete Video" msgstr "Rimuovi video" -#: mod/videos.php:204 +#: mod/videos.php:208 msgid "No videos selected" msgstr "Nessun video selezionato" -#: mod/videos.php:396 +#: mod/videos.php:402 msgid "Recent Videos" msgstr "Video Recenti" -#: mod/videos.php:398 +#: mod/videos.php:404 msgid "Upload New Videos" msgstr "Carica Nuovo Video" -#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76 -#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86 -#: mod/wall_upload.php:122 mod/wall_upload.php:125 -msgid "Invalid request." -msgstr "Richiesta non valida." +#: mod/install.php:106 +msgid "Friendica Communications Server - Setup" +msgstr "Friendica Comunicazione Server - Impostazioni" -#: mod/wall_attach.php:94 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Mi spiace, forse il file che stai caricando è più grosso di quanto la configurazione di PHP permetta" +#: mod/install.php:112 +msgid "Could not connect to database." +msgstr " Impossibile collegarsi con il database." -#: 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/install.php:116 +msgid "Could not create table." +msgstr "Impossibile creare le tabelle." -#: mod/wall_attach.php:105 +#: mod/install.php:122 +msgid "Your Friendica site database has been installed." +msgstr "Il tuo Friendica è stato installato." + +#: mod/install.php:127 +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:128 mod/install.php:200 mod/install.php:547 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Leggi il file \"INSTALL.txt\"." + +#: mod/install.php:140 +msgid "Database already in use." +msgstr "Database già in uso." + +#: mod/install.php:197 +msgid "System check" +msgstr "Controllo sistema" + +#: mod/install.php:202 +msgid "Check again" +msgstr "Controlla ancora" + +#: mod/install.php:221 +msgid "Database connection" +msgstr "Connessione al database" + +#: mod/install.php:222 +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:223 +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:224 +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:228 +msgid "Database Server Name" +msgstr "Nome del database server" + +#: mod/install.php:229 +msgid "Database Login Name" +msgstr "Nome utente database" + +#: mod/install.php:230 +msgid "Database Login Password" +msgstr "Password utente database" + +#: mod/install.php:230 +msgid "For security reasons the password must not be empty" +msgstr "Per motivi di sicurezza la password non puo' essere vuota." + +#: mod/install.php:231 +msgid "Database Name" +msgstr "Nome database" + +#: mod/install.php:232 mod/install.php:273 +msgid "Site administrator email address" +msgstr "Indirizzo email dell'amministratore del sito" + +#: mod/install.php:232 mod/install.php:273 +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:236 mod/install.php:276 +msgid "Please select a default timezone for your website" +msgstr "Seleziona il fuso orario predefinito per il tuo sito web" + +#: mod/install.php:263 +msgid "Site settings" +msgstr "Impostazioni sito" + +#: mod/install.php:277 +msgid "System Language:" +msgstr "Lingua di Sistema:" + +#: mod/install.php:277 +msgid "" +"Set the default language for your Friendica installation interface and to " +"send emails." +msgstr "Imposta la lingua di default per l'interfaccia e l'invio delle email." + +#: mod/install.php:317 +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:318 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run the background processing. See 'Setup the poller'" +msgstr "Se non hai la versione a riga di comando di PHP installata sul tuo server, non sarai in grado di eseguire i processi in background. Vedi 'Setup the poller'" + +#: mod/install.php:322 +msgid "PHP executable path" +msgstr "Percorso eseguibile PHP" + +#: mod/install.php:322 +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:327 +msgid "Command line PHP" +msgstr "PHP da riga di comando" + +#: mod/install.php:336 +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:337 +msgid "Found PHP version: " +msgstr "Versione PHP:" + +#: mod/install.php:339 +msgid "PHP cli binary" +msgstr "Binario PHP cli" + +#: mod/install.php:350 +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:351 +msgid "This is required for message delivery to work." +msgstr "E' obbligatorio per far funzionare la consegna dei messaggi." + +#: mod/install.php:353 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: mod/install.php:376 +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:377 +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:379 +msgid "Generate encryption keys" +msgstr "Genera chiavi di criptazione" + +#: mod/install.php:386 +msgid "libCurl PHP module" +msgstr "modulo PHP libCurl" + +#: mod/install.php:387 +msgid "GD graphics PHP module" +msgstr "modulo PHP GD graphics" + +#: mod/install.php:388 +msgid "OpenSSL PHP module" +msgstr "modulo PHP OpenSSL" + +#: mod/install.php:389 +msgid "PDO or MySQLi PHP module" +msgstr "modulo PHP PDO o MySQLi" + +#: mod/install.php:390 +msgid "mb_string PHP module" +msgstr "modulo PHP mb_string" + +#: mod/install.php:391 +msgid "XML PHP module" +msgstr "Modulo PHP XML" + +#: mod/install.php:392 +msgid "iconv module" +msgstr "modulo iconv" + +#: mod/install.php:396 mod/install.php:398 +msgid "Apache mod_rewrite module" +msgstr "Modulo mod_rewrite di Apache" + +#: mod/install.php:396 +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:404 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato." + +#: mod/install.php:408 +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:412 +msgid "Error: openssl PHP module required but not installed." +msgstr "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato." + +#: mod/install.php:416 +msgid "Error: PDO or MySQLi PHP module required but not installed." +msgstr "Errore: uno dei due moduli PHP PDO o MySQLi è richiesto ma non installato." + +#: mod/install.php:420 +msgid "Error: The MySQL driver for PDO is not installed." +msgstr "Errore: il driver MySQL per PDO non è 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: iconv PHP module required but not installed." +msgstr "Errore: il modulo PHP iconv è richiesto ma non installato." + +#: mod/install.php:438 +msgid "Error, XML PHP module required but not installed." +msgstr "Errore, il modulo PHP XML è richiesto ma non installato." + +#: mod/install.php:450 +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:451 +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:452 +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:453 +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:456 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php è scrivibile" + +#: mod/install.php:466 +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:467 +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:468 +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:469 +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:472 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 è scrivibile" + +#: mod/install.php:488 +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:490 +msgid "Url rewrite is working" +msgstr "La riscrittura degli url funziona" + +#: mod/install.php:509 +msgid "ImageMagick PHP extension is not installed" +msgstr "L'estensione PHP ImageMagick non è installata" + +#: mod/install.php:511 +msgid "ImageMagick PHP extension is installed" +msgstr "L'estensione PHP ImageMagick è installata" + +#: mod/install.php:513 +msgid "ImageMagick supports GIF" +msgstr "ImageMagick supporta i GIF" + +#: mod/install.php:520 +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:545 +msgid "

What next

" +msgstr "

Cosa fare ora

" + +#: mod/install.php:546 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller." + +#: mod/item.php:116 +msgid "Unable to locate original post." +msgstr "Impossibile trovare il messaggio originale." + +#: mod/item.php:344 +msgid "Empty post discarded." +msgstr "Messaggio vuoto scartato." + +#: mod/item.php:904 +msgid "System error. Post not saved." +msgstr "Errore di sistema. Messaggio non salvato." + +#: mod/item.php:995 #, php-format -msgid "File exceeds size limit of %s" -msgstr "Il file supera la dimensione massima di %s" +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/wall_attach.php:156 mod/wall_attach.php:172 -msgid "File upload failed." -msgstr "Caricamento del file non riuscito." +#: mod/item.php:997 +#, php-format +msgid "You may visit them online at %s" +msgstr "Puoi visitarli online su %s" -#: mod/admin.php:92 +#: mod/item.php:998 +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:1002 +#, php-format +msgid "%s posted an update." +msgstr "%s ha inviato un aggiornamento." + +#: mod/notifications.php:35 +msgid "Invalid request identifier." +msgstr "L'identificativo della richiesta non è valido." + +#: mod/notifications.php:44 mod/notifications.php:180 +#: mod/notifications.php:227 +msgid "Discard" +msgstr "Scarta" + +#: mod/notifications.php:105 +msgid "Network Notifications" +msgstr "Notifiche dalla rete" + +#: mod/notifications.php:117 +msgid "Personal Notifications" +msgstr "Notifiche personali" + +#: mod/notifications.php:123 +msgid "Home Notifications" +msgstr "Notifiche bacheca" + +#: mod/notifications.php:152 +msgid "Show Ignored Requests" +msgstr "Mostra richieste ignorate" + +#: mod/notifications.php:152 +msgid "Hide Ignored Requests" +msgstr "Nascondi richieste ignorate" + +#: mod/notifications.php:164 mod/notifications.php:234 +msgid "Notification type: " +msgstr "Tipo di notifica: " + +#: mod/notifications.php:167 +#, php-format +msgid "suggested by %s" +msgstr "suggerito 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:261 mod/admin.php:1506 +msgid "Approve" +msgstr "Approva" + +#: mod/notifications.php:195 +msgid "Claims to be known to you: " +msgstr "Dice di conoscerti: " + +#: mod/notifications.php:196 +msgid "yes" +msgstr "si" + +#: mod/notifications.php:196 +msgid "no" +msgstr "no" + +#: mod/notifications.php:197 mod/notifications.php:202 +msgid "Shall your connection be bidirectional or not?" +msgstr "La connessione dovrà essere bidirezionale o no?" + +#: mod/notifications.php:198 mod/notifications.php:203 +#, php-format +msgid "" +"Accepting %s as a friend allows %s to subscribe to your posts, and you will " +"also receive updates from them in your news feed." +msgstr "Accettando %s come amico permette a %s di seguire i tuoi post, e a te di riceverne gli aggiornamenti." + +#: mod/notifications.php:199 +#, php-format +msgid "" +"Accepting %s as a subscriber allows them to subscribe to your posts, but you" +" will not receive updates from them in your news feed." +msgstr "Accentrando %s come abbonato gli permette di abbonarsi ai tuoi messaggi, ma tu non riceverai aggiornamenti da lui." + +#: mod/notifications.php:204 +#, php-format +msgid "" +"Accepting %s as a sharer allows them to subscribe to your posts, but you " +"will not receive updates from them in your news feed." +msgstr "Accentando %s come condivisore, gli permetti di abbonarsi ai tuoi messaggi, ma tu non riceverai nessun aggiornamento da loro." + +#: mod/notifications.php:215 +msgid "Friend" +msgstr "Amico" + +#: mod/notifications.php:216 +msgid "Sharer" +msgstr "Condivisore" + +#: mod/notifications.php:216 +msgid "Subscriber" +msgstr "Abbonato" + +#: mod/notifications.php:272 +msgid "No introductions." +msgstr "Nessuna presentazione." + +#: mod/notifications.php:313 +msgid "Show unread" +msgstr "Mostra non letti" + +#: mod/notifications.php:313 +msgid "Show all" +msgstr "Mostra tutti" + +#: mod/notifications.php:319 +#, php-format +msgid "No more %s notifications." +msgstr "Nessun'altra notifica %s." + +#: mod/ping.php:270 +msgid "{0} wants to be your friend" +msgstr "{0} vuole essere tuo amico" + +#: mod/ping.php:285 +msgid "{0} sent you a message" +msgstr "{0} ti ha inviato un messaggio" + +#: mod/ping.php:300 +msgid "{0} requested registration" +msgstr "{0} chiede la registrazione" + +#: mod/admin.php:96 msgid "Theme settings updated." msgstr "Impostazioni del tema aggiornate." -#: mod/admin.php:156 mod/admin.php:954 +#: mod/admin.php:165 mod/admin.php:1054 msgid "Site" msgstr "Sito" -#: mod/admin.php:157 mod/admin.php:898 mod/admin.php:1404 mod/admin.php:1420 +#: mod/admin.php:166 mod/admin.php:988 mod/admin.php:1498 mod/admin.php:1514 msgid "Users" msgstr "Utenti" -#: mod/admin.php:159 mod/admin.php:1780 mod/admin.php:1830 +#: mod/admin.php:168 mod/admin.php:1892 mod/admin.php:1942 msgid "Themes" msgstr "Temi" -#: mod/admin.php:161 +#: mod/admin.php:170 msgid "DB updates" msgstr "Aggiornamenti Database" -#: mod/admin.php:162 mod/admin.php:406 +#: mod/admin.php:171 mod/admin.php:512 msgid "Inspect Queue" msgstr "Ispeziona Coda di invio" -#: mod/admin.php:163 mod/admin.php:372 +#: mod/admin.php:172 mod/admin.php:288 +msgid "Server Blocklist" +msgstr "Server Blocklist" + +#: mod/admin.php:173 mod/admin.php:478 msgid "Federation Statistics" msgstr "Statistiche sulla Federazione" -#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1904 +#: mod/admin.php:187 mod/admin.php:198 mod/admin.php:2016 msgid "Logs" msgstr "Log" -#: mod/admin.php:178 mod/admin.php:1972 +#: mod/admin.php:188 mod/admin.php:2084 msgid "View Logs" msgstr "Vedi i log" -#: mod/admin.php:179 +#: mod/admin.php:189 msgid "probe address" msgstr "controlla indirizzo" -#: mod/admin.php:180 +#: mod/admin.php:190 msgid "check webfinger" msgstr "verifica webfinger" -#: mod/admin.php:187 +#: mod/admin.php:197 msgid "Plugin Features" msgstr "Impostazioni Plugins" -#: mod/admin.php:189 +#: mod/admin.php:199 msgid "diagnostics" msgstr "diagnostiche" -#: mod/admin.php:190 +#: mod/admin.php:200 msgid "User registrations waiting for confirmation" msgstr "Utenti registrati in attesa di conferma" -#: mod/admin.php:306 +#: mod/admin.php:279 +msgid "The blocked domain" +msgstr "Il dominio bloccato" + +#: mod/admin.php:280 mod/admin.php:293 +msgid "The reason why you blocked this domain." +msgstr "Le ragioni per cui blocchi questo dominio." + +#: mod/admin.php:281 +msgid "Delete domain" +msgstr "Elimina dominio" + +#: mod/admin.php:281 +msgid "Check to delete this entry from the blocklist" +msgstr "Seleziona per eliminare questa voce dalla blocklist" + +#: mod/admin.php:287 mod/admin.php:477 mod/admin.php:511 mod/admin.php:586 +#: mod/admin.php:1053 mod/admin.php:1497 mod/admin.php:1615 mod/admin.php:1678 +#: mod/admin.php:1891 mod/admin.php:1941 mod/admin.php:2015 mod/admin.php:2083 +msgid "Administration" +msgstr "Amministrazione" + +#: mod/admin.php:289 +msgid "" +"This page can be used to define a black list of servers from the federated " +"network that are not allowed to interact with your node. For all entered " +"domains you should also give a reason why you have blocked the remote " +"server." +msgstr "Questa pagina puo' essere usata per definire una black list di server dal network federato a cui nono è permesso interagire col tuo nodo. Per ogni dominio inserito, dovresti anche riportare una ragione per cui hai bloccato il server remoto." + +#: mod/admin.php:290 +msgid "" +"The list of blocked servers will be made publically available on the " +"/friendica page so that your users and people investigating communication " +"problems can find the reason easily." +msgstr "La lista di server bloccati sarà resa disponibile pubblicamente sulla pagina /friendica, così che i tuoi utenti e le persone che indagano su problemi di comunicazione possano trovarne la ragione facilmente." + +#: mod/admin.php:291 +msgid "Add new entry to block list" +msgstr "Aggiungi una nuova voce alla blocklist" + +#: mod/admin.php:292 +msgid "Server Domain" +msgstr "Dominio del Server" + +#: mod/admin.php:292 +msgid "" +"The domain of the new server to add to the block list. Do not include the " +"protocol." +msgstr "Il dominio del server da aggiungere alla blocklist. Non includere il protocollo." + +#: mod/admin.php:293 +msgid "Block reason" +msgstr "Ragione blocco" + +#: mod/admin.php:294 +msgid "Add Entry" +msgstr "Aggiungi Voce" + +#: mod/admin.php:295 +msgid "Save changes to the blocklist" +msgstr "Salva modifiche alla blocklist" + +#: mod/admin.php:296 +msgid "Current Entries in the Blocklist" +msgstr "Voci correnti nella blocklist" + +#: mod/admin.php:299 +msgid "Delete entry from blocklist" +msgstr "Elimina voce dalla blocklist" + +#: mod/admin.php:302 +msgid "Delete entry from blocklist?" +msgstr "Eliminare la voce dalla blocklist?" + +#: mod/admin.php:327 +msgid "Server added to blocklist." +msgstr "Server aggiunto alla blocklist." + +#: mod/admin.php:343 +msgid "Site blocklist updated." +msgstr "Blocklist del sito aggiornata." + +#: mod/admin.php:408 msgid "unknown" msgstr "sconosciuto" -#: mod/admin.php:365 +#: mod/admin.php:471 msgid "" "This page offers you some numbers to the known part of the federated social " "network your Friendica node is part of. These numbers are not complete but " "only reflect the part of the network your node is aware of." msgstr "Questa pagina offre alcuni numeri riguardo la porzione del social network federato di cui il tuo nodo Friendica fa parte. Questi numeri non sono completi ma riflettono esclusivamente la porzione di rete di cui il tuo nodo e' a conoscenza." -#: mod/admin.php:366 +#: mod/admin.php:472 msgid "" "The Auto Discovered Contact Directory feature is not enabled, it " "will improve the data displayed here." msgstr "La funzione Elenco Contatti Scoperto Automaticamente non è abilitata, migliorerà i dati visualizzati qui." -#: mod/admin.php:371 mod/admin.php:405 mod/admin.php:484 mod/admin.php:953 -#: mod/admin.php:1403 mod/admin.php:1521 mod/admin.php:1581 mod/admin.php:1779 -#: mod/admin.php:1829 mod/admin.php:1903 mod/admin.php:1971 -msgid "Administration" -msgstr "Amministrazione" - -#: mod/admin.php:378 +#: mod/admin.php:484 #, php-format msgid "Currently this node is aware of %d nodes from the following platforms:" msgstr "Attualmente questo nodo conosce %d nodi dalle seguenti piattaforme:" -#: mod/admin.php:408 +#: mod/admin.php:514 msgid "ID" msgstr "ID" -#: mod/admin.php:409 +#: mod/admin.php:515 msgid "Recipient Name" msgstr "Nome Destinatario" -#: mod/admin.php:410 +#: mod/admin.php:516 msgid "Recipient Profile" msgstr "Profilo Destinatario" -#: mod/admin.php:412 +#: mod/admin.php:518 msgid "Created" msgstr "Creato" -#: mod/admin.php:413 +#: mod/admin.php:519 msgid "Last Tried" msgstr "Ultimo Tentativo" -#: mod/admin.php:414 +#: mod/admin.php:520 msgid "" "This page lists the content of the queue for outgoing postings. These are " "postings the initial delivery failed for. They will be resend later and " "eventually deleted if the delivery fails permanently." msgstr "Questa pagina elenca il contenuto della coda di invio dei post. Questi sono post la cui consegna è fallita. Verranno inviati nuovamente più tardi ed eventualmente cancellati se la consegna continua a fallire." -#: mod/admin.php:439 +#: mod/admin.php:545 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " "InnoDB. As Friendica will use InnoDB only features in the future, you should" " change this! See here for a guide that may be helpful " -"converting the table engines. You may also use the " -"convert_innodb.sql in the /util directory of your " -"Friendica installation.
" -msgstr "Il tuo database sta girando ancora con tabelle MYISAM. Dovresti cambiare il tipo di motore a InnoDB, siccome Friendica userà solo tabelle InnoDB in futuro. Vedi qui per una guida che ti può essere utile per la conversione. Puoi anche usare il file convert_innodb.sql che trovi nella cartella /util della tua installazione di Friendica.
" +"converting the table engines. You may also use the command php " +"include/dbstructure.php toinnodb of your Friendica installation for an " +"automatic conversion.
" +msgstr "Il tuo database contiene ancora tabelle MyISAM. Dovresti cambiare il motore a InnoDB. Siccome Friendica userà esclusivamente InnoDB nelle versioni a venire, dovresti cambiarle! Vedi qui per una guida che puo' essere d'aiuto nel convertire il motore delle tabelle. Puoi anche usare il comando php include/dbstructure.php toinnodb nella tua installazione Friendica per eseguire la conversione automaticamente.
" -#: mod/admin.php:444 +#: mod/admin.php:550 msgid "" "You are using a MySQL version which does not support all features that " "Friendica uses. You should consider switching to MariaDB." msgstr "Stai usando una versione di MySQL che non supporta tutte le funzionalità che Friendica usa. Dovresti considerare di utilizzare MariaDB." -#: mod/admin.php:448 mod/admin.php:1352 +#: mod/admin.php:554 mod/admin.php:1447 msgid "Normal Account" msgstr "Account normale" -#: mod/admin.php:449 mod/admin.php:1353 +#: mod/admin.php:555 mod/admin.php:1448 msgid "Soapbox Account" msgstr "Account per comunicati e annunci" -#: mod/admin.php:450 mod/admin.php:1354 +#: mod/admin.php:556 mod/admin.php:1449 msgid "Community/Celebrity Account" msgstr "Account per celebrità o per comunità" -#: mod/admin.php:451 mod/admin.php:1355 +#: mod/admin.php:557 mod/admin.php:1450 msgid "Automatic Friend Account" msgstr "Account per amicizia automatizzato" -#: mod/admin.php:452 +#: mod/admin.php:558 msgid "Blog Account" msgstr "Account Blog" -#: mod/admin.php:453 +#: mod/admin.php:559 msgid "Private Forum" msgstr "Forum Privato" -#: mod/admin.php:479 +#: mod/admin.php:581 msgid "Message queues" msgstr "Code messaggi" -#: mod/admin.php:485 +#: mod/admin.php:587 msgid "Summary" msgstr "Sommario" -#: mod/admin.php:488 +#: mod/admin.php:589 msgid "Registered users" msgstr "Utenti registrati" -#: mod/admin.php:490 +#: mod/admin.php:591 msgid "Pending registrations" msgstr "Registrazioni in attesa" -#: mod/admin.php:491 +#: mod/admin.php:592 msgid "Version" msgstr "Versione" -#: mod/admin.php:496 +#: mod/admin.php:597 msgid "Active plugins" msgstr "Plugin attivi" -#: mod/admin.php:521 +#: mod/admin.php:622 msgid "Can not parse base url. Must have at least ://" msgstr "Impossibile analizzare l'url base. Deve avere almeno [schema]://[dominio]" -#: mod/admin.php:826 -msgid "RINO2 needs mcrypt php extension to work." -msgstr "RINO2 necessita dell'estensione php mcrypt per funzionare." - -#: mod/admin.php:834 +#: mod/admin.php:914 msgid "Site settings updated." msgstr "Impostazioni del sito aggiornate." -#: mod/admin.php:881 +#: mod/admin.php:971 msgid "No community page" msgstr "Nessuna pagina Comunità" -#: mod/admin.php:882 +#: mod/admin.php:972 msgid "Public postings from users of this site" msgstr "Messaggi pubblici dagli utenti di questo sito" -#: mod/admin.php:883 +#: mod/admin.php:973 msgid "Global community page" msgstr "Pagina Comunità globale" -#: mod/admin.php:888 mod/contacts.php:530 -msgid "Never" -msgstr "Mai" - -#: mod/admin.php:889 +#: mod/admin.php:979 msgid "At post arrival" msgstr "All'arrivo di un messaggio" -#: mod/admin.php:897 mod/contacts.php:557 -msgid "Disabled" -msgstr "Disabilitato" - -#: mod/admin.php:899 +#: mod/admin.php:989 msgid "Users, Global Contacts" msgstr "Utenti, Contatti Globali" -#: mod/admin.php:900 +#: mod/admin.php:990 msgid "Users, Global Contacts/fallback" msgstr "Utenti, Contatti Globali/fallback" -#: mod/admin.php:904 +#: mod/admin.php:994 msgid "One month" msgstr "Un mese" -#: mod/admin.php:905 +#: mod/admin.php:995 msgid "Three months" msgstr "Tre mesi" -#: mod/admin.php:906 +#: mod/admin.php:996 msgid "Half a year" msgstr "Sei mesi" -#: mod/admin.php:907 +#: mod/admin.php:997 msgid "One year" msgstr "Un anno" -#: mod/admin.php:912 +#: mod/admin.php:1002 msgid "Multi user instance" msgstr "Istanza multi utente" -#: mod/admin.php:935 +#: mod/admin.php:1025 msgid "Closed" msgstr "Chiusa" -#: mod/admin.php:936 +#: mod/admin.php:1026 msgid "Requires approval" msgstr "Richiede l'approvazione" -#: mod/admin.php:937 +#: mod/admin.php:1027 msgid "Open" msgstr "Aperta" -#: mod/admin.php:941 +#: mod/admin.php:1031 msgid "No SSL policy, links will track page SSL state" msgstr "Nessuna gestione SSL, i link seguiranno lo stato SSL della pagina" -#: mod/admin.php:942 +#: mod/admin.php:1032 msgid "Force all links to use SSL" msgstr "Forza tutti i link ad usare SSL" -#: mod/admin.php:943 +#: mod/admin.php:1033 msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "Certificato auto-firmato, usa SSL solo per i link locali (sconsigliato)" -#: mod/admin.php:957 +#: mod/admin.php:1057 msgid "File upload" msgstr "Caricamento file" -#: mod/admin.php:958 +#: mod/admin.php:1058 msgid "Policies" msgstr "Politiche" -#: mod/admin.php:960 +#: mod/admin.php:1060 msgid "Auto Discovered Contact Directory" msgstr "Elenco Contatti Scoperto Automaticamente" -#: mod/admin.php:961 +#: mod/admin.php:1061 msgid "Performance" msgstr "Performance" -#: mod/admin.php:962 +#: mod/admin.php:1062 msgid "Worker" msgstr "Worker" -#: mod/admin.php:963 +#: mod/admin.php:1063 msgid "" "Relocate - WARNING: advanced function. Could make this server unreachable." msgstr "Trasloca - ATTENZIONE: funzione avanzata! Può rendere questo server irraggiungibile." -#: mod/admin.php:966 +#: mod/admin.php:1066 msgid "Site name" msgstr "Nome del sito" -#: mod/admin.php:967 +#: mod/admin.php:1067 msgid "Host name" msgstr "Nome host" -#: mod/admin.php:968 +#: mod/admin.php:1068 msgid "Sender Email" msgstr "Mittente email" -#: mod/admin.php:968 +#: mod/admin.php:1068 msgid "" "The email address your server shall use to send notification emails from." msgstr "L'indirizzo email che il tuo server dovrà usare per inviare notifiche via email." -#: mod/admin.php:969 +#: mod/admin.php:1069 msgid "Banner/Logo" msgstr "Banner/Logo" -#: mod/admin.php:970 +#: mod/admin.php:1070 msgid "Shortcut icon" msgstr "Icona shortcut" -#: mod/admin.php:970 +#: mod/admin.php:1070 msgid "Link to an icon that will be used for browsers." msgstr "Link verso un'icona che verrà usata dai browser." -#: mod/admin.php:971 +#: mod/admin.php:1071 msgid "Touch icon" msgstr "Icona touch" -#: mod/admin.php:971 +#: mod/admin.php:1071 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "Link verso un'icona che verrà usata dai tablet e i telefonini." -#: mod/admin.php:972 +#: mod/admin.php:1072 msgid "Additional Info" msgstr "Informazioni aggiuntive" -#: mod/admin.php:972 +#: mod/admin.php:1072 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/siteinfo." msgstr "Per server pubblici: puoi aggiungere informazioni extra che verrano mostrate su %s/siteinfo." -#: mod/admin.php:973 +#: mod/admin.php:1073 msgid "System language" msgstr "Lingua di sistema" -#: mod/admin.php:974 +#: mod/admin.php:1074 msgid "System theme" msgstr "Tema di sistema" -#: mod/admin.php:974 +#: mod/admin.php:1074 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "Tema di sistema - può essere sovrascritto dalle impostazioni utente - cambia le impostazioni del tema" -#: mod/admin.php:975 +#: mod/admin.php:1075 msgid "Mobile system theme" msgstr "Tema mobile di sistema" -#: mod/admin.php:975 +#: mod/admin.php:1075 msgid "Theme for mobile devices" msgstr "Tema per dispositivi mobili" -#: mod/admin.php:976 +#: mod/admin.php:1076 msgid "SSL link policy" msgstr "Gestione link SSL" -#: mod/admin.php:976 +#: mod/admin.php:1076 msgid "Determines whether generated links should be forced to use SSL" msgstr "Determina se i link generati devono essere forzati a usare SSL" -#: mod/admin.php:977 +#: mod/admin.php:1077 msgid "Force SSL" msgstr "Forza SSL" -#: mod/admin.php:977 +#: mod/admin.php:1077 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "Forza tutte le richieste non SSL su SSL - Attenzione: su alcuni sistemi può portare a loop senza fine" -#: mod/admin.php:978 -msgid "Old style 'Share'" -msgstr "Ricondivisione vecchio stile" - -#: mod/admin.php:978 -msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "Disattiva l'elemento bbcode 'share' con elementi ripetuti" - -#: mod/admin.php:979 +#: mod/admin.php:1078 msgid "Hide help entry from navigation menu" msgstr "Nascondi la voce 'Guida' dal menu di navigazione" -#: mod/admin.php:979 +#: mod/admin.php:1078 msgid "" "Hides the menu entry for the Help pages from the navigation menu. You can " "still access it calling /help directly." msgstr "Nasconde la voce per le pagine della guida dal menu di navigazione. E' comunque possibile accedervi richiamando /help direttamente." -#: mod/admin.php:980 +#: mod/admin.php:1079 msgid "Single user instance" msgstr "Istanza a singolo utente" -#: mod/admin.php:980 +#: mod/admin.php:1079 msgid "Make this instance multi-user or single-user for the named user" msgstr "Rendi questa istanza multi utente o a singolo utente per l'utente selezionato" -#: mod/admin.php:981 +#: mod/admin.php:1080 msgid "Maximum image size" msgstr "Massima dimensione immagini" -#: mod/admin.php:981 +#: mod/admin.php:1080 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite." -#: mod/admin.php:982 +#: mod/admin.php:1081 msgid "Maximum image length" msgstr "Massima lunghezza immagine" -#: mod/admin.php:982 +#: mod/admin.php:1081 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "Massima lunghezza in pixel del lato più lungo delle immagini caricate. Predefinito a -1, ovvero nessun limite." -#: mod/admin.php:983 +#: mod/admin.php:1082 msgid "JPEG image quality" msgstr "Qualità immagini JPEG" -#: mod/admin.php:983 +#: mod/admin.php:1082 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "Le immagini JPEG caricate verranno salvate con questa qualità [0-100]. Predefinito è 100, ovvero qualità piena." -#: mod/admin.php:985 +#: mod/admin.php:1084 msgid "Register policy" msgstr "Politica di registrazione" -#: mod/admin.php:986 +#: mod/admin.php:1085 msgid "Maximum Daily Registrations" msgstr "Massime registrazioni giornaliere" -#: mod/admin.php:986 +#: mod/admin.php:1085 msgid "" "If registration is permitted above, this sets the maximum number of new user" " registrations to accept per day. If register is set to closed, this " "setting has no effect." msgstr "Se la registrazione è permessa, qui si definisce il massimo numero di nuovi utenti registrati da accettare giornalmente. Se la registrazione è chiusa, questa impostazione non ha effetto." -#: mod/admin.php:987 +#: mod/admin.php:1086 msgid "Register text" msgstr "Testo registrazione" -#: mod/admin.php:987 +#: mod/admin.php:1086 msgid "Will be displayed prominently on the registration page." msgstr "Sarà mostrato ben visibile nella pagina di registrazione." -#: mod/admin.php:988 +#: mod/admin.php:1087 msgid "Accounts abandoned after x days" msgstr "Account abbandonati dopo x giorni" -#: mod/admin.php:988 +#: mod/admin.php:1087 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo." -#: mod/admin.php:989 +#: mod/admin.php:1088 msgid "Allowed friend domains" msgstr "Domini amici consentiti" -#: mod/admin.php:989 +#: mod/admin.php:1088 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Elenco separato da virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Vuoto per accettare qualsiasi dominio." -#: mod/admin.php:990 +#: mod/admin.php:1089 msgid "Allowed email domains" msgstr "Domini email consentiti" -#: mod/admin.php:990 +#: mod/admin.php:1089 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." -#: mod/admin.php:991 +#: mod/admin.php:1090 msgid "Block public" msgstr "Blocca pagine pubbliche" -#: mod/admin.php:991 +#: mod/admin.php:1090 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato." -#: mod/admin.php:992 +#: mod/admin.php:1091 msgid "Force publish" msgstr "Forza pubblicazione" -#: mod/admin.php:992 +#: mod/admin.php:1091 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Seleziona per forzare tutti i profili di questo sito ad essere compresi nell'elenco di questo sito." -#: mod/admin.php:993 +#: mod/admin.php:1092 msgid "Global directory URL" msgstr "URL della directory globale" -#: mod/admin.php:993 +#: mod/admin.php:1092 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato." -#: mod/admin.php:994 +#: mod/admin.php:1093 msgid "Allow threaded items" msgstr "Permetti commenti nidificati" -#: mod/admin.php:994 +#: mod/admin.php:1093 msgid "Allow infinite level threading for items on this site." msgstr "Permette un infinito livello di nidificazione dei commenti su questo sito." -#: mod/admin.php:995 +#: mod/admin.php:1094 msgid "Private posts by default for new users" msgstr "Post privati di default per i nuovi utenti" -#: mod/admin.php:995 +#: mod/admin.php:1094 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." msgstr "Imposta i permessi predefiniti dei post per tutti i nuovi utenti come privati per il gruppo predefinito, invece che pubblici." -#: mod/admin.php:996 +#: mod/admin.php:1095 msgid "Don't include post content in email notifications" msgstr "Non includere il contenuto dei post nelle notifiche via email" -#: mod/admin.php:996 +#: mod/admin.php:1095 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr "Non include il contenuti del post/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy" -#: mod/admin.php:997 +#: mod/admin.php:1096 msgid "Disallow public access to addons listed in the apps menu." msgstr "Disabilita l'accesso pubblico ai plugin raccolti nel menu apps." -#: mod/admin.php:997 +#: mod/admin.php:1096 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "Selezionando questo box si limiterà ai soli membri l'accesso ai componenti aggiuntivi nel menu applicazioni" -#: mod/admin.php:998 +#: mod/admin.php:1097 msgid "Don't embed private images in posts" msgstr "Non inglobare immagini private nei post" -#: mod/admin.php:998 +#: mod/admin.php:1097 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 " @@ -6807,239 +7989,220 @@ msgid "" "while." msgstr "Non sostituire le foto locali nei post con una copia incorporata dell'immagine. Questo significa che i contatti che riceveranno i post contenenti foto private dovranno autenticarsi e caricare ogni immagine, cosa che può richiedere un po' di tempo." -#: mod/admin.php:999 +#: mod/admin.php:1098 msgid "Allow Users to set remote_self" msgstr "Permetti agli utenti di impostare 'io remoto'" -#: mod/admin.php:999 +#: mod/admin.php:1098 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "Selezionando questo, a tutti gli utenti sarà permesso di impostare qualsiasi contatto come 'io remoto' nella pagina di modifica del contatto. Impostare questa opzione fa si che tutti i messaggi di quel contatto vengano ripetuti nello stream dell'utente." -#: mod/admin.php:1000 +#: mod/admin.php:1099 msgid "Block multiple registrations" msgstr "Blocca registrazioni multiple" -#: mod/admin.php:1000 +#: mod/admin.php:1099 msgid "Disallow users to register additional accounts for use as pages." msgstr "Non permette all'utente di registrare account extra da usare come pagine." -#: mod/admin.php:1001 +#: mod/admin.php:1100 msgid "OpenID support" msgstr "Supporto OpenID" -#: mod/admin.php:1001 +#: mod/admin.php:1100 msgid "OpenID support for registration and logins." msgstr "Supporta OpenID per la registrazione e il login" -#: mod/admin.php:1002 +#: mod/admin.php:1101 msgid "Fullname check" msgstr "Controllo nome completo" -#: mod/admin.php:1002 +#: mod/admin.php:1101 msgid "" "Force users to register with a space between firstname and lastname in Full " "name, as an antispam measure" msgstr "Forza gli utenti a registrarsi con uno spazio tra il nome e il cognome in \"Nome completo\", come misura anti spam" -#: mod/admin.php:1003 -msgid "UTF-8 Regular expressions" -msgstr "Espressioni regolari UTF-8" - -#: mod/admin.php:1003 -msgid "Use PHP UTF8 regular expressions" -msgstr "Usa le espressioni regolari PHP in UTF8" - -#: mod/admin.php:1004 +#: mod/admin.php:1102 msgid "Community Page Style" msgstr "Stile pagina Comunità" -#: mod/admin.php:1004 +#: mod/admin.php:1102 msgid "" "Type of community page to show. 'Global community' shows every public " "posting from an open distributed network that arrived on this server." msgstr "Tipo di pagina Comunità da mostrare. 'Comunità Globale' mostra tutti i messaggi pubblici arrivati su questo server da network aperti distribuiti." -#: mod/admin.php:1005 +#: mod/admin.php:1103 msgid "Posts per user on community page" msgstr "Messaggi per utente nella pagina Comunità" -#: mod/admin.php:1005 +#: mod/admin.php:1103 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "'Global Community')" msgstr "Il numero massimo di messaggi per utente mostrato nella pagina Comunità (non valido per 'Comunità globale')" -#: mod/admin.php:1006 +#: mod/admin.php:1104 msgid "Enable OStatus support" msgstr "Abilita supporto OStatus" -#: mod/admin.php:1006 +#: mod/admin.php:1104 msgid "" "Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public, so privacy warnings will be " "occasionally displayed." msgstr "Fornisce la compatibilità integrata a OStatus (StatusNet, Gnu Social, etc.). Tutte le comunicazioni su OStatus sono pubbliche, quindi un avviso di privacy verrà mostrato occasionalmente." -#: mod/admin.php:1007 +#: mod/admin.php:1105 msgid "OStatus conversation completion interval" msgstr "Intervallo completamento conversazioni OStatus" -#: mod/admin.php:1007 +#: mod/admin.php:1105 msgid "" "How often shall the poller check for new entries in OStatus conversations? " "This can be a very ressource task." msgstr "quanto spesso il poller deve controllare se esistono nuovi commenti in una conversazione OStatus? Questo è un lavoro che può richiedere molte risorse." -#: mod/admin.php:1008 +#: mod/admin.php:1106 msgid "Only import OStatus threads from our contacts" msgstr "Importa conversazioni OStatus solo dai nostri contatti." -#: mod/admin.php:1008 +#: mod/admin.php:1106 msgid "" "Normally we import every content from our OStatus contacts. With this option" " we only store threads that are started by a contact that is known on our " "system." msgstr "Normalmente importiamo tutto il contenuto dai contatti OStatus. Con questa opzione salviamo solo le conversazioni iniziate da un contatto è conosciuto a questo nodo." -#: mod/admin.php:1009 +#: mod/admin.php:1107 msgid "OStatus support can only be enabled if threading is enabled." msgstr "Il supporto OStatus può essere abilitato solo se è abilitato il threading." -#: mod/admin.php:1011 +#: mod/admin.php:1109 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "Il supporto a Diaspora non può essere abilitato perché Friendica è stato installato in una sotto directory." -#: mod/admin.php:1012 +#: mod/admin.php:1110 msgid "Enable Diaspora support" msgstr "Abilita il supporto a Diaspora" -#: mod/admin.php:1012 +#: mod/admin.php:1110 msgid "Provide built-in Diaspora network compatibility." msgstr "Fornisce compatibilità con il network Diaspora." -#: mod/admin.php:1013 +#: mod/admin.php:1111 msgid "Only allow Friendica contacts" msgstr "Permetti solo contatti Friendica" -#: mod/admin.php:1013 +#: mod/admin.php:1111 msgid "" "All contacts must use Friendica protocols. All other built-in communication " "protocols disabled." msgstr "Tutti i contatti devono usare il protocollo di Friendica. Tutti gli altri protocolli sono disabilitati." -#: mod/admin.php:1014 +#: mod/admin.php:1112 msgid "Verify SSL" msgstr "Verifica SSL" -#: mod/admin.php:1014 +#: mod/admin.php:1112 msgid "" "If you wish, you can turn on strict certificate checking. This will mean you" " cannot connect (at all) to self-signed SSL sites." msgstr "Se vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati." -#: mod/admin.php:1015 +#: mod/admin.php:1113 msgid "Proxy user" msgstr "Utente Proxy" -#: mod/admin.php:1016 +#: mod/admin.php:1114 msgid "Proxy URL" msgstr "URL Proxy" -#: mod/admin.php:1017 +#: mod/admin.php:1115 msgid "Network timeout" msgstr "Timeout rete" -#: mod/admin.php:1017 +#: mod/admin.php:1115 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Valore in secondi. Imposta a 0 per illimitato (non raccomandato)." -#: mod/admin.php:1018 -msgid "Delivery interval" -msgstr "Intervallo di invio" - -#: mod/admin.php:1018 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Ritarda il processo di invio in background di n secondi per ridurre il carico di sistema. Raccomandato: 4-5 per host condivisi, 2-3 per VPS. 0-1 per grandi server dedicati." - -#: mod/admin.php:1019 -msgid "Poll interval" -msgstr "Intervallo di poll" - -#: mod/admin.php:1019 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Ritarda il processo di poll in background di n secondi per ridurre il carico di sistema. Se 0, usa l'intervallo di invio." - -#: mod/admin.php:1020 +#: mod/admin.php:1116 msgid "Maximum Load Average" msgstr "Massimo carico medio" -#: mod/admin.php:1020 +#: mod/admin.php:1116 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "Massimo carico di sistema prima che i processi di invio e di poll siano ritardati. Predefinito a 50." -#: mod/admin.php:1021 +#: mod/admin.php:1117 msgid "Maximum Load Average (Frontend)" msgstr "Media Massimo Carico (Frontend)" -#: mod/admin.php:1021 +#: mod/admin.php:1117 msgid "Maximum system load before the frontend quits service - default 50." msgstr "Massimo carico di sistema prima che il frontend fermi il servizio - default 50." -#: mod/admin.php:1022 +#: mod/admin.php:1118 +msgid "Minimal Memory" +msgstr "Memoria Minima" + +#: mod/admin.php:1118 +msgid "" +"Minimal free memory in MB for the poller. Needs access to /proc/meminfo - " +"default 0 (deactivated)." +msgstr "Minima memoria libera in MB per il poller. Necessita di avere accesso a /proc/meminfo - default 0 (disabilitato)." + +#: mod/admin.php:1119 msgid "Maximum table size for optimization" msgstr "Dimensione massima della tabella per l'ottimizzazione" -#: mod/admin.php:1022 +#: mod/admin.php:1119 msgid "" "Maximum table size (in MB) for the automatic optimization - default 100 MB. " "Enter -1 to disable it." msgstr "La dimensione massima (in MB) per l'ottimizzazione automatica - default 100 MB. Inserisci -1 per disabilitarlo." -#: mod/admin.php:1023 +#: mod/admin.php:1120 msgid "Minimum level of fragmentation" msgstr "Livello minimo di frammentazione" -#: mod/admin.php:1023 +#: mod/admin.php:1120 msgid "" "Minimum fragmenation level to start the automatic optimization - default " "value is 30%." msgstr "Livello minimo di frammentazione per iniziare la procedura di ottimizzazione automatica - il valore di default è 30%." -#: mod/admin.php:1025 +#: mod/admin.php:1122 msgid "Periodical check of global contacts" msgstr "Check periodico dei contatti globali" -#: mod/admin.php:1025 +#: mod/admin.php:1122 msgid "" "If enabled, the global contacts are checked periodically for missing or " "outdated data and the vitality of the contacts and servers." msgstr "Se abilitato, i contatti globali sono controllati periodicamente per verificare dati mancanti o sorpassati e la vitalità dei contatti e dei server." -#: mod/admin.php:1026 +#: mod/admin.php:1123 msgid "Days between requery" msgstr "Giorni tra le richieste" -#: mod/admin.php:1026 +#: mod/admin.php:1123 msgid "Number of days after which a server is requeried for his contacts." msgstr "Numero di giorni dopo i quali al server vengono richiesti i suoi contatti." -#: mod/admin.php:1027 +#: mod/admin.php:1124 msgid "Discover contacts from other servers" msgstr "Trova contatti dagli altri server" -#: mod/admin.php:1027 +#: mod/admin.php:1124 msgid "" "Periodically query other servers for contacts. You can choose between " "'users': the users on the remote system, 'Global Contacts': active contacts " @@ -7049,32 +8212,32 @@ msgid "" "Global Contacts'." msgstr "Richiede periodicamente contatti agli altri server. Puoi scegliere tra 'utenti', gli utenti sul sistema remoto, o 'contatti globali', i contatti attivi che sono conosciuti dal sistema. Il fallback è pensato per i server Redmatrix e i vecchi server Friendica, dove i contatti globali non sono disponibili. Il fallback incrementa il carico di sistema, per cui l'impostazione consigliata è \"Utenti, Contatti Globali\"." -#: mod/admin.php:1028 +#: mod/admin.php:1125 msgid "Timeframe for fetching global contacts" msgstr "Termine per il recupero contatti globali" -#: mod/admin.php:1028 +#: mod/admin.php:1125 msgid "" "When the discovery is activated, this value defines the timeframe for the " "activity of the global contacts that are fetched from other servers." msgstr "Quando si attiva la scoperta, questo valore definisce il periodo di tempo per l'attività dei contatti globali che vengono prelevati da altri server." -#: mod/admin.php:1029 +#: mod/admin.php:1126 msgid "Search the local directory" msgstr "Cerca la directory locale" -#: mod/admin.php:1029 +#: mod/admin.php:1126 msgid "" "Search the local directory instead of the global directory. When searching " "locally, every search will be executed on the global directory in the " "background. This improves the search results when the search is repeated." msgstr "Cerca nella directory locale invece che nella directory globale. Durante la ricerca a livello locale, ogni ricerca verrà eseguita sulla directory globale in background. Ciò migliora i risultati della ricerca quando la ricerca viene ripetuta." -#: mod/admin.php:1031 +#: mod/admin.php:1128 msgid "Publish server information" msgstr "Pubblica informazioni server" -#: mod/admin.php:1031 +#: mod/admin.php:1128 msgid "" "If enabled, general server and usage data will be published. The data " "contains the name and version of the server, number of users with public " @@ -7082,191 +8245,133 @@ msgid "" " href='http://the-federation.info/'>the-federation.info for details." msgstr "Se abilitata, saranno pubblicati i dati generali del server e i dati di utilizzo. I dati contengono il nome e la versione del server, il numero di utenti con profili pubblici, numero dei posti e dei protocolli e connettori attivati. Per informazioni, vedere the-federation.info ." -#: mod/admin.php:1033 -msgid "Use MySQL full text engine" -msgstr "Usa il motore MySQL full text" - -#: mod/admin.php:1033 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "Attiva il motore full-text. Velocizza la ricerca, ma può cercare solo per quattro o più caratteri." - -#: mod/admin.php:1034 -msgid "Suppress Language" -msgstr "Disattiva lingua" - -#: mod/admin.php:1034 -msgid "Suppress language information in meta information about a posting." -msgstr "Disattiva le informazioni sulla lingua nei meta di un post." - -#: mod/admin.php:1035 +#: mod/admin.php:1130 msgid "Suppress Tags" msgstr "Sopprimi Tags" -#: mod/admin.php:1035 +#: mod/admin.php:1130 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "Non mostra la lista di hashtag in coda al messaggio" -#: mod/admin.php:1036 +#: mod/admin.php:1131 msgid "Path to item cache" msgstr "Percorso cache elementi" -#: mod/admin.php:1036 +#: mod/admin.php:1131 msgid "The item caches buffers generated bbcode and external images." msgstr "La cache degli elementi memorizza il bbcode generato e le immagini esterne." -#: mod/admin.php:1037 +#: mod/admin.php:1132 msgid "Cache duration in seconds" msgstr "Durata della cache in secondi" -#: mod/admin.php:1037 +#: mod/admin.php:1132 msgid "" "How long should the cache files be hold? Default value is 86400 seconds (One" " day). To disable the item cache, set the value to -1." msgstr "Quanto a lungo devono essere mantenuti i file di cache? Il valore predefinito è 86400 secondi (un giorno). Per disabilitare la cache, imposta il valore a -1." -#: mod/admin.php:1038 +#: mod/admin.php:1133 msgid "Maximum numbers of comments per post" msgstr "Numero massimo di commenti per post" -#: mod/admin.php:1038 +#: mod/admin.php:1133 msgid "How much comments should be shown for each post? Default value is 100." msgstr "Quanti commenti devono essere mostrati per ogni post? Default : 100." -#: mod/admin.php:1039 -msgid "Path for lock file" -msgstr "Percorso al file di lock" - -#: mod/admin.php:1039 -msgid "" -"The lock file is used to avoid multiple pollers at one time. Only define a " -"folder here." -msgstr "Il file di lock è usato per evitare l'avvio di poller multipli allo stesso tempo. Inserisci solo la cartella, qui." - -#: mod/admin.php:1040 +#: mod/admin.php:1134 msgid "Temp path" msgstr "Percorso file temporanei" -#: mod/admin.php:1040 +#: mod/admin.php:1134 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "Se si dispone di un sistema ristretto in cui il server web non può accedere al percorso temporaneo di sistema, inserire un altro percorso qui." -#: mod/admin.php:1041 +#: mod/admin.php:1135 msgid "Base path to installation" msgstr "Percorso base all'installazione" -#: mod/admin.php:1041 +#: mod/admin.php:1135 msgid "" "If the system cannot detect the correct path to your installation, enter the" " correct path here. This setting should only be set if you are using a " "restricted system and symbolic links to your webroot." msgstr "Se il sistema non è in grado di rilevare il percorso corretto per l'installazione, immettere il percorso corretto qui. Questa impostazione deve essere inserita solo se si utilizza un sistema limitato e/o collegamenti simbolici al tuo webroot." -#: mod/admin.php:1042 +#: mod/admin.php:1136 msgid "Disable picture proxy" msgstr "Disabilita il proxy immagini" -#: mod/admin.php:1042 +#: mod/admin.php:1136 msgid "" "The picture proxy increases performance and privacy. It shouldn't be used on" " systems with very low bandwith." msgstr "Il proxy immagini aumenta le performance e la privacy. Non dovrebbe essere usato su server con poca banda disponibile." -#: mod/admin.php:1043 -msgid "Enable old style pager" -msgstr "Abilita la paginatura vecchio stile" - -#: mod/admin.php:1043 -msgid "" -"The old style pager has page numbers but slows down massively the page " -"speed." -msgstr "La paginatura vecchio stile mostra i numeri delle pagine, ma rallenta la velocità di caricamento della pagina." - -#: mod/admin.php:1044 +#: mod/admin.php:1137 msgid "Only search in tags" msgstr "Cerca solo nei tag" -#: mod/admin.php:1044 +#: mod/admin.php:1137 msgid "On large systems the text search can slow down the system extremely." msgstr "Su server con molti dati, la ricerca nel testo può estremamente rallentare il sistema." -#: mod/admin.php:1046 +#: mod/admin.php:1139 msgid "New base url" msgstr "Nuovo url base" -#: mod/admin.php:1046 +#: mod/admin.php:1139 msgid "" "Change base url for this server. Sends relocate message to all DFRN contacts" " of all users." msgstr "Cambia l'url base di questo server. Invia il messaggio di trasloco a tutti i contatti DFRN di tutti gli utenti." -#: mod/admin.php:1048 +#: mod/admin.php:1141 msgid "RINO Encryption" msgstr "Crittografia RINO" -#: mod/admin.php:1048 +#: mod/admin.php:1141 msgid "Encryption layer between nodes." msgstr "Crittografia delle comunicazioni tra nodi." -#: mod/admin.php:1049 -msgid "Embedly API key" -msgstr "Embedly API key" - -#: mod/admin.php:1049 -msgid "" -"Embedly is used to fetch additional data for " -"web pages. This is an optional parameter." -msgstr "Embedly è usato per recuperate informazioni addizionali dalle pagine web. Questo parametro è opzionale." - -#: mod/admin.php:1051 -msgid "Enable 'worker' background processing" -msgstr "Attiva l'elaborazione in background con worker" - -#: mod/admin.php:1051 -msgid "" -"The worker background processing limits the number of parallel background " -"jobs to a maximum number and respects the system load." -msgstr "L'elaborazione in background con worker limita il numero di lavori in background paralleli a un numero massimo e rispetta il carico di sistema." - -#: mod/admin.php:1052 +#: mod/admin.php:1143 msgid "Maximum number of parallel workers" msgstr "Massimo numero di lavori in parallelo" -#: mod/admin.php:1052 +#: mod/admin.php:1143 msgid "" "On shared hosters set this to 2. On larger systems, values of 10 are great. " "Default value is 4." msgstr "Su host condivisi imposta a 2. Su sistemi più grandi, valori fino a 10 vanno bene. Il valore di default è 4." -#: mod/admin.php:1053 +#: mod/admin.php:1144 msgid "Don't use 'proc_open' with the worker" msgstr "Non usare 'proc_open' con il worker" -#: mod/admin.php:1053 +#: mod/admin.php:1144 msgid "" "Enable this if your system doesn't allow the use of 'proc_open'. This can " "happen on shared hosters. If this is enabled you should increase the " "frequency of poller calls in your crontab." msgstr "Abilita se il tuo sistema non consente l'utilizzo di 'proc_open'. Può succedere con gli hosting condivisi. Se abiliti questa opzione, dovresti aumentare la frequenza delle chiamate al poller nel tuo crontab." -#: mod/admin.php:1054 +#: mod/admin.php:1145 msgid "Enable fastlane" msgstr "Abilita fastlane" -#: mod/admin.php:1054 +#: mod/admin.php:1145 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes" " with higher priority are blocked by processes of lower priority." msgstr "Quando abilitato, il meccanismo di fastlane avvia processi aggiuntivi se processi con priorità più alta sono bloccati da processi con priorità più bassa." -#: mod/admin.php:1055 +#: mod/admin.php:1146 msgid "Enable frontend worker" msgstr "Abilita worker da frontend" -#: mod/admin.php:1055 +#: mod/admin.php:1146 msgid "" "When enabled the Worker process is triggered when backend access is " "performed (e.g. messages being delivered). On smaller sites you might want " @@ -7276,66 +8381,66 @@ msgid "" "this." msgstr "Quando abilitato, il processo è avviato quando viene eseguito un accesso al backend (per esempio, quando un messaggio viene consegnato). Su siti più piccoli potresti voler chiamare yourdomain.tld/worker regolarmente attraverso un cron esterno. Dovresti abilitare questa opzione solo se non puoi utilizzare cron sul tuo server. L'elaborazione in background con worker deve essere abilitata perchè questa opzione sia effettiva." -#: mod/admin.php:1084 +#: mod/admin.php:1176 msgid "Update has been marked successful" msgstr "L'aggiornamento è stato segnato come di successo" -#: mod/admin.php:1092 +#: mod/admin.php:1184 #, php-format msgid "Database structure update %s was successfully applied." msgstr "Aggiornamento struttura database %s applicata con successo." -#: mod/admin.php:1095 +#: mod/admin.php:1187 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "Aggiornamento struttura database %s fallita con errore: %s" -#: mod/admin.php:1107 +#: mod/admin.php:1201 #, php-format msgid "Executing %s failed with error: %s" msgstr "Esecuzione di %s fallita con errore: %s" -#: mod/admin.php:1110 +#: mod/admin.php:1204 #, php-format msgid "Update %s was successfully applied." msgstr "L'aggiornamento %s è stato applicato con successo" -#: mod/admin.php:1114 +#: mod/admin.php:1207 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "L'aggiornamento %s non ha riportato uno stato. Non so se è andato a buon fine." -#: mod/admin.php:1116 +#: mod/admin.php:1210 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "Non ci sono altre funzioni di aggiornamento %s da richiamare." -#: mod/admin.php:1135 +#: mod/admin.php:1230 msgid "No failed updates." msgstr "Nessun aggiornamento fallito." -#: mod/admin.php:1136 +#: mod/admin.php:1231 msgid "Check database structure" msgstr "Controlla struttura database" -#: mod/admin.php:1141 +#: mod/admin.php:1236 msgid "Failed Updates" msgstr "Aggiornamenti falliti" -#: mod/admin.php:1142 +#: mod/admin.php:1237 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Questo non include gli aggiornamenti prima del 1139, che non ritornano lo stato." -#: mod/admin.php:1143 +#: mod/admin.php:1238 msgid "Mark success (if update was manually applied)" msgstr "Segna completato (se l'update è stato applicato manualmente)" -#: mod/admin.php:1144 +#: mod/admin.php:1239 msgid "Attempt to execute this update step automatically" msgstr "Cerco di eseguire questo aggiornamento in automatico" -#: mod/admin.php:1178 +#: mod/admin.php:1273 #, php-format msgid "" "\n" @@ -7343,7 +8448,7 @@ msgid "" "\t\t\t\tthe administrator of %2$s has set up an account for you." msgstr "\nGentile %1$s,\n l'amministratore di %2$s ha impostato un account per te." -#: mod/admin.php:1181 +#: mod/admin.php:1276 #, php-format msgid "" "\n" @@ -7373,168 +8478,158 @@ msgid "" "\t\t\tThank you and welcome to %4$s." msgstr "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %1$s\n Nome utente: %2$s\n Password: %3$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %4$s" -#: mod/admin.php:1225 +#: mod/admin.php:1320 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" msgstr[0] "%s utente bloccato/sbloccato" msgstr[1] "%s utenti bloccati/sbloccati" -#: mod/admin.php:1232 +#: mod/admin.php:1327 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "%s utente cancellato" msgstr[1] "%s utenti cancellati" -#: mod/admin.php:1279 +#: mod/admin.php:1374 #, php-format msgid "User '%s' deleted" msgstr "Utente '%s' cancellato" -#: mod/admin.php:1287 +#: mod/admin.php:1382 #, php-format msgid "User '%s' unblocked" msgstr "Utente '%s' sbloccato" -#: mod/admin.php:1287 +#: mod/admin.php:1382 #, php-format msgid "User '%s' blocked" msgstr "Utente '%s' bloccato" -#: mod/admin.php:1396 mod/admin.php:1422 +#: mod/admin.php:1490 mod/admin.php:1516 msgid "Register date" msgstr "Data registrazione" -#: mod/admin.php:1396 mod/admin.php:1422 +#: mod/admin.php:1490 mod/admin.php:1516 msgid "Last login" msgstr "Ultimo accesso" -#: mod/admin.php:1396 mod/admin.php:1422 +#: mod/admin.php:1490 mod/admin.php:1516 msgid "Last item" msgstr "Ultimo elemento" -#: mod/admin.php:1405 +#: mod/admin.php:1499 msgid "Add User" msgstr "Aggiungi utente" -#: mod/admin.php:1406 +#: mod/admin.php:1500 msgid "select all" msgstr "seleziona tutti" -#: mod/admin.php:1407 +#: mod/admin.php:1501 msgid "User registrations waiting for confirm" msgstr "Richieste di registrazione in attesa di conferma" -#: mod/admin.php:1408 +#: mod/admin.php:1502 msgid "User waiting for permanent deletion" msgstr "Utente in attesa di cancellazione definitiva" -#: mod/admin.php:1409 +#: mod/admin.php:1503 msgid "Request date" msgstr "Data richiesta" -#: mod/admin.php:1410 +#: mod/admin.php:1504 msgid "No registrations." msgstr "Nessuna registrazione." -#: mod/admin.php:1411 +#: mod/admin.php:1505 msgid "Note from the user" msgstr "Nota dall'utente" -#: mod/admin.php:1413 +#: mod/admin.php:1507 msgid "Deny" msgstr "Nega" -#: mod/admin.php:1415 mod/contacts.php:605 mod/contacts.php:805 -#: mod/contacts.php:983 -msgid "Block" -msgstr "Blocca" - -#: mod/admin.php:1416 mod/contacts.php:605 mod/contacts.php:805 -#: mod/contacts.php:983 -msgid "Unblock" -msgstr "Sblocca" - -#: mod/admin.php:1417 +#: mod/admin.php:1511 msgid "Site admin" msgstr "Amministrazione sito" -#: mod/admin.php:1418 +#: mod/admin.php:1512 msgid "Account expired" msgstr "Account scaduto" -#: mod/admin.php:1421 +#: mod/admin.php:1515 msgid "New User" msgstr "Nuovo Utente" -#: mod/admin.php:1422 +#: mod/admin.php:1516 msgid "Deleted since" msgstr "Rimosso da" -#: mod/admin.php:1427 +#: mod/admin.php:1521 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?" -#: mod/admin.php:1428 +#: mod/admin.php:1522 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" msgstr "L'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\\n\\nSei sicuro?" -#: mod/admin.php:1438 +#: mod/admin.php:1532 msgid "Name of the new user." msgstr "Nome del nuovo utente." -#: mod/admin.php:1439 +#: mod/admin.php:1533 msgid "Nickname" msgstr "Nome utente" -#: mod/admin.php:1439 +#: mod/admin.php:1533 msgid "Nickname of the new user." msgstr "Nome utente del nuovo utente." -#: mod/admin.php:1440 +#: mod/admin.php:1534 msgid "Email address of the new user." msgstr "Indirizzo Email del nuovo utente." -#: mod/admin.php:1483 +#: mod/admin.php:1577 #, php-format msgid "Plugin %s disabled." msgstr "Plugin %s disabilitato." -#: mod/admin.php:1487 +#: mod/admin.php:1581 #, php-format msgid "Plugin %s enabled." msgstr "Plugin %s abilitato." -#: mod/admin.php:1498 mod/admin.php:1734 +#: mod/admin.php:1592 mod/admin.php:1844 msgid "Disable" msgstr "Disabilita" -#: mod/admin.php:1500 mod/admin.php:1736 +#: mod/admin.php:1594 mod/admin.php:1846 msgid "Enable" msgstr "Abilita" -#: mod/admin.php:1523 mod/admin.php:1781 +#: mod/admin.php:1617 mod/admin.php:1893 msgid "Toggle" msgstr "Inverti" -#: mod/admin.php:1531 mod/admin.php:1790 +#: mod/admin.php:1625 mod/admin.php:1902 msgid "Author: " msgstr "Autore: " -#: mod/admin.php:1532 mod/admin.php:1791 +#: mod/admin.php:1626 mod/admin.php:1903 msgid "Maintainer: " msgstr "Manutentore: " -#: mod/admin.php:1584 +#: mod/admin.php:1681 msgid "Reload active plugins" msgstr "Ricarica i plugin attivi" -#: mod/admin.php:1589 +#: mod/admin.php:1686 #, php-format msgid "" "There are currently no plugins available on your node. You can find the " @@ -7542,70 +8637,70 @@ msgid "" "in the open plugin registry at %2$s" msgstr "Non sono disponibili componenti aggiuntivi sul tuo nodo. Puoi trovare il repository ufficiale dei plugin su %1$s e potresti trovare altri plugin interessanti nell'open plugin repository su %2$s" -#: mod/admin.php:1694 +#: mod/admin.php:1805 msgid "No themes found." msgstr "Nessun tema trovato." -#: mod/admin.php:1772 +#: mod/admin.php:1884 msgid "Screenshot" msgstr "Anteprima" -#: mod/admin.php:1832 +#: mod/admin.php:1944 msgid "Reload active themes" msgstr "Ricarica i temi attivi" -#: mod/admin.php:1837 +#: mod/admin.php:1949 #, php-format msgid "No themes found on the system. They should be paced in %1$s" msgstr "Non sono stati trovati temi sul tuo sistema. Dovrebbero essere in %1$s" -#: mod/admin.php:1838 +#: mod/admin.php:1950 msgid "[Experimental]" msgstr "[Sperimentale]" -#: mod/admin.php:1839 +#: mod/admin.php:1951 msgid "[Unsupported]" msgstr "[Non supportato]" -#: mod/admin.php:1863 +#: mod/admin.php:1975 msgid "Log settings updated." msgstr "Impostazioni Log aggiornate." -#: mod/admin.php:1895 +#: mod/admin.php:2007 msgid "PHP log currently enabled." msgstr "Log PHP abilitato." -#: mod/admin.php:1897 +#: mod/admin.php:2009 msgid "PHP log currently disabled." msgstr "Log PHP disabilitato" -#: mod/admin.php:1906 +#: mod/admin.php:2018 msgid "Clear" msgstr "Pulisci" -#: mod/admin.php:1911 +#: mod/admin.php:2023 msgid "Enable Debugging" msgstr "Abilita Debugging" -#: mod/admin.php:1912 +#: mod/admin.php:2024 msgid "Log file" msgstr "File di Log" -#: mod/admin.php:1912 +#: mod/admin.php:2024 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Il server web deve avere i permessi di scrittura. Relativo alla tua directory Friendica." -#: mod/admin.php:1913 +#: mod/admin.php:2025 msgid "Log level" msgstr "Livello di Log" -#: mod/admin.php:1916 +#: mod/admin.php:2028 msgid "PHP logging" msgstr "Log PHP" -#: mod/admin.php:1917 +#: mod/admin.php:2029 msgid "" "To enable logging of PHP errors and warnings you can add the following to " "the .htconfig.php file of your installation. The filename set in the " @@ -7614,1073 +8709,87 @@ msgid "" "'display_errors' is to enable these options, set to '0' to disable them." msgstr "Per abilitare il log degli errori e degli avvisi di PHP puoi aggiungere le seguenti righe al file .htconfig.php nella tua installazione. La posizione del file impostato in 'error_log' è relativa alla directory principale della tua installazione Friendica e il server web deve avere i permessi di scrittura sul file. Il valore '1' per 'log_errors' e 'display_errors' abilita le opzioni, imposta '0' per disabilitarle." -#: mod/admin.php:2045 +#: mod/admin.php:2160 #, php-format msgid "Lock feature %s" msgstr "Blocca funzionalità %s" -#: mod/admin.php:2053 +#: mod/admin.php:2168 msgid "Manage Additional Features" msgstr "Gestisci Funzionalità Aggiuntive" -#: mod/contacts.php:128 -#, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited." -msgstr[0] "%d contatto modificato." -msgstr[1] "%d contatti modificati" - -#: mod/contacts.php:159 mod/contacts.php:368 -msgid "Could not access contact record." -msgstr "Non è possibile accedere al contatto." - -#: mod/contacts.php:173 -msgid "Could not locate selected profile." -msgstr "Non riesco a trovare il profilo selezionato." - -#: mod/contacts.php:206 -msgid "Contact updated." -msgstr "Contatto aggiornato." - -#: mod/contacts.php:208 mod/dfrn_request.php:583 -msgid "Failed to update contact record." -msgstr "Errore nell'aggiornamento del contatto." - -#: mod/contacts.php:389 -msgid "Contact has been blocked" -msgstr "Il contatto è stato bloccato" - -#: mod/contacts.php:389 -msgid "Contact has been unblocked" -msgstr "Il contatto è stato sbloccato" - -#: mod/contacts.php:400 -msgid "Contact has been ignored" -msgstr "Il contatto è ignorato" - -#: mod/contacts.php:400 -msgid "Contact has been unignored" -msgstr "Il contatto non è più ignorato" - -#: mod/contacts.php:412 -msgid "Contact has been archived" -msgstr "Il contatto è stato archiviato" - -#: mod/contacts.php:412 -msgid "Contact has been unarchived" -msgstr "Il contatto è stato dearchiviato" - -#: mod/contacts.php:437 -msgid "Drop contact" -msgstr "Cancella contatto" - -#: mod/contacts.php:440 mod/contacts.php:801 -msgid "Do you really want to delete this contact?" -msgstr "Vuoi veramente cancellare questo contatto?" - -#: mod/contacts.php:457 -msgid "Contact has been removed." -msgstr "Il contatto è stato rimosso." - -#: mod/contacts.php:498 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Sei amico reciproco con %s" - -#: mod/contacts.php:502 -#, php-format -msgid "You are sharing with %s" -msgstr "Stai condividendo con %s" - -#: mod/contacts.php:507 -#, php-format -msgid "%s is sharing with you" -msgstr "%s sta condividendo con te" - -#: mod/contacts.php:527 -msgid "Private communications are not available for this contact." -msgstr "Le comunicazioni private non sono disponibili per questo contatto." - -#: mod/contacts.php:534 -msgid "(Update was successful)" -msgstr "(L'aggiornamento è stato completato)" - -#: mod/contacts.php:534 -msgid "(Update was not successful)" -msgstr "(L'aggiornamento non è stato completato)" - -#: mod/contacts.php:536 mod/contacts.php:964 -msgid "Suggest friends" -msgstr "Suggerisci amici" - -#: mod/contacts.php:540 -#, php-format -msgid "Network type: %s" -msgstr "Tipo di rete: %s" - -#: mod/contacts.php:553 -msgid "Communications lost with this contact!" -msgstr "Comunicazione con questo contatto persa!" - -#: mod/contacts.php:556 -msgid "Fetch further information for feeds" -msgstr "Recupera maggiori informazioni per i feed" - -#: mod/contacts.php:557 -msgid "Fetch information" -msgstr "Recupera informazioni" - -#: mod/contacts.php:557 -msgid "Fetch information and keywords" -msgstr "Recupera informazioni e parole chiave" - -#: mod/contacts.php:575 -msgid "Contact" -msgstr "Contatto" - -#: mod/contacts.php:578 -msgid "Profile Visibility" -msgstr "Visibilità del profilo" - -#: mod/contacts.php:579 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro." - -#: mod/contacts.php:580 -msgid "Contact Information / Notes" -msgstr "Informazioni / Note sul contatto" - -#: mod/contacts.php:581 -msgid "Edit contact notes" -msgstr "Modifica note contatto" - -#: mod/contacts.php:587 -msgid "Block/Unblock contact" -msgstr "Blocca/Sblocca contatto" - -#: mod/contacts.php:588 -msgid "Ignore contact" -msgstr "Ignora il contatto" - -#: mod/contacts.php:589 -msgid "Repair URL settings" -msgstr "Impostazioni riparazione URL" - -#: mod/contacts.php:590 -msgid "View conversations" -msgstr "Vedi conversazioni" - -#: mod/contacts.php:596 -msgid "Last update:" -msgstr "Ultimo aggiornamento:" - -#: mod/contacts.php:598 -msgid "Update public posts" -msgstr "Aggiorna messaggi pubblici" - -#: mod/contacts.php:600 mod/contacts.php:974 -msgid "Update now" -msgstr "Aggiorna adesso" - -#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:991 -msgid "Unignore" -msgstr "Non ignorare" - -#: mod/contacts.php:610 -msgid "Currently blocked" -msgstr "Bloccato" - -#: mod/contacts.php:611 -msgid "Currently ignored" -msgstr "Ignorato" - -#: mod/contacts.php:612 -msgid "Currently archived" -msgstr "Al momento archiviato" - -#: mod/contacts.php:613 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Risposte ai tuoi post pubblici possono essere comunque visibili" - -#: mod/contacts.php:614 -msgid "Notification for new posts" -msgstr "Notifica per i nuovi messaggi" - -#: mod/contacts.php:614 -msgid "Send a notification of every new post of this contact" -msgstr "Invia una notifica per ogni nuovo messaggio di questo contatto" - -#: mod/contacts.php:617 -msgid "Blacklisted keywords" -msgstr "Parole chiave in blacklist" - -#: mod/contacts.php:617 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "Lista separata da virgola di parole chiave che non dovranno essere convertite in hashtag, quando \"Recupera informazioni e parole chiave\" è selezionato" - -#: mod/contacts.php:635 -msgid "Actions" -msgstr "Azioni" - -#: mod/contacts.php:638 -msgid "Contact Settings" -msgstr "Impostazioni Contatto" - -#: mod/contacts.php:684 -msgid "Suggestions" -msgstr "Suggerimenti" - -#: mod/contacts.php:687 -msgid "Suggest potential friends" -msgstr "Suggerisci potenziali amici" - -#: mod/contacts.php:695 -msgid "Show all contacts" -msgstr "Mostra tutti i contatti" - -#: mod/contacts.php:700 -msgid "Unblocked" -msgstr "Sbloccato" - -#: mod/contacts.php:703 -msgid "Only show unblocked contacts" -msgstr "Mostra solo contatti non bloccati" - -#: mod/contacts.php:709 -msgid "Blocked" -msgstr "Bloccato" - -#: mod/contacts.php:712 -msgid "Only show blocked contacts" -msgstr "Mostra solo contatti bloccati" - -#: mod/contacts.php:718 -msgid "Ignored" -msgstr "Ignorato" - -#: mod/contacts.php:721 -msgid "Only show ignored contacts" -msgstr "Mostra solo contatti ignorati" - -#: mod/contacts.php:727 -msgid "Archived" -msgstr "Archiviato" - -#: mod/contacts.php:730 -msgid "Only show archived contacts" -msgstr "Mostra solo contatti archiviati" - -#: mod/contacts.php:736 -msgid "Hidden" -msgstr "Nascosto" - -#: mod/contacts.php:739 -msgid "Only show hidden contacts" -msgstr "Mostra solo contatti nascosti" - -#: mod/contacts.php:796 -msgid "Search your contacts" -msgstr "Cerca nei tuoi contatti" - -#: mod/contacts.php:807 mod/contacts.php:999 -msgid "Archive" -msgstr "Archivia" - -#: mod/contacts.php:807 mod/contacts.php:999 -msgid "Unarchive" -msgstr "Dearchivia" - -#: mod/contacts.php:810 -msgid "Batch Actions" -msgstr "Azioni Batch" - -#: mod/contacts.php:856 -msgid "View all contacts" -msgstr "Vedi tutti i contatti" - -#: mod/contacts.php:866 -msgid "View all common friends" -msgstr "Vedi tutti gli amici in comune" - -#: mod/contacts.php:873 -msgid "Advanced Contact Settings" -msgstr "Impostazioni avanzate Contatto" - -#: mod/contacts.php:907 -msgid "Mutual Friendship" -msgstr "Amicizia reciproca" - -#: mod/contacts.php:911 -msgid "is a fan of yours" -msgstr "è un tuo fan" - -#: mod/contacts.php:915 -msgid "you are a fan of" -msgstr "sei un fan di" - -#: mod/contacts.php:985 -msgid "Toggle Blocked status" -msgstr "Inverti stato \"Blocca\"" - -#: mod/contacts.php:993 -msgid "Toggle Ignored status" -msgstr "Inverti stato \"Ignora\"" - -#: mod/contacts.php:1001 -msgid "Toggle Archive status" -msgstr "Inverti stato \"Archiviato\"" - -#: mod/contacts.php:1009 -msgid "Delete contact" -msgstr "Rimuovi contatto" - -#: mod/dfrn_confirm.php:127 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Questo può accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e già approvata." - -#: mod/dfrn_confirm.php:246 -msgid "Response from remote site was not understood." -msgstr "Errore di comunicazione con l'altro sito." - -#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260 -msgid "Unexpected response from remote site: " -msgstr "La risposta dell'altro sito non può essere gestita: " - -#: mod/dfrn_confirm.php:269 -msgid "Confirmation completed successfully." -msgstr "Conferma completata con successo." - -#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292 -msgid "Remote site reported: " -msgstr "Il sito remoto riporta: " - -#: mod/dfrn_confirm.php:283 -msgid "Temporary failure. Please wait and try again." -msgstr "Problema temporaneo. Attendi e riprova." - -#: mod/dfrn_confirm.php:290 -msgid "Introduction failed or was revoked." -msgstr "La presentazione ha generato un errore o è stata revocata." - -#: mod/dfrn_confirm.php:419 -msgid "Unable to set contact photo." -msgstr "Impossibile impostare la foto del contatto." - -#: mod/dfrn_confirm.php:557 -#, php-format -msgid "No user record found for '%s' " -msgstr "Nessun utente trovato '%s'" - -#: mod/dfrn_confirm.php:567 -msgid "Our site encryption key is apparently messed up." -msgstr "La nostra chiave di criptazione del sito sembra essere corrotta." - -#: mod/dfrn_confirm.php:578 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo." - -#: mod/dfrn_confirm.php:599 -msgid "Contact record was not found for you on our site." -msgstr "Il contatto non è stato trovato sul nostro sito." - -#: mod/dfrn_confirm.php:613 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "La chiave pubblica del sito non è disponibile per l'URL %s" - -#: mod/dfrn_confirm.php:633 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare." - -#: mod/dfrn_confirm.php:644 -msgid "Unable to set your contact credentials on our system." -msgstr "Impossibile impostare le credenziali del tuo contatto sul nostro sistema." - -#: mod/dfrn_confirm.php:703 -msgid "Unable to update your contact profile details on our system" -msgstr "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema" - -#: mod/dfrn_confirm.php:775 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s si è unito a %2$s" - -#: mod/dfrn_request.php:101 -msgid "This introduction has already been accepted." -msgstr "Questa presentazione è già stata accettata." - -#: mod/dfrn_request.php:124 mod/dfrn_request.php:520 -msgid "Profile location is not valid or does not contain profile information." -msgstr "L'indirizzo del profilo non è valido o non contiene un profilo." - -#: mod/dfrn_request.php:129 mod/dfrn_request.php:525 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario." - -#: mod/dfrn_request.php:131 mod/dfrn_request.php:527 -msgid "Warning: profile location has no profile photo." -msgstr "Attenzione: l'indirizzo del profilo non ha una foto." - -#: mod/dfrn_request.php:134 mod/dfrn_request.php:530 -#, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "%d parametro richiesto non è stato trovato all'indirizzo dato" -msgstr[1] "%d parametri richiesti non sono stati trovati all'indirizzo dato" - -#: mod/dfrn_request.php:180 -msgid "Introduction complete." -msgstr "Presentazione completa." - -#: mod/dfrn_request.php:222 -msgid "Unrecoverable protocol error." -msgstr "Errore di comunicazione." - -#: mod/dfrn_request.php:250 -msgid "Profile unavailable." -msgstr "Profilo non disponibile." - -#: mod/dfrn_request.php:277 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s ha ricevuto troppe richieste di connessione per oggi." - -#: mod/dfrn_request.php:278 -msgid "Spam protection measures have been invoked." -msgstr "Sono state attivate le misure di protezione contro lo spam." - -#: mod/dfrn_request.php:279 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Gli amici sono pregati di riprovare tra 24 ore." - -#: mod/dfrn_request.php:341 -msgid "Invalid locator" -msgstr "Indirizzo non valido" - -#: mod/dfrn_request.php:350 -msgid "Invalid email address." -msgstr "Indirizzo email non valido." - -#: mod/dfrn_request.php:375 -msgid "This account has not been configured for email. Request failed." -msgstr "Questo account non è stato configurato per l'email. Richiesta fallita." - -#: mod/dfrn_request.php:478 -msgid "You have already introduced yourself here." -msgstr "Ti sei già presentato qui." - -#: mod/dfrn_request.php:482 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Pare che tu e %s siate già amici." - -#: mod/dfrn_request.php:503 -msgid "Invalid profile URL." -msgstr "Indirizzo profilo non valido." - -#: mod/dfrn_request.php:604 -msgid "Your introduction has been sent." -msgstr "La tua presentazione è stata inviata." - -#: mod/dfrn_request.php:644 -msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." -msgstr "La richiesta di connessione remota non può essere effettuata per la tua rete. Invia la richiesta direttamente sul nostro sistema." - -#: mod/dfrn_request.php:664 -msgid "Please login to confirm introduction." -msgstr "Accedi per confermare la presentazione." - -#: mod/dfrn_request.php:674 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo." - -#: mod/dfrn_request.php:688 mod/dfrn_request.php:705 -msgid "Confirm" -msgstr "Conferma" - -#: mod/dfrn_request.php:700 -msgid "Hide this contact" -msgstr "Nascondi questo contatto" - -#: mod/dfrn_request.php:703 -#, php-format -msgid "Welcome home %s." -msgstr "Bentornato a casa %s." - -#: mod/dfrn_request.php:704 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Conferma la tua richiesta di connessione con %s." - -#: mod/dfrn_request.php:833 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:" - -#: mod/dfrn_request.php:854 -#, php-format -msgid "" -"If you are not yet a member of the free social web, follow this link to find a public Friendica site and " -"join us today." -msgstr "Se non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi" - -#: mod/dfrn_request.php:859 -msgid "Friend/Connection Request" -msgstr "Richieste di amicizia/connessione" - -#: mod/dfrn_request.php:860 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" - -#: mod/dfrn_request.php:861 mod/follow.php:109 -msgid "Please answer the following:" -msgstr "Rispondi:" - -#: mod/dfrn_request.php:862 mod/follow.php:110 -#, php-format -msgid "Does %s know you?" -msgstr "%s ti conosce?" - -#: mod/dfrn_request.php:866 mod/follow.php:111 -msgid "Add a personal note:" -msgstr "Aggiungi una nota personale:" - -#: mod/dfrn_request.php:869 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federated Social Web" - -#: mod/dfrn_request.php:871 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora." - -#: mod/dfrn_request.php:872 mod/follow.php:117 -msgid "Your Identity Address:" -msgstr "L'indirizzo della tua identità:" - -#: mod/dfrn_request.php:875 mod/follow.php:19 -msgid "Submit Request" -msgstr "Invia richiesta" - -#: mod/follow.php:30 -msgid "You already added this contact." -msgstr "Hai già aggiunto questo contatto." - -#: mod/follow.php:39 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "Il supporto Diaspora non è abilitato. Il contatto non può essere aggiunto." - -#: mod/follow.php:46 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "Il supporto OStatus non è abilitato. Il contatto non può essere aggiunto." - -#: mod/follow.php:53 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "Non è possibile rilevare il tipo di rete. Il contatto non può essere aggiunto." - -#: mod/follow.php:180 -msgid "Contact added" -msgstr "Contatto aggiunto" - -#: mod/install.php:139 -msgid "Friendica Communications Server - Setup" -msgstr "Friendica Comunicazione Server - Impostazioni" - -#: mod/install.php:145 -msgid "Could not connect to database." -msgstr " Impossibile collegarsi con il database." - -#: mod/install.php:149 -msgid "Could not create table." -msgstr "Impossibile creare le tabelle." - -#: mod/install.php:155 -msgid "Your Friendica site database has been installed." -msgstr "Il tuo Friendica è stato installato." - -#: mod/install.php:160 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql" - -#: mod/install.php:161 mod/install.php:230 mod/install.php:607 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Leggi il file \"INSTALL.txt\"." - -#: mod/install.php:173 -msgid "Database already in use." -msgstr "Database già in uso." - -#: mod/install.php:227 -msgid "System check" -msgstr "Controllo sistema" - -#: mod/install.php:232 -msgid "Check again" -msgstr "Controlla ancora" - -#: mod/install.php:251 -msgid "Database connection" -msgstr "Connessione al database" - -#: mod/install.php:252 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Per installare Friendica dobbiamo sapere come collegarci al tuo database." - -#: mod/install.php:253 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni." - -#: mod/install.php:254 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Il database dovrà già esistere. Se non esiste, crealo prima di continuare." - -#: mod/install.php:258 -msgid "Database Server Name" -msgstr "Nome del database server" - -#: mod/install.php:259 -msgid "Database Login Name" -msgstr "Nome utente database" - -#: mod/install.php:260 -msgid "Database Login Password" -msgstr "Password utente database" - -#: mod/install.php:261 -msgid "Database Name" -msgstr "Nome database" - -#: mod/install.php:262 mod/install.php:303 -msgid "Site administrator email address" -msgstr "Indirizzo email dell'amministratore del sito" - -#: mod/install.php:262 mod/install.php:303 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web." - -#: mod/install.php:266 mod/install.php:306 -msgid "Please select a default timezone for your website" -msgstr "Seleziona il fuso orario predefinito per il tuo sito web" - -#: mod/install.php:293 -msgid "Site settings" -msgstr "Impostazioni sito" - -#: mod/install.php:307 -msgid "System Language:" -msgstr "Lingua di Sistema:" - -#: mod/install.php:307 -msgid "" -"Set the default language for your Friendica installation interface and to " -"send emails." -msgstr "Imposta la lingua di default per l'interfaccia e l'invio delle email." - -#: mod/install.php:347 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web" - -#: mod/install.php:348 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron. See 'Setup the poller'" -msgstr "Se non hai una versione a linea di comando di PHP installata sul tuo server, non sarai in grado di avviare il processo di poll in background via cron. Vedi 'Setup the poller'" - -#: mod/install.php:352 -msgid "PHP executable path" -msgstr "Percorso eseguibile PHP" - -#: mod/install.php:352 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Inserisci il percorso completo all'eseguibile di php. Puoi lasciare bianco questo campo per continuare l'installazione." - -#: mod/install.php:357 -msgid "Command line PHP" -msgstr "PHP da riga di comando" - -#: mod/install.php:366 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "L'eseguibile PHP non è il binario php cli (potrebbe essere la versione cgi-fcgi)" - -#: mod/install.php:367 -msgid "Found PHP version: " -msgstr "Versione PHP:" - -#: mod/install.php:369 -msgid "PHP cli binary" -msgstr "Binario PHP cli" - -#: mod/install.php:380 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"." - -#: mod/install.php:381 -msgid "This is required for message delivery to work." -msgstr "E' obbligatorio per far funzionare la consegna dei messaggi." - -#: mod/install.php:383 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: mod/install.php:404 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione" - -#: mod/install.php:405 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: mod/install.php:407 -msgid "Generate encryption keys" -msgstr "Genera chiavi di criptazione" - -#: mod/install.php:414 -msgid "libCurl PHP module" -msgstr "modulo PHP libCurl" - -#: mod/install.php:415 -msgid "GD graphics PHP module" -msgstr "modulo PHP GD graphics" - -#: mod/install.php:416 -msgid "OpenSSL PHP module" -msgstr "modulo PHP OpenSSL" - -#: mod/install.php:417 -msgid "mysqli PHP module" -msgstr "modulo PHP mysqli" - -#: mod/install.php:418 -msgid "mb_string PHP module" -msgstr "modulo PHP mb_string" - -#: mod/install.php:419 -msgid "mcrypt PHP module" -msgstr "modulo PHP mcrypt" - -#: mod/install.php:420 -msgid "XML PHP module" -msgstr "Modulo PHP XML" - -#: mod/install.php:421 -msgid "iconv module" -msgstr "modulo iconv" - -#: mod/install.php:425 mod/install.php:427 -msgid "Apache mod_rewrite module" -msgstr "Modulo mod_rewrite di Apache" - -#: mod/install.php:425 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato" - -#: mod/install.php:433 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato." - -#: mod/install.php:437 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato." - -#: mod/install.php:441 -msgid "Error: openssl PHP module required but not installed." -msgstr "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato." - -#: mod/install.php:445 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato" - -#: mod/install.php:449 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato." - -#: mod/install.php:453 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Errore: il modulo mcrypt di PHP è richiesto, ma non risulta installato" - -#: mod/install.php:457 -msgid "Error: iconv PHP module required but not installed." -msgstr "Errore: il modulo PHP iconv è richiesto ma non installato." - -#: mod/install.php:466 -msgid "" -"If you are using php_cli, please make sure that mcrypt module is enabled in " -"its config file" -msgstr "Se stai usando php_cli, controlla che il modulo mcrypt sia abilitato nel suo file di configurazione" - -#: mod/install.php:469 -msgid "" -"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 " -"encryption layer." -msgstr "La funzione mcrypt _create_iv() non è definita. E' richiesta per abilitare il livello di criptazione RINO2" - -#: mod/install.php:471 -msgid "mcrypt_create_iv() function" -msgstr "funzione mcrypt_create_iv()" - -#: mod/install.php:479 -msgid "Error, XML PHP module required but not installed." -msgstr "Errore, il modulo PHP XML è richiesto ma non installato." - -#: mod/install.php:494 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo." - -#: mod/install.php:495 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi." - -#: mod/install.php:496 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "Alla fine di questa procedura, di daremo un testo da salvare in un file chiamato .htconfig.php nella tua cartella principale di Friendica" - -#: mod/install.php:497 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"INSTALL.txt\" per le istruzioni." - -#: mod/install.php:500 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php è scrivibile" - -#: mod/install.php:510 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Friendica usa il motore di template Smarty3 per renderizzare le sue pagine web. Smarty3 compila i template in PHP per velocizzare il rendering." - -#: mod/install.php:511 -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory view/smarty3/ under the Friendica top level " -"folder." -msgstr "Per salvare questi template compilati, il server werb ha bisogno dell'accesso in scrittura alla cartella view/smarty3/ nella cartella principale dei Friendica." - -#: mod/install.php:512 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Per favore, controlla che l'utente con cui il tuo server web gira (es www-data) ha accesso in scrittura a questa cartella." - -#: mod/install.php:513 -msgid "" -"Note: as a security measure, you should give the web server write access to " -"view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene." - -#: mod/install.php:516 -msgid "view/smarty3 is writable" -msgstr "view/smarty3 è scrivibile" - -#: mod/install.php:532 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "La riscrittura degli url in .htaccess non funziona. Controlla la configurazione del tuo server." - -#: mod/install.php:534 -msgid "Url rewrite is working" -msgstr "La riscrittura degli url funziona" - -#: mod/install.php:552 -msgid "ImageMagick PHP extension is not installed" -msgstr "L'estensione PHP ImageMagick non è installata" - -#: mod/install.php:555 -msgid "ImageMagick PHP extension is installed" -msgstr "L'estensione PHP ImageMagick è installata" - -#: mod/install.php:557 -msgid "ImageMagick supports GIF" -msgstr "ImageMagick supporta i GIF" - -#: mod/install.php:566 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "Il file di configurazione del database \".htconfig.php\" non può essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito." - -#: mod/install.php:605 -msgid "

What next

" -msgstr "

Cosa fare ora

" - -#: mod/install.php:606 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller." - -#: mod/item.php:116 -msgid "Unable to locate original post." -msgstr "Impossibile trovare il messaggio originale." - -#: mod/item.php:341 -msgid "Empty post discarded." -msgstr "Messaggio vuoto scartato." - -#: mod/item.php:902 -msgid "System error. Post not saved." -msgstr "Errore di sistema. Messaggio non salvato." - -#: mod/item.php:992 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica." - -#: mod/item.php:994 -#, php-format -msgid "You may visit them online at %s" -msgstr "Puoi visitarli online su %s" - -#: mod/item.php:995 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi." - -#: mod/item.php:999 -#, php-format -msgid "%s posted an update." -msgstr "%s ha inviato un aggiornamento." - -#: mod/network.php:398 -#, php-format -msgid "" -"Warning: This group contains %s member from a network that doesn't allow non" -" public messages." -msgid_plural "" -"Warning: This group contains %s members from a network that doesn't allow " -"non public messages." -msgstr[0] "Attenzione: Questo gruppo contiene %s membro da una rete che non permette la ricezione di messaggi non pubblici." -msgstr[1] "Attenzione: Questo gruppo contiene %s membri da reti che non permettono la ricezione di messaggi non pubblici." - -#: mod/network.php:401 -msgid "Messages in this group won't be send to these receivers." -msgstr "I messaggi in questo gruppo non saranno inviati ai quei contatti." - -#: mod/network.php:529 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente." - -#: mod/network.php:534 -msgid "Invalid contact." -msgstr "Contatto non valido." - -#: mod/network.php:826 -msgid "Commented Order" -msgstr "Ordina per commento" - -#: mod/network.php:829 -msgid "Sort by Comment Date" -msgstr "Ordina per data commento" - -#: mod/network.php:834 -msgid "Posted Order" -msgstr "Ordina per invio" - -#: mod/network.php:837 -msgid "Sort by Post Date" -msgstr "Ordina per data messaggio" - -#: mod/network.php:848 -msgid "Posts that mention or involve you" -msgstr "Messaggi che ti citano o coinvolgono" - -#: mod/network.php:856 -msgid "New" -msgstr "Nuovo" - -#: mod/network.php:859 -msgid "Activity Stream - by date" -msgstr "Activity Stream - per data" - -#: mod/network.php:867 -msgid "Shared Links" -msgstr "Links condivisi" - -#: mod/network.php:870 -msgid "Interesting Links" -msgstr "Link Interessanti" - -#: mod/network.php:878 -msgid "Starred" -msgstr "Preferiti" - -#: mod/network.php:881 -msgid "Favourite Posts" -msgstr "Messaggi preferiti" - -#: mod/ping.php:261 -msgid "{0} wants to be your friend" -msgstr "{0} vuole essere tuo amico" - -#: mod/ping.php:276 -msgid "{0} sent you a message" -msgstr "{0} ti ha inviato un messaggio" - -#: mod/ping.php:291 -msgid "{0} requested registration" -msgstr "{0} chiede la registrazione" - -#: mod/viewcontacts.php:72 -msgid "No contacts." -msgstr "Nessun contatto." - -#: object/Item.php:370 +#: object/Item.php:359 msgid "via" msgstr "via" +#: view/theme/duepuntozero/config.php:44 +msgid "greenzero" +msgstr "greenzero" + +#: view/theme/duepuntozero/config.php:45 +msgid "purplezero" +msgstr "purplezero" + +#: view/theme/duepuntozero/config.php:46 +msgid "easterbunny" +msgstr "easterbunny" + +#: view/theme/duepuntozero/config.php:47 +msgid "darkzero" +msgstr "darkzero" + +#: view/theme/duepuntozero/config.php:48 +msgid "comix" +msgstr "comix" + +#: view/theme/duepuntozero/config.php:49 +msgid "slackr" +msgstr "slackr" + +#: view/theme/duepuntozero/config.php:64 +msgid "Variations" +msgstr "Varianti" + +#: view/theme/frio/config.php:47 +msgid "Default" +msgstr "Default" + +#: view/theme/frio/config.php:59 +msgid "Note: " +msgstr "Nota:" + +#: view/theme/frio/config.php:59 +msgid "Check image permissions if all users are allowed to visit the image" +msgstr "Controlla i permessi dell'immagine se tutti gli utenti sono autorizzati a vederla" + +#: view/theme/frio/config.php:67 +msgid "Select scheme" +msgstr "Seleziona schema" + +#: view/theme/frio/config.php:68 +msgid "Navigation bar background color" +msgstr "Colore di sfondo barra di navigazione" + +#: view/theme/frio/config.php:69 +msgid "Navigation bar icon color " +msgstr "Colore icona barra di navigazione" + +#: view/theme/frio/config.php:70 +msgid "Link color" +msgstr "Colore link" + +#: view/theme/frio/config.php:71 +msgid "Set the background color" +msgstr "Imposta il colore di sfondo" + +#: view/theme/frio/config.php:72 +msgid "Content background transparency" +msgstr "Trasparenza sfondo contenuto" + +#: view/theme/frio/config.php:73 +msgid "Set the background image" +msgstr "Imposta l'immagine di sfondo" + #: view/theme/frio/php/Image.php:23 msgid "Repeat the image" msgstr "Ripeti l'immagine" @@ -8713,195 +8822,127 @@ msgstr "Scala best fit" msgid "Resize to best fit and retain aspect ratio." msgstr "Scala l'immagine alla miglior dimensione per riempire mantenendo le proporzioni." -#: view/theme/frio/config.php:42 -msgid "Default" -msgstr "Default" - -#: view/theme/frio/config.php:54 -msgid "Note: " -msgstr "Nota:" - -#: view/theme/frio/config.php:54 -msgid "Check image permissions if all users are allowed to visit the image" -msgstr "Controlla i permessi dell'immagine se tutti gli utenti sono autorizzati a vederla" - -#: view/theme/frio/config.php:62 -msgid "Select scheme" -msgstr "Seleziona schema" - -#: view/theme/frio/config.php:63 -msgid "Navigation bar background color" -msgstr "Colore di sfondo barra di navigazione" - -#: view/theme/frio/config.php:64 -msgid "Navigation bar icon color " -msgstr "Colore icona barra di navigazione" - -#: view/theme/frio/config.php:65 -msgid "Link color" -msgstr "Colore link" - -#: view/theme/frio/config.php:66 -msgid "Set the background color" -msgstr "Imposta il colore di sfondo" - -#: view/theme/frio/config.php:67 -msgid "Content background transparency" -msgstr "Trasparenza sfondo contenuto" - -#: view/theme/frio/config.php:68 -msgid "Set the background image" -msgstr "Imposta l'immagine di sfondo" - -#: view/theme/frio/theme.php:229 +#: view/theme/frio/theme.php:226 msgid "Guest" msgstr "Ospite" -#: view/theme/frio/theme.php:235 +#: view/theme/frio/theme.php:232 msgid "Visitor" msgstr "Visitatore" -#: view/theme/quattro/config.php:67 +#: view/theme/quattro/config.php:70 msgid "Alignment" msgstr "Allineamento" -#: view/theme/quattro/config.php:67 +#: view/theme/quattro/config.php:70 msgid "Left" msgstr "Sinistra" -#: view/theme/quattro/config.php:67 +#: view/theme/quattro/config.php:70 msgid "Center" msgstr "Centrato" -#: view/theme/quattro/config.php:68 +#: view/theme/quattro/config.php:71 msgid "Color scheme" msgstr "Schema colori" -#: view/theme/quattro/config.php:69 +#: view/theme/quattro/config.php:72 msgid "Posts font size" msgstr "Dimensione caratteri post" -#: view/theme/quattro/config.php:70 +#: view/theme/quattro/config.php:73 msgid "Textareas font size" msgstr "Dimensione caratteri nelle aree di testo" -#: view/theme/vier/theme.php:152 view/theme/vier/config.php:112 -msgid "Community Profiles" -msgstr "Profili Comunità" - -#: view/theme/vier/theme.php:181 view/theme/vier/config.php:116 -msgid "Last users" -msgstr "Ultimi utenti" - -#: view/theme/vier/theme.php:199 view/theme/vier/config.php:115 -msgid "Find Friends" -msgstr "Trova Amici" - -#: view/theme/vier/theme.php:200 -msgid "Local Directory" -msgstr "Elenco Locale" - -#: view/theme/vier/theme.php:291 -msgid "Quick Start" -msgstr "Quick Start" - -#: view/theme/vier/theme.php:373 view/theme/vier/config.php:114 -msgid "Connect Services" -msgstr "Servizi connessi" - -#: view/theme/vier/config.php:64 +#: view/theme/vier/config.php:69 msgid "Comma separated list of helper forums" msgstr "Lista separata da virgola di forum di aiuto" -#: view/theme/vier/config.php:110 +#: view/theme/vier/config.php:115 msgid "Set style" msgstr "Imposta stile" -#: view/theme/vier/config.php:111 +#: view/theme/vier/config.php:116 msgid "Community Pages" msgstr "Pagine Comunitarie" -#: view/theme/vier/config.php:113 +#: view/theme/vier/config.php:117 view/theme/vier/theme.php:149 +msgid "Community Profiles" +msgstr "Profili Comunità" + +#: view/theme/vier/config.php:118 msgid "Help or @NewHere ?" msgstr "Serve aiuto? Sei nuovo?" -#: view/theme/duepuntozero/config.php:45 -msgid "greenzero" -msgstr "greenzero" +#: view/theme/vier/config.php:119 view/theme/vier/theme.php:390 +msgid "Connect Services" +msgstr "Servizi connessi" -#: view/theme/duepuntozero/config.php:46 -msgid "purplezero" -msgstr "purplezero" +#: view/theme/vier/config.php:120 view/theme/vier/theme.php:197 +msgid "Find Friends" +msgstr "Trova Amici" -#: view/theme/duepuntozero/config.php:47 -msgid "easterbunny" -msgstr "easterbunny" +#: view/theme/vier/config.php:121 view/theme/vier/theme.php:179 +msgid "Last users" +msgstr "Ultimi utenti" -#: view/theme/duepuntozero/config.php:48 -msgid "darkzero" -msgstr "darkzero" +#: view/theme/vier/theme.php:198 +msgid "Local Directory" +msgstr "Elenco Locale" -#: view/theme/duepuntozero/config.php:49 -msgid "comix" -msgstr "comix" +#: view/theme/vier/theme.php:290 +msgid "Quick Start" +msgstr "Quick Start" -#: view/theme/duepuntozero/config.php:50 -msgid "slackr" -msgstr "slackr" +#: index.php:433 +msgid "toggle mobile" +msgstr "commuta tema mobile" -#: view/theme/duepuntozero/config.php:62 -msgid "Variations" -msgstr "Varianti" - -#: boot.php:970 +#: boot.php:999 msgid "Delete this item?" msgstr "Cancellare questo elemento?" -#: boot.php:973 +#: boot.php:1001 msgid "show fewer" msgstr "mostra di meno" -#: boot.php:1655 +#: boot.php:1729 #, php-format msgid "Update %s failed. See error logs." msgstr "aggiornamento %s fallito. Guarda i log di errore." -#: boot.php:1767 +#: boot.php:1843 msgid "Create a New Account" msgstr "Crea un nuovo account" -#: boot.php:1796 +#: boot.php:1871 msgid "Password: " msgstr "Password: " -#: boot.php:1797 +#: boot.php:1872 msgid "Remember me" msgstr "Ricordati di me" -#: boot.php:1800 +#: boot.php:1875 msgid "Or login using OpenID: " msgstr "O entra con OpenID:" -#: boot.php:1806 +#: boot.php:1881 msgid "Forgot your password?" msgstr "Hai dimenticato la password?" -#: boot.php:1809 +#: boot.php:1884 msgid "Website Terms of Service" msgstr "Condizioni di servizio del sito web " -#: boot.php:1810 +#: boot.php:1885 msgid "terms of service" msgstr "condizioni del servizio" -#: boot.php:1812 +#: boot.php:1887 msgid "Website Privacy Policy" msgstr "Politiche di privacy del sito" -#: boot.php:1813 +#: boot.php:1888 msgid "privacy policy" msgstr "politiche di privacy" - -#: index.php:451 -msgid "toggle mobile" -msgstr "commuta tema mobile" diff --git a/view/lang/it/strings.php b/view/lang/it/strings.php index 60860b5fda..13257c027f 100644 --- a/view/lang/it/strings.php +++ b/view/lang/it/strings.php @@ -5,35 +5,105 @@ function string_plural_select_it($n){ return ($n != 1);; }} ; -$a->strings["Add New Contact"] = "Aggiungi nuovo contatto"; -$a->strings["Enter address or web location"] = "Inserisci posizione o indirizzo web"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Esempio: bob@example.com, http://example.com/barbara"; -$a->strings["Connect"] = "Connetti"; -$a->strings["%d invitation available"] = array( - 0 => "%d invito disponibile", - 1 => "%d inviti disponibili", -); -$a->strings["Find People"] = "Trova persone"; -$a->strings["Enter name or interest"] = "Inserisci un nome o un interesse"; -$a->strings["Connect/Follow"] = "Connetti/segui"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Esempi: Mario Rossi, Pesca"; -$a->strings["Find"] = "Trova"; -$a->strings["Friend Suggestions"] = "Contatti suggeriti"; -$a->strings["Similar Interests"] = "Interessi simili"; -$a->strings["Random Profile"] = "Profilo causale"; -$a->strings["Invite Friends"] = "Invita amici"; -$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["show more"] = "mostra di più"; $a->strings["Forums"] = "Forum"; $a->strings["External link to forum"] = "Link esterno al forum"; +$a->strings["show more"] = "mostra di più"; +$a->strings["System"] = "Sistema"; +$a->strings["Network"] = "Rete"; +$a->strings["Personal"] = "Personale"; +$a->strings["Home"] = "Home"; +$a->strings["Introductions"] = "Presentazioni"; +$a->strings["%s commented on %s's post"] = "%s ha commentato il messaggio di %s"; +$a->strings["%s created a new post"] = "%s a creato un nuovo messaggio"; +$a->strings["%s liked %s's post"] = "a %s è piaciuto il messaggio di %s"; +$a->strings["%s disliked %s's post"] = "a %s non è piaciuto il messaggio di %s"; +$a->strings["%s is attending %s's event"] = "%s partecipa all'evento di %s"; +$a->strings["%s is not attending %s's event"] = "%s non partecipa all'evento di %s"; +$a->strings["%s may attend %s's event"] = "%s potrebbe partecipare all'evento di %s"; +$a->strings["%s is now friends with %s"] = "%s è ora amico di %s"; +$a->strings["Friend Suggestion"] = "Amico suggerito"; +$a->strings["Friend/Connect Request"] = "Richiesta amicizia/connessione"; +$a->strings["New Follower"] = "Qualcuno inizia a seguirti"; +$a->strings["Wall Photos"] = "Foto della bacheca"; +$a->strings["(no subject)"] = "(nessun oggetto)"; +$a->strings["noreply"] = "nessuna risposta"; +$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["photo"] = "foto"; +$a->strings["status"] = "stato"; +$a->strings["event"] = "l'evento"; +$a->strings["[no subject]"] = "[nessun oggetto]"; +$a->strings["Nothing new here"] = "Niente di nuovo qui"; +$a->strings["Clear notifications"] = "Pulisci le notifiche"; +$a->strings["@name, !forum, #tags, content"] = "@nome, !forum, #tag, contenuto"; +$a->strings["Logout"] = "Esci"; +$a->strings["End this session"] = "Finisci questa sessione"; +$a->strings["Status"] = "Stato"; +$a->strings["Your posts and conversations"] = "I tuoi messaggi e le tue conversazioni"; +$a->strings["Profile"] = "Profilo"; +$a->strings["Your profile page"] = "Pagina del tuo profilo"; +$a->strings["Photos"] = "Foto"; +$a->strings["Your photos"] = "Le tue foto"; +$a->strings["Videos"] = "Video"; +$a->strings["Your videos"] = "I tuoi video"; +$a->strings["Events"] = "Eventi"; +$a->strings["Your events"] = "I tuoi eventi"; +$a->strings["Personal notes"] = "Note personali"; +$a->strings["Your personal notes"] = "Le tue note personali"; +$a->strings["Login"] = "Accedi"; +$a->strings["Sign in"] = "Entra"; +$a->strings["Home Page"] = "Home Page"; +$a->strings["Register"] = "Registrati"; +$a->strings["Create an account"] = "Crea un account"; +$a->strings["Help"] = "Guida"; +$a->strings["Help and documentation"] = "Guida e documentazione"; +$a->strings["Apps"] = "Applicazioni"; +$a->strings["Addon applications, utilities, games"] = "Applicazioni, utilità e giochi aggiuntivi"; +$a->strings["Search"] = "Cerca"; +$a->strings["Search site content"] = "Cerca nel contenuto del sito"; +$a->strings["Full Text"] = "Testo Completo"; +$a->strings["Tags"] = "Tags:"; +$a->strings["Contacts"] = "Contatti"; +$a->strings["Community"] = "Comunità"; +$a->strings["Conversations on this site"] = "Conversazioni su questo sito"; +$a->strings["Conversations on the network"] = "Conversazioni nella rete"; +$a->strings["Events and Calendar"] = "Eventi e calendario"; +$a->strings["Directory"] = "Elenco"; +$a->strings["People directory"] = "Elenco delle persone"; +$a->strings["Information"] = "Informazioni"; +$a->strings["Information about this friendica instance"] = "Informazioni su questo server friendica"; +$a->strings["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["Notifications"] = "Notifiche"; +$a->strings["See all notifications"] = "Vedi tutte le notifiche"; +$a->strings["Mark as seen"] = "Segna come letto"; +$a->strings["Mark all system notifications seen"] = "Segna tutte le notifiche come viste"; +$a->strings["Messages"] = "Messaggi"; +$a->strings["Private mail"] = "Posta privata"; +$a->strings["Inbox"] = "In arrivo"; +$a->strings["Outbox"] = "Inviati"; +$a->strings["New Message"] = "Nuovo messaggio"; +$a->strings["Manage"] = "Gestisci"; +$a->strings["Manage other pages"] = "Gestisci altre pagine"; +$a->strings["Delegations"] = "Delegazioni"; +$a->strings["Delegate Page Management"] = "Gestione delegati per la pagina"; +$a->strings["Settings"] = "Impostazioni"; +$a->strings["Account settings"] = "Parametri account"; +$a->strings["Profiles"] = "Profili"; +$a->strings["Manage/Edit Profiles"] = "Gestisci/Modifica i profili"; +$a->strings["Manage/edit friends and contacts"] = "Gestisci/modifica amici e contatti"; +$a->strings["Admin"] = "Amministrazione"; +$a->strings["Site setup and configuration"] = "Configurazione del sito"; +$a->strings["Navigation"] = "Navigazione"; +$a->strings["Site map"] = "Mappa del sito"; +$a->strings["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["Male"] = "Maschio"; $a->strings["Female"] = "Femmina"; $a->strings["Currently Male"] = "Al momento maschio"; @@ -95,22 +165,60 @@ $a->strings["Uncertain"] = "Incerto"; $a->strings["It's complicated"] = "E' complicato"; $a->strings["Don't care"] = "Non interessa"; $a->strings["Ask me"] = "Chiedimelo"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; +$a->strings["Welcome "] = "Ciao"; +$a->strings["Please upload a profile photo."] = "Carica una foto per il profilo."; +$a->strings["Welcome back "] = "Ciao "; +$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lungo (più di tre ore) prima di inviarla."; +$a->strings["Error decoding account file"] = "Errore decodificando il file account"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?"; +$a->strings["Error! Cannot check nickname"] = "Errore! Non posso controllare il nickname"; +$a->strings["User '%s' already exists on this server!"] = "L'utente '%s' esiste già su questo server!"; +$a->strings["User creation error"] = "Errore creando l'utente"; +$a->strings["User profile creation error"] = "Errore creando il profilo dell'utente"; +$a->strings["%d contact not imported"] = array( + 0 => "%d contatto non importato", + 1 => "%d contatti non importati", +); +$a->strings["Done. You can now login with your username and password"] = "Fatto. Ora puoi entrare con il tuo nome utente e la tua password"; +$a->strings["View Profile"] = "Visualizza profilo"; +$a->strings["Connect/Follow"] = "Connetti/segui"; +$a->strings["View Status"] = "Visualizza stato"; +$a->strings["View Photos"] = "Visualizza foto"; +$a->strings["Network Posts"] = "Post della Rete"; +$a->strings["View Contact"] = "Mostra contatto"; +$a->strings["Drop Contact"] = "Rimuovi contatto"; +$a->strings["Send PM"] = "Invia messaggio privato"; +$a->strings["Poke"] = "Stuzzica"; +$a->strings["Organisation"] = "Organizzazione"; +$a->strings["News"] = "Notizie"; +$a->strings["Forum"] = "Forum"; +$a->strings["Post to Email"] = "Invia a email"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Connettore disabilitato, dato che \"%s\" è abilitato."; +$a->strings["Hide your profile details from unknown viewers?"] = "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?"; +$a->strings["Visible to everybody"] = "Visibile a tutti"; +$a->strings["show"] = "mostra"; +$a->strings["don't show"] = "non mostrare"; +$a->strings["CC: email addresses"] = "CC: indirizzi email"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Esempio: bob@example.com, mary@example.com"; +$a->strings["Permissions"] = "Permessi"; +$a->strings["Close"] = "Chiudi"; +$a->strings["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["Logged out."] = "Uscita effettuata."; $a->strings["Login failed."] = "Accesso fallito."; $a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto."; $a->strings["The error message was:"] = "Il messaggio riportato era:"; -$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso."; -$a->strings["Default privacy group for new contacts"] = "Gruppo predefinito per i nuovi contatti"; -$a->strings["Everybody"] = "Tutti"; -$a->strings["edit"] = "modifica"; -$a->strings["Groups"] = "Gruppi"; -$a->strings["Edit groups"] = "Modifica gruppi"; -$a->strings["Edit group"] = "Modifica gruppo"; -$a->strings["Create a new group"] = "Crea un nuovo gruppo"; -$a->strings["Group Name: "] = "Nome del gruppo:"; -$a->strings["Contacts not in any group"] = "Contatti in nessun gruppo."; -$a->strings["add"] = "aggiungi"; +$a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; +$a->strings["Starts:"] = "Inizia:"; +$a->strings["Finishes:"] = "Finisce:"; +$a->strings["Location:"] = "Posizione:"; +$a->strings["Image/photo"] = "Immagine/foto"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["$1 wrote:"] = "$1 ha scritto:"; +$a->strings["Encrypted content"] = "Contenuto criptato"; +$a->strings["Invalid source protocol"] = "Protocollo sorgente non valido"; +$a->strings["Invalid link protocol"] = "Protocollo link non valido"; $a->strings["Unknown | Not categorised"] = "Sconosciuto | non categorizzato"; $a->strings["Block immediately"] = "Blocca immediatamente"; $a->strings["Shady, spammer, self-marketer"] = "Losco, venditore di fumo"; @@ -137,290 +245,34 @@ $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["GNU Social Connector"] = "Connettore GNU Social"; +$a->strings["pnut"] = "pnut"; $a->strings["App.net"] = "App.net"; -$a->strings["Hubzilla/Redmatrix"] = "Hubzilla/Redmatrix"; -$a->strings["Post to Email"] = "Invia a email"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Connettore disabilitato, dato che \"%s\" è abilitato."; -$a->strings["Hide your profile details from unknown viewers?"] = "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?"; -$a->strings["Visible to everybody"] = "Visibile a tutti"; -$a->strings["show"] = "mostra"; -$a->strings["don't show"] = "non mostrare"; -$a->strings["CC: email addresses"] = "CC: indirizzi email"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Esempio: bob@example.com, mary@example.com"; -$a->strings["Permissions"] = "Permessi"; -$a->strings["Close"] = "Chiudi"; -$a->strings["photo"] = "foto"; -$a->strings["status"] = "stato"; -$a->strings["event"] = "l'evento"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s"; -$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s parteciperà a %3\$s di %2\$s"; -$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s non parteciperà a %3\$s di %2\$s"; -$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s forse parteciperà a %3\$s di %2\$s"; -$a->strings["[no subject]"] = "[nessun oggetto]"; -$a->strings["Wall Photos"] = "Foto della bacheca"; -$a->strings["Click here to upgrade."] = "Clicca qui per aggiornare."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Questa azione eccede i limiti del tuo piano di sottoscrizione."; -$a->strings["This action is not available under your subscription plan."] = "Questa azione non è disponibile nel tuo piano di sottoscrizione."; -$a->strings["Error decoding account file"] = "Errore decodificando il file account"; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?"; -$a->strings["Error! Cannot check nickname"] = "Errore! Non posso controllare il nickname"; -$a->strings["User '%s' already exists on this server!"] = "L'utente '%s' esiste già su questo server!"; -$a->strings["User creation error"] = "Errore creando l'utente"; -$a->strings["User profile creation error"] = "Errore creando il profilo dell'utente"; -$a->strings["%d contact not imported"] = array( - 0 => "%d contatto non importato", - 1 => "%d contatti non importati", +$a->strings["Add New Contact"] = "Aggiungi nuovo contatto"; +$a->strings["Enter address or web location"] = "Inserisci posizione o indirizzo web"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Esempio: bob@example.com, http://example.com/barbara"; +$a->strings["Connect"] = "Connetti"; +$a->strings["%d invitation available"] = array( + 0 => "%d invito disponibile", + 1 => "%d inviti disponibili", +); +$a->strings["Find People"] = "Trova persone"; +$a->strings["Enter name or interest"] = "Inserisci un nome o un interesse"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Esempi: Mario Rossi, Pesca"; +$a->strings["Find"] = "Trova"; +$a->strings["Friend Suggestions"] = "Contatti suggeriti"; +$a->strings["Similar Interests"] = "Interessi simili"; +$a->strings["Random Profile"] = "Profilo causale"; +$a->strings["Invite Friends"] = "Invita amici"; +$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["Done. You can now login with your username and password"] = "Fatto. Ora puoi entrare con il tuo nome utente e la tua password"; -$a->strings["Miscellaneous"] = "Varie"; -$a->strings["Birthday:"] = "Compleanno:"; -$a->strings["Age: "] = "Età : "; -$a->strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-GG o MM-GG"; -$a->strings["never"] = "mai"; -$a->strings["less than a second ago"] = "meno di un secondo fa"; -$a->strings["year"] = "anno"; -$a->strings["years"] = "anni"; -$a->strings["month"] = "mese"; -$a->strings["months"] = "mesi"; -$a->strings["week"] = "settimana"; -$a->strings["weeks"] = "settimane"; -$a->strings["day"] = "giorno"; -$a->strings["days"] = "giorni"; -$a->strings["hour"] = "ora"; -$a->strings["hours"] = "ore"; -$a->strings["minute"] = "minuto"; -$a->strings["minutes"] = "minuti"; -$a->strings["second"] = "secondo"; -$a->strings["seconds"] = "secondi"; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s fa"; -$a->strings["%s's birthday"] = "Compleanno di %s"; -$a->strings["Happy Birthday %s"] = "Buon compleanno %s"; -$a->strings["Friendica Notification"] = "Notifica Friendica"; -$a->strings["Thank You,"] = "Grazie,"; -$a->strings["%s Administrator"] = "Amministratore %s"; -$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, amministratore di %2\$s"; -$a->strings["noreply"] = "nessuna risposta"; -$a->strings["%s "] = "%s "; -$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s"; -$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s ti ha inviato un nuovo messaggio privato su %2\$s."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s ti ha inviato %2\$s"; -$a->strings["a private message"] = "un messaggio privato"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Visita %s per vedere e/o rispondere ai tuoi messaggi privati."; -$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s ha commentato [url=%2\$s]%3\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s ha commentato [url=%2\$s]%4\$s di %3\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s ha commentato un [url=%2\$s]tuo %3\$s[/url]"; -$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notifica] Commento di %2\$s alla conversazione #%1\$d"; -$a->strings["%s commented on an item/conversation you have been following."] = "%s ha commentato un elemento che stavi seguendo."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Visita %s per vedere e/o commentare la conversazione"; -$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notifica] %s ha scritto sulla tua bacheca"; -$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s ha scritto sulla tua bacheca su %2\$s"; -$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s ha inviato un messaggio sulla [url=%2\$s]tua bacheca[/url]"; -$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notifica] %s ti ha taggato"; -$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s ti ha taggato su %2\$s"; -$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]ti ha taggato[/url]."; -$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notifica] %s ha condiviso un nuovo messaggio"; -$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s ha condiviso un nuovo messaggio su %2\$s"; -$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]ha condiviso un messaggio[/url]."; -$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notifica] %1\$s ti ha stuzzicato"; -$a->strings["%1\$s poked you at %2\$s"] = "%1\$s ti ha stuzzicato su %2\$s"; -$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]ti ha stuzzicato[/url]."; -$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notifica] %s ha taggato un tuo messaggio"; -$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s ha taggato il tuo post su %2\$s"; -$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s ha taggato [url=%2\$s]il tuo post[/url]"; -$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notifica] Hai ricevuto una presentazione"; -$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Hai ricevuto un'introduzione da '%1\$s' su %2\$s"; -$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Hai ricevuto [url=%1\$s]un'introduzione[/url] da %2\$s."; -$a->strings["You may visit their profile at %s"] = "Puoi visitare il suo profilo presso %s"; -$a->strings["Please visit %s to approve or reject the introduction."] = "Visita %s per approvare o rifiutare la presentazione."; -$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Notifica] Una nuova persona sta condividendo con te"; -$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s sta condividendo con te su %2\$s"; -$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Notifica] Una nuova persona ti segue"; -$a->strings["You have a new follower at %2\$s : %1\$s"] = "Un nuovo utente ha iniziato a seguirti su %2\$s : %1\$s"; -$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia"; -$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Hai ricevuto un suggerimento di amicizia da '%1\$s' su %2\$s"; -$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Hai ricevuto [url=%1\$s]un suggerimento di amicizia[/url] per %2\$s su %3\$s"; -$a->strings["Name:"] = "Nome:"; -$a->strings["Photo:"] = "Foto:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Visita %s per approvare o rifiutare il suggerimento."; -$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Notifica] Connessione accettata"; -$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' ha accettato la tua richiesta di connessione su %2\$s"; -$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s ha accettato la tua [url=%1\$s]richiesta di connessione[/url]"; -$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "Ora siete amici reciproci e potete scambiarvi aggiornamenti di stato, foto e messaggi privati senza restrizioni."; -$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Visita %s se vuoi modificare questa relazione."; -$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' ha scelto di accettarti come \"fan\", il che limita alcune forme di comunicazione, come i messaggi privati, e alcune possibilità di interazione col profilo. Se è una pagina di una comunità o di una celebrità, queste impostazioni sono state applicate automaticamente."; -$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "'%1\$s' può scegliere di estendere questa relazione in una relazione più permissiva in futuro."; -$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Visita %s se desideri modificare questo collegamento."; -$a->strings["[Friendica System:Notify] registration request"] = "[Friendica System:Notifica] richiesta di registrazione"; -$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Hai ricevuto una richiesta di registrazione da '%1\$s' su %2\$s"; -$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Hai ricevuto una [url=%1\$s]richiesta di registrazione[/url] da %2\$s."; -$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Nome completo: %1\$s\nIndirizzo del sito: %2\$s\nNome utente: %3\$s (%4\$s)"; -$a->strings["Please visit %s to approve or reject the request."] = "Visita %s per approvare o rifiutare la richiesta."; -$a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; -$a->strings["Starts:"] = "Inizia:"; -$a->strings["Finishes:"] = "Finisce:"; -$a->strings["Location:"] = "Posizione:"; -$a->strings["Sun"] = "Dom"; -$a->strings["Mon"] = "Lun"; -$a->strings["Tue"] = "Mar"; -$a->strings["Wed"] = "Mer"; -$a->strings["Thu"] = "Gio"; -$a->strings["Fri"] = "Ven"; -$a->strings["Sat"] = "Sab"; -$a->strings["Sunday"] = "Domenica"; -$a->strings["Monday"] = "Lunedì"; -$a->strings["Tuesday"] = "Martedì"; -$a->strings["Wednesday"] = "Mercoledì"; -$a->strings["Thursday"] = "Giovedì"; -$a->strings["Friday"] = "Venerdì"; -$a->strings["Saturday"] = "Sabato"; -$a->strings["Jan"] = "Gen"; -$a->strings["Feb"] = "Feb"; -$a->strings["Mar"] = "Mar"; -$a->strings["Apr"] = "Apr"; -$a->strings["May"] = "Maggio"; -$a->strings["Jun"] = "Giu"; -$a->strings["Jul"] = "Lug"; -$a->strings["Aug"] = "Ago"; -$a->strings["Sept"] = "Set"; -$a->strings["Oct"] = "Ott"; -$a->strings["Nov"] = "Nov"; -$a->strings["Dec"] = "Dic"; -$a->strings["January"] = "Gennaio"; -$a->strings["February"] = "Febbraio"; -$a->strings["March"] = "Marzo"; -$a->strings["April"] = "Aprile"; -$a->strings["June"] = "Giugno"; -$a->strings["July"] = "Luglio"; -$a->strings["August"] = "Agosto"; -$a->strings["September"] = "Settembre"; -$a->strings["October"] = "Ottobre"; -$a->strings["November"] = "Novembre"; -$a->strings["December"] = "Dicembre"; -$a->strings["today"] = "oggi"; -$a->strings["all-day"] = "tutto il giorno"; -$a->strings["No events to display"] = "Nessun evento da mostrare"; -$a->strings["l, F j"] = "l j F"; -$a->strings["Edit event"] = "Modifica l'evento"; -$a->strings["link to source"] = "Collegamento all'originale"; -$a->strings["Export"] = "Esporta"; -$a->strings["Export calendar as ical"] = "Esporta il calendario in formato ical"; -$a->strings["Export calendar as csv"] = "Esporta il calendario in formato csv"; -$a->strings["Nothing new here"] = "Niente di nuovo qui"; -$a->strings["Clear notifications"] = "Pulisci le notifiche"; -$a->strings["@name, !forum, #tags, content"] = "@nome, !forum, #tag, contenuto"; -$a->strings["Logout"] = "Esci"; -$a->strings["End this session"] = "Finisci questa sessione"; -$a->strings["Status"] = "Stato"; -$a->strings["Your posts and conversations"] = "I tuoi messaggi e le tue conversazioni"; -$a->strings["Profile"] = "Profilo"; -$a->strings["Your profile page"] = "Pagina del tuo profilo"; -$a->strings["Photos"] = "Foto"; -$a->strings["Your photos"] = "Le tue foto"; -$a->strings["Videos"] = "Video"; -$a->strings["Your videos"] = "I tuoi video"; -$a->strings["Events"] = "Eventi"; -$a->strings["Your events"] = "I tuoi eventi"; -$a->strings["Personal notes"] = "Note personali"; -$a->strings["Your personal notes"] = "Le tue note personali"; -$a->strings["Login"] = "Accedi"; -$a->strings["Sign in"] = "Entra"; -$a->strings["Home"] = "Home"; -$a->strings["Home Page"] = "Home Page"; -$a->strings["Register"] = "Registrati"; -$a->strings["Create an account"] = "Crea un account"; -$a->strings["Help"] = "Guida"; -$a->strings["Help and documentation"] = "Guida e documentazione"; -$a->strings["Apps"] = "Applicazioni"; -$a->strings["Addon applications, utilities, games"] = "Applicazioni, utilità e giochi aggiuntivi"; -$a->strings["Search"] = "Cerca"; -$a->strings["Search site content"] = "Cerca nel contenuto del sito"; -$a->strings["Full Text"] = "Testo Completo"; -$a->strings["Tags"] = "Tags:"; -$a->strings["Contacts"] = "Contatti"; -$a->strings["Community"] = "Comunità"; -$a->strings["Conversations on this site"] = "Conversazioni su questo sito"; -$a->strings["Conversations on the network"] = "Conversazioni nella rete"; -$a->strings["Events and Calendar"] = "Eventi e calendario"; -$a->strings["Directory"] = "Elenco"; -$a->strings["People directory"] = "Elenco delle persone"; -$a->strings["Information"] = "Informazioni"; -$a->strings["Information about this friendica instance"] = "Informazioni su questo server friendica"; -$a->strings["Network"] = "Rete"; -$a->strings["Conversations from your friends"] = "Conversazioni dai tuoi amici"; -$a->strings["Network Reset"] = "Reset pagina Rete"; -$a->strings["Load Network page with no filters"] = "Carica la pagina Rete senza nessun filtro"; -$a->strings["Introductions"] = "Presentazioni"; -$a->strings["Friend Requests"] = "Richieste di amicizia"; -$a->strings["Notifications"] = "Notifiche"; -$a->strings["See all notifications"] = "Vedi tutte le notifiche"; -$a->strings["Mark as seen"] = "Segna come letto"; -$a->strings["Mark all system notifications seen"] = "Segna tutte le notifiche come viste"; -$a->strings["Messages"] = "Messaggi"; -$a->strings["Private mail"] = "Posta privata"; -$a->strings["Inbox"] = "In arrivo"; -$a->strings["Outbox"] = "Inviati"; -$a->strings["New Message"] = "Nuovo messaggio"; -$a->strings["Manage"] = "Gestisci"; -$a->strings["Manage other pages"] = "Gestisci altre pagine"; -$a->strings["Delegations"] = "Delegazioni"; -$a->strings["Delegate Page Management"] = "Gestione delegati per la pagina"; -$a->strings["Settings"] = "Impostazioni"; -$a->strings["Account settings"] = "Parametri account"; -$a->strings["Profiles"] = "Profili"; -$a->strings["Manage/Edit Profiles"] = "Gestisci/Modifica i profili"; -$a->strings["Manage/edit friends and contacts"] = "Gestisci/modifica amici e contatti"; -$a->strings["Admin"] = "Amministrazione"; -$a->strings["Site setup and configuration"] = "Configurazione del sito"; -$a->strings["Navigation"] = "Navigazione"; -$a->strings["Site map"] = "Mappa del sito"; -$a->strings["Contact Photos"] = "Foto dei contatti"; -$a->strings["Welcome "] = "Ciao"; -$a->strings["Please upload a profile photo."] = "Carica una foto per il profilo."; -$a->strings["Welcome back "] = "Ciao "; -$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lungo (più di tre ore) prima di inviarla."; -$a->strings["System"] = "Sistema"; -$a->strings["Personal"] = "Personale"; -$a->strings["%s commented on %s's post"] = "%s ha commentato il messaggio di %s"; -$a->strings["%s created a new post"] = "%s a creato un nuovo messaggio"; -$a->strings["%s liked %s's post"] = "a %s è piaciuto il messaggio di %s"; -$a->strings["%s disliked %s's post"] = "a %s non è piaciuto il messaggio di %s"; -$a->strings["%s is attending %s's event"] = "%s partecipa all'evento di %s"; -$a->strings["%s is not attending %s's event"] = "%s non partecipa all'evento di %s"; -$a->strings["%s may attend %s's event"] = "%s potrebbe partecipare all'evento di %s"; -$a->strings["%s is now friends with %s"] = "%s è ora amico di %s"; -$a->strings["Friend Suggestion"] = "Amico suggerito"; -$a->strings["Friend/Connect Request"] = "Richiesta amicizia/connessione"; -$a->strings["New Follower"] = "Qualcuno inizia a seguirti"; -$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nGli sviluppatori di Friendica hanno rilasciato l'aggiornamento %s\nrecentemente, ma quando ho provato a installarlo, qualcosa è \nandato terribilmente storto.\nBisogna sistemare le cose e non posso farlo da solo.\nContatta uno sviluppatore se non puoi aiutarmi da solo. Il mio database potrebbe essere invalido."; -$a->strings["The error message is\n[pre]%s[/pre]"] = "Il messaggio di errore è\n[pre]%s[/pre]"; -$a->strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori."; -$a->strings["Errors encountered performing database changes."] = "Riscontrati errori applicando le modifiche al database."; -$a->strings["(no subject)"] = "(nessun oggetto)"; -$a->strings["Sharing notification from Diaspora network"] = "Notifica di condivisione dal network Diaspora*"; -$a->strings["Attachments:"] = "Allegati:"; -$a->strings["view full size"] = "vedi a schermo intero"; -$a->strings["View Profile"] = "Visualizza profilo"; -$a->strings["View Status"] = "Visualizza stato"; -$a->strings["View Photos"] = "Visualizza foto"; -$a->strings["Network Posts"] = "Post della Rete"; -$a->strings["View Contact"] = "Mostra contatto"; -$a->strings["Drop Contact"] = "Rimuovi contatto"; -$a->strings["Send PM"] = "Invia messaggio privato"; -$a->strings["Poke"] = "Stuzzica"; -$a->strings["Organisation"] = "Organizzazione"; -$a->strings["News"] = "Notizie"; -$a->strings["Forum"] = "Forum"; -$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Limite giornaliero di %d messaggi raggiunto. Il messaggio è stato rifiutato"; -$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Limite settimanale di %d messaggi raggiunto. Il messaggio è stato rifiutato"; -$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Limite mensile di %d messaggi raggiunto. Il messaggio è stato rifiutato"; -$a->strings["Image/photo"] = "Immagine/foto"; -$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; -$a->strings["$1 wrote:"] = "$1 ha scritto:"; -$a->strings["Encrypted content"] = "Contenuto criptato"; -$a->strings["Invalid source protocol"] = "Protocollo sorgente non valido"; -$a->strings["Invalid link protocol"] = "Protocollo link non valido"; $a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s partecipa a %3\$s di %2\$s"; $a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s non partecipa a %3\$s di %2\$s"; $a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s forse partecipa a %3\$s di %2\$s"; @@ -514,7 +366,136 @@ $a->strings["Not Attending"] = array( 0 => "Non partecipa", 1 => "Non partecipano", ); -$a->strings["%s\\'s birthday"] = "compleanno di %s"; +$a->strings["Miscellaneous"] = "Varie"; +$a->strings["Birthday:"] = "Compleanno:"; +$a->strings["Age: "] = "Età : "; +$a->strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-GG o MM-GG"; +$a->strings["never"] = "mai"; +$a->strings["less than a second ago"] = "meno di un secondo fa"; +$a->strings["year"] = "anno"; +$a->strings["years"] = "anni"; +$a->strings["month"] = "mese"; +$a->strings["months"] = "mesi"; +$a->strings["week"] = "settimana"; +$a->strings["weeks"] = "settimane"; +$a->strings["day"] = "giorno"; +$a->strings["days"] = "giorni"; +$a->strings["hour"] = "ora"; +$a->strings["hours"] = "ore"; +$a->strings["minute"] = "minuto"; +$a->strings["minutes"] = "minuti"; +$a->strings["second"] = "secondo"; +$a->strings["seconds"] = "secondi"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s fa"; +$a->strings["%s's birthday"] = "Compleanno di %s"; +$a->strings["Happy Birthday %s"] = "Buon compleanno %s"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; +$a->strings["Friendica Notification"] = "Notifica Friendica"; +$a->strings["Thank You,"] = "Grazie,"; +$a->strings["%s Administrator"] = "Amministratore %s"; +$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, amministratore di %2\$s"; +$a->strings["%s "] = "%s "; +$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s"; +$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s ti ha inviato un nuovo messaggio privato su %2\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s ti ha inviato %2\$s"; +$a->strings["a private message"] = "un messaggio privato"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Visita %s per vedere e/o rispondere ai tuoi messaggi privati."; +$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s ha commentato [url=%2\$s]%3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s ha commentato [url=%2\$s]%4\$s di %3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s ha commentato un [url=%2\$s]tuo %3\$s[/url]"; +$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notifica] Commento di %2\$s alla conversazione #%1\$d"; +$a->strings["%s commented on an item/conversation you have been following."] = "%s ha commentato un elemento che stavi seguendo."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Visita %s per vedere e/o commentare la conversazione"; +$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notifica] %s ha scritto sulla tua bacheca"; +$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s ha scritto sulla tua bacheca su %2\$s"; +$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s ha inviato un messaggio sulla [url=%2\$s]tua bacheca[/url]"; +$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notifica] %s ti ha taggato"; +$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s ti ha taggato su %2\$s"; +$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]ti ha taggato[/url]."; +$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notifica] %s ha condiviso un nuovo messaggio"; +$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s ha condiviso un nuovo messaggio su %2\$s"; +$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]ha condiviso un messaggio[/url]."; +$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notifica] %1\$s ti ha stuzzicato"; +$a->strings["%1\$s poked you at %2\$s"] = "%1\$s ti ha stuzzicato su %2\$s"; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]ti ha stuzzicato[/url]."; +$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notifica] %s ha taggato un tuo messaggio"; +$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s ha taggato il tuo post su %2\$s"; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s ha taggato [url=%2\$s]il tuo post[/url]"; +$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notifica] Hai ricevuto una presentazione"; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Hai ricevuto un'introduzione da '%1\$s' su %2\$s"; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Hai ricevuto [url=%1\$s]un'introduzione[/url] da %2\$s."; +$a->strings["You may visit their profile at %s"] = "Puoi visitare il suo profilo presso %s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "Visita %s per approvare o rifiutare la presentazione."; +$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Notifica] Una nuova persona sta condividendo con te"; +$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s sta condividendo con te su %2\$s"; +$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Notifica] Una nuova persona ti segue"; +$a->strings["You have a new follower at %2\$s : %1\$s"] = "Un nuovo utente ha iniziato a seguirti su %2\$s : %1\$s"; +$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia"; +$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Hai ricevuto un suggerimento di amicizia da '%1\$s' su %2\$s"; +$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Hai ricevuto [url=%1\$s]un suggerimento di amicizia[/url] per %2\$s su %3\$s"; +$a->strings["Name:"] = "Nome:"; +$a->strings["Photo:"] = "Foto:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Visita %s per approvare o rifiutare il suggerimento."; +$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Notifica] Connessione accettata"; +$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' ha accettato la tua richiesta di connessione su %2\$s"; +$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s ha accettato la tua [url=%1\$s]richiesta di connessione[/url]"; +$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "Ora siete amici reciproci e potete scambiarvi aggiornamenti di stato, foto e messaggi privati senza restrizioni."; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Visita %s se vuoi modificare questa relazione."; +$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' ha scelto di accettarti come \"fan\", il che limita alcune forme di comunicazione, come i messaggi privati, e alcune possibilità di interazione col profilo. Se è una pagina di una comunità o di una celebrità, queste impostazioni sono state applicate automaticamente."; +$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "'%1\$s' può scegliere di estendere questa relazione in una relazione più permissiva in futuro."; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Visita %s se desideri modificare questo collegamento."; +$a->strings["[Friendica System:Notify] registration request"] = "[Friendica System:Notifica] richiesta di registrazione"; +$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Hai ricevuto una richiesta di registrazione da '%1\$s' su %2\$s"; +$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Hai ricevuto una [url=%1\$s]richiesta di registrazione[/url] da %2\$s."; +$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Nome completo: %1\$s\nIndirizzo del sito: %2\$s\nNome utente: %3\$s (%4\$s)"; +$a->strings["Please visit %s to approve or reject the request."] = "Visita %s per approvare o rifiutare la richiesta."; +$a->strings["all-day"] = "tutto il giorno"; +$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["No events to display"] = "Nessun evento da mostrare"; +$a->strings["l, F j"] = "l j F"; +$a->strings["Edit event"] = "Modifica l'evento"; +$a->strings["Delete event"] = "Elimina evento"; +$a->strings["link to source"] = "Collegamento all'originale"; +$a->strings["Export"] = "Esporta"; +$a->strings["Export calendar as ical"] = "Esporta il calendario in formato ical"; +$a->strings["Export calendar as csv"] = "Esporta il calendario in formato csv"; $a->strings["General Features"] = "Funzionalità generali"; $a->strings["Multiple Profiles"] = "Profili multipli"; $a->strings["Ability to create multiple profiles"] = "Possibilità di creare profili multipli"; @@ -523,8 +504,6 @@ $a->strings["Photo metadata is normally stripped. This extracts the location (if $a->strings["Export Public Calendar"] = "Esporta calendario pubblico"; $a->strings["Ability for visitors to download the public calendar"] = "Permesso ai visitatori di scaricare il calendario pubblico"; $a->strings["Post Composition Features"] = "Funzionalità di composizione dei post"; -$a->strings["Richtext Editor"] = "Editor visuale"; -$a->strings["Enable richtext editor"] = "Abilita l'editor visuale"; $a->strings["Post Preview"] = "Anteprima dei post"; $a->strings["Allow previewing posts and comments before publishing them"] = "Permetti di avere un'anteprima di messaggi e commenti prima di pubblicarli"; $a->strings["Auto-mention Forums"] = "Auto-cita i Forum"; @@ -566,6 +545,7 @@ $a->strings["Ability to mute notifications for a thread"] = "Permette di silenzi $a->strings["Advanced Profile Settings"] = "Impostazioni Avanzate Profilo"; $a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Mostra ai visitatori i forum nella pagina Profilo Avanzato"; $a->strings["Disallowed profile URL."] = "Indirizzo profilo non permesso."; +$a->strings["Blocked domain"] = "Dominio bloccato"; $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."; @@ -577,6 +557,17 @@ $a->strings["Use mailto: in front of address to force email check."] = "Usa \"ma $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["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso."; +$a->strings["Default privacy group for new contacts"] = "Gruppo predefinito per i nuovi contatti"; +$a->strings["Everybody"] = "Tutti"; +$a->strings["edit"] = "modifica"; +$a->strings["Groups"] = "Gruppi"; +$a->strings["Edit groups"] = "Modifica gruppi"; +$a->strings["Edit group"] = "Modifica gruppo"; +$a->strings["Create a new group"] = "Crea un nuovo gruppo"; +$a->strings["Group Name: "] = "Nome del gruppo:"; +$a->strings["Contacts not in any group"] = "Contatti in nessun gruppo."; +$a->strings["add"] = "aggiungi"; $a->strings["Requested account is not available."] = "L'account richiesto non è disponibile."; $a->strings["Requested profile is not available."] = "Profilo richiesto non disponibile."; $a->strings["Edit profile"] = "Modifica il profilo"; @@ -630,24 +621,60 @@ $a->strings["Profile Details"] = "Dettagli del profilo"; $a->strings["Photo Albums"] = "Album foto"; $a->strings["Personal Notes"] = "Note personali"; $a->strings["Only You Can See This"] = "Solo tu puoi vedere questo"; +$a->strings["view full size"] = "vedi a schermo intero"; +$a->strings["Embedded content"] = "Contenuto incorporato"; +$a->strings["Embedding disabled"] = "Embed disabilitato"; +$a->strings["Contact Photos"] = "Foto dei contatti"; +$a->strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Password non cambiata."; +$a->strings["An invitation is required."] = "E' richiesto un invito."; +$a->strings["Invitation could not be verified."] = "L'invito non puo' essere verificato."; +$a->strings["Invalid OpenID url"] = "Url OpenID non valido"; +$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste."; +$a->strings["Please use a shorter name."] = "Usa un nome più corto."; +$a->strings["Name too short."] = "Il nome è troppo corto."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Questo non sembra essere il tuo nome completo (Nome Cognome)."; +$a->strings["Your email domain is not among those allowed on this site."] = "Il dominio della tua email non è tra quelli autorizzati su questo sito."; +$a->strings["Not a valid email address."] = "L'indirizzo email non è valido."; +$a->strings["Cannot use that email."] = "Non puoi usare quell'email."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Il tuo nome utente può contenere solo \"a-z\", \"0-9\", e \"_\"."; +$a->strings["Nickname is already registered. Please choose another."] = "Nome utente già registrato. Scegline un altro."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita."; +$a->strings["An error occurred during registration. Please try again."] = "C'è stato un errore durante la registrazione. Prova ancora."; +$a->strings["default"] = "default"; +$a->strings["An error occurred creating your default profile. Please try again."] = "C'è stato un errore nella creazione del tuo profilo. Prova ancora."; +$a->strings["Profile Photos"] = "Foto del profilo"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "\nCaro %1\$s,\n Grazie per la tua registrazione su %2\$s. Il tuo account è in attesa di approvazione da parte di un amministratore.\n "; +$a->strings["Registration at %s"] = "Registrazione su %s"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nGentile %1\$s,\nGrazie per esserti registrato su %2\$s. Il tuo account è stato creato."; +$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %3\$s\n Nome utente: %1\$s\n Password: %5\$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %2\$s"; +$a->strings["Registration details for %s"] = "Dettagli della registrazione di %s"; +$a->strings["There are no tables on MyISAM."] = "Non ci sono tabelle MyISAM"; +$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["\nError %d occurred during database update:\n%s\n"] = "\nErrore %d durante l'aggiornamento del database:\n%s\n"; +$a->strings["Errors encountered performing database changes: "] = "Errori riscontrati eseguendo le modifiche al database:"; +$a->strings[": Database update"] = ": Aggiornamento database"; +$a->strings["%s: updating %s table."] = "%s: aggiornando la tabella %s."; +$a->strings["%s\\'s birthday"] = "compleanno di %s"; +$a->strings["Sharing notification from Diaspora network"] = "Notifica di condivisione dal network Diaspora*"; +$a->strings["Attachments:"] = "Allegati:"; $a->strings["[Name Withheld]"] = "[Nome Nascosto]"; $a->strings["Item not found."] = "Elemento non trovato."; $a->strings["Do you really want to delete this item?"] = "Vuoi veramente cancellare questo elemento?"; $a->strings["Yes"] = "Si"; $a->strings["Permission denied."] = "Permesso negato."; $a->strings["Archives"] = "Archivi"; -$a->strings["Embedded content"] = "Contenuto incorporato"; -$a->strings["Embedding disabled"] = "Embed disabilitato"; $a->strings["%s is now following %s."] = "%s sta seguendo %s"; $a->strings["following"] = "segue"; $a->strings["%s stopped following %s."] = "%s ha smesso di seguire %s"; $a->strings["stopped following"] = "tolto dai seguiti"; $a->strings["newer"] = "nuovi"; $a->strings["older"] = "vecchi"; -$a->strings["prev"] = "prec"; $a->strings["first"] = "primo"; -$a->strings["last"] = "ultimo"; +$a->strings["prev"] = "prec"; $a->strings["next"] = "succ"; +$a->strings["last"] = "ultimo"; $a->strings["Loading more entries..."] = "Carico più elementi..."; $a->strings["The end"] = "Fine"; $a->strings["No contacts"] = "Nessun contatto"; @@ -701,284 +728,114 @@ $a->strings["comment"] = array( ); $a->strings["post"] = "messaggio"; $a->strings["Item filed"] = "Messaggio salvato"; -$a->strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Password non cambiata."; -$a->strings["An invitation is required."] = "E' richiesto un invito."; -$a->strings["Invitation could not be verified."] = "L'invito non puo' essere verificato."; -$a->strings["Invalid OpenID url"] = "Url OpenID non valido"; -$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste."; -$a->strings["Please use a shorter name."] = "Usa un nome più corto."; -$a->strings["Name too short."] = "Il nome è troppo corto."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Questo non sembra essere il tuo nome completo (Nome Cognome)."; -$a->strings["Your email domain is not among those allowed on this site."] = "Il dominio della tua email non è tra quelli autorizzati su questo sito."; -$a->strings["Not a valid email address."] = "L'indirizzo email non è valido."; -$a->strings["Cannot use that email."] = "Non puoi usare quell'email."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Il tuo nome utente può contenere solo \"a-z\", \"0-9\", e \"_\"."; -$a->strings["Nickname is already registered. Please choose another."] = "Nome utente già registrato. Scegline un altro."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita."; -$a->strings["An error occurred during registration. Please try again."] = "C'è stato un errore durante la registrazione. Prova ancora."; -$a->strings["default"] = "default"; -$a->strings["An error occurred creating your default profile. Please try again."] = "C'è stato un errore nella creazione del tuo profilo. Prova ancora."; -$a->strings["Profile Photos"] = "Foto del profilo"; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "\nCaro %1\$s,\n Grazie per la tua registrazione su %2\$s. Il tuo account è in attesa di approvazione da parte di un amministratore.\n "; -$a->strings["Registration at %s"] = "Registrazione su %s"; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nGentile %1\$s,\nGrazie per esserti registrato su %2\$s. Il tuo account è stato creato."; -$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %3\$s\n Nome utente: %1\$s\n Password: %5\$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %2\$s"; -$a->strings["Registration details for %s"] = "Dettagli della registrazione di %s"; -$a->strings["Post successful."] = "Inviato!"; -$a->strings["Access denied."] = "Accesso negato."; -$a->strings["Welcome to %s"] = "Benvenuto su %s"; -$a->strings["No more system notifications."] = "Nessuna nuova notifica di sistema."; -$a->strings["System Notifications"] = "Notifiche di sistema"; -$a->strings["Remove term"] = "Rimuovi termine"; -$a->strings["Public access denied."] = "Accesso negato."; -$a->strings["Only logged in users are permitted to perform a search."] = "Solo agli utenti autenticati è permesso eseguire ricerche."; -$a->strings["Too Many Requests"] = "Troppe richieste"; -$a->strings["Only one search per minute is permitted for not logged in users."] = "Solo una ricerca al minuto è permessa agli utenti non autenticati."; -$a->strings["No results."] = "Nessun risultato."; -$a->strings["Items tagged with: %s"] = "Elementi taggati con: %s"; -$a->strings["Results for: %s"] = "Risultati per: %s"; -$a->strings["This is Friendica, version"] = "Questo è Friendica, versione"; -$a->strings["running at web location"] = "in esecuzione all'indirizzo web"; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Visita Friendica.com per saperne di più sul progetto Friendica."; -$a->strings["Bug reports and issues: please visit"] = "Segnalazioni di bug e problemi: visita"; -$a->strings["the bugtracker at github"] = "il bugtracker su github"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com"; -$a->strings["Installed plugins/addons/apps:"] = "Plugin/componenti aggiuntivi/applicazioni installate"; -$a->strings["No installed plugins/addons/apps"] = "Nessun plugin/componente aggiuntivo/applicazione installata"; -$a->strings["No valid account found."] = "Nessun account valido trovato."; -$a->strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nGentile %1\$s,\n abbiamo ricevuto su \"%2\$s\" una richiesta di resettare la password del tuo account. Per confermare questa richiesta, selezionate il link di conferma qui sotto o incollatelo nella barra indirizzo del vostro browser.\n\nSe NON hai richiesto questa modifica, NON selezionare il link e ignora o cancella questa email.\n\nLa tua password non verrà modificata a meno che non possiamo verificare che tu abbia effettivamente richiesto la modifica."; -$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nSegui questo link per verificare la tua identità:\n\n%1\$s\n\nRiceverai in un successivo messaggio la nuova password.\nPotrai cambiarla dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato.\n\nI dettagli del tuo account sono:\n Indirizzo del sito: %2\$s\n Nome utente: %3\$s"; -$a->strings["Password reset requested at %s"] = "Richiesta reimpostazione password su %s"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata. (Puoi averla già richiesta precedentemente). Reimpostazione password fallita."; -$a->strings["Password Reset"] = "Reimpostazione password"; -$a->strings["Your password has been reset as requested."] = "La tua password è stata reimpostata come richiesto."; -$a->strings["Your new password is"] = "La tua nuova password è"; -$a->strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi"; -$a->strings["click here to login"] = "clicca qui per entrare"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Puoi cambiare la tua password dalla pagina Impostazioni dopo aver effettuato l'accesso."; -$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\nGentile %1\$s,\n La tua password è stata modificata come richiesto.\nSalva questa password, o sostituiscila immediatamente con qualcosa che puoi ricordare."; -$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\nI dettagli del tuo account sono:\n\n Indirizzo del sito: %1\$s\n Nome utente: %2\$s\n Password: %3\$s\n\nPuoi cambiare questa password dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato."; -$a->strings["Your password has been changed at %s"] = "La tua password presso %s è stata cambiata"; -$a->strings["Forgot your Password?"] = "Hai dimenticato la password?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password."; -$a->strings["Nickname or Email: "] = "Nome utente o email: "; -$a->strings["Reset"] = "Reimposta"; -$a->strings["No profile"] = "Nessun profilo"; -$a->strings["Help:"] = "Guida:"; -$a->strings["Not Found"] = "Non trovato"; -$a->strings["Page not found."] = "Pagina non trovata."; -$a->strings["Remote privacy information not available."] = "Informazioni remote sulla privacy non disponibili."; -$a->strings["Visible to:"] = "Visibile a:"; -$a->strings["OpenID protocol error. No ID returned."] = "Errore protocollo OpenID. Nessun ID ricevuto."; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."; -$a->strings["Import"] = "Importa"; -$a->strings["Move account"] = "Muovi account"; -$a->strings["You can import an account from another Friendica server."] = "Puoi importare un account da un altro server Friendica."; -$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (GNU Social/Statusnet) o da Diaspora"; -$a->strings["Account file"] = "File account"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\""; -$a->strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]"; -$a->strings["Edit contact"] = "Modifica contatto"; -$a->strings["Contacts who are not members of a group"] = "Contatti che non sono membri di un gruppo"; -$a->strings["Export account"] = "Esporta account"; -$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server."; -$a->strings["Export all"] = "Esporta tutto"; -$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Può diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)"; -$a->strings["Export personal data"] = "Esporta dati personali"; -$a->strings["Total invitation limit exceeded."] = "Limite totale degli inviti superato."; -$a->strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; -$a->strings["Please join us on Friendica"] = "Unisciti a noi su Friendica"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite degli inviti superato. Contatta l'amministratore del tuo sito."; -$a->strings["%s : Message delivery failed."] = "%s: la consegna del messaggio fallita."; -$a->strings["%d message sent."] = array( - 0 => "%d messaggio inviato.", - 1 => "%d messaggi inviati.", -); -$a->strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; -$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Per accettare questo invito, visita e registrati su %s o su un'altro sito web Friendica aperto al pubblico."; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri."; -$a->strings["Send invitations"] = "Invia inviti"; -$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; -$a->strings["Your message:"] = "Il tuo messaggio:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Sei cordialmente invitato/a ad unirti a me e ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Sarà necessario fornire questo codice invito: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una volta registrato, connettiti con me dal mio profilo:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Per maggiori informazioni sul progetto Friendica e perché pensiamo sia importante, visita http://friendica.com"; -$a->strings["Submit"] = "Invia"; -$a->strings["Files"] = "File"; -$a->strings["Permission denied"] = "Permesso negato"; -$a->strings["Invalid profile identifier."] = "Identificativo del profilo non valido."; -$a->strings["Profile Visibility Editor"] = "Modifica visibilità del profilo"; -$a->strings["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo."; -$a->strings["Visible To"] = "Visibile a"; -$a->strings["All Contacts (with secure profile access)"] = "Tutti i contatti (con profilo ad accesso sicuro)"; -$a->strings["Tag removed"] = "Tag rimosso"; -$a->strings["Remove Item Tag"] = "Rimuovi il tag"; -$a->strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: "; -$a->strings["Remove"] = "Rimuovi"; -$a->strings["Resubscribing to OStatus contacts"] = "Risottoscrivi i contatti OStatus"; -$a->strings["Error"] = "Errore"; -$a->strings["Done"] = "Fatto"; -$a->strings["Keep this window open until done."] = "Tieni questa finestra aperta fino a che ha finito."; -$a->strings["No potential page delegates located."] = "Nessun potenziale delegato per la pagina è stato trovato."; -$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "I Delegati sono in grado di gestire tutti gli aspetti di questa pagina, tranne per le impostazioni di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente."; -$a->strings["Existing Page Managers"] = "Gestori Pagina Esistenti"; -$a->strings["Existing Page Delegates"] = "Delegati Pagina Esistenti"; -$a->strings["Potential Delegates"] = "Delegati Potenziali"; -$a->strings["Add"] = "Aggiungi"; -$a->strings["No entries."] = "Nessuna voce."; -$a->strings["Credits"] = "Crediti"; -$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica è un progetto comunitario, che non sarebbe stato possibile realizzare senza l'aiuto di molte persone.\nQuesta è una lista di chi ha contribuito al codice o alle traduzioni di Friendica. Grazie a tutti!"; -$a->strings["- select -"] = "- seleziona -"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s"; -$a->strings["Item not available."] = "Oggetto non disponibile."; -$a->strings["Item was not found."] = "Oggetto non trovato."; -$a->strings["You must be logged in to use addons. "] = "Devi aver effettuato il login per usare i componenti aggiuntivi."; -$a->strings["Applications"] = "Applicazioni"; -$a->strings["No installed applications."] = "Nessuna applicazione installata."; -$a->strings["Not Extended"] = "Not Extended"; -$a->strings["Welcome to Friendica"] = "Benvenuto su Friendica"; -$a->strings["New Member Checklist"] = "Cose da fare per i Nuovi Utenti"; -$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione."; -$a->strings["Getting Started"] = "Come Iniziare"; -$a->strings["Friendica Walk-Through"] = "Friendica Passo-Passo"; -$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Sulla tua pagina Quick Start - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti."; -$a->strings["Go to Your Settings"] = "Vai alle tue Impostazioni"; -$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Nella tua pagina Impostazioni - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero."; -$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti."; -$a->strings["Upload Profile Photo"] = "Carica la foto del profilo"; -$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno."; -$a->strings["Edit Your Profile"] = "Modifica il tuo Profilo"; -$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Modifica il tuo profilo predefinito a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti."; -$a->strings["Profile Keywords"] = "Parole chiave del profilo"; -$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie."; -$a->strings["Connecting"] = "Collegarsi"; -$a->strings["Importing Emails"] = "Importare le Email"; -$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo"; -$a->strings["Go to Your Contacts Page"] = "Vai alla tua pagina Contatti"; -$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo Aggiungi Nuovo Contatto"; -$a->strings["Go to Your Site's Directory"] = "Vai all'Elenco del tuo sito"; -$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link Connetti o Segui nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto."; -$a->strings["Finding New People"] = "Trova nuove persone"; -$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore."; -$a->strings["Group Your Contacts"] = "Raggruppa i tuoi contatti"; -$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete"; -$a->strings["Why Aren't My Posts Public?"] = "Perché i miei post non sono pubblici?"; -$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica rispetta la tua privacy. Per impostazione predefinita, i tuoi post sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal link qui sopra."; -$a->strings["Getting Help"] = "Ottenere Aiuto"; -$a->strings["Go to the Help Section"] = "Vai alla sezione Guida"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse."; -$a->strings["Remove My Account"] = "Rimuovi il mio account"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo."; -$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; -$a->strings["Item not found"] = "Oggetto non trovato"; -$a->strings["Edit post"] = "Modifica messaggio"; -$a->strings["Time Conversion"] = "Conversione Ora"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica fornisce questo servizio per la condivisione di eventi con altre reti e amici in fusi orari sconosciuti."; -$a->strings["UTC time: %s"] = "Ora UTC: %s"; -$a->strings["Current timezone: %s"] = "Fuso orario corrente: %s"; -$a->strings["Converted localtime: %s"] = "Ora locale convertita: %s"; -$a->strings["Please select your timezone:"] = "Selezionare il tuo fuso orario:"; -$a->strings["The post was created"] = "Il messaggio è stato creato"; -$a->strings["Group created."] = "Gruppo creato."; -$a->strings["Could not create group."] = "Impossibile creare il gruppo."; -$a->strings["Group not found."] = "Gruppo non trovato."; -$a->strings["Group name changed."] = "Il nome del gruppo è cambiato."; -$a->strings["Save Group"] = "Salva gruppo"; -$a->strings["Create a group of contacts/friends."] = "Crea un gruppo di amici/contatti."; -$a->strings["Group removed."] = "Gruppo rimosso."; -$a->strings["Unable to remove group."] = "Impossibile rimuovere il gruppo."; -$a->strings["Group Editor"] = "Modifica gruppo"; -$a->strings["Members"] = "Membri"; -$a->strings["All Contacts"] = "Tutti i contatti"; -$a->strings["Group is empty"] = "Il gruppo è vuoto"; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Numero giornaliero di messaggi per %s superato. Invio fallito."; -$a->strings["No recipient selected."] = "Nessun destinatario selezionato."; -$a->strings["Unable to check your home location."] = "Impossibile controllare la tua posizione di origine."; -$a->strings["Message could not be sent."] = "Il messaggio non può essere inviato."; -$a->strings["Message collection failure."] = "Errore recuperando il messaggio."; -$a->strings["Message sent."] = "Messaggio inviato."; -$a->strings["No recipient."] = "Nessun destinatario."; -$a->strings["Send Private Message"] = "Invia un messaggio privato"; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti."; -$a->strings["To:"] = "A:"; -$a->strings["Subject:"] = "Oggetto:"; -$a->strings["link"] = "collegamento"; +$a->strings["No friends to display."] = "Nessun amico da visualizzare."; $a->strings["Authorize application connection"] = "Autorizza la connessione dell'applicazione"; $a->strings["Return to your app and insert this Securty Code:"] = "Torna alla tua applicazione e inserisci questo codice di sicurezza:"; $a->strings["Please login to continue."] = "Effettua il login per continuare."; $a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?"; $a->strings["No"] = "No"; -$a->strings["Source (bbcode) text:"] = "Testo sorgente (bbcode):"; -$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Testo sorgente (da Diaspora) da convertire in BBcode:"; -$a->strings["Source input: "] = "Sorgente:"; -$a->strings["bb2html (raw HTML): "] = "bb2html (HTML grezzo):"; -$a->strings["bb2html: "] = "bb2html:"; -$a->strings["bb2html2bb: "] = "bb2html2bb: "; -$a->strings["bb2md: "] = "bb2md: "; -$a->strings["bb2md2html: "] = "bb2md2html: "; -$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; -$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; -$a->strings["Source input (Diaspora format): "] = "Sorgente (formato Diaspora):"; -$a->strings["diaspora2bb: "] = "diaspora2bb: "; -$a->strings["Subscribing to OStatus contacts"] = "Iscrizione a contatti OStatus"; -$a->strings["No contact provided."] = "Nessun contatto disponibile."; -$a->strings["Couldn't fetch information for contact."] = "Non è stato possibile recuperare le informazioni del contatto."; -$a->strings["Couldn't fetch friends for contact."] = "Non è stato possibile recuperare gli amici del contatto."; -$a->strings["success"] = "successo"; -$a->strings["failed"] = "fallito"; -$a->strings["ignored"] = "ignorato"; -$a->strings["%1\$s welcomes %2\$s"] = "%s dà il benvenuto a %s"; -$a->strings["Unable to locate contact information."] = "Impossibile trovare le informazioni del contatto."; -$a->strings["Do you really want to delete this message?"] = "Vuoi veramente cancellare questo messaggio?"; -$a->strings["Message deleted."] = "Messaggio eliminato."; -$a->strings["Conversation removed."] = "Conversazione rimossa."; -$a->strings["No messages."] = "Nessun messaggio."; -$a->strings["Message not available."] = "Messaggio non disponibile."; -$a->strings["Delete message"] = "Elimina il messaggio"; -$a->strings["Delete conversation"] = "Elimina la conversazione"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente."; -$a->strings["Send Reply"] = "Invia la risposta"; -$a->strings["Unknown sender - %s"] = "Mittente sconosciuto - %s"; -$a->strings["You and %s"] = "Tu e %s"; -$a->strings["%s and You"] = "%s e Tu"; -$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i"; -$a->strings["%d message"] = array( - 0 => "%d messaggio", - 1 => "%d messaggi", +$a->strings["You must be logged in to use addons. "] = "Devi aver effettuato il login per usare i componenti aggiuntivi."; +$a->strings["Applications"] = "Applicazioni"; +$a->strings["No installed applications."] = "Nessuna applicazione installata."; +$a->strings["Item not available."] = "Oggetto non disponibile."; +$a->strings["Item was not found."] = "Oggetto non trovato."; +$a->strings["The post was created"] = "Il messaggio è stato creato"; +$a->strings["No contacts in common."] = "Nessun contatto in comune."; +$a->strings["Common Friends"] = "Amici in comune"; +$a->strings["%d contact edited."] = array( + 0 => "%d contatto modificato.", + 1 => "%d contatti modificati", ); -$a->strings["Manage Identities and/or Pages"] = "Gestisci identità e/o pagine"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione"; -$a->strings["Select an identity to manage: "] = "Seleziona un'identità da gestire:"; -$a->strings["Contact settings applied."] = "Contatto modificato."; -$a->strings["Contact update failed."] = "Le modifiche al contatto non sono state salvate."; -$a->strings["Contact not found."] = "Contatto non trovato."; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più"; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina."; -$a->strings["No mirroring"] = "Non duplicare"; -$a->strings["Mirror as forwarded posting"] = "Duplica come messaggi ricondivisi"; -$a->strings["Mirror as my own posting"] = "Duplica come miei messaggi"; -$a->strings["Return to contact editor"] = "Ritorna alla modifica contatto"; -$a->strings["Refetch contact data"] = "Ricarica dati contatto"; -$a->strings["Remote Self"] = "Io remoto"; -$a->strings["Mirror postings from this contact"] = "Ripeti i messaggi di questo contatto"; -$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Imposta questo contatto come 'io remoto', questo farà si che friendica re invii i nuovi messaggi da questo contatto."; -$a->strings["Name"] = "Nome"; -$a->strings["Account Nickname"] = "Nome utente"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@TagName - al posto del nome utente"; -$a->strings["Account URL"] = "URL dell'utente"; -$a->strings["Friend Request URL"] = "URL Richiesta Amicizia"; -$a->strings["Friend Confirm URL"] = "URL Conferma Amicizia"; -$a->strings["Notification Endpoint URL"] = "URL Notifiche"; -$a->strings["Poll/Feed URL"] = "URL Feed"; -$a->strings["New photo from this URL"] = "Nuova foto da questo URL"; +$a->strings["Could not access contact record."] = "Non è possibile accedere al contatto."; +$a->strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato."; +$a->strings["Contact updated."] = "Contatto aggiornato."; +$a->strings["Failed to update contact record."] = "Errore nell'aggiornamento del contatto."; +$a->strings["Contact has been blocked"] = "Il contatto è stato bloccato"; +$a->strings["Contact has been unblocked"] = "Il contatto è stato sbloccato"; +$a->strings["Contact has been ignored"] = "Il contatto è ignorato"; +$a->strings["Contact has been unignored"] = "Il contatto non è più ignorato"; +$a->strings["Contact has been archived"] = "Il contatto è stato archiviato"; +$a->strings["Contact has been unarchived"] = "Il contatto è stato dearchiviato"; +$a->strings["Drop contact"] = "Cancella contatto"; +$a->strings["Do you really want to delete this contact?"] = "Vuoi veramente cancellare questo contatto?"; +$a->strings["Contact has been removed."] = "Il contatto è stato rimosso."; +$a->strings["You are mutual friends with %s"] = "Sei amico reciproco con %s"; +$a->strings["You are sharing with %s"] = "Stai condividendo con %s"; +$a->strings["%s is sharing with you"] = "%s sta condividendo con te"; +$a->strings["Private communications are not available for this contact."] = "Le comunicazioni private non sono disponibili per questo contatto."; +$a->strings["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 informazioni 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"] = "Contatto"; +$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["Last update:"] = "Ultimo aggiornamento:"; +$a->strings["Update public posts"] = "Aggiorna messaggi pubblici"; +$a->strings["Update now"] = "Aggiorna adesso"; +$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 hashtag, quando \"Recupera informazioni e parole chiave\" è selezionato"; +$a->strings["Profile URL"] = "URL Profilo"; +$a->strings["Actions"] = "Azioni"; +$a->strings["Contact Settings"] = "Impostazioni Contatto"; +$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"] = "Archiviato"; +$a->strings["Only show archived contacts"] = "Mostra solo contatti archiviati"; +$a->strings["Hidden"] = "Nascosto"; +$a->strings["Only show hidden contacts"] = "Mostra solo contatti nascosti"; +$a->strings["Search your contacts"] = "Cerca nei tuoi contatti"; +$a->strings["Results for: %s"] = "Risultati per: %s"; +$a->strings["Update"] = "Aggiorna"; +$a->strings["Archive"] = "Archivia"; +$a->strings["Unarchive"] = "Dearchivia"; +$a->strings["Batch Actions"] = "Azioni Batch"; +$a->strings["View all contacts"] = "Vedi tutti i contatti"; +$a->strings["View all common friends"] = "Vedi tutti gli amici in comune"; +$a->strings["Advanced Contact Settings"] = "Impostazioni avanzate Contatto"; +$a->strings["Mutual Friendship"] = "Amicizia reciproca"; +$a->strings["is a fan of yours"] = "è un tuo fan"; +$a->strings["you are a fan of"] = "sei un fan di"; +$a->strings["Edit contact"] = "Modifica 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["Delete contact"] = "Rimuovi contatto"; $a->strings["No such group"] = "Nessun gruppo"; +$a->strings["Group is empty"] = "Il gruppo è vuoto"; $a->strings["Group: %s"] = "Gruppo: %s"; $a->strings["This entry was edited"] = "Questa voce è stata modificata"; $a->strings["%d comment"] = array( @@ -1011,6 +868,7 @@ $a->strings["add tag"] = "aggiungi tag"; $a->strings["ignore thread"] = "ignora la discussione"; $a->strings["unignore thread"] = "non ignorare la discussione"; $a->strings["toggle ignore status"] = "inverti stato \"Ignora\""; +$a->strings["ignored"] = "ignorato"; $a->strings["save to folder"] = "salva nella cartella"; $a->strings["I will attend"] = "Parteciperò"; $a->strings["I will not attend"] = "Non parteciperò"; @@ -1018,11 +876,158 @@ $a->strings["I might attend"] = "Forse parteciperò"; $a->strings["to"] = "a"; $a->strings["Wall-to-Wall"] = "Da bacheca a bacheca"; $a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca"; +$a->strings["Credits"] = "Crediti"; +$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica è un progetto comunitario, che non sarebbe stato possibile realizzare senza l'aiuto di molte persone.\nQuesta è una lista di chi ha contribuito al codice o alle traduzioni di Friendica. Grazie a tutti!"; +$a->strings["Contact settings applied."] = "Contatto modificato."; +$a->strings["Contact update failed."] = "Le modifiche al contatto non sono state salvate."; +$a->strings["Contact not found."] = "Contatto non trovato."; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più"; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina."; +$a->strings["No mirroring"] = "Non duplicare"; +$a->strings["Mirror as forwarded posting"] = "Duplica come messaggi ricondivisi"; +$a->strings["Mirror as my own posting"] = "Duplica come miei messaggi"; +$a->strings["Return to contact editor"] = "Ritorna alla modifica contatto"; +$a->strings["Refetch contact data"] = "Ricarica dati contatto"; +$a->strings["Remote Self"] = "Io remoto"; +$a->strings["Mirror postings from this contact"] = "Ripeti i messaggi di questo contatto"; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Imposta questo contatto come 'io remoto', questo farà si che friendica re invii i nuovi messaggi da questo contatto."; +$a->strings["Name"] = "Nome"; +$a->strings["Account Nickname"] = "Nome utente"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@TagName - al posto del nome utente"; +$a->strings["Account URL"] = "URL dell'utente"; +$a->strings["Friend Request URL"] = "URL Richiesta Amicizia"; +$a->strings["Friend Confirm URL"] = "URL Conferma Amicizia"; +$a->strings["Notification Endpoint URL"] = "URL Notifiche"; +$a->strings["Poll/Feed URL"] = "URL Feed"; +$a->strings["New photo from this URL"] = "Nuova foto da questo URL"; +$a->strings["No potential page delegates located."] = "Nessun potenziale delegato per la pagina è stato trovato."; +$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "I Delegati sono in grado di gestire tutti gli aspetti di questa pagina, tranne per le impostazioni di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente."; +$a->strings["Existing Page Managers"] = "Gestori Pagina Esistenti"; +$a->strings["Existing Page Delegates"] = "Delegati Pagina Esistenti"; +$a->strings["Potential Delegates"] = "Delegati Potenziali"; +$a->strings["Remove"] = "Rimuovi"; +$a->strings["Add"] = "Aggiungi"; +$a->strings["No entries."] = "Nessuna voce."; +$a->strings["%1\$s welcomes %2\$s"] = "%s dà il benvenuto a %s"; +$a->strings["Public access denied."] = "Accesso negato."; +$a->strings["Global Directory"] = "Elenco globale"; +$a->strings["Find on this site"] = "Cerca nel sito"; +$a->strings["Results for:"] = "Risultati per:"; +$a->strings["Site Directory"] = "Elenco del sito"; +$a->strings["No entries (some entries may be hidden)."] = "Nessuna voce (qualche voce potrebbe essere nascosta)."; +$a->strings["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["Item not found"] = "Oggetto non trovato"; +$a->strings["Edit post"] = "Modifica messaggio"; +$a->strings["Files"] = "File"; +$a->strings["Not Found"] = "Non trovato"; +$a->strings["- select -"] = "- seleziona -"; $a->strings["Friend suggestion sent."] = "Suggerimento di amicizia inviato."; $a->strings["Suggest Friends"] = "Suggerisci amici"; $a->strings["Suggest a friend for %s"] = "Suggerisci un amico a %s"; +$a->strings["No profile"] = "Nessun profilo"; +$a->strings["Help:"] = "Guida:"; +$a->strings["Page not found."] = "Pagina non trovata."; +$a->strings["Welcome to %s"] = "Benvenuto su %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"] = "Unisciti a noi su Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite degli inviti superato. Contatta l'amministratore del tuo sito."; +$a->strings["%s : Message delivery failed."] = "%s: la consegna del messaggio fallita."; +$a->strings["%d message sent."] = array( + 0 => "%d messaggio inviato.", + 1 => "%d messaggi inviati.", +); +$a->strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Per accettare questo invito, visita e registrati su %s o su un'altro sito web Friendica aperto al pubblico."; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri."; +$a->strings["Send invitations"] = "Invia inviti"; +$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; +$a->strings["Your message:"] = "Il tuo messaggio:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Sei cordialmente invitato/a ad unirti a me e ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Sarà necessario fornire questo codice invito: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una volta registrato, connettiti con me dal mio profilo:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Per maggiori informazioni sul progetto Friendica e perché pensiamo sia importante, visita http://friendica.com"; +$a->strings["Time Conversion"] = "Conversione Ora"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica fornisce questo servizio per la condivisione di eventi con altre reti e amici in fusi orari sconosciuti."; +$a->strings["UTC time: %s"] = "Ora UTC: %s"; +$a->strings["Current timezone: %s"] = "Fuso orario corrente: %s"; +$a->strings["Converted localtime: %s"] = "Ora locale convertita: %s"; +$a->strings["Please select your timezone:"] = "Selezionare il tuo fuso orario:"; +$a->strings["Remote privacy information not available."] = "Informazioni remote sulla privacy non disponibili."; +$a->strings["Visible to:"] = "Visibile a:"; +$a->strings["No valid account found."] = "Nessun account valido trovato."; +$a->strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nGentile %1\$s,\n abbiamo ricevuto su \"%2\$s\" una richiesta di resettare la password del tuo account. Per confermare questa richiesta, selezionate il link di conferma qui sotto o incollatelo nella barra indirizzo del vostro browser.\n\nSe NON hai richiesto questa modifica, NON selezionare il link e ignora o cancella questa email.\n\nLa tua password non verrà modificata a meno che non possiamo verificare che tu abbia effettivamente richiesto la modifica."; +$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nSegui questo link per verificare la tua identità:\n\n%1\$s\n\nRiceverai in un successivo messaggio la nuova password.\nPotrai cambiarla dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato.\n\nI dettagli del tuo account sono:\n Indirizzo del sito: %2\$s\n Nome utente: %3\$s"; +$a->strings["Password reset requested at %s"] = "Richiesta reimpostazione password su %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata. (Puoi averla già richiesta precedentemente). Reimpostazione password fallita."; +$a->strings["Password Reset"] = "Reimpostazione password"; +$a->strings["Your password has been reset as requested."] = "La tua password è stata reimpostata come richiesto."; +$a->strings["Your new password is"] = "La tua nuova password è"; +$a->strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi"; +$a->strings["click here to login"] = "clicca qui per entrare"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Puoi cambiare la tua password dalla pagina Impostazioni dopo aver effettuato l'accesso."; +$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\nGentile %1\$s,\n La tua password è stata modificata come richiesto.\nSalva questa password, o sostituiscila immediatamente con qualcosa che puoi ricordare."; +$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\nI dettagli del tuo account sono:\n\n Indirizzo del sito: %1\$s\n Nome utente: %2\$s\n Password: %3\$s\n\nPuoi cambiare questa password dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato."; +$a->strings["Your password has been changed at %s"] = "La tua password presso %s è stata cambiata"; +$a->strings["Forgot your Password?"] = "Hai dimenticato la password?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password."; +$a->strings["Nickname or Email: "] = "Nome utente o email: "; +$a->strings["Reset"] = "Reimposta"; +$a->strings["System down for maintenance"] = "Sistema in manutenzione"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito."; +$a->strings["is interested in:"] = "è interessato a:"; +$a->strings["Profile Match"] = "Profili corrispondenti"; +$a->strings["No matches"] = "Nessun risultato"; $a->strings["Mood"] = "Umore"; $a->strings["Set your current mood and tell your friends"] = "Condividi il tuo umore con i tuoi amici"; +$a->strings["Welcome to Friendica"] = "Benvenuto su Friendica"; +$a->strings["New Member Checklist"] = "Cose da fare per i Nuovi Utenti"; +$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione."; +$a->strings["Getting Started"] = "Come Iniziare"; +$a->strings["Friendica Walk-Through"] = "Friendica Passo-Passo"; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Sulla tua pagina Quick Start - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti."; +$a->strings["Go to Your Settings"] = "Vai alle tue Impostazioni"; +$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Nella tua pagina Impostazioni - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero."; +$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti."; +$a->strings["Upload Profile Photo"] = "Carica la foto del profilo"; +$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno."; +$a->strings["Edit Your Profile"] = "Modifica il tuo Profilo"; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Modifica il tuo profilo predefinito a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti."; +$a->strings["Profile Keywords"] = "Parole chiave del profilo"; +$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie."; +$a->strings["Connecting"] = "Collegarsi"; +$a->strings["Importing Emails"] = "Importare le Email"; +$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo"; +$a->strings["Go to Your Contacts Page"] = "Vai alla tua pagina Contatti"; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo Aggiungi Nuovo Contatto"; +$a->strings["Go to Your Site's Directory"] = "Vai all'Elenco del tuo sito"; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link Connetti o Segui nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto."; +$a->strings["Finding New People"] = "Trova nuove persone"; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore."; +$a->strings["Group Your Contacts"] = "Raggruppa i tuoi contatti"; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete"; +$a->strings["Why Aren't My Posts Public?"] = "Perché i miei post non sono pubblici?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica rispetta la tua privacy. Per impostazione predefinita, i tuoi post sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal link qui sopra."; +$a->strings["Getting Help"] = "Ottenere Aiuto"; +$a->strings["Go to the Help Section"] = "Vai alla sezione Guida"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse."; +$a->strings["Contacts who are not members of a group"] = "Contatti che non sono membri di un gruppo"; +$a->strings["No more system notifications."] = "Nessuna nuova notifica di sistema."; +$a->strings["System Notifications"] = "Notifiche di sistema"; +$a->strings["Post successful."] = "Inviato!"; +$a->strings["Subscribing to OStatus contacts"] = "Iscrizione a contatti OStatus"; +$a->strings["No contact provided."] = "Nessun contatto disponibile."; +$a->strings["Couldn't fetch information for contact."] = "Non è stato possibile recuperare le informazioni del contatto."; +$a->strings["Couldn't fetch friends for contact."] = "Non è stato possibile recuperare gli amici del contatto."; +$a->strings["Done"] = "Fatto"; +$a->strings["success"] = "successo"; +$a->strings["failed"] = "fallito"; +$a->strings["Keep this window open until done."] = "Tieni questa finestra aperta fino a che ha finito."; +$a->strings["Not Extended"] = "Not Extended"; $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"; @@ -1045,113 +1050,66 @@ $a->strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia $a->strings["Done Editing"] = "Finito"; $a->strings["Image uploaded successfully."] = "Immagine caricata con successo."; $a->strings["Image upload failed."] = "Caricamento immagine fallito."; +$a->strings["Permission denied"] = "Permesso negato"; +$a->strings["Invalid profile identifier."] = "Identificativo del profilo non valido."; +$a->strings["Profile Visibility Editor"] = "Modifica visibilità del profilo"; +$a->strings["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo."; +$a->strings["Visible To"] = "Visibile a"; +$a->strings["All Contacts (with secure profile access)"] = "Tutti i contatti (con profilo ad accesso sicuro)"; $a->strings["Account approved."] = "Account approvato."; $a->strings["Registration revoked for %s"] = "Registrazione revocata per %s"; $a->strings["Please login."] = "Accedi."; -$a->strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido."; -$a->strings["Discard"] = "Scarta"; -$a->strings["Ignore"] = "Ignora"; -$a->strings["Network Notifications"] = "Notifiche dalla rete"; -$a->strings["Personal Notifications"] = "Notifiche personali"; -$a->strings["Home Notifications"] = "Notifiche bacheca"; -$a->strings["Show Ignored Requests"] = "Mostra richieste ignorate"; -$a->strings["Hide Ignored Requests"] = "Nascondi richieste ignorate"; -$a->strings["Notification type: "] = "Tipo di notifica: "; -$a->strings["suggested by %s"] = "suggerito da %s"; -$a->strings["Hide this contact from others"] = "Nascondi questo contatto agli altri"; -$a->strings["Post a new friend activity"] = "Invia una attività \"è ora amico con\""; -$a->strings["if applicable"] = "se applicabile"; -$a->strings["Approve"] = "Approva"; -$a->strings["Claims to be known to you: "] = "Dice di conoscerti: "; -$a->strings["yes"] = "si"; -$a->strings["no"] = "no"; -$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Fan/Admirer\" means that you allow to read but you do not want to read theirs. Approve as: "] = "La connessione dovrà essere bidirezionale o no? \"Amici\" implica che tu permetti al contatto di leggere i tuoi post e tu leggerai i suoi. \"Fan/Ammiratore\" significa che permetti al contatto di leggere i tuoi posto ma tu non vuoi leggere i suoi. Approva come:"; -$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Sharer\" means that you allow to read but you do not want to read theirs. Approve as: "] = "La connessione dovrà essere bidirezionale o no? \"Amici\" implica che tu permetti al contatto di leggere i tuoi post e tu leggerai i suoi. \"Condivisore\" significa che permetti al contatto di leggere i tuoi posto ma tu non vuoi leggere i suoi. Approva come:"; -$a->strings["Friend"] = "Amico"; -$a->strings["Sharer"] = "Condivisore"; -$a->strings["Fan/Admirer"] = "Fan/Ammiratore"; -$a->strings["Profile URL"] = "URL Profilo"; -$a->strings["No introductions."] = "Nessuna presentazione."; -$a->strings["Show unread"] = "Mostra non letti"; -$a->strings["Show all"] = "Mostra tutti"; -$a->strings["No more %s notifications."] = "Nessun'altra notifica %s."; -$a->strings["Profile not found."] = "Profilo non trovato."; -$a->strings["Profile deleted."] = "Profilo eliminato."; -$a->strings["Profile-"] = "Profilo-"; -$a->strings["New profile created."] = "Il nuovo profilo è stato creato."; -$a->strings["Profile unavailable to clone."] = "Impossibile duplicare il profilo."; -$a->strings["Profile Name is required."] = "Il nome profilo è obbligatorio ."; -$a->strings["Marital Status"] = "Stato civile"; -$a->strings["Romantic Partner"] = "Partner romantico"; -$a->strings["Work/Employment"] = "Lavoro/Impiego"; -$a->strings["Religion"] = "Religione"; -$a->strings["Political Views"] = "Orientamento Politico"; -$a->strings["Gender"] = "Sesso"; -$a->strings["Sexual Preference"] = "Preferenza sessuale"; -$a->strings["XMPP"] = "XMPP"; -$a->strings["Homepage"] = "Homepage"; -$a->strings["Interests"] = "Interessi"; -$a->strings["Address"] = "Indirizzo"; -$a->strings["Location"] = "Posizione"; -$a->strings["Profile updated."] = "Profilo aggiornato."; -$a->strings[" and "] = "e "; -$a->strings["public profile"] = "profilo pubblico"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiato %2\$s in “%3\$s”"; -$a->strings[" - Visit %1\$s's %2\$s"] = "- Visita %2\$s di %1\$s"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha un %2\$s aggiornato. Ha cambiato %3\$s"; -$a->strings["Hide contacts and friends:"] = "Nascondi contatti:"; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?"; -$a->strings["Show more profile fields:"] = "Mostra più informazioni di profilo:"; -$a->strings["Profile Actions"] = "Azioni Profilo"; -$a->strings["Edit Profile Details"] = "Modifica i dettagli del profilo"; -$a->strings["Change Profile Photo"] = "Cambia la foto del profilo"; -$a->strings["View this profile"] = "Visualizza questo profilo"; -$a->strings["Create a new profile using these settings"] = "Crea un nuovo profilo usando queste impostazioni"; -$a->strings["Clone this profile"] = "Clona questo profilo"; -$a->strings["Delete this profile"] = "Elimina questo profilo"; -$a->strings["Basic information"] = "Informazioni di base"; -$a->strings["Profile picture"] = "Immagine del profilo"; -$a->strings["Preferences"] = "Preferenze"; -$a->strings["Status information"] = "Informazioni stato"; -$a->strings["Additional information"] = "Informazioni aggiuntive"; -$a->strings["Relation"] = "Relazione"; -$a->strings["Your Gender:"] = "Il tuo sesso:"; -$a->strings[" Marital Status:"] = " Stato sentimentale:"; -$a->strings["Example: fishing photography software"] = "Esempio: pesca fotografia programmazione"; -$a->strings["Profile Name:"] = "Nome del profilo:"; -$a->strings["Required"] = "Richiesto"; -$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Questo è il tuo profilo publico.
Potrebbe essere visto da chiunque attraverso internet."; -$a->strings["Your Full Name:"] = "Il tuo nome completo:"; -$a->strings["Title/Description:"] = "Breve descrizione (es. titolo, posizione, altro):"; -$a->strings["Street Address:"] = "Indirizzo (via/piazza):"; -$a->strings["Locality/City:"] = "Località:"; -$a->strings["Region/State:"] = "Regione/Stato:"; -$a->strings["Postal/Zip Code:"] = "CAP:"; -$a->strings["Country:"] = "Nazione:"; -$a->strings["Who: (if applicable)"] = "Con chi: (se possibile)"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Esempio: cathy123, Cathy Williams, cathy@example.com"; -$a->strings["Since [date]:"] = "Dal [data]:"; -$a->strings["Tell us about yourself..."] = "Raccontaci di te..."; -$a->strings["XMPP (Jabber) address:"] = "Indirizzo XMPP (Jabber):"; -$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "L'indirizzo XMPP verrà propagato ai tuoi contatti così che possano seguirti."; -$a->strings["Homepage URL:"] = "Homepage:"; -$a->strings["Religious Views:"] = "Orientamento religioso:"; -$a->strings["Public Keywords:"] = "Parole chiave visibili a tutti:"; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)"; -$a->strings["Private Keywords:"] = "Parole chiave private:"; -$a->strings["(Used for searching profiles, never shown to others)"] = "(Usato per cercare tra i profili, non è mai visibile agli altri)"; -$a->strings["Musical interests"] = "Interessi musicali"; -$a->strings["Books, literature"] = "Libri, letteratura"; -$a->strings["Television"] = "Televisione"; -$a->strings["Film/dance/culture/entertainment"] = "Film/danza/cultura/intrattenimento"; -$a->strings["Hobbies/Interests"] = "Hobby/interessi"; -$a->strings["Love/romance"] = "Amore"; -$a->strings["Work/employment"] = "Lavoro/impiego"; -$a->strings["School/education"] = "Scuola/educazione"; -$a->strings["Contact information and Social Networks"] = "Informazioni su contatti e social network"; -$a->strings["Edit/Manage Profiles"] = "Modifica / Gestisci profili"; -$a->strings["No friends to display."] = "Nessun amico da visualizzare."; -$a->strings["Access to this profile has been restricted."] = "L'accesso a questo profilo è stato limitato."; +$a->strings["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["Resubscribing to OStatus contacts"] = "Risottoscrivi i contatti OStatus"; +$a->strings["Error"] = "Errore"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s"; +$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["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["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."; +$a->strings["Import"] = "Importa"; +$a->strings["Move account"] = "Muovi account"; +$a->strings["You can import an account from another Friendica server."] = "Puoi importare un account da un altro server Friendica."; +$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (GNU Social/Statusnet) o da Diaspora"; +$a->strings["Account file"] = "File account"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\""; +$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"; +$a->strings["No contacts."] = "Nessun contatto."; +$a->strings["Access denied."] = "Accesso negato."; +$a->strings["Invalid request."] = "Richiesta non valida."; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Mi spiace, forse il file che stai caricando è più grosso di quanto la configurazione di PHP permetta"; +$a->strings["Or - did you try to upload an empty file?"] = "O.. non avrai provato a caricare un file vuoto?"; +$a->strings["File exceeds size limit of %s"] = "Il file supera la dimensione massima di %s"; +$a->strings["File upload failed."] = "Caricamento del file non riuscito."; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Numero giornaliero di messaggi per %s superato. Invio fallito."; +$a->strings["No recipient selected."] = "Nessun destinatario selezionato."; +$a->strings["Unable to check your home location."] = "Impossibile controllare la tua posizione di origine."; +$a->strings["Message could not be sent."] = "Il messaggio non può essere inviato."; +$a->strings["Message collection failure."] = "Errore recuperando il messaggio."; +$a->strings["Message sent."] = "Messaggio inviato."; +$a->strings["No recipient."] = "Nessun destinatario."; +$a->strings["Send Private Message"] = "Invia un messaggio privato"; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti."; +$a->strings["To:"] = "A:"; +$a->strings["Subject:"] = "Oggetto:"; +$a->strings["Source (bbcode) text:"] = "Testo sorgente (bbcode):"; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Testo sorgente (da Diaspora) da convertire in BBcode:"; +$a->strings["Source input: "] = "Sorgente:"; +$a->strings["bb2html (raw HTML): "] = "bb2html (HTML grezzo):"; +$a->strings["bb2html: "] = "bb2html:"; +$a->strings["bb2html2bb: "] = "bb2html2bb: "; +$a->strings["bb2md: "] = "bb2md: "; +$a->strings["bb2md2html: "] = "bb2md2html: "; +$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; +$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; +$a->strings["Source input (Diaspora format): "] = "Sorgente (formato Diaspora):"; +$a->strings["diaspora2bb: "] = "diaspora2bb: "; $a->strings["View"] = "Mostra"; $a->strings["Previous"] = "Precedente"; $a->strings["Next"] = "Successivo"; @@ -1160,39 +1118,153 @@ $a->strings["User not found"] = "Utente non trovato"; $a->strings["This calendar format is not supported"] = "Questo formato di calendario non è supportato"; $a->strings["No exportable data found"] = "Nessun dato esportabile trovato"; $a->strings["calendar"] = "calendario"; -$a->strings["No contacts in common."] = "Nessun contatto in comune."; -$a->strings["Common Friends"] = "Amici in comune"; $a->strings["Not available."] = "Non disponibile."; -$a->strings["Global Directory"] = "Elenco globale"; -$a->strings["Find on this site"] = "Cerca nel sito"; -$a->strings["Results for:"] = "Risultati per:"; -$a->strings["Site Directory"] = "Elenco del sito"; -$a->strings["No entries (some entries may be hidden)."] = "Nessuna voce (qualche voce potrebbe essere nascosta)."; +$a->strings["No results."] = "Nessun risultato."; +$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 può accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e già approvata."; +$a->strings["Response from remote site was not understood."] = "Errore di comunicazione con l'altro sito."; +$a->strings["Unexpected response from remote site: "] = "La risposta dell'altro sito non può essere gestita: "; +$a->strings["Confirmation completed successfully."] = "Conferma completata con successo."; +$a->strings["Remote site reported: "] = "Il sito remoto riporta: "; +$a->strings["Temporary failure. Please wait and try again."] = "Problema temporaneo. Attendi e riprova."; +$a->strings["Introduction failed or was revoked."] = "La presentazione ha generato un errore o è stata revocata."; +$a->strings["Unable to set contact photo."] = "Impossibile impostare la foto del contatto."; +$a->strings["No user record found for '%s' "] = "Nessun utente trovato '%s'"; +$a->strings["Our site encryption key is apparently messed up."] = "La nostra chiave di criptazione del sito sembra essere corrotta."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo."; +$a->strings["Contact record was not found for you on our site."] = "Il contatto non è stato trovato sul nostro sito."; +$a->strings["Site public key not available in contact record for URL %s."] = "La chiave pubblica del sito non è disponibile per l'URL %s"; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare."; +$a->strings["Unable to set your contact credentials on our system."] = "Impossibile impostare le credenziali del tuo contatto sul nostro sistema."; +$a->strings["Unable to update your contact profile details on our system"] = "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s si è unito a %2\$s"; +$a->strings["This introduction has already been accepted."] = "Questa presentazione è già stata accettata."; +$a->strings["Profile location is not valid or does not contain profile information."] = "L'indirizzo del profilo non è valido o non contiene un profilo."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario."; +$a->strings["Warning: profile location has no profile photo."] = "Attenzione: l'indirizzo del profilo non ha una foto."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d parametro richiesto non è stato trovato all'indirizzo dato", + 1 => "%d parametri richiesti non sono stati trovati all'indirizzo dato", +); +$a->strings["Introduction complete."] = "Presentazione completa."; +$a->strings["Unrecoverable protocol error."] = "Errore di comunicazione."; +$a->strings["Profile unavailable."] = "Profilo non disponibile."; +$a->strings["%s has received too many connection requests today."] = "%s ha ricevuto troppe richieste di connessione per oggi."; +$a->strings["Spam protection measures have been invoked."] = "Sono state attivate le misure di protezione contro lo spam."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Gli amici sono pregati di riprovare tra 24 ore."; +$a->strings["Invalid locator"] = "Indirizzo non valido"; +$a->strings["Invalid email address."] = "Indirizzo email non valido."; +$a->strings["This account has not been configured for email. Request failed."] = "Questo account non è stato configurato per l'email. Richiesta fallita."; +$a->strings["You have already introduced yourself here."] = "Ti sei già presentato qui."; +$a->strings["Apparently you are already friends with %s."] = "Pare che tu e %s siate già amici."; +$a->strings["Invalid profile URL."] = "Indirizzo profilo non valido."; +$a->strings["Your introduction has been sent."] = "La tua presentazione è stata inviata."; +$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "La richiesta di connessione remota non può essere effettuata per la tua rete. Invia la richiesta direttamente sul nostro sistema."; +$a->strings["Please login to confirm introduction."] = "Accedi per confermare la presentazione."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo."; +$a->strings["Confirm"] = "Conferma"; +$a->strings["Hide this contact"] = "Nascondi questo contatto"; +$a->strings["Welcome home %s."] = "Bentornato a casa %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Conferma la tua richiesta di connessione con %s."; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Se non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi"; +$a->strings["Friend/Connection Request"] = "Richieste di amicizia/connessione"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Please answer the following:"] = "Rispondi:"; +$a->strings["Does %s know you?"] = "%s ti conosce?"; +$a->strings["Add a personal note:"] = "Aggiungi una nota personale:"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora."; +$a->strings["Your Identity Address:"] = "L'indirizzo della tua identità:"; +$a->strings["Submit Request"] = "Invia richiesta"; $a->strings["People Search - %s"] = "Cerca persone - %s"; $a->strings["Forum Search - %s"] = "Ricerca Forum - %s"; -$a->strings["No matches"] = "Nessun risultato"; -$a->strings["Item has been removed."] = "L'oggetto è stato rimosso."; $a->strings["Event can not end before it has started."] = "Un evento non può finire prima di iniziare."; $a->strings["Event title and start time are required."] = "Titolo e ora di inizio dell'evento sono richiesti."; $a->strings["Create New Event"] = "Crea un nuovo evento"; $a->strings["Event details"] = "Dettagli dell'evento"; $a->strings["Starting date and Title are required."] = "La data di inizio e il titolo sono richiesti."; $a->strings["Event Starts:"] = "L'evento inizia:"; +$a->strings["Required"] = "Richiesto"; $a->strings["Finish date/time is not known or not relevant"] = "La data/ora di fine non è definita"; $a->strings["Event Finishes:"] = "L'evento finisce:"; $a->strings["Adjust for viewer timezone"] = "Visualizza con il fuso orario di chi legge"; $a->strings["Description:"] = "Descrizione:"; $a->strings["Title:"] = "Titolo:"; $a->strings["Share this event"] = "Condividi questo evento"; -$a->strings["System down for maintenance"] = "Sistema in manutenzione"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito."; -$a->strings["is interested in:"] = "è interessato a:"; -$a->strings["Profile Match"] = "Profili corrispondenti"; -$a->strings["Tips for New Members"] = "Consigli per i Nuovi Utenti"; -$a->strings["Do you really want to delete this suggestion?"] = "Vuoi veramente cancellare questo suggerimento?"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore."; -$a->strings["Ignore/Hide"] = "Ignora / Nascondi"; -$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"; +$a->strings["Failed to remove event"] = "Rimozione evento fallita."; +$a->strings["Event removed"] = "Evento rimosso"; +$a->strings["You already added this contact."] = "Hai già aggiunto questo contatto."; +$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Il supporto Diaspora non è abilitato. Il contatto non può essere aggiunto."; +$a->strings["OStatus support is disabled. Contact can't be added."] = "Il supporto OStatus non è abilitato. Il contatto non può essere aggiunto."; +$a->strings["The network type couldn't be detected. Contact can't be added."] = "Non è possibile rilevare il tipo di rete. Il contatto non può essere aggiunto."; +$a->strings["Contact added"] = "Contatto aggiunto"; +$a->strings["This is Friendica, version"] = "Questo è Friendica, versione"; +$a->strings["running at web location"] = "in esecuzione all'indirizzo web"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Visita Friendica.com per saperne di più sul progetto Friendica."; +$a->strings["Bug reports and issues: please visit"] = "Segnalazioni di bug e problemi: visita"; +$a->strings["the bugtracker at github"] = "il bugtracker su github"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com"; +$a->strings["Installed plugins/addons/apps:"] = "Plugin/componenti aggiuntivi/applicazioni installate"; +$a->strings["No installed plugins/addons/apps"] = "Nessun plugin/componente aggiuntivo/applicazione installata"; +$a->strings["On this server the following remote servers are blocked."] = "In questo server i seguenti server remoti sono bloccati."; +$a->strings["Reason for the block"] = "Motivazione del blocco"; +$a->strings["Group created."] = "Gruppo creato."; +$a->strings["Could not create group."] = "Impossibile creare il gruppo."; +$a->strings["Group not found."] = "Gruppo non trovato."; +$a->strings["Group name changed."] = "Il nome del gruppo è cambiato."; +$a->strings["Save Group"] = "Salva gruppo"; +$a->strings["Create a group of contacts/friends."] = "Crea un gruppo di amici/contatti."; +$a->strings["Group removed."] = "Gruppo rimosso."; +$a->strings["Unable to remove group."] = "Impossibile rimuovere il gruppo."; +$a->strings["Delete Group"] = "Elimina Gruppo"; +$a->strings["Group Editor"] = "Modifica gruppo"; +$a->strings["Edit Group Name"] = "Modifica Nome Gruppo"; +$a->strings["Members"] = "Membri"; +$a->strings["Remove Contact"] = "Rimuovi Contatto"; +$a->strings["Add Contact"] = "Aggiungi Contatto"; +$a->strings["Manage Identities and/or Pages"] = "Gestisci identità e/o pagine"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione"; +$a->strings["Select an identity to manage: "] = "Seleziona un'identità da gestire:"; +$a->strings["Unable to locate contact information."] = "Impossibile trovare le informazioni del contatto."; +$a->strings["Do you really want to delete this message?"] = "Vuoi veramente cancellare questo messaggio?"; +$a->strings["Message deleted."] = "Messaggio eliminato."; +$a->strings["Conversation removed."] = "Conversazione rimossa."; +$a->strings["No messages."] = "Nessun messaggio."; +$a->strings["Message not available."] = "Messaggio non disponibile."; +$a->strings["Delete message"] = "Elimina il messaggio"; +$a->strings["Delete conversation"] = "Elimina la conversazione"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente."; +$a->strings["Send Reply"] = "Invia la risposta"; +$a->strings["Unknown sender - %s"] = "Mittente sconosciuto - %s"; +$a->strings["You and %s"] = "Tu e %s"; +$a->strings["%s and You"] = "%s e Tu"; +$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i"; +$a->strings["%d message"] = array( + 0 => "%d messaggio", + 1 => "%d messaggi", +); +$a->strings["Remove term"] = "Rimuovi termine"; +$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array( + 0 => "Attenzione: Questo gruppo contiene %s membro da una rete che non permette la ricezione di messaggi non pubblici.", + 1 => "Attenzione: Questo gruppo contiene %s membri da reti che non permettono la ricezione di messaggi non pubblici.", +); +$a->strings["Messages in this group won't be send to these receivers."] = "I messaggi in questo gruppo non saranno inviati ai quei contatti."; +$a->strings["Private messages to this person are at risk of public disclosure."] = "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente."; +$a->strings["Invalid contact."] = "Contatto non valido."; +$a->strings["Commented Order"] = "Ordina per commento"; +$a->strings["Sort by Comment Date"] = "Ordina per data commento"; +$a->strings["Posted Order"] = "Ordina per invio"; +$a->strings["Sort by Post Date"] = "Ordina per data messaggio"; +$a->strings["Posts that mention or involve you"] = "Messaggi che ti citano o coinvolgono"; +$a->strings["New"] = "Nuovo"; +$a->strings["Activity Stream - by date"] = "Activity Stream - per data"; +$a->strings["Shared Links"] = "Links condivisi"; +$a->strings["Interesting Links"] = "Link Interessanti"; +$a->strings["Starred"] = "Preferiti"; +$a->strings["Favourite Posts"] = "Messaggi preferiti"; +$a->strings["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["Recent Photos"] = "Foto recenti"; $a->strings["Upload New Photos"] = "Carica nuove foto"; $a->strings["everybody"] = "tutti"; @@ -1239,6 +1311,81 @@ $a->strings["Private photo"] = "Foto privata"; $a->strings["Public photo"] = "Foto pubblica"; $a->strings["Map"] = "Mappa"; $a->strings["View Album"] = "Sfoglia l'album"; +$a->strings["Only logged in users are permitted to perform a probing."] = "Solo agli utenti loggati è permesso effettuare un probe."; +$a->strings["Tips for New Members"] = "Consigli per i Nuovi Utenti"; +$a->strings["Profile deleted."] = "Profilo eliminato."; +$a->strings["Profile-"] = "Profilo-"; +$a->strings["New profile created."] = "Il nuovo profilo è stato creato."; +$a->strings["Profile unavailable to clone."] = "Impossibile duplicare il profilo."; +$a->strings["Profile Name is required."] = "Il nome profilo è obbligatorio ."; +$a->strings["Marital Status"] = "Stato civile"; +$a->strings["Romantic Partner"] = "Partner romantico"; +$a->strings["Work/Employment"] = "Lavoro/Impiego"; +$a->strings["Religion"] = "Religione"; +$a->strings["Political Views"] = "Orientamento Politico"; +$a->strings["Gender"] = "Sesso"; +$a->strings["Sexual Preference"] = "Preferenza sessuale"; +$a->strings["XMPP"] = "XMPP"; +$a->strings["Homepage"] = "Homepage"; +$a->strings["Interests"] = "Interessi"; +$a->strings["Address"] = "Indirizzo"; +$a->strings["Location"] = "Posizione"; +$a->strings["Profile updated."] = "Profilo aggiornato."; +$a->strings[" and "] = "e "; +$a->strings["public profile"] = "profilo pubblico"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiato %2\$s in “%3\$s”"; +$a->strings[" - Visit %1\$s's %2\$s"] = "- Visita %2\$s di %1\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha un %2\$s aggiornato. Ha cambiato %3\$s"; +$a->strings["Hide contacts and friends:"] = "Nascondi contatti:"; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?"; +$a->strings["Show more profile fields:"] = "Mostra più informazioni di profilo:"; +$a->strings["Profile Actions"] = "Azioni Profilo"; +$a->strings["Edit Profile Details"] = "Modifica i dettagli del profilo"; +$a->strings["Change Profile Photo"] = "Cambia la foto del profilo"; +$a->strings["View this profile"] = "Visualizza questo profilo"; +$a->strings["Create a new profile using these settings"] = "Crea un nuovo profilo usando queste impostazioni"; +$a->strings["Clone this profile"] = "Clona questo profilo"; +$a->strings["Delete this profile"] = "Elimina questo profilo"; +$a->strings["Basic information"] = "Informazioni di base"; +$a->strings["Profile picture"] = "Immagine del profilo"; +$a->strings["Preferences"] = "Preferenze"; +$a->strings["Status information"] = "Informazioni stato"; +$a->strings["Additional information"] = "Informazioni aggiuntive"; +$a->strings["Relation"] = "Relazione"; +$a->strings["Your Gender:"] = "Il tuo sesso:"; +$a->strings[" Marital Status:"] = " Stato sentimentale:"; +$a->strings["Example: fishing photography software"] = "Esempio: pesca fotografia programmazione"; +$a->strings["Profile Name:"] = "Nome del profilo:"; +$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Questo è il tuo profilo publico.
Potrebbe essere visto da chiunque attraverso internet."; +$a->strings["Your Full Name:"] = "Il tuo nome completo:"; +$a->strings["Title/Description:"] = "Breve descrizione (es. titolo, posizione, altro):"; +$a->strings["Street Address:"] = "Indirizzo (via/piazza):"; +$a->strings["Locality/City:"] = "Località:"; +$a->strings["Region/State:"] = "Regione/Stato:"; +$a->strings["Postal/Zip Code:"] = "CAP:"; +$a->strings["Country:"] = "Nazione:"; +$a->strings["Who: (if applicable)"] = "Con chi: (se possibile)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Esempio: cathy123, Cathy Williams, cathy@example.com"; +$a->strings["Since [date]:"] = "Dal [data]:"; +$a->strings["Tell us about yourself..."] = "Raccontaci di te..."; +$a->strings["XMPP (Jabber) address:"] = "Indirizzo XMPP (Jabber):"; +$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "L'indirizzo XMPP verrà propagato ai tuoi contatti così che possano seguirti."; +$a->strings["Homepage URL:"] = "Homepage:"; +$a->strings["Religious Views:"] = "Orientamento religioso:"; +$a->strings["Public Keywords:"] = "Parole chiave visibili a tutti:"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)"; +$a->strings["Private Keywords:"] = "Parole chiave private:"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Usato per cercare tra i profili, non è mai visibile agli altri)"; +$a->strings["Musical interests"] = "Interessi musicali"; +$a->strings["Books, literature"] = "Libri, letteratura"; +$a->strings["Television"] = "Televisione"; +$a->strings["Film/dance/culture/entertainment"] = "Film/danza/cultura/intrattenimento"; +$a->strings["Hobbies/Interests"] = "Hobby/interessi"; +$a->strings["Love/romance"] = "Amore"; +$a->strings["Work/employment"] = "Lavoro/impiego"; +$a->strings["School/education"] = "Scuola/educazione"; +$a->strings["Contact information and Social Networks"] = "Informazioni su contatti e social network"; +$a->strings["Edit/Manage Profiles"] = "Modifica / Gestisci profili"; $a->strings["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."; @@ -1261,15 +1408,19 @@ $a->strings["Confirm:"] = "Conferma:"; $a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà 'soprannome@\$sitename'."; $a->strings["Choose a nickname: "] = "Scegli un nome utente: "; $a->strings["Import your profile to this friendica instance"] = "Importa il tuo profilo in questo server friendica"; +$a->strings["Only logged in users are permitted to perform a search."] = "Solo agli utenti autenticati è permesso eseguire ricerche."; +$a->strings["Too Many Requests"] = "Troppe richieste"; +$a->strings["Only one search per minute is permitted for not logged in users."] = "Solo una ricerca al minuto è permessa agli utenti non autenticati."; +$a->strings["Items tagged with: %s"] = "Elementi taggati con: %s"; $a->strings["Account"] = "Account"; $a->strings["Additional features"] = "Funzionalità aggiuntive"; $a->strings["Display"] = "Visualizzazione"; $a->strings["Social Networks"] = "Social Networks"; $a->strings["Plugins"] = "Plugin"; $a->strings["Connected apps"] = "Applicazioni collegate"; +$a->strings["Export personal data"] = "Esporta dati personali"; $a->strings["Remove account"] = "Rimuovi account"; $a->strings["Missing some important data!"] = "Mancano alcuni dati importanti!"; -$a->strings["Update"] = "Aggiorna"; $a->strings["Failed to connect with email account using the settings provided."] = "Impossibile collegarsi all'account email con i parametri forniti."; $a->strings["Email settings updated."] = "Impostazioni e-mail aggiornate."; $a->strings["Features updated"] = "Funzionalità aggiornate"; @@ -1377,6 +1528,7 @@ $a->strings["Private forum - approved members only"] = "Forum privato - solo mem $a->strings["OpenID:"] = "OpenID:"; $a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opzionale) Consente di loggarti in questo account con questo OpenID"; $a->strings["Publish your default profile in your local site directory?"] = "Pubblica il tuo profilo predefinito nell'elenco locale del sito"; +$a->strings["Your profile may be visible in public."] = "Il tuo profilo potrebbe essere visibile pubblicamente."; $a->strings["Publish your default profile in the global social directory?"] = "Pubblica il tuo profilo predefinito nell'elenco sociale globale"; $a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Nascondi la lista dei tuoi contatti/amici dai visitatori del tuo profilo predefinito"; $a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Se abilitato, l'invio di messaggi pubblici verso Diaspora e altri network non sarà possibile"; @@ -1440,22 +1592,131 @@ $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"] = "Invia nuovamente il messaggio di trasloco ai contatti"; +$a->strings["Export account"] = "Esporta account"; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server."; +$a->strings["Export all"] = "Esporta tutto"; +$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Può diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)"; $a->strings["Do you really want to delete this video?"] = "Vuoi veramente cancellare questo video?"; $a->strings["Delete Video"] = "Rimuovi video"; $a->strings["No videos selected"] = "Nessun video selezionato"; $a->strings["Recent Videos"] = "Video Recenti"; $a->strings["Upload New Videos"] = "Carica Nuovo Video"; -$a->strings["Invalid request."] = "Richiesta non valida."; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Mi spiace, forse il file che stai caricando è più grosso di quanto la configurazione di PHP permetta"; -$a->strings["Or - did you try to upload an empty file?"] = "O.. non avrai provato a caricare un file vuoto?"; -$a->strings["File exceeds size limit of %s"] = "Il file supera la dimensione massima di %s"; -$a->strings["File upload failed."] = "Caricamento del file non riuscito."; +$a->strings["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["For security reasons the password must not be empty"] = "Per motivi di sicurezza la password non puo' essere vuota."; +$a->strings["Database Name"] = "Nome database"; +$a->strings["Site administrator email address"] = "Indirizzo email dell'amministratore del sito"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web."; +$a->strings["Please select a default timezone for your website"] = "Seleziona il fuso orario predefinito per il tuo sito web"; +$a->strings["Site settings"] = "Impostazioni sito"; +$a->strings["System Language:"] = "Lingua di Sistema:"; +$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Imposta la lingua di default per l'interfaccia e l'invio delle email."; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web"; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run the background processing. See 'Setup the poller'"] = "Se non hai la versione a riga di comando di PHP installata sul tuo server, non sarai in grado di eseguire i processi in background. 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["PDO or MySQLi PHP module"] = "modulo PHP PDO o MySQLi"; +$a->strings["mb_string PHP module"] = "modulo PHP mb_string"; +$a->strings["XML PHP module"] = "Modulo PHP XML"; +$a->strings["iconv module"] = "modulo iconv"; +$a->strings["Apache mod_rewrite module"] = "Modulo mod_rewrite di Apache"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato"; +$a->strings["Error: libCURL PHP module required but not installed."] = "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato."; +$a->strings["Error: openssl PHP module required but not installed."] = "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato."; +$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "Errore: uno dei due moduli PHP PDO o MySQLi è richiesto ma non installato."; +$a->strings["Error: The MySQL driver for PDO is not installed."] = "Errore: il driver MySQL per PDO non è 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: iconv PHP module required but not installed."] = "Errore: il modulo PHP iconv è richiesto ma non installato."; +$a->strings["Error, XML PHP module required but not installed."] = "Errore, il modulo PHP XML è richiesto ma non installato."; +$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo."; +$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi."; +$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Alla fine di questa procedura, di daremo un testo da salvare in un file chiamato .htconfig.php nella tua cartella principale di Friendica"; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"INSTALL.txt\" per le istruzioni."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php è scrivibile"; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica usa il motore di template Smarty3 per renderizzare le sue pagine web. Smarty3 compila i template in PHP per velocizzare il rendering."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Per salvare questi template compilati, il server werb ha bisogno dell'accesso in scrittura alla cartella view/smarty3/ nella cartella principale dei Friendica."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Per favore, controlla che l'utente con cui il tuo server web gira (es www-data) ha accesso in scrittura a questa cartella."; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene."; +$a->strings["view/smarty3 is writable"] = "view/smarty3 è scrivibile"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La riscrittura degli url in .htaccess non funziona. Controlla la configurazione del tuo server."; +$a->strings["Url rewrite is working"] = "La riscrittura degli url funziona"; +$a->strings["ImageMagick PHP extension is not installed"] = "L'estensione PHP ImageMagick non è installata"; +$a->strings["ImageMagick PHP extension is installed"] = "L'estensione PHP ImageMagick è installata"; +$a->strings["ImageMagick supports GIF"] = "ImageMagick supporta i GIF"; +$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Il file di configurazione del database \".htconfig.php\" non può essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito."; +$a->strings["

What next

"] = "

Cosa fare ora

"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller."; +$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; +$a->strings["Empty post discarded."] = "Messaggio vuoto scartato."; +$a->strings["System error. Post not saved."] = "Errore di sistema. Messaggio non salvato."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica."; +$a->strings["You may visit them online at %s"] = "Puoi visitarli online su %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi."; +$a->strings["%s posted an update."] = "%s ha inviato un aggiornamento."; +$a->strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido."; +$a->strings["Discard"] = "Scarta"; +$a->strings["Network Notifications"] = "Notifiche dalla rete"; +$a->strings["Personal Notifications"] = "Notifiche personali"; +$a->strings["Home Notifications"] = "Notifiche bacheca"; +$a->strings["Show Ignored Requests"] = "Mostra richieste ignorate"; +$a->strings["Hide Ignored Requests"] = "Nascondi richieste ignorate"; +$a->strings["Notification type: "] = "Tipo di notifica: "; +$a->strings["suggested by %s"] = "suggerito da %s"; +$a->strings["Post a new friend activity"] = "Invia una attività \"è ora amico con\""; +$a->strings["if applicable"] = "se applicabile"; +$a->strings["Approve"] = "Approva"; +$a->strings["Claims to be known to you: "] = "Dice di conoscerti: "; +$a->strings["yes"] = "si"; +$a->strings["no"] = "no"; +$a->strings["Shall your connection be bidirectional or not?"] = "La connessione dovrà essere bidirezionale o no?"; +$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "Accettando %s come amico permette a %s di seguire i tuoi post, e a te di riceverne gli aggiornamenti."; +$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Accentrando %s come abbonato gli permette di abbonarsi ai tuoi messaggi, ma tu non riceverai aggiornamenti da lui."; +$a->strings["Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Accentando %s come condivisore, gli permetti di abbonarsi ai tuoi messaggi, ma tu non riceverai nessun aggiornamento da loro."; +$a->strings["Friend"] = "Amico"; +$a->strings["Sharer"] = "Condivisore"; +$a->strings["Subscriber"] = "Abbonato"; +$a->strings["No introductions."] = "Nessuna presentazione."; +$a->strings["Show unread"] = "Mostra non letti"; +$a->strings["Show all"] = "Mostra tutti"; +$a->strings["No more %s notifications."] = "Nessun'altra notifica %s."; +$a->strings["{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["Theme settings updated."] = "Impostazioni del tema aggiornate."; $a->strings["Site"] = "Sito"; $a->strings["Users"] = "Utenti"; $a->strings["Themes"] = "Temi"; $a->strings["DB updates"] = "Aggiornamenti Database"; $a->strings["Inspect Queue"] = "Ispeziona Coda di invio"; +$a->strings["Server Blocklist"] = "Server Blocklist"; $a->strings["Federation Statistics"] = "Statistiche sulla Federazione"; $a->strings["Logs"] = "Log"; $a->strings["View Logs"] = "Vedi i log"; @@ -1464,10 +1725,27 @@ $a->strings["check webfinger"] = "verifica webfinger"; $a->strings["Plugin Features"] = "Impostazioni Plugins"; $a->strings["diagnostics"] = "diagnostiche"; $a->strings["User registrations waiting for confirmation"] = "Utenti registrati in attesa di conferma"; +$a->strings["The blocked domain"] = "Il dominio bloccato"; +$a->strings["The reason why you blocked this domain."] = "Le ragioni per cui blocchi questo dominio."; +$a->strings["Delete domain"] = "Elimina dominio"; +$a->strings["Check to delete this entry from the blocklist"] = "Seleziona per eliminare questa voce dalla blocklist"; +$a->strings["Administration"] = "Amministrazione"; +$a->strings["This page can be used to define a black list of servers from the federated network that are not allowed to interact with your node. For all entered domains you should also give a reason why you have blocked the remote server."] = "Questa pagina puo' essere usata per definire una black list di server dal network federato a cui nono è permesso interagire col tuo nodo. Per ogni dominio inserito, dovresti anche riportare una ragione per cui hai bloccato il server remoto."; +$a->strings["The list of blocked servers will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily."] = "La lista di server bloccati sarà resa disponibile pubblicamente sulla pagina /friendica, così che i tuoi utenti e le persone che indagano su problemi di comunicazione possano trovarne la ragione facilmente."; +$a->strings["Add new entry to block list"] = "Aggiungi una nuova voce alla blocklist"; +$a->strings["Server Domain"] = "Dominio del Server"; +$a->strings["The domain of the new server to add to the block list. Do not include the protocol."] = "Il dominio del server da aggiungere alla blocklist. Non includere il protocollo."; +$a->strings["Block reason"] = "Ragione blocco"; +$a->strings["Add Entry"] = "Aggiungi Voce"; +$a->strings["Save changes to the blocklist"] = "Salva modifiche alla blocklist"; +$a->strings["Current Entries in the Blocklist"] = "Voci correnti nella blocklist"; +$a->strings["Delete entry from blocklist"] = "Elimina voce dalla blocklist"; +$a->strings["Delete entry from blocklist?"] = "Eliminare la voce dalla blocklist?"; +$a->strings["Server added to blocklist."] = "Server aggiunto alla blocklist."; +$a->strings["Site blocklist updated."] = "Blocklist del sito aggiornata."; $a->strings["unknown"] = "sconosciuto"; $a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = "Questa pagina offre alcuni numeri riguardo la porzione del social network federato di cui il tuo nodo Friendica fa parte. Questi numeri non sono completi ma riflettono esclusivamente la porzione di rete di cui il tuo nodo e' a conoscenza."; $a->strings["The Auto Discovered Contact Directory feature is not enabled, it will improve the data displayed here."] = "La funzione Elenco Contatti Scoperto Automaticamente non è abilitata, migliorerà i dati visualizzati qui."; -$a->strings["Administration"] = "Amministrazione"; $a->strings["Currently this node is aware of %d nodes from the following platforms:"] = "Attualmente questo nodo conosce %d nodi dalle seguenti piattaforme:"; $a->strings["ID"] = "ID"; $a->strings["Recipient Name"] = "Nome Destinatario"; @@ -1475,7 +1753,7 @@ $a->strings["Recipient Profile"] = "Profilo Destinatario"; $a->strings["Created"] = "Creato"; $a->strings["Last Tried"] = "Ultimo Tentativo"; $a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = "Questa pagina elenca il contenuto della coda di invio dei post. Questi sono post la cui consegna è fallita. Verranno inviati nuovamente più tardi ed eventualmente cancellati se la consegna continua a fallire."; -$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the convert_innodb.sql in the /util directory of your Friendica installation.
"] = "Il tuo database sta girando ancora con tabelle MYISAM. Dovresti cambiare il tipo di motore a InnoDB, siccome Friendica userà solo tabelle InnoDB in futuro. Vedi qui per una guida che ti può essere utile per la conversione. Puoi anche usare il file convert_innodb.sql che trovi nella cartella /util della tua installazione di Friendica.
"; +$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the command php include/dbstructure.php toinnodb of your Friendica installation for an automatic conversion.
"] = "Il tuo database contiene ancora tabelle MyISAM. Dovresti cambiare il motore a InnoDB. Siccome Friendica userà esclusivamente InnoDB nelle versioni a venire, dovresti cambiarle! Vedi qui per una guida che puo' essere d'aiuto nel convertire il motore delle tabelle. Puoi anche usare il comando php include/dbstructure.php toinnodb nella tua installazione Friendica per eseguire la conversione automaticamente.
"; $a->strings["You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB."] = "Stai usando una versione di MySQL che non supporta tutte le funzionalità che Friendica usa. Dovresti considerare di utilizzare MariaDB."; $a->strings["Normal Account"] = "Account normale"; $a->strings["Soapbox Account"] = "Account per comunicati e annunci"; @@ -1490,14 +1768,11 @@ $a->strings["Pending registrations"] = "Registrazioni in attesa"; $a->strings["Version"] = "Versione"; $a->strings["Active plugins"] = "Plugin attivi"; $a->strings["Can not parse base url. Must have at least ://"] = "Impossibile analizzare l'url base. Deve avere almeno [schema]://[dominio]"; -$a->strings["RINO2 needs mcrypt php extension to work."] = "RINO2 necessita dell'estensione php mcrypt per funzionare."; $a->strings["Site settings updated."] = "Impostazioni del sito aggiornate."; $a->strings["No community page"] = "Nessuna pagina Comunità"; $a->strings["Public postings from users of this site"] = "Messaggi pubblici dagli utenti di questo sito"; $a->strings["Global community page"] = "Pagina Comunità globale"; -$a->strings["Never"] = "Mai"; $a->strings["At post arrival"] = "All'arrivo di un messaggio"; -$a->strings["Disabled"] = "Disabilitato"; $a->strings["Users, Global Contacts"] = "Utenti, Contatti Globali"; $a->strings["Users, Global Contacts/fallback"] = "Utenti, Contatti Globali/fallback"; $a->strings["One month"] = "Un mese"; @@ -1537,8 +1812,6 @@ $a->strings["SSL link policy"] = "Gestione link SSL"; $a->strings["Determines whether generated links should be forced to use SSL"] = "Determina se i link generati devono essere forzati a usare SSL"; $a->strings["Force SSL"] = "Forza SSL"; $a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Forza tutte le richieste non SSL su SSL - Attenzione: su alcuni sistemi può portare a loop senza fine"; -$a->strings["Old style 'Share'"] = "Ricondivisione vecchio stile"; -$a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Disattiva l'elemento bbcode 'share' con elementi ripetuti"; $a->strings["Hide help entry from navigation menu"] = "Nascondi la voce 'Guida' dal menu di navigazione"; $a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Nasconde la voce per le pagine della guida dal menu di navigazione. E' comunque possibile accedervi richiamando /help direttamente."; $a->strings["Single user instance"] = "Istanza a singolo utente"; @@ -1584,8 +1857,6 @@ $a->strings["OpenID support"] = "Supporto OpenID"; $a->strings["OpenID support for registration and logins."] = "Supporta OpenID per la registrazione e il login"; $a->strings["Fullname check"] = "Controllo nome completo"; $a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Forza gli utenti a registrarsi con uno spazio tra il nome e il cognome in \"Nome completo\", come misura anti spam"; -$a->strings["UTF-8 Regular expressions"] = "Espressioni regolari UTF-8"; -$a->strings["Use PHP UTF8 regular expressions"] = "Usa le espressioni regolari PHP in UTF8"; $a->strings["Community Page Style"] = "Stile pagina Comunità"; $a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "Tipo di pagina Comunità da mostrare. 'Comunità Globale' mostra tutti i messaggi pubblici arrivati su questo server da network aperti distribuiti."; $a->strings["Posts per user on community page"] = "Messaggi per utente nella pagina Comunità"; @@ -1608,14 +1879,12 @@ $a->strings["Proxy user"] = "Utente Proxy"; $a->strings["Proxy URL"] = "URL Proxy"; $a->strings["Network timeout"] = "Timeout rete"; $a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valore in secondi. Imposta a 0 per illimitato (non raccomandato)."; -$a->strings["Delivery interval"] = "Intervallo di invio"; -$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Ritarda il processo di invio in background di n secondi per ridurre il carico di sistema. Raccomandato: 4-5 per host condivisi, 2-3 per VPS. 0-1 per grandi server dedicati."; -$a->strings["Poll interval"] = "Intervallo di poll"; -$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Ritarda il processo di poll in background di n secondi per ridurre il carico di sistema. Se 0, usa l'intervallo di invio."; $a->strings["Maximum Load Average"] = "Massimo carico medio"; $a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Massimo carico di sistema prima che i processi di invio e di poll siano ritardati. Predefinito a 50."; $a->strings["Maximum Load Average (Frontend)"] = "Media Massimo Carico (Frontend)"; $a->strings["Maximum system load before the frontend quits service - default 50."] = "Massimo carico di sistema prima che il frontend fermi il servizio - default 50."; +$a->strings["Minimal Memory"] = "Memoria Minima"; +$a->strings["Minimal free memory in MB for the poller. Needs access to /proc/meminfo - default 0 (deactivated)."] = "Minima memoria libera in MB per il poller. Necessita di avere accesso a /proc/meminfo - default 0 (disabilitato)."; $a->strings["Maximum table size for optimization"] = "Dimensione massima della tabella per l'ottimizzazione"; $a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = "La dimensione massima (in MB) per l'ottimizzazione automatica - default 100 MB. Inserisci -1 per disabilitarlo."; $a->strings["Minimum level of fragmentation"] = "Livello minimo di frammentazione"; @@ -1632,10 +1901,6 @@ $a->strings["Search the local directory"] = "Cerca la directory locale"; $a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = "Cerca nella directory locale invece che nella directory globale. Durante la ricerca a livello locale, ogni ricerca verrà eseguita sulla directory globale in background. Ciò migliora i risultati della ricerca quando la ricerca viene ripetuta."; $a->strings["Publish server information"] = "Pubblica informazioni server"; $a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details."] = "Se abilitata, saranno pubblicati i dati generali del server e i dati di utilizzo. I dati contengono il nome e la versione del server, il numero di utenti con profili pubblici, numero dei posti e dei protocolli e connettori attivati. Per informazioni, vedere the-federation.info ."; -$a->strings["Use MySQL full text engine"] = "Usa il motore MySQL full text"; -$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Attiva il motore full-text. Velocizza la ricerca, ma può cercare solo per quattro o più caratteri."; -$a->strings["Suppress Language"] = "Disattiva lingua"; -$a->strings["Suppress language information in meta information about a posting."] = "Disattiva le informazioni sulla lingua nei meta di un post."; $a->strings["Suppress Tags"] = "Sopprimi Tags"; $a->strings["Suppress showing a list of hashtags at the end of the posting."] = "Non mostra la lista di hashtag in coda al messaggio"; $a->strings["Path to item cache"] = "Percorso cache elementi"; @@ -1644,26 +1909,18 @@ $a->strings["Cache duration in seconds"] = "Durata della cache in secondi"; $a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "Quanto a lungo devono essere mantenuti i file di cache? Il valore predefinito è 86400 secondi (un giorno). Per disabilitare la cache, imposta il valore a -1."; $a->strings["Maximum numbers of comments per post"] = "Numero massimo di commenti per post"; $a->strings["How much comments should be shown for each post? Default value is 100."] = "Quanti commenti devono essere mostrati per ogni post? Default : 100."; -$a->strings["Path for lock file"] = "Percorso al file di lock"; -$a->strings["The lock file is used to avoid multiple pollers at one time. Only define a folder here."] = "Il file di lock è usato per evitare l'avvio di poller multipli allo stesso tempo. Inserisci solo la cartella, qui."; $a->strings["Temp path"] = "Percorso file temporanei"; $a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "Se si dispone di un sistema ristretto in cui il server web non può accedere al percorso temporaneo di sistema, inserire un altro percorso qui."; $a->strings["Base path to installation"] = "Percorso base all'installazione"; $a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "Se il sistema non è in grado di rilevare il percorso corretto per l'installazione, immettere il percorso corretto qui. Questa impostazione deve essere inserita solo se si utilizza un sistema limitato e/o collegamenti simbolici al tuo webroot."; $a->strings["Disable picture proxy"] = "Disabilita il proxy immagini"; $a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "Il proxy immagini aumenta le performance e la privacy. Non dovrebbe essere usato su server con poca banda disponibile."; -$a->strings["Enable old style pager"] = "Abilita la paginatura vecchio stile"; -$a->strings["The old style pager has page numbers but slows down massively the page speed."] = "La paginatura vecchio stile mostra i numeri delle pagine, ma rallenta la velocità di caricamento della pagina."; $a->strings["Only search in tags"] = "Cerca solo nei tag"; $a->strings["On large systems the text search can slow down the system extremely."] = "Su server con molti dati, la ricerca nel testo può estremamente rallentare il sistema."; $a->strings["New base url"] = "Nuovo url base"; $a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = "Cambia l'url base di questo server. Invia il messaggio di trasloco a tutti i contatti DFRN di tutti gli utenti."; $a->strings["RINO Encryption"] = "Crittografia RINO"; $a->strings["Encryption layer between nodes."] = "Crittografia delle comunicazioni tra nodi."; -$a->strings["Embedly API key"] = "Embedly API key"; -$a->strings["Embedly is used to fetch additional data for web pages. This is an optional parameter."] = "Embedly è usato per recuperate informazioni addizionali dalle pagine web. Questo parametro è opzionale."; -$a->strings["Enable 'worker' background processing"] = "Attiva l'elaborazione in background con worker"; -$a->strings["The worker background processing limits the number of parallel background jobs to a maximum number and respects the system load."] = "L'elaborazione in background con worker limita il numero di lavori in background paralleli a un numero massimo e rispetta il carico di sistema."; $a->strings["Maximum number of parallel workers"] = "Massimo numero di lavori in parallelo"; $a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = "Su host condivisi imposta a 2. Su sistemi più grandi, valori fino a 10 vanno bene. Il valore di default è 4."; $a->strings["Don't use 'proc_open' with the worker"] = "Non usare 'proc_open' con il worker"; @@ -1709,8 +1966,6 @@ $a->strings["Request date"] = "Data richiesta"; $a->strings["No registrations."] = "Nessuna registrazione."; $a->strings["Note from the user"] = "Nota dall'utente"; $a->strings["Deny"] = "Nega"; -$a->strings["Block"] = "Blocca"; -$a->strings["Unblock"] = "Sblocca"; $a->strings["Site admin"] = "Amministrazione sito"; $a->strings["Account expired"] = "Account scaduto"; $a->strings["New User"] = "Nuovo Utente"; @@ -1748,260 +2003,14 @@ $a->strings["PHP logging"] = "Log PHP"; $a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = "Per abilitare il log degli errori e degli avvisi di PHP puoi aggiungere le seguenti righe al file .htconfig.php nella tua installazione. La posizione del file impostato in 'error_log' è relativa alla directory principale della tua installazione Friendica e il server web deve avere i permessi di scrittura sul file. Il valore '1' per 'log_errors' e 'display_errors' abilita le opzioni, imposta '0' per disabilitarle."; $a->strings["Lock feature %s"] = "Blocca funzionalità %s"; $a->strings["Manage Additional Features"] = "Gestisci Funzionalità Aggiuntive"; -$a->strings["%d contact edited."] = array( - 0 => "%d contatto modificato.", - 1 => "%d contatti modificati", -); -$a->strings["Could not access contact record."] = "Non è possibile accedere al contatto."; -$a->strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato."; -$a->strings["Contact updated."] = "Contatto aggiornato."; -$a->strings["Failed to update contact record."] = "Errore nell'aggiornamento del contatto."; -$a->strings["Contact has been blocked"] = "Il contatto è stato bloccato"; -$a->strings["Contact has been unblocked"] = "Il contatto è stato sbloccato"; -$a->strings["Contact has been ignored"] = "Il contatto è ignorato"; -$a->strings["Contact has been unignored"] = "Il contatto non è più ignorato"; -$a->strings["Contact has been archived"] = "Il contatto è stato archiviato"; -$a->strings["Contact has been unarchived"] = "Il contatto è stato dearchiviato"; -$a->strings["Drop contact"] = "Cancella contatto"; -$a->strings["Do you really want to delete this contact?"] = "Vuoi veramente cancellare questo contatto?"; -$a->strings["Contact has been removed."] = "Il contatto è stato rimosso."; -$a->strings["You are mutual friends with %s"] = "Sei amico reciproco con %s"; -$a->strings["You are sharing with %s"] = "Stai condividendo con %s"; -$a->strings["%s is sharing with you"] = "%s sta condividendo con te"; -$a->strings["Private communications are not available for this contact."] = "Le comunicazioni private non sono disponibili per questo contatto."; -$a->strings["(Update was successful)"] = "(L'aggiornamento è stato completato)"; -$a->strings["(Update was not successful)"] = "(L'aggiornamento non è stato completato)"; -$a->strings["Suggest friends"] = "Suggerisci amici"; -$a->strings["Network type: %s"] = "Tipo di rete: %s"; -$a->strings["Communications lost with this contact!"] = "Comunicazione con questo contatto persa!"; -$a->strings["Fetch further information for feeds"] = "Recupera maggiori informazioni per i feed"; -$a->strings["Fetch information"] = "Recupera informazioni"; -$a->strings["Fetch information and keywords"] = "Recupera informazioni e parole chiave"; -$a->strings["Contact"] = "Contatto"; -$a->strings["Profile Visibility"] = "Visibilità del profilo"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro."; -$a->strings["Contact Information / Notes"] = "Informazioni / Note sul contatto"; -$a->strings["Edit contact notes"] = "Modifica note contatto"; -$a->strings["Block/Unblock contact"] = "Blocca/Sblocca contatto"; -$a->strings["Ignore contact"] = "Ignora il contatto"; -$a->strings["Repair URL settings"] = "Impostazioni riparazione URL"; -$a->strings["View conversations"] = "Vedi conversazioni"; -$a->strings["Last update:"] = "Ultimo aggiornamento:"; -$a->strings["Update public posts"] = "Aggiorna messaggi pubblici"; -$a->strings["Update now"] = "Aggiorna adesso"; -$a->strings["Unignore"] = "Non ignorare"; -$a->strings["Currently blocked"] = "Bloccato"; -$a->strings["Currently ignored"] = "Ignorato"; -$a->strings["Currently archived"] = "Al momento archiviato"; -$a->strings["Replies/likes to your public posts may still be visible"] = "Risposte ai tuoi post pubblici possono essere comunque visibili"; -$a->strings["Notification for new posts"] = "Notifica per i nuovi messaggi"; -$a->strings["Send a notification of every new post of this contact"] = "Invia una notifica per ogni nuovo messaggio di questo contatto"; -$a->strings["Blacklisted keywords"] = "Parole chiave in blacklist"; -$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Lista separata da virgola di parole chiave che non dovranno essere convertite in hashtag, quando \"Recupera informazioni e parole chiave\" è selezionato"; -$a->strings["Actions"] = "Azioni"; -$a->strings["Contact Settings"] = "Impostazioni Contatto"; -$a->strings["Suggestions"] = "Suggerimenti"; -$a->strings["Suggest potential friends"] = "Suggerisci potenziali amici"; -$a->strings["Show all contacts"] = "Mostra tutti i contatti"; -$a->strings["Unblocked"] = "Sbloccato"; -$a->strings["Only show unblocked contacts"] = "Mostra solo contatti non bloccati"; -$a->strings["Blocked"] = "Bloccato"; -$a->strings["Only show blocked contacts"] = "Mostra solo contatti bloccati"; -$a->strings["Ignored"] = "Ignorato"; -$a->strings["Only show ignored contacts"] = "Mostra solo contatti ignorati"; -$a->strings["Archived"] = "Archiviato"; -$a->strings["Only show archived contacts"] = "Mostra solo contatti archiviati"; -$a->strings["Hidden"] = "Nascosto"; -$a->strings["Only show hidden contacts"] = "Mostra solo contatti nascosti"; -$a->strings["Search your contacts"] = "Cerca nei tuoi contatti"; -$a->strings["Archive"] = "Archivia"; -$a->strings["Unarchive"] = "Dearchivia"; -$a->strings["Batch Actions"] = "Azioni Batch"; -$a->strings["View all contacts"] = "Vedi tutti i contatti"; -$a->strings["View all common friends"] = "Vedi tutti gli amici in comune"; -$a->strings["Advanced Contact Settings"] = "Impostazioni avanzate Contatto"; -$a->strings["Mutual Friendship"] = "Amicizia reciproca"; -$a->strings["is a fan of yours"] = "è un tuo fan"; -$a->strings["you are a fan of"] = "sei un fan di"; -$a->strings["Toggle Blocked status"] = "Inverti stato \"Blocca\""; -$a->strings["Toggle Ignored status"] = "Inverti stato \"Ignora\""; -$a->strings["Toggle Archive status"] = "Inverti stato \"Archiviato\""; -$a->strings["Delete contact"] = "Rimuovi contatto"; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Questo può accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e già approvata."; -$a->strings["Response from remote site was not understood."] = "Errore di comunicazione con l'altro sito."; -$a->strings["Unexpected response from remote site: "] = "La risposta dell'altro sito non può essere gestita: "; -$a->strings["Confirmation completed successfully."] = "Conferma completata con successo."; -$a->strings["Remote site reported: "] = "Il sito remoto riporta: "; -$a->strings["Temporary failure. Please wait and try again."] = "Problema temporaneo. Attendi e riprova."; -$a->strings["Introduction failed or was revoked."] = "La presentazione ha generato un errore o è stata revocata."; -$a->strings["Unable to set contact photo."] = "Impossibile impostare la foto del contatto."; -$a->strings["No user record found for '%s' "] = "Nessun utente trovato '%s'"; -$a->strings["Our site encryption key is apparently messed up."] = "La nostra chiave di criptazione del sito sembra essere corrotta."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo."; -$a->strings["Contact record was not found for you on our site."] = "Il contatto non è stato trovato sul nostro sito."; -$a->strings["Site public key not available in contact record for URL %s."] = "La chiave pubblica del sito non è disponibile per l'URL %s"; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare."; -$a->strings["Unable to set your contact credentials on our system."] = "Impossibile impostare le credenziali del tuo contatto sul nostro sistema."; -$a->strings["Unable to update your contact profile details on our system"] = "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema"; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s si è unito a %2\$s"; -$a->strings["This introduction has already been accepted."] = "Questa presentazione è già stata accettata."; -$a->strings["Profile location is not valid or does not contain profile information."] = "L'indirizzo del profilo non è valido o non contiene un profilo."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario."; -$a->strings["Warning: profile location has no profile photo."] = "Attenzione: l'indirizzo del profilo non ha una foto."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "%d parametro richiesto non è stato trovato all'indirizzo dato", - 1 => "%d parametri richiesti non sono stati trovati all'indirizzo dato", -); -$a->strings["Introduction complete."] = "Presentazione completa."; -$a->strings["Unrecoverable protocol error."] = "Errore di comunicazione."; -$a->strings["Profile unavailable."] = "Profilo non disponibile."; -$a->strings["%s has received too many connection requests today."] = "%s ha ricevuto troppe richieste di connessione per oggi."; -$a->strings["Spam protection measures have been invoked."] = "Sono state attivate le misure di protezione contro lo spam."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Gli amici sono pregati di riprovare tra 24 ore."; -$a->strings["Invalid locator"] = "Indirizzo non valido"; -$a->strings["Invalid email address."] = "Indirizzo email non valido."; -$a->strings["This account has not been configured for email. Request failed."] = "Questo account non è stato configurato per l'email. Richiesta fallita."; -$a->strings["You have already introduced yourself here."] = "Ti sei già presentato qui."; -$a->strings["Apparently you are already friends with %s."] = "Pare che tu e %s siate già amici."; -$a->strings["Invalid profile URL."] = "Indirizzo profilo non valido."; -$a->strings["Your introduction has been sent."] = "La tua presentazione è stata inviata."; -$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "La richiesta di connessione remota non può essere effettuata per la tua rete. Invia la richiesta direttamente sul nostro sistema."; -$a->strings["Please login to confirm introduction."] = "Accedi per confermare la presentazione."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo."; -$a->strings["Confirm"] = "Conferma"; -$a->strings["Hide this contact"] = "Nascondi questo contatto"; -$a->strings["Welcome home %s."] = "Bentornato a casa %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Conferma la tua richiesta di connessione con %s."; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Se non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi"; -$a->strings["Friend/Connection Request"] = "Richieste di amicizia/connessione"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; -$a->strings["Please answer the following:"] = "Rispondi:"; -$a->strings["Does %s know you?"] = "%s ti conosce?"; -$a->strings["Add a personal note:"] = "Aggiungi una nota personale:"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora."; -$a->strings["Your Identity Address:"] = "L'indirizzo della tua identità:"; -$a->strings["Submit Request"] = "Invia richiesta"; -$a->strings["You already added this contact."] = "Hai già aggiunto questo contatto."; -$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Il supporto Diaspora non è abilitato. Il contatto non può essere aggiunto."; -$a->strings["OStatus support is disabled. Contact can't be added."] = "Il supporto OStatus non è abilitato. Il contatto non può essere aggiunto."; -$a->strings["The network type couldn't be detected. Contact can't be added."] = "Non è possibile rilevare il tipo di rete. Il contatto non può essere aggiunto."; -$a->strings["Contact added"] = "Contatto aggiunto"; -$a->strings["Friendica Communications Server - Setup"] = "Friendica Comunicazione Server - Impostazioni"; -$a->strings["Could not connect to database."] = " Impossibile collegarsi con il database."; -$a->strings["Could not create table."] = "Impossibile creare le tabelle."; -$a->strings["Your Friendica site database has been installed."] = "Il tuo Friendica è stato installato."; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql"; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Leggi il file \"INSTALL.txt\"."; -$a->strings["Database already in use."] = "Database già in uso."; -$a->strings["System check"] = "Controllo sistema"; -$a->strings["Check again"] = "Controlla ancora"; -$a->strings["Database connection"] = "Connessione al database"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Per installare Friendica dobbiamo sapere come collegarci al tuo database."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Il database dovrà già esistere. Se non esiste, crealo prima di continuare."; -$a->strings["Database Server Name"] = "Nome del database server"; -$a->strings["Database Login Name"] = "Nome utente database"; -$a->strings["Database Login Password"] = "Password utente database"; -$a->strings["Database Name"] = "Nome database"; -$a->strings["Site administrator email address"] = "Indirizzo email dell'amministratore del sito"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web."; -$a->strings["Please select a default timezone for your website"] = "Seleziona il fuso orario predefinito per il tuo sito web"; -$a->strings["Site settings"] = "Impostazioni sito"; -$a->strings["System Language:"] = "Lingua di Sistema:"; -$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Imposta la lingua di default per l'interfaccia e l'invio delle email."; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web"; -$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Setup the poller'"] = "Se non hai una versione a linea di comando di PHP installata sul tuo server, non sarai in grado di avviare il processo di poll in background via cron. Vedi 'Setup the poller'"; -$a->strings["PHP executable path"] = "Percorso eseguibile PHP"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Inserisci il percorso completo all'eseguibile di php. Puoi lasciare bianco questo campo per continuare l'installazione."; -$a->strings["Command line PHP"] = "PHP da riga di comando"; -$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "L'eseguibile PHP non è il binario php cli (potrebbe essere la versione cgi-fcgi)"; -$a->strings["Found PHP version: "] = "Versione PHP:"; -$a->strings["PHP cli binary"] = "Binario PHP cli"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"."; -$a->strings["This is required for message delivery to work."] = "E' obbligatorio per far funzionare la consegna dei messaggi."; -$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"."; -$a->strings["Generate encryption keys"] = "Genera chiavi di criptazione"; -$a->strings["libCurl PHP module"] = "modulo PHP libCurl"; -$a->strings["GD graphics PHP module"] = "modulo PHP GD graphics"; -$a->strings["OpenSSL PHP module"] = "modulo PHP OpenSSL"; -$a->strings["mysqli PHP module"] = "modulo PHP mysqli"; -$a->strings["mb_string PHP module"] = "modulo PHP mb_string"; -$a->strings["mcrypt PHP module"] = "modulo PHP mcrypt"; -$a->strings["XML PHP module"] = "Modulo PHP XML"; -$a->strings["iconv module"] = "modulo iconv"; -$a->strings["Apache mod_rewrite module"] = "Modulo mod_rewrite di Apache"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato"; -$a->strings["Error: libCURL PHP module required but not installed."] = "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato."; -$a->strings["Error: openssl PHP module required but not installed."] = "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato"; -$a->strings["Error: mb_string PHP module required but not installed."] = "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato."; -$a->strings["Error: mcrypt PHP module required but not installed."] = "Errore: il modulo mcrypt di PHP è richiesto, ma non risulta installato"; -$a->strings["Error: iconv PHP module required but not installed."] = "Errore: il modulo PHP iconv è richiesto ma non installato."; -$a->strings["If you are using php_cli, please make sure that mcrypt module is enabled in its config file"] = "Se stai usando php_cli, controlla che il modulo mcrypt sia abilitato nel suo file di configurazione"; -$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = "La funzione mcrypt _create_iv() non è definita. E' richiesta per abilitare il livello di criptazione RINO2"; -$a->strings["mcrypt_create_iv() function"] = "funzione mcrypt_create_iv()"; -$a->strings["Error, XML PHP module required but not installed."] = "Errore, il modulo PHP XML è richiesto ma non installato."; -$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo."; -$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi."; -$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Alla fine di questa procedura, di daremo un testo da salvare in un file chiamato .htconfig.php nella tua cartella principale di Friendica"; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"INSTALL.txt\" per le istruzioni."; -$a->strings[".htconfig.php is writable"] = ".htconfig.php è scrivibile"; -$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica usa il motore di template Smarty3 per renderizzare le sue pagine web. Smarty3 compila i template in PHP per velocizzare il rendering."; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Per salvare questi template compilati, il server werb ha bisogno dell'accesso in scrittura alla cartella view/smarty3/ nella cartella principale dei Friendica."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Per favore, controlla che l'utente con cui il tuo server web gira (es www-data) ha accesso in scrittura a questa cartella."; -$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene."; -$a->strings["view/smarty3 is writable"] = "view/smarty3 è scrivibile"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La riscrittura degli url in .htaccess non funziona. Controlla la configurazione del tuo server."; -$a->strings["Url rewrite is working"] = "La riscrittura degli url funziona"; -$a->strings["ImageMagick PHP extension is not installed"] = "L'estensione PHP ImageMagick non è installata"; -$a->strings["ImageMagick PHP extension is installed"] = "L'estensione PHP ImageMagick è installata"; -$a->strings["ImageMagick supports GIF"] = "ImageMagick supporta i GIF"; -$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Il file di configurazione del database \".htconfig.php\" non può essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito."; -$a->strings["

What next

"] = "

Cosa fare ora

"; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller."; -$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; -$a->strings["Empty post discarded."] = "Messaggio vuoto scartato."; -$a->strings["System error. Post not saved."] = "Errore di sistema. Messaggio non salvato."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica."; -$a->strings["You may visit them online at %s"] = "Puoi visitarli online su %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi."; -$a->strings["%s posted an update."] = "%s ha inviato un aggiornamento."; -$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array( - 0 => "Attenzione: Questo gruppo contiene %s membro da una rete che non permette la ricezione di messaggi non pubblici.", - 1 => "Attenzione: Questo gruppo contiene %s membri da reti che non permettono la ricezione di messaggi non pubblici.", -); -$a->strings["Messages in this group won't be send to these receivers."] = "I messaggi in questo gruppo non saranno inviati ai quei contatti."; -$a->strings["Private messages to this person are at risk of public disclosure."] = "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente."; -$a->strings["Invalid contact."] = "Contatto non valido."; -$a->strings["Commented Order"] = "Ordina per commento"; -$a->strings["Sort by Comment Date"] = "Ordina per data commento"; -$a->strings["Posted Order"] = "Ordina per invio"; -$a->strings["Sort by Post Date"] = "Ordina per data messaggio"; -$a->strings["Posts that mention or involve you"] = "Messaggi che ti citano o coinvolgono"; -$a->strings["New"] = "Nuovo"; -$a->strings["Activity Stream - by date"] = "Activity Stream - per data"; -$a->strings["Shared Links"] = "Links condivisi"; -$a->strings["Interesting Links"] = "Link Interessanti"; -$a->strings["Starred"] = "Preferiti"; -$a->strings["Favourite Posts"] = "Messaggi preferiti"; -$a->strings["{0} wants to be your friend"] = "{0} vuole essere tuo amico"; -$a->strings["{0} sent you a message"] = "{0} ti ha inviato un messaggio"; -$a->strings["{0} requested registration"] = "{0} chiede la registrazione"; -$a->strings["No contacts."] = "Nessun contatto."; $a->strings["via"] = "via"; -$a->strings["Repeat the image"] = "Ripeti l'immagine"; -$a->strings["Will repeat your image to fill the background."] = "Ripete l'immagine per riempire lo sfondo."; -$a->strings["Stretch"] = "Stira"; -$a->strings["Will stretch to width/height of the image."] = "Stira l'immagine."; -$a->strings["Resize fill and-clip"] = "Scala e ritaglia"; -$a->strings["Resize to fill and retain aspect ratio."] = "Scala l'immagine a riempire mantenendo le proporzioni."; -$a->strings["Resize best fit"] = "Scala best fit"; -$a->strings["Resize to best fit and retain aspect ratio."] = "Scala l'immagine alla miglior dimensione per riempire mantenendo le proporzioni."; +$a->strings["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["Default"] = "Default"; $a->strings["Note: "] = "Nota:"; $a->strings["Check image permissions if all users are allowed to visit the image"] = "Controlla i permessi dell'immagine se tutti gli utenti sono autorizzati a vederla"; @@ -2012,6 +2021,14 @@ $a->strings["Link color"] = "Colore link"; $a->strings["Set the background color"] = "Imposta il colore di sfondo"; $a->strings["Content background transparency"] = "Trasparenza sfondo contenuto"; $a->strings["Set the background image"] = "Imposta l'immagine di sfondo"; +$a->strings["Repeat the image"] = "Ripeti l'immagine"; +$a->strings["Will repeat your image to fill the background."] = "Ripete l'immagine per riempire lo sfondo."; +$a->strings["Stretch"] = "Stira"; +$a->strings["Will stretch to width/height of the image."] = "Stira l'immagine."; +$a->strings["Resize fill and-clip"] = "Scala e ritaglia"; +$a->strings["Resize to fill and retain aspect ratio."] = "Scala l'immagine a riempire mantenendo le proporzioni."; +$a->strings["Resize best fit"] = "Scala best fit"; +$a->strings["Resize to best fit and retain aspect ratio."] = "Scala l'immagine alla miglior dimensione per riempire mantenendo le proporzioni."; $a->strings["Guest"] = "Ospite"; $a->strings["Visitor"] = "Visitatore"; $a->strings["Alignment"] = "Allineamento"; @@ -2020,23 +2037,17 @@ $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["Community Profiles"] = "Profili Comunità"; -$a->strings["Last users"] = "Ultimi utenti"; -$a->strings["Find Friends"] = "Trova Amici"; -$a->strings["Local Directory"] = "Elenco Locale"; -$a->strings["Quick Start"] = "Quick Start"; -$a->strings["Connect Services"] = "Servizi connessi"; $a->strings["Comma separated list of helper forums"] = "Lista separata da virgola di forum di aiuto"; $a->strings["Set style"] = "Imposta stile"; $a->strings["Community Pages"] = "Pagine Comunitarie"; +$a->strings["Community Profiles"] = "Profili Comunità"; $a->strings["Help or @NewHere ?"] = "Serve aiuto? Sei nuovo?"; -$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["Connect Services"] = "Servizi connessi"; +$a->strings["Find Friends"] = "Trova Amici"; +$a->strings["Last users"] = "Ultimi utenti"; +$a->strings["Local Directory"] = "Elenco Locale"; +$a->strings["Quick Start"] = "Quick Start"; +$a->strings["toggle mobile"] = "commuta tema mobile"; $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."; @@ -2049,4 +2060,3 @@ $a->strings["Website Terms of Service"] = "Condizioni di servizio del sito web " $a->strings["terms of service"] = "condizioni del servizio"; $a->strings["Website Privacy Policy"] = "Politiche di privacy del sito"; $a->strings["privacy policy"] = "politiche di privacy"; -$a->strings["toggle mobile"] = "commuta tema mobile"; From 41f94a62fcc14022f7d2401a3adefeaa111d0628 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 16 May 2017 06:00:01 +0000 Subject: [PATCH 009/125] Spelling --- include/dba.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/dba.php b/include/dba.php index ccce9ed816..b9e6c32d56 100644 --- a/include/dba.php +++ b/include/dba.php @@ -460,7 +460,7 @@ class dba { } /** - * @brief beautifies the query - seful for "SHOW PROCESSLIST" + * @brief beautifies the query - useful for "SHOW PROCESSLIST" * * This is safe when we bind the parameters later. * The parameter values aren't part of the SQL. From fb0d335268dfe157757446230d51b73b75ec6698 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Tue, 16 May 2017 17:36:19 +0200 Subject: [PATCH 010/125] Update Doxyfile (add src folder) --- util/Doxyfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/Doxyfile b/util/Doxyfile index e3a3e36f1d..373d172558 100644 --- a/util/Doxyfile +++ b/util/Doxyfile @@ -1,4 +1,4 @@ -INPUT = README.md index.php boot.php testargs.php update.php mod/ object/ include/ js/ util/ view/ version.inc +INPUT = README.md index.php boot.php testargs.php update.php mod/ object/ include/ js/ util/ view/ src/ version.inc RECURSIVE = YES PROJECT_NAME = "Friendica" PROJECT_LOGO = images/friendica-64.jpg From 80103f8ad9f1d0278ea1989aaa462aa01565cfb2 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 16 May 2017 21:21:54 +0000 Subject: [PATCH 011/125] Issue 3309: Avatar update should work now --- include/Photo.php | 39 ++++++++++++++++++++++++++++++++++----- mod/contacts.php | 2 +- 2 files changed, 35 insertions(+), 6 deletions(-) diff --git a/include/Photo.php b/include/Photo.php index 7341935767..5920f80b38 100644 --- a/include/Photo.php +++ b/include/Photo.php @@ -778,8 +778,7 @@ function guess_image_type($filename, $fromcurl=false) { * @return array Returns array of the different avatar sizes */ function update_contact_avatar($avatar, $uid, $cid, $force = false) { - - $r = q("SELECT `avatar`, `photo`, `thumb`, `micro` FROM `contact` WHERE `id` = %d LIMIT 1", intval($cid)); + $r = q("SELECT `avatar`, `photo`, `thumb`, `micro`, `nurl` FROM `contact` WHERE `id` = %d LIMIT 1", intval($cid)); if (!dbm::is_result($r)) { return false; } else { @@ -793,6 +792,15 @@ function update_contact_avatar($avatar, $uid, $cid, $force = false) { q("UPDATE `contact` SET `avatar` = '%s', `photo` = '%s', `thumb` = '%s', `micro` = '%s', `avatar-date` = '%s' WHERE `id` = %d", dbesc($avatar), dbesc($photos[0]), dbesc($photos[1]), dbesc($photos[2]), dbesc(datetime_convert()), intval($cid)); + + // Update the public contact (contact id = 0) + if ($uid != 0) { + $pcontact = dba::select('contact', array('id'), array('nurl' => $r[0]['nurl']), array('limit' => 1)); + if (dbm::is_result($pcontact)) { + update_contact_avatar($avatar, 0, $pcontact['id'], $force); + } + } + return $photos; } } @@ -847,9 +855,30 @@ function import_profile_photo($photo, $uid, $cid, $quit_on_error = false) { $photo_failure = true; } - $photo = App::get_baseurl() . '/photo/' . $hash . '-4.' . $img->getExt(); - $thumb = App::get_baseurl() . '/photo/' . $hash . '-5.' . $img->getExt(); - $micro = App::get_baseurl() . '/photo/' . $hash . '-6.' . $img->getExt(); + $suffix = '?ts='.time(); + + $photo = App::get_baseurl() . '/photo/' . $hash . '-4.' . $img->getExt() . $suffix; + $thumb = App::get_baseurl() . '/photo/' . $hash . '-5.' . $img->getExt() . $suffix; + $micro = App::get_baseurl() . '/photo/' . $hash . '-6.' . $img->getExt() . $suffix; + + // Remove the cached photo + $a = get_app(); + $basepath = $a->get_basepath(); + + if (is_dir($basepath."/photo")) { + $filename = $basepath.'/photo/'.$hash.'-4.'.$img->getExt(); + if (file_exists($filename)) { + unlink($filename); + } + $filename = $basepath.'/photo/'.$hash.'-5.'.$img->getExt(); + if (file_exists($filename)) { + unlink($filename); + } + $filename = $basepath.'/photo/'.$hash.'-6.'.$img->getExt(); + if (file_exists($filename)) { + unlink($filename); + } + } } else { $photo_failure = true; } diff --git a/mod/contacts.php b/mod/contacts.php index 21a4f7446a..30b8dde20e 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -307,7 +307,7 @@ function _contact_update_profile($contact_id) { ); // Update the entry in the contact table - update_contact_avatar($data['photo'], local_user(), $contact_id); + update_contact_avatar($data['photo'], local_user(), $contact_id, true); // Update the entry in the gcontact table update_gcontact_from_probe($data["url"]); From 7daf5ecde1f6bfac78561ba6ec351a343d152336 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 17 May 2017 06:00:20 +0000 Subject: [PATCH 012/125] Use the contact picture instead of the profile picture --- include/identity.php | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/include/identity.php b/include/identity.php index 3ab25cdc45..d2f59a06e2 100644 --- a/include/identity.php +++ b/include/identity.php @@ -152,7 +152,9 @@ function get_profiledata_by_nick($nickname, $uid = 0, $profile = 0) { if ($profile) { $profile_int = intval($profile); - $r = q("SELECT `contact`.`id` AS `contact_id`, `profile`.`uid` AS `profile_uid`, `profile`.*, + $r = q("SELECT `contact`.`id` AS `contact_id`, `contact`.`photo` AS `contact_photo`, + `contact`.`thumb` AS `contact_thumb`, `contact`.`micro` AS `contact_micro`, + `profile`.`uid` AS `profile_uid`, `profile`.*, `contact`.`avatar-date` AS picdate, `contact`.`addr`, `user`.* FROM `profile` INNER JOIN `contact` on `contact`.`uid` = `profile`.`uid` AND `contact`.`self` @@ -163,7 +165,9 @@ function get_profiledata_by_nick($nickname, $uid = 0, $profile = 0) { ); } if (!dbm::is_result($r)) { - $r = q("SELECT `contact`.`id` AS `contact_id`, `profile`.`uid` AS `profile_uid`, `profile`.*, + $r = q("SELECT `contact`.`id` AS `contact_id`, `contact`.`photo` as `contact_photo`, + `contact`.`thumb` AS `contact_thumb`, `contact`.`micro` AS `contact_micro`, + `profile`.`uid` AS `profile_uid`, `profile`.*, `contact`.`avatar-date` AS picdate, `contact`.`addr`, `user`.* FROM `profile` INNER JOIN `contact` ON `contact`.`uid` = `profile`.`uid` AND `contact`.`self` @@ -365,9 +369,9 @@ function profile_sidebar($profile, $block = 0) { 'fullname' => $profile['name'], 'firstname' => $firstname, 'lastname' => $lastname, - 'photo300' => App::get_baseurl() . '/photo/custom/300/' . $profile['uid'] . '.jpg', - 'photo100' => App::get_baseurl() . '/photo/custom/100/' . $profile['uid'] . '.jpg', - 'photo50' => App::get_baseurl() . '/photo/custom/50/' . $profile['uid'] . '.jpg', + 'photo300' => $profile['contact_photo'], + 'photo100' => $profile['contact_thumb'], + 'photo50' => $profile['contact_micro'], ); else $diaspora = false; @@ -410,9 +414,11 @@ function profile_sidebar($profile, $block = 0) { else $p["address"] = bbcode($p["location"]); - if (isset($p["photo"])) + if (isset($p["contact_photo"])) { + $p["photo"] = proxy_url($p["contact_photo"], false, PROXY_SIZE_SMALL); + } elseif (isset($p["photo"])) { $p["photo"] = proxy_url($p["photo"], false, PROXY_SIZE_SMALL); - + } if ($a->theme['template_engine'] === 'internal') $location = template_escape($location); From cb3077b7a9023a65b6dc13df065bfbbe7f7633fb Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 17 May 2017 06:07:55 +0000 Subject: [PATCH 013/125] It is better this way --- include/identity.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/include/identity.php b/include/identity.php index d2f59a06e2..25b24f289b 100644 --- a/include/identity.php +++ b/include/identity.php @@ -414,9 +414,7 @@ function profile_sidebar($profile, $block = 0) { else $p["address"] = bbcode($p["location"]); - if (isset($p["contact_photo"])) { - $p["photo"] = proxy_url($p["contact_photo"], false, PROXY_SIZE_SMALL); - } elseif (isset($p["photo"])) { + if (isset($p["photo"])) { $p["photo"] = proxy_url($p["photo"], false, PROXY_SIZE_SMALL); } if ($a->theme['template_engine'] === 'internal') From 696404739bdd3db8eae4255c2d622de8a45df18d Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 17 May 2017 19:25:30 +0000 Subject: [PATCH 014/125] Bugfix Diaspora: We exited with the wrong return values and the guid for messages was too short --- boot.php | 2 +- include/dbstructure.php | 4 ++-- include/diaspora.php | 35 +++++++++++++++++++++++------------ mod/receive.php | 4 ++-- update.php | 2 +- 5 files changed, 29 insertions(+), 18 deletions(-) diff --git a/boot.php b/boot.php index 4c09785c8e..48381f5435 100644 --- a/boot.php +++ b/boot.php @@ -40,7 +40,7 @@ define ( 'FRIENDICA_PLATFORM', 'Friendica'); define ( 'FRIENDICA_CODENAME', 'Asparagus'); define ( 'FRIENDICA_VERSION', '3.5.2-rc' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); -define ( 'DB_UPDATE_VERSION', 1224 ); +define ( 'DB_UPDATE_VERSION', 1225 ); /** * @brief Constant with a HTML line break. diff --git a/include/dbstructure.php b/include/dbstructure.php index 6a14220c24..c9c37c9390 100644 --- a/include/dbstructure.php +++ b/include/dbstructure.php @@ -808,7 +808,7 @@ function db_definition() { $database["conv"] = array( "fields" => array( "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"), - "guid" => array("type" => "varchar(64)", "not null" => "1", "default" => ""), + "guid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), "recips" => array("type" => "text"), "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("user" => "uid")), "creator" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), @@ -1205,7 +1205,7 @@ function db_definition() { "fields" => array( "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"), "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0", "relation" => array("user" => "uid")), - "guid" => array("type" => "varchar(64)", "not null" => "1", "default" => ""), + "guid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), "from-name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), "from-photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), "from-url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), diff --git a/include/diaspora.php b/include/diaspora.php index 820f8bd896..545edcc4bf 100644 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -1395,7 +1395,7 @@ class Diaspora { $message_id = self::message_exists($importer["uid"], $guid); if ($message_id) { - return $message_id; + return true; } $parent_item = self::parent_item($importer["uid"], $parent_guid, $author, $contact); @@ -1454,6 +1454,10 @@ class Diaspora { $message_id = item_store($datarray); + if ($message_id <= 0) { + return false; + } + if ($message_id) { logger("Stored comment ".$datarray["guid"]." with message id ".$message_id, LOGGER_DEBUG); } @@ -1472,7 +1476,7 @@ class Diaspora { proc_run(PRIORITY_HIGH, "include/notifier.php", "comment-import", $message_id); } - return $message_id; + return true; } /** @@ -1623,7 +1627,7 @@ class Diaspora { } if (!$conversation) { logger("unable to create conversation."); - return; + return false; } foreach ($messages as $mesg) @@ -1701,7 +1705,7 @@ class Diaspora { $message_id = self::message_exists($importer["uid"], $guid); if ($message_id) - return $message_id; + return true; $parent_item = self::parent_item($importer["uid"], $parent_guid, $author, $contact); if (!$parent_item) @@ -1754,8 +1758,13 @@ class Diaspora { $message_id = item_store($datarray); - if ($message_id) + if ($message_id <= 0) { + return false; + } + + if ($message_id) { logger("Stored like ".$datarray["guid"]." with message id ".$message_id, LOGGER_DEBUG); + } // If we are the origin of the parent we store the original data and notify our followers if ($message_id AND $parent_item["origin"]) { @@ -1771,7 +1780,7 @@ class Diaspora { proc_run(PRIORITY_HIGH, "include/notifier.php", "comment-import", $message_id); } - return $message_id; + return true; } /** @@ -2348,7 +2357,7 @@ class Diaspora { $message_id = self::message_exists($importer["uid"], $guid); if ($message_id) { - return $message_id; + return true; } $original_item = self::original_item($root_guid, $root_author, $author); @@ -2399,9 +2408,10 @@ class Diaspora { if ($message_id) { logger("Stored reshare ".$datarray["guid"]." with message id ".$message_id, LOGGER_DEBUG); + return true; + } else { + return false; } - - return $message_id; } /** @@ -2532,7 +2542,7 @@ class Diaspora { $message_id = self::message_exists($importer["uid"], $guid); if ($message_id) { - return $message_id; + return true; } $address = array(); @@ -2616,9 +2626,10 @@ class Diaspora { if ($message_id) { logger("Stored item ".$datarray["guid"]." with message id ".$message_id, LOGGER_DEBUG); + return true; + } else { + return false; } - - return $message_id; } /* ************************************************************************************** * diff --git a/mod/receive.php b/mod/receive.php index 2873cb971a..8b28c16562 100644 --- a/mod/receive.php +++ b/mod/receive.php @@ -63,14 +63,14 @@ function receive_post(App $a) { logger('mod-diaspora: dispatching', LOGGER_DEBUG); - $ret = 0; + $ret = true; if ($public) { Diaspora::dispatch_public($msg); } else { $ret = Diaspora::dispatch($importer, $msg); } - http_status_exit(($ret) ? $ret : 200); + http_status_exit(($ret) ? 200 : 500); // NOTREACHED } diff --git a/update.php b/update.php index e3b1c31b33..9c509be4b7 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ Date: Fri, 19 May 2017 06:01:13 +0000 Subject: [PATCH 015/125] Bugfix: Timeout problems when saving profile settings --- include/api.php | 3 +-- include/profile_update.php | 10 ++++++++-- mod/profile_photo.php | 3 +-- mod/profiles.php | 3 +-- mod/settings.php | 3 +-- 5 files changed, 12 insertions(+), 10 deletions(-) diff --git a/include/api.php b/include/api.php index 64afa8c148..caf316d76a 100644 --- a/include/api.php +++ b/include/api.php @@ -3744,8 +3744,7 @@ $called_api = null; proc_run(PRIORITY_LOW, "include/directory.php", $url); } - require_once 'include/profile_update.php'; - profile_change(); + proc_run(PRIORITY_LOW, 'include/profile_update.php', api_user()); // output for client if ($data) { diff --git a/include/profile_update.php b/include/profile_update.php index 7aa34d45d7..69484e8fe0 100644 --- a/include/profile_update.php +++ b/include/profile_update.php @@ -1,6 +1,12 @@ Date: Fri, 19 May 2017 13:11:30 +0200 Subject: [PATCH 016/125] Frio: remove experimental flag + rise version number to 0.8 --- view/theme/frio/README.md | 4 ++-- view/theme/frio/experimental | 0 view/theme/frio/theme.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) delete mode 100644 view/theme/frio/experimental diff --git a/view/theme/frio/README.md b/view/theme/frio/README.md index f4881f2df5..cbf60f665d 100644 --- a/view/theme/frio/README.md +++ b/view/theme/frio/README.md @@ -13,11 +13,11 @@ I conentrated on 3 topics: * if you update the theme you should disable and enable the theme again from the admin panel (to apply possible new hooks) **Note:** -This theme is marked as experimental. While it is doing its job very well in the most cases there still much work to do to get it marked as stable. So some important templates are still missing and will be added in future versions. +While Frio is doing its job very well in the most cases, there still some work to do. So some templates are still missing and will be added in future versions. Some insights into my motivation for starting coding this theme: This theme should be the start of a discussion in the friendica community (users and developers) about UI/UX in friendica. -What frameworks do we want to use? How should default friendica look like? And how do we want to use friendica? What do we need in the core code (At the present time some stuff in this is done with ugly javascript hacks and own php code)? +What frameworks do we want to use? How should default friendica look like? And how do we want to use friendica? What do we need in the core code (At the present time some stuff this is done with ugly javascript hacks and own php code)? Coding a theme is much work but you will get a really good insight of the limitations of friendica and can start a discussion about doing things differently. So join the discussion at the friendica forums ;-) diff --git a/view/theme/frio/experimental b/view/theme/frio/experimental deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/view/theme/frio/theme.php b/view/theme/frio/theme.php index e0c382661a..551f39c8f7 100644 --- a/view/theme/frio/theme.php +++ b/view/theme/frio/theme.php @@ -2,7 +2,7 @@ /* * Name: frio * Description: Bootstrap V3 theme. The theme is currently under construction, so it is far from finished. For further information have a look at the ReadMe. - * Version: V.0.7 + * Version: V.0.8 * Author: Rabuzarus * */ From 3cb5c83fca501587c59ca71da3cb713f59f00d2d Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Fri, 19 May 2017 13:18:27 +0200 Subject: [PATCH 017/125] Frio: a word was missing in the README --- view/theme/frio/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/theme/frio/README.md b/view/theme/frio/README.md index cbf60f665d..c5d2c026bd 100644 --- a/view/theme/frio/README.md +++ b/view/theme/frio/README.md @@ -13,7 +13,7 @@ I conentrated on 3 topics: * if you update the theme you should disable and enable the theme again from the admin panel (to apply possible new hooks) **Note:** -While Frio is doing its job very well in the most cases, there still some work to do. So some templates are still missing and will be added in future versions. +While Frio is doing its job very well in the most cases, there is still some work to do. So some templates are still missing and will be added in future versions. Some insights into my motivation for starting coding this theme: This theme should be the start of a discussion in the friendica community (users and developers) about UI/UX in friendica. From 5c9033a7e231535f39d416c0a4ca5500b2be1717 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Fri, 19 May 2017 13:32:55 +0200 Subject: [PATCH 018/125] Frio: some correction in grammar/expression - thx Hypolite --- view/theme/frio/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/theme/frio/README.md b/view/theme/frio/README.md index c5d2c026bd..037028ff44 100644 --- a/view/theme/frio/README.md +++ b/view/theme/frio/README.md @@ -13,7 +13,7 @@ I conentrated on 3 topics: * if you update the theme you should disable and enable the theme again from the admin panel (to apply possible new hooks) **Note:** -While Frio is doing its job very well in the most cases, there is still some work to do. So some templates are still missing and will be added in future versions. +While Frio is doing its job very well in most cases, there still is some work to do. Some templates are still missing and will be added in future versions. Some insights into my motivation for starting coding this theme: This theme should be the start of a discussion in the friendica community (users and developers) about UI/UX in friendica. From 86c4ac80c5dc0356f1e51ca40cdb558064467ac1 Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Fri, 19 May 2017 21:37:45 +0100 Subject: [PATCH 019/125] Update doco --- doc/Account-Basics.md | 4 +-- doc/BBCode.md | 48 ++++++++++++++-------------- doc/Bugs-and-Issues.md | 8 ++--- doc/Chats.md | 10 +++--- doc/FAQ.md | 4 +-- doc/Forums.md | 2 +- doc/Making-Friends.md | 2 +- doc/Settings.md | 4 +-- doc/andfinally.md | 22 ------------- doc/api.md | 69 ++++++++++++++++++++-------------------- doc/events.md | 20 ++++++------ doc/groupsandpages.md | 11 ------- doc/guide.md | 13 -------- doc/htconfig.md | 7 ++-- doc/makingnewfriends.md | 11 ------- doc/network.md | 14 -------- doc/smarty3-templates.md | 2 +- doc/themes.md | 18 +++++------ doc/translations.md | 4 +-- 19 files changed, 101 insertions(+), 172 deletions(-) delete mode 100644 doc/andfinally.md delete mode 100644 doc/groupsandpages.md delete mode 100644 doc/guide.md delete mode 100644 doc/makingnewfriends.md delete mode 100644 doc/network.md diff --git a/doc/Account-Basics.md b/doc/Account-Basics.md index ef6a13f222..854e78b14e 100644 --- a/doc/Account-Basics.md +++ b/doc/Account-Basics.md @@ -10,10 +10,10 @@ Not all Friendica sites allow open registration. If registration is allowed, you will see a "Register" link immediately below the login prompt on the site home page. Following this link will take you to the site registration page. The strength of our network is that lots of different sites are all completely compatible with each other. -If the site you're visting doesn't allow registration, or you think you might prefer another one, you can find a [list of public servers here](http://dir.friendica.com/siteinfo), and find one that meets your needs. +If the site you're visting doesn't allow registration, or you think you might prefer another one, you can find a [list of public servers here](https://dir.friendica.social/servers), and find one that meets your needs. If you'd like to have your own server, you can do that too. -Visit [the Friendica website](http://friendica.com/download) to download the code with setup instructions. +Visit [the Friendica website](http://friendi.ca/) to download the code with setup instructions. It's a very simple installation process that anybody experienced in hosting websites, or with basic Linux experience can handle easily. ###OpenID diff --git a/doc/BBCode.md b/doc/BBCode.md index 50fb406b05..b4b7faf64e 100644 --- a/doc/BBCode.md +++ b/doc/BBCode.md @@ -61,17 +61,17 @@ table.bbcodes > * > tr > th { red - [url=http://www.friendica.com]Friendica[/url] - Friendica + [url=http://friendi.ca]Friendica[/url] + Friendica - [img]http://friendica.com/sites/default/files/friendika-32.png[/img] - Immagine/foto + [img]https://raw.githubusercontent.com/friendica/friendica/develop/images/friendica-32.jpg[/img] + Immagine/foto - [img=64x32]http://friendica.com/sites/default/files/friendika-32.png[/img]
+ [img=64x32]https://raw.githubusercontent.com/friendica/friendica/develop/images/friendica-32.jpg[/img]

Note: provided height is simply discarded. - + [size=xx-small]small text[/size] @@ -82,7 +82,7 @@ table.bbcodes > * > tr > th { big text - [size=20]exact size[/size] (size can be any number, in pixel) + [size=20]exact size[/size] (size can be any number, in pixels) exact size @@ -99,23 +99,23 @@ table.bbcodes > * > tr > th { Result - [url]http://friendica.com[/url] - http://friendica.com + [url]http://friendi.ca[/url] + http://friendi.ca - [url=http://friendica.com]Friendica[/url] - Friendica + [url=http://friendi.ca]Friendica[/url] + Friendica - [bookmark]http://friendica.com[/bookmark]

-#^[url]http://friendica.com[/url] -

Friendica: http://friendica.com

+ [bookmark]http://friendi.ca[/bookmark]

+#^[url]http://friendi.ca[/url] +

Friendica: http://friendi.ca

- [bookmark=http://friendica.com]Bookmark[/bookmark]

-#^[url=http://friendica.com]Bookmark[/url]

-#[url=http://friendica.com]^[/url][url=http://friendica.com]Bookmark[/url] -

Friendica: Bookmark

+ [bookmark=http://friendi.ca]Bookmark[/bookmark]

+#^[url=http://friendi.ca]Bookmark[/url]

+#[url=http://friendi.ca]^[/url][url=http://friendi.ca]Bookmark[/url] +

Friendica: Bookmark

[url=/posts/f16d77b0630f0134740c0cc47a0ea02a]Diaspora post with GUID[/url] @@ -490,7 +490,7 @@ Page title with a link to *url* will be shown. ## Map -This require "openstreetmap" or "Google Maps" addon version 1.3 or newer. +This requires "openstreetmap" or "Google Maps" addon version 1.3 or newer. If the addon isn't activated, the raw coordinates are shown instead. @@ -514,10 +514,10 @@ If the addon isn't activated, the raw coordinates are shown instead. ## Abstract for longer posts -If you want to spread your post to several third party networks you can have the problem that these networks have a length limitation like on Twitter. +If you want to spread your post to several third party networks you may have the problem that these networks have a length limitation like on Twitter. -Friendica is using a semi intelligent mechanism to generate a fitting abstract. -But it can be interesting to define a custom abstract that will only be displayed on the external network. +Friendica uses a semi-intelligent mechanism to generate a fitting abstract. +But it can be useful to define a custom abstract that will only be displayed on the external network. This is done with the [abstract]-element.
@@ -566,7 +566,7 @@ Instead you have to name the explicit network:
[abstract]These days I had a strange encounter...[/abstract]
-[abstract=goog]Helly my dear Google+ followers. You have to read my newest blog post![/abstract]
+[abstract=goog]Hello my dear Google+ followers. You have to read my newest blog post![/abstract]
[abstract=face]Hello my Facebook friends. These days happened something really cool.[/abstract]
While taking pictures in the woods I had a really strange encounter...
Google and Facebook will show the respective abstracts while the other networks will show the default one.
@@ -574,7 +574,7 @@ While taking pictures in the woods I had a really strange encounter...
-The [abstract] element isn't working with connectors where we post the HTML like Tumblr, Wordpress or Pump.io. +The [abstract] element is not working with connectors where we post HTML directly, like Tumblr, Wordpress or Pump.io. For the native connections--that is to e.g. Friendica, Hubzilla, Diaspora or GNU Social--the full posting is used and the contacts instance will display the posting as desired. ## Special diff --git a/doc/Bugs-and-Issues.md b/doc/Bugs-and-Issues.md index d316971d2a..e2665be410 100644 --- a/doc/Bugs-and-Issues.md +++ b/doc/Bugs-and-Issues.md @@ -5,9 +5,9 @@ Bugs and Issues If your server has a support page, you should report any bugs/issues you encounter there first. Reporting to your support page before reporting to the developers makes their job easier, as they don't have to deal with bug reports that might not have anything to do with them. -This helps us get new features faster. +Reducing the workload in this way helps us get new features faster. You can also contact the [friendica support forum](https://helpers.pyxis.uberspace.de/profile/helpers) and report your problem there. -Maybe someone from another node encountered the problem as well and can help you. +Bugs are rarely limited to one person, and the chances are somebody from another node has encountered the problem too, and will be able to help you. If you're a technical user, or your site doesn't have a support page, you'll need to use the [Bug Tracker](https://github.com/friendica/friendica/issues). Please perform a search to see if there's already an open bug that matches yours before submitting anything. @@ -15,6 +15,6 @@ Please perform a search to see if there's already an open bug that matches yours Try to provide as much information as you can about the bug, including the **full** text of any error messages or notices, and any steps required to replicate the problem in as much detail as possible. It's generally better to provide too much information than not enough. -See [this article](http://www.chiark.greenend.org.uk/~sgtatham/bugs.html) to learn more about submitting **good** bug reports. +See [this article](http://www.chiark.greenend.org.uk/~sgtatham/bugs.html) to learn more about submitting **good** bug reports. The better your bug report, the more likely we are to be able to actually fix it. -And last but not least: Better report an issue you encountered even if you don't write the perfect bug report! +And last but not least: It is better to report an issue you encountered even if you can't write the perfect bug report! \ No newline at end of file diff --git a/doc/Chats.md b/doc/Chats.md index 3698ad15da..4e392f8d8f 100644 --- a/doc/Chats.md +++ b/doc/Chats.md @@ -3,7 +3,7 @@ Chats * [Home](help) -There are two possibilities to use a chat on your friendica site +There are two possibilities to use chat on your friendica site * IRC Chat * Jappix @@ -14,13 +14,13 @@ IRC-Chat Plugin After activating the plugin, you can find the chat at [yoursite.com/irc](../irc). Note: you can use this chat without any login at your site so that everyone could use it. -If you follow the link, you will see the login page of the IR chat. +If you follow the link, you will see the login page of the IRC chat. Now choose a nickname and a chatroom. -You can choose every name for the room, even something like #superchatwhosenameisonlyknownbyme. -At last, solve the captchas and click the connect button. +You can choose any name you like for the room, even something like #superchatwhosenameisonlyknownbyme. +Finally, solve the captchas and click the connect button. The following window shows some text while connecting. -This text isn't importend for you, just wait for the next window. +This text isn't important, 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. diff --git a/doc/FAQ.md b/doc/FAQ.md index 36fe1a8b47..da58e09f7f 100644 --- a/doc/FAQ.md +++ b/doc/FAQ.md @@ -176,7 +176,7 @@ Depending on the features of the client you might encounter some glitches in usa ###Where I can find help? If you have problems with your Friendica page, you can ask the community at the [Friendica Support Group](https://helpers.pyxis.uberspace.de/profile/helpers). -If you can't use your default profile you can either use a test account [test server](http://friendica.com/node/31) respectively an account at a public site [list](http://dir.friendica.com/siteinfo) or you can use the Librelist mailing list. +If you can't use your default profile you can use an account at a public site [list](https://dir.friendica.social/servers) or you can use the Librelist mailing list. If you want to use the mailing list, please just send a mail to friendica AT librelist DOT com. If you are a theme developer, you will find help at this forum: [Friendica Theme Developers](https://friendica.eu/profile/ftdevs). @@ -188,7 +188,7 @@ Admin ###Can I configure multiple domains with the same code instance? -No, this function is no longer supported from Friendica 3.3 onwards. +No, this function is no longer supported as of Friendica 3.3 onwards. diff --git a/doc/Forums.md b/doc/Forums.md index 54e8e38791..78a3e193e5 100644 --- a/doc/Forums.md +++ b/doc/Forums.md @@ -22,7 +22,7 @@ This is the default selection. Community Forum/Celebrity Accounts provide the ability for people to become friends/fans of the forum without requiring approval. The exact setting you would use depends on how you wish to interact with people who join the page. -The "Soapbox" setting let's the page owner control all communications. +The "Soapbox" setting lets the page owner control all communications. Everything you post will go out to the forum members, but there will be no opportunity for interaction. This setting would typically be used for announcements or corporate communications. diff --git a/doc/Making-Friends.md b/doc/Making-Friends.md index 8f2985463e..448f125d79 100644 --- a/doc/Making-Friends.md +++ b/doc/Making-Friends.md @@ -9,7 +9,7 @@ How do you do it? The Directories --- -Friendica has two different kinds of "addressbook": +Friendica has two different kinds of "address book": The directory of the Friendica server you are registered on and the global directory that collects account information across all Friendica instances. The first thing you can do is look at the **Directory**. diff --git a/doc/Settings.md b/doc/Settings.md index e84418a453..a1c5f56213 100644 --- a/doc/Settings.md +++ b/doc/Settings.md @@ -130,7 +130,7 @@ By default, any (valid) email address is allowed in registrations. #### Allow Users to set remote_self -If you enable the `Allow Users to set remote_self` users can select Atom feeds from their contact list being their *remote self* in die advanced contact settings. +If you enable the `Allow Users to set remote_self` users can select Atom feeds from their contact list being their *remote self* in the advanced contact settings. Which means that postings by the remote self are automatically reposted by Friendica in their names. This feature can be used to let the user mirror e.g. blog postings into their Friendica postings. @@ -212,7 +212,7 @@ To simplify this process there is a button at the top of the page to reload all ## Themes The Themes section of the admin panel works similar to the Plugins section but let you control the themes on your Friendica node. -Each theme has a dedicated suppage showing the current status, some information about the theme and a screen-shot of the Friendica interface using the theme. +Each theme has a dedicated subpage showing the current status, some information about the theme and a screen-shot of the Friendica interface using the theme. Should the theme offer special settings, admins can set a global default value here. You can activate and deactivate themes on their dedicated sub-pages thus making them available for the users of the node. diff --git a/doc/andfinally.md b/doc/andfinally.md deleted file mode 100644 index f7aeb1bd45..0000000000 --- a/doc/andfinally.md +++ /dev/null @@ -1,22 +0,0 @@ -[[!meta title="And Finally..."]] - -And that brings the Quick Start to an end. - -Here are some more things to help get you started: - -**Groups** - - -- Friendica Support - problems? This is the place to ask. - -- Let's Talk a group for finding people and groups who share similar interests. - -- Local Friendica a page for local Friendica groups - - -**Documentation** - -- Connecting to more networks -- Help Index - - diff --git a/doc/api.md b/doc/api.md index 04abaa5632..222ac89e64 100644 --- a/doc/api.md +++ b/doc/api.md @@ -3,7 +3,7 @@ Friendica API * [Home](help) -The Friendica API aims to be compatible to the [GNU Social API](http://wiki.gnusocial.de/gnusocial:api) and the [Twitter API](https://dev.twitter.com/rest/public). +The Friendica API aims to be compatible with the [GNU Social API](http://wiki.gnusocial.de/gnusocial:api) and the [Twitter API](https://dev.twitter.com/rest/public). Please refer to the linked documentation for further information. @@ -43,13 +43,13 @@ In this document, endpoints which requires auth are marked with "AUTH" after end * network: network of the user #### Errors -When an error occour in API call, an HTTP error code is returned, with an error message +When an error occurs in API call, an HTTP error code is returned, with an error message Usually: -- 400 Bad Request: if parameter are missing or items can't be found -- 403 Forbidden: if authenticated user is missing -- 405 Method Not Allowed: if API was called with invalid method, eg. GET when API require POST -- 501 Not Implemented: if requested API doesn't exists -- 500 Internal Server Error: on other error contitions +- 400 Bad Request: if parameters are missing or items can't be found +- 403 Forbidden: if the authenticated user is missing +- 405 Method Not Allowed: if API was called with an invalid method, eg. GET when API require POST +- 501 Not Implemented: if the requested API doesn't exist +- 500 Internal Server Error: on other error conditions Error body is @@ -89,7 +89,7 @@ Unofficial Twitter command. It shows all direct answers (excluding the original * id: id of the post * count: Items per page (default: 20) * page: page number -* since_id: minimal id +* since_id: minimum id * max_id: maximum id * include_entities: "true" shows entities for pictures and links (Default: false) @@ -103,7 +103,7 @@ Unofficial Twitter command. It shows all direct answers (excluding the original #### Parameters * count: Items per page (default: 20) * page: page number -* since_id: minimal id +* since_id: minimum id * max_id: maximum id * getText: Defines the format of the status field. Can be "html" or "plain" * include_entities: "true" shows entities for pictures and links (Default: false) @@ -117,7 +117,7 @@ Unofficial Twitter command. It shows all direct answers (excluding the original #### Parameters * count: Items per page (default: 20) * page: page number -* since_id: minimal id +* since_id: minimum id * max_id: maximum id * getText: Defines the format of the status field. Can be "html" or "plain" * friendica_verbose: "true" enables different error returns (default: "false") @@ -128,7 +128,7 @@ Shows all direct messages of a conversation #### Parameters * count: Items per page (default: 20) * page: page number -* since_id: minimal id +* since_id: minimum id * max_id: maximum id * getText: Defines the format of the status field. Can be "html" or "plain" * uri: URI of the conversation @@ -139,7 +139,7 @@ Shows all direct messages of a conversation #### Parameters * count: Items per page (default: 20) * page: page number -* since_id: minimal id +* since_id: minimum id * max_id: maximum id * getText: Defines the format of the status field. Can be "html" or "plain" * include_entities: "true" shows entities for pictures and links (Default: false) @@ -182,7 +182,7 @@ HTTP 400 BadRequest #### Parameters * count: Items per page (default: 20) * page: page number -* since_id: minimal id +* since_id: minimum id * max_id: maximum id * include_entities: "true" shows entities for pictures and links (Default: false) @@ -208,26 +208,26 @@ Set this values will result in an empty array. --- ### followers/ids (*; AUTH) #### Parameters -* stringify_ids: Should the id numbers be sent as text (true) or number (false)? (default: false) +* stringify_ids: Send id numbers as text (true) or integers (false)? (default: false) #### Unsupported parameters * user_id * screen_name * cursor -Friendica doesn't allow showing followers of other users. +Friendica doesn't allow showing the followers of other users. --- ### friends/ids (*; AUTH) #### Parameters -* stringify_ids: Should the id numbers be sent as text (true) or number (false)? (default: false) +* stringify_ids: Send the id numbers as text (true) or integers (false)? (default: false) #### Unsupported parameters * user_id * screen_name * cursor -Friendica doesn't allow showing friends of other users. +Friendica doesn't allow showing the friends of other users. --- ### help/test (*) @@ -283,7 +283,7 @@ Friendica doesn't allow showing friends of other users. #### Parameters * count: Items per page (default: 20) * page: page number -* since_id: minimal id +* since_id: minimum id * max_id: maximum id * exclude_replies: don't show replies (default: false) * conversation_id: Shows all statuses of a given conversation. @@ -299,7 +299,7 @@ Friendica doesn't allow showing friends of other users. #### Parameters * count: Items per page (default: 20) * page: page number -* since_id: minimal id +* since_id: minimum id * max_id: maximum id * exclude_replies: don't show replies (default: false) * conversation_id: Shows all statuses of a given conversation. @@ -315,7 +315,7 @@ Friendica doesn't allow showing friends of other users. #### Parameters * count: Items per page (default: 20) * page: page number -* since_id: minimal id +* since_id: minimum id * max_id: maximum id * include_entities: "true" shows entities for pictures and links (Default: false) @@ -329,7 +329,7 @@ Friendica doesn't allow showing friends of other users. #### Parameters * count: Items per page (default: 20) * page: page number -* since_id: minimal id +* since_id: minimum id * max_id: maximum id * exclude_replies: don't show replies (default: false) * conversation_id: Shows all statuses of a given conversation. @@ -343,7 +343,7 @@ Friendica doesn't allow showing friends of other users. #### Parameters * count: Items per page (default: 20) * page: page number -* since_id: minimal id +* since_id: minimum id * max_id: maximum id * include_entities: "true" shows entities for pictures and links (Default: false) @@ -403,7 +403,7 @@ Friendica doesn't allow showing friends of other users. * screen_name: screen name (for technical reasons, this value is not unique!) * count: Items per page (default: 20) * page: page number -* since_id: minimal id +* since_id: minimum id * max_id: maximum id * exclude_replies: don't show replies (default: false) * conversation_id: Shows all statuses of a given conversation. @@ -426,7 +426,7 @@ It shows all direct answers (excluding the original post) to a given id. * id: id of the post * count: Items per page (default: 20) * page: page number -* since_id: minimal id +* since_id: minimum id * max_id: maximum id * include_entities: "true" shows entities for pictures and links (Default: false) @@ -640,7 +640,7 @@ If the note is linked to an item, the item is returned, just like one of the "st If the note is not linked to an item, a success status is returned: -* "success" (json) | "<status>success</status>" (xml) +* "success" (json) | success;" (xml) --- @@ -671,8 +671,8 @@ json ``` { "id": "photo id" - "created": "date(YYYY-MM-GG HH:MM:SS)", - "edited": "date(YYYY-MM-GG HH:MM:SS)", + "created": "date(YYYY-MM-DD HH:MM:SS)", + "edited": "date(YYYY-MM-DD HH:MM:SS)", "title": "photo title", "desc": "photo description", "album": "album name", @@ -695,8 +695,8 @@ xml ``` photo id - date(YYYY-MM-GG HH:MM:SS) - date(YYYY-MM-GG HH:MM:SS) + date(YYYY-MM-DD HH:MM:SS) + date(YYYY-MM-DD HH:MM:SS) photo title photo description album name @@ -793,13 +793,13 @@ On error: * album: name of the album to be deleted (always necessary) * album_new (optional): can be used to change the album of a single photo if photo_id is specified * allow_cid/allow_gid/deny_cid/deny_gid (optional): on create: empty string or omitting = public photo, specify in format '``````' for private photo; - on update: keys need to be present with empty values for setting a private photo now to public + on update: keys need to be present with empty values for changing a private photo to public both calls point to one function for creating AND updating photos. Saves data for the scales 0-2 to database (see above for scale description). Call adds non-visible entries to items table to enable authenticated contacts to comment/like the photo. Client should pay attention to the fact that updated access rights are not transferred to the contacts. i.e. public photos remain publicly visible if they have been commented/liked before setting visibility back to a limited group. -Currently it is best way to inform user that updating rights is not the best way, offer a solution to add photo as a new photo with the new rights. +Currently it is best to inform user that updating rights is not the right way to do this, and offer a solution to add photo as a new photo with the new rights instead. #### Return values @@ -884,8 +884,8 @@ On success: Array of: * profiles: array of the profile data On error: -HTTP 403 Forbidden: when no authentication provided -HTTP 400 Bad Request: if given profile_id is not in db or not assigned to authenticated user +HTTP 403 Forbidden: when no authentication was provided +HTTP 400 Bad Request: if given profile_id is not in the database or is not assigned to the authenticated user General description of profile data in API returns: * profile_id @@ -913,7 +913,7 @@ The following API calls are implemented in GNU Social but not in Friendica: (inc * blocks/create * blocks/destroy -The following API calls from the Twitter API aren't implemented neither in Friendica nor in GNU Social: +The following API calls from the Twitter API are not implemented in either Friendica or GNU Social: * statuses/mentions_timeline * statuses/retweets/:id @@ -990,7 +990,6 @@ The following API calls from the Twitter API aren't implemented neither in Frien ## Usage Examples ### BASH / cURL -Betamax has documentated some example API usage from a [bash script](https://en.wikipedia.org/wiki/Bash_(Unix_shell) employing [curl](https://en.wikipedia.org/wiki/CURL) (see [his posting](https://betamax65.de/display/betamax65/43539)). /usr/bin/curl -u USER:PASS https://YOUR.FRIENDICA.TLD/api/statuses/update.xml -d source="some source id" -d status="the status you want to post" diff --git a/doc/events.md b/doc/events.md index 0aca7a902b..81252987b7 100644 --- a/doc/events.md +++ b/doc/events.md @@ -9,15 +9,15 @@ Depending on the theme you are using, there might be an additional link from the ## Event Overview -The overview page shows the calendar of the current month, plus eventually some days in the beginning and the end. -Listed are all events for this month you created, or your contacts have shared with you. +The overview page shows the calendar of the current month, plus a few days days at the beginning and the end. +Listed are all events for this month, created by you, or shared with you by your contacts, This includes birthday reminders for contacts who share their birthday with you. From the controls, you can switch between month/week/day view. Flip through the view forwards and backwards. And return to *today*. -To create a new event, you can either follow the link "Create New Event" or make a double click on the desired box in the calendarium for when the event should take place. +To create a new event, you can either follow the link "Create New Event" or double click on the desired box in the calendar in which the event should take place. With a click on an existing event a pop-up box will be opened which shows you the event. From there you can edit the event or view the event at the source link, if you are the one who created the event. @@ -31,14 +31,14 @@ Fields marked with a *** have to be filled. * **Event Finishes**: enter the finishing date/time for the event here When you click in one of these fields a pop-up will be opened that allows you to pick the day and the time. -If you double clicked on the day box in the calendarium these fields will be pre-filled for you. +If you double clicked on the day box in the calendar these fields will be pre-filled for you. The finishing date/time has to be after the beginning date/time of the event. But you don't have to specify it. -If the event is open-end or the finishing date/time does not matter, just select the box below the two first fields. +If the event is open-ended or the finishing date/time does not matter, just select the box below the two first fields. -* **Adjust for viewer timezone**: If you check this box, the beginning and finisching times will automatically converted to the local time according to the timezone setting +* **Adjust for viewer timezone**: If you check this box, the beginning and finishing times will automatically converted to the local time according to the timezone setting -This might prevent too early birthday wishes, or the panic attac that you have forgotten the birthday from your buddy at the other end of the world. +This might prevent early birthday wishes, or the panic that you have forgotten the birthday from your buddy at the other side of the world. And similar events. * **Title**: a title for the event @@ -46,7 +46,7 @@ And similar events. * **Location**: the location the event will took place These three fields describe your events. -In the descirption and location field you can use BBCode to format the text. +In the description and location field you can use BBCode to format the text. * **Share this event**: when this box is checked the ACL will be shown to let you select with whom you wish to share the event. This works just like the controls of any other posting. @@ -59,13 +59,13 @@ When you publish an event, you can choose who shall receive it, as with a regula The recipients will see the posting about the event in their network-stream. Additionally it will be added to their calendar and thus be shown in their events overview page. -Recipients of the event-posting can comment or dis-/like the event, as with a regular posting, but also announce that they will attend, not attend or may-be attend the event with a single click. +Recipients of the event-posting can comment or dis-/like the event, as with a regular posting, and also announce that they will attend, not attend or may-be attend the event with a single click. ### Addons #### OpenStreetMap -If this addon is activated on you friendica node, the content of the location field will be mathced with the identification service of OSM when you submit the event. +If this addon is activated on you friendica node, the content of the location field will be matched with the identification service of OSM when you submit the event. Should OSM find anything matching, a map for the location will be embedded automatically at the end of the events view. #### Calendar Export diff --git a/doc/groupsandpages.md b/doc/groupsandpages.md deleted file mode 100644 index 5cfbc653cf..0000000000 --- a/doc/groupsandpages.md +++ /dev/null @@ -1,11 +0,0 @@ -This is the global directory. If you get lost, you can click this link to bring yourself back here. - -On this page, you'll find a collection of groups, forums and celebrity pages. Groups are not real people. Connecting to them is similar to "liking" something on Facebook, or signing up for a new forum. You don't have to feel awkward about introducing yourself to a new person, because they're not people! - -When you connect to a group, all messages to that group will start appearing in your network tab. You can comment on these posts, or post to the group yourself without ever having to add any of the groups members. This is a great way to make friends dynamically - you'll find people you like and add each other naturally instead of adding random strangers. Simply find a group you're interested in, and connect to it the same way you did with people in the last section. There are a lot of groups, and you're likely to get lost. Remember the link at the top of this page will bring you back here. - -Once you've added some groups, move on to the next section. - - - - diff --git a/doc/guide.md b/doc/guide.md deleted file mode 100644 index d76af92e25..0000000000 --- a/doc/guide.md +++ /dev/null @@ -1,13 +0,0 @@ -First things first, let's make sure you're logged in to your account. If you're not already logged in, do so in the frame below. - -Once you've logged in (or if you are already logged in), you'll now be looking at your profile page. - -This is a bit like your Facebook wall. It's where all your status messgages are kept, and where your friends come to post on your wall. To write your status, simply click in the box that says "share". When you do this, the box will expand. You can see some formatting options at the top such as Bold, Italics and Underline, as well as ways to add links and pictures. At the bottom you'll find some more links. You can use these to upload pictures and files from your computer, share websites with a bit of preview text, or embed video and audio files from elsewhere on the web. You can also set your post location here. - -Once you've finished writing your post, click on the padlock icon to select who can see it. If you do not use the padlock icon, your post will be public. This means it will appear to anybody who views your profile, and in the community tab if your site has it enabled, as well as in the network tab of any of your contacts. - -Play around with this a bit, then when you're ready to move on, we'll take a look at the Network Tab - - - - diff --git a/doc/htconfig.md b/doc/htconfig.md index b2f7182960..b2f7cf66e3 100644 --- a/doc/htconfig.md +++ b/doc/htconfig.md @@ -25,7 +25,7 @@ Example: To set the directory value please add this line to your .htconfig.php: * **allowed_link_protocols** (Array) - Allowed protocols in links URLs, add at your own risk. http is always allowed. * **birthday_input_format** - Default value is "ymd". * **block_local_dir** (Boolean) - Blocks the access to the directory of the local users. -* **auth_cookie_lifetime** (Integer) - Number of days that should pass without any activity from a before before the users who choosed "Remember me" when logging in from that browser is considered logged out. Defaults to 7. +* **auth_cookie_lifetime** (Integer) - Number of days that should pass without any activity before a user who chose "Remember me" when logging in is considered logged out. Defaults to 7. * **curl_range_bytes** - Maximum number of bytes that should be fetched. Default is 0, which mean "no limit". * **db_log** - Name of a logfile to log slow database queries * **db_loglimit** - If a database call lasts longer than this value it is logged @@ -41,13 +41,14 @@ Example: To set the directory value please add this line to your .htconfig.php: * **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. +* **dlogfile - location of the developer log file * **event_input_format** - Default value is "ymd". * **frontend_worker_timeout** - Value in minutes after we think that a frontend task was killed by the webserver. Default value is 10. * **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_connections** - The poller process isn't started when the maximum level of the possible database connections are used. When the system can't detect the maximum numbers of connection then this value can be used. +* **local_search** (Boolean) - Blocks search for users who are not logged in to prevent crawlers from blocking your system. +* **max_connections** - The maximum number of database connections which can be in use before the poller process is deferred to it's next interval. When the system can't detect the maximum numbers of connection then this value can be used. * **max_connections_level** - The maximum level of connections that are allowed to let the poller start. It is a percentage value. Default value is 75. * **max_contact_queue** - Default value is 500. * **max_batch_queue** - Default value is 1000. diff --git a/doc/makingnewfriends.md b/doc/makingnewfriends.md deleted file mode 100644 index 7eff1eda10..0000000000 --- a/doc/makingnewfriends.md +++ /dev/null @@ -1,11 +0,0 @@ -This is your Suggested Friends page. If you get lost, you can click this link to bring yourself back here. - -This is a bit like the Friend Suggestions page of Facebook. Everybody on this list has agreed that they may be suggested as a friend. This means they're unlikely to refuse an introduction you send, and they want to meet new people too! - -See somebody you like the look of? Click the connect button beneath their photograph. This will bring you to the introductions page. Fill in the form as instructed, and add a small note (optional). Now, wait a bit and they'll accept your request - note that these are real people, and it might take a while. Now you've added one, you're probably lost. Click the link at the top of this page to go back to the suggested friends list and add some more. - -Feel uncomfortable adding people you don't know? Don't worry - that's where Groups and Pages come in! - - - - diff --git a/doc/network.md b/doc/network.md deleted file mode 100644 index 36be159eab..0000000000 --- a/doc/network.md +++ /dev/null @@ -1,14 +0,0 @@ -This is your Network Tab. -If you get lost, you can click this link to bring yourself back here. - -This is a bit like the Newsfeed at Facebook or the Stream at Diaspora. -It's where all the posts from your contacts, groups, and feeds will appear. -If you're new, you won't see anything in this page, unless you posted your status in the last step. -If you've already added a few friends, you'll be able to see their posts. -Here, you can comment, like, or dislike posts, or click on somebody's name to visit their profile page where you can write on their wall. - -Now we need to fill it up, the first step, is to make some new friends. - - - - diff --git a/doc/smarty3-templates.md b/doc/smarty3-templates.md index 751ef20b31..fb70368968 100644 --- a/doc/smarty3-templates.md +++ b/doc/smarty3-templates.md @@ -35,7 +35,7 @@ Form Templates To guarantee a consistent look and feel for input forms, i.e. in the settings sections, there are templates for the basic form fields. They are initialized with an array of data, depending on the tyle of the field. -All of these take an array for holding the values, i.e. for an one line text input field, which is required and should be used to type email addesses use something along +All of these take an array for holding the values, eg,. for a one line text input field, which is required and should be used to type email addesses use something along the lines of: '$adminmail' => array('adminmail', t('Site administrator email address'), $adminmail, t('Your account email address must match this in order to use the web admin panel.'), 'required', '', 'email'), diff --git a/doc/themes.md b/doc/themes.md index b553debfd7..058eb49d83 100644 --- a/doc/themes.md +++ b/doc/themes.md @@ -3,7 +3,7 @@ * [Home](help) To change the look of friendica you have to touch the themes. -The current default theme is [duepunto zero](https://github.com/friendica/friendica/tree/master/view/theme/duepuntozero) but there are numerous others. +The current default theme is [Vier](https://github.com/friendica/friendica/tree/master/view/theme/vier) but there are numerous others. Have a look at [friendica-themes.com](http://friendica-themes.com) for an overview of the existing themes. In case none of them suits your needs, there are several ways to change a theme. If you need help theming, there is a forum @[ftdevs@friendica.eu](https://friendica.eu/profile/ftdevs) where you can ask theme specific questions and present your themes. @@ -69,7 +69,7 @@ Many themes are more *theme families* then only one theme. *duepunto zero* and *vier* allow easily to add new theme variation. We will go through the process of creating a new variation for *duepunto zero*. The same (well almost, some names change) procedure applies to the *vier* theme. -And similar steps are needed for *quattro* but this theme is using [lessc](http://lesscss.org/#docs) to maintaine the CSS files.. +And similar steps are needed for *quattro* but this theme is using [lessc](http://lesscss.org/#docs) to maintain the CSS files.. In @@ -159,7 +159,7 @@ If you think your color variation could be benifical for other friendica users a ### Inheritation -Say, you like the duepuntozero but you want to have the content of the outer columns left and right exchanged. +Say, you like the duepuntozero but you want to have the content of the outer columns left and right exchanged. That would be not a color variation as shown above. Instead we will create a new theme, duepuntozero_lr, inherit the properties of duepuntozero and make small changes to the underlying php files. @@ -202,7 +202,7 @@ That done, you can select it in the settings like any other activated theme. ## Creating a Theme from Scratch Keep patient. -Basically what you have to do is identifying which template you have to change so it looks more like what you want. +Basically what you have to do is identify which template you have to change so it looks more like what you want. Adopt the CSS of the theme accordingly. And iterate the process until you have the theme the way you want it. @@ -243,11 +243,11 @@ For example, have a look at the theme.php of the *quattro* theme: */ You see the definition of the themes name, it's version and the initial author of the theme. -These three information should be listed. -If the original author is not anymore working on the theme, but a maintainer has taken over, the maintainer should be listed as well. +These three pieces of information should be listed. +If the original author is no longer working on the theme, but a maintainer has taken over, the maintainer should be listed as well. The information from the theme header will be displayed in the admin panelö. -Next crucial part of the theme.php file is a definition of an init function. +The next crucial part of the theme.php file is a definition of an init function. The name of the function is _init. So in the case of quattro it is @@ -256,7 +256,7 @@ So in the case of quattro it is set_template_engine($a, 'smarty3'); } -Here we have set the basic theme information, in this case they are empthy. +Here we have set the basic theme information, in this case they are empty. But the array needs to be set. And we have set the template engine that should be used by friendica for this theme. At the moment you should use the *smarty3* engine. @@ -289,4 +289,4 @@ The default file is in /view/default.php if you want to change it, say adding a 4th column for banners of your favourite FLOSS projects, place a new default.php file in your theme directory. -As with the theme.php file, you can use the properties of the $a variable with holds the friendica application to decide what content is displayed. \ No newline at end of file +As with the theme.php file, you can use the properties of the $a variable with holds the friendica application to decide what content is displayed. diff --git a/doc/translations.md b/doc/translations.md index 61d91bee5b..c14b685be1 100644 --- a/doc/translations.md +++ b/doc/translations.md @@ -6,7 +6,7 @@ Friendica translations Translation Process ------------------- -The strings used in the UI of Friendica is translated at [Transifex] [1] and then included in the git repository at github. +The strings used in the UI of Friendica are translated at [Transifex] [1] and then included in the git repository at github. If you want to help with translation for any language, be it correcting terms or translating friendica to a currently not supported language, please register an account at transifex.com and contact the friendica translation team there. Translating friendica is simple. @@ -22,7 +22,7 @@ If you want to help translating, please concentrate on the core messages.po file We will only include translations with a sufficient translated messages.po file. Translations of addons will only be included, when the core file is included as well. -If you want to get your work into the source tree yourself, feel free to do so and contact us with and question that arises. +If you want to get your work into the source tree yourself, feel free to do so and contact us with and questions that arise. The process is simple and friendica ships with all the tools necessary. The location of the translated files in the source tree is From e41c983f2ee4f299f4dca460bce56eefd085eee0 Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Sat, 20 May 2017 02:38:01 +0100 Subject: [PATCH 020/125] Switch image URL to master branch --- doc/BBCode.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/BBCode.md b/doc/BBCode.md index b4b7faf64e..6eebed4864 100644 --- a/doc/BBCode.md +++ b/doc/BBCode.md @@ -65,13 +65,13 @@ table.bbcodes > * > tr > th { Friendica - [img]https://raw.githubusercontent.com/friendica/friendica/develop/images/friendica-32.jpg[/img] - Immagine/foto + [img]https://raw.githubusercontent.com/friendica/friendica/master/images/friendica-32.jpg[/img] + Immagine/foto - [img=64x32]https://raw.githubusercontent.com/friendica/friendica/develop/images/friendica-32.jpg[/img]
+ [img=64x32]https://raw.githubusercontent.com/friendica/friendica/master/images/friendica-32.jpg[/img]

Note: provided height is simply discarded. - + [size=xx-small]small text[/size] From 2e9ab155831ec20c639ea416fa628e96f9d6fd0c Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sat, 20 May 2017 11:12:51 +0200 Subject: [PATCH 021/125] links in Account Basics --- doc/de/Account-Basics.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/de/Account-Basics.md b/doc/de/Account-Basics.md index ddd3d9ef89..5052598154 100644 --- a/doc/de/Account-Basics.md +++ b/doc/de/Account-Basics.md @@ -9,10 +9,10 @@ Account - Basics Nicht alle Friendica-Knoten bieten die Möglichkeit zur Registrierung. Wenn die Registrierung möglich ist, wird ein "Registrieren"-Link unter dem Login-Feld auf der Startseite angezeigt, der zur Registrierungsseite führt. Die Stärke unseres Netzwerks ist, dass die verschiedenen Knoten komplett kompatibel zueinander sind. -Wenn der Knoten, den Du besuchst, keine Registrierung anbietet, oder wenn Du glaubst, dass Dir eine andere Seite möglicherweise besser gefällt, dann kannst Du hier eine Liste von öffentlichen Servern (Knoten) finden und den Knoten heraus suchen, der am Besten zu Deinen Anforderungen passt. +Wenn der Knoten, den Du besuchst, keine Registrierung anbietet, oder wenn Du glaubst, dass Dir eine andere Seite möglicherweise besser gefällt, dann kannst Du hier eine Liste von öffentlichen Servern (Knoten) finden und den Knoten heraus suchen, der am Besten zu Deinen Anforderungen passt. Wenn Du Deinen eigenen Server aufsetzen willst, kannst Du das ebenfalls machen. -Besuche die Friendica-Webseite, um den Code mit den Installationsanleitungen herunterzuladen. +Besuche die Friendica-Webseite, um den Code mit den Installationsanleitungen herunterzuladen. Es ist ein einfacher Installationsprozess, den jeder mit ein wenig Erfahrungen im Webseiten-Hosting oder mit grundlegenden Linux-Erfahrungen einfach handhaben kann. From 617c094beb176d6a8b7835f57d638c088ab0ac22 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sat, 20 May 2017 11:20:31 +0200 Subject: [PATCH 022/125] links in BBCode docs --- doc/de/BBCode.md | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/doc/de/BBCode.md b/doc/de/BBCode.md index 5dc8f3bb06..81dfcddc13 100644 --- a/doc/de/BBCode.md +++ b/doc/de/BBCode.md @@ -61,17 +61,17 @@ table.bbcodes > * > tr > th { rot - [url=http://www.friendica.com]Friendica[/url] - Friendica + [url=http://friendi.ca]Friendica[/url] + Friendica - [img]http://friendica.com/sites/default/files/friendika-32.png[/img] - Immagine/foto + [img]https://raw.githubusercontent.com/friendica/friendica/master/images/friendica-32.jpg[/img] + Immagine/foto - [img=64x32]http://friendica.com/sites/default/files/friendika-32.png[/img]
+ [img=64x32]https://raw.githubusercontent.com/friendica/friendica/master/images/friendica-32.jpg[/img]

Note: provided height is simply discarded. - + [size=xx-small]kleiner Text[/size] @@ -99,23 +99,23 @@ table.bbcodes > * > tr > th { Ergebnis - [url]http://friendica.com[/url] - http://friendica.com + [url]http://friendi.ca[/url] + http://friendi.ca - [url=http://friendica.com]Friendica[/url] - Friendica + [url=http://friendi.ca.com]Friendica[/url] + Friendica - [bookmark]http://friendica.com[/bookmark]

-#^[url]http://friendica.com[/url] -

Friendica: http://friendica.com

+ [bookmark]http://friendi.ca[/bookmark]

+#^[url]http://friendi.ca[/url] +

Friendica: http://friendi.ca

- [bookmark=http://friendica.com]Lesezeichen[/bookmark]

-#^[url=http://friendica.com]Lesezeichen[/url]

-#[url=http://friendica.com]^[/url][url=http://friendica.com]Lesezeichen[/url] -

Friendica: Lesezeichen

+ [bookmark=http://friendi.ca]Lesezeichen[/bookmark]

+#^[url=http://friendi.ca]Lesezeichen[/url]

+#[url=http://friendi.ca]^[/url][url=http://friendi.ca]Lesezeichen[/url] +

Friendica: Lesezeichen

[url=/posts/f16d77b0630f0134740c0cc47a0ea02a]Diaspora Beitrag mit GUID[/url] From 09b5fea371b6f0bab47351e6e5b30d03d47e0e6b Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sat, 20 May 2017 11:22:47 +0200 Subject: [PATCH 023/125] removed de/andfinally from docs --- doc/de/andfinally.md | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 doc/de/andfinally.md diff --git a/doc/de/andfinally.md b/doc/de/andfinally.md deleted file mode 100644 index a873b046d6..0000000000 --- a/doc/de/andfinally.md +++ /dev/null @@ -1,19 +0,0 @@ -... und zuletzt -=============== - -Und damit sind wir auch schon am Ende der Schnellstartanleitung. - -Hier sind noch einige weitere Dinge, die Dir den Start vereinfachen können. - -**Gruppen** - - -- Friendica Support - Probleme? Dann ist das der Platz, um zu fragen! - - -**Dokumentation** - -- Zu weiteren Netzwerken verbinden -- Zur Startseite der Hilfe - - From b6d646cb85b542a8f905de45e115a6f4fe510601 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sat, 20 May 2017 11:24:28 +0200 Subject: [PATCH 024/125] removed some more files from doc/de --- doc/de/makingnewfriends.md | 27 --------------------------- doc/de/network.md | 20 -------------------- 2 files changed, 47 deletions(-) delete mode 100644 doc/de/makingnewfriends.md delete mode 100644 doc/de/network.md diff --git a/doc/de/makingnewfriends.md b/doc/de/makingnewfriends.md deleted file mode 100644 index 8b15cec900..0000000000 --- a/doc/de/makingnewfriends.md +++ /dev/null @@ -1,27 +0,0 @@ -Neue Freunde finden -============== - -* [Zur Startseite der Hilfe](help) - -Hier siehst du die Kontaktvorschläge. -Wenn du dich mal verirrt hast, kannst du diesen Link klicken und wieder hierher kommen. - -Diese Seite ist ein wenig wie die Kontaktvorschläge in Facebook. -Jeder auf dieser Liste hat zugestimmt, als Kontaktvorschlag zu erscheinen. -Das bedeutet, das sie Anfragen meist nicht ablehnen, da sie neue Leute kennenlernen wollen. - -Siehst du jemanden, dessen Aussehen du magst? -Klicke auf den "Verbinden"-Button beim Foto. -Als nächstes kommst du zur Seite "Freundschafts-/Kontaktanfrage". -Fülle das Formular wie vorgegeben aus und trage optional eine kleine Notiz ein. -Nun musst du nur noch auf die Bestätigung warten. -Beachte dabei, dass es sich um reale Personen handelt und es somit etwas dauern kann. -Jetzt, nachdem du jemanden hinzugefügt hast, weißt du vielleicht nicht mehr, wie du zurückkommst. -Klicke einfach auf den Link oben auf dieser Seite und du kommst zurück zur Seite mit den Kontaktvorschlägen, um weitere Personen hinzuzufügen. - -Du willst nicht einfach Personen hinzufügen, die du nicht kennst? -Kein Problem - an dieser Stelle kommen wir zu den Gruppen und Seiten. - - - - diff --git a/doc/de/network.md b/doc/de/network.md deleted file mode 100644 index 1544553198..0000000000 --- a/doc/de/network.md +++ /dev/null @@ -1,20 +0,0 @@ -Deine "Netzwerk"-Seite -============== - -* [Zur Startseite der Hilfe](help) - -Das ist dein "Netzwerk"-Tab. -Wenn du dich mal verirrt hast, kannst du diesen Link klicken, um wieder hierher zu kommen. - -Diese Seite ist ein wenig wie die News-Seite in Facebook oder der Stream in Diaspora. -Hier findest du alle Beiträge deiner Kontakte, Gruppen und Feeds, die du eingetragen hast. -Wenn du neu bist, siehst du hier noch nichts, falls du deinen Status im letzten Schritt noch nicht eingetragen hast. -Wenn du bereits ein paar Freunde eingetragen hast, findest du hier ihre Beiträge. -Hier kannst du Beiträge kommentieren, eintragen, dass du den Beitrag magst oder ablehnst oder die Profile durch einen Klick auf deren Namen anschauen und auf deren Seite ("Wall") Nachrichten schreiben. - -Nun wollen wir diese Seite mit Inhalt füllen. -Der erste Schritt ist es, Leute zu deinem Account hinzuzufügen. - - - - From 87e7fac397d3a077dc1c7f49e53ec9d0cd6de739 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Sat, 20 May 2017 13:18:20 -0400 Subject: [PATCH 025/125] Frio: Fix hubzilla scrollToItem - Removed unnecessary item guid truncation --- view/theme/frio/js/mod_display.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/view/theme/frio/js/mod_display.js b/view/theme/frio/js/mod_display.js index ed126d60cd..fd74ccb3ce 100644 --- a/view/theme/frio/js/mod_display.js +++ b/view/theme/frio/js/mod_display.js @@ -4,9 +4,8 @@ // Catch the GUID from the URL var itemGuid = window.location.pathname.split("/").pop(); -var itemGuidSafe = itemGuid.replace(/%.*/, ''); $(window).load(function(){ // Scroll to the Item by its GUID - scrollToItem('item-' + itemGuidSafe); + scrollToItem('item-' + itemGuid); }); From 44efdc3e1b01328a226c79e25834fe7adb2dbaf4 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 20 May 2017 20:02:06 +0000 Subject: [PATCH 026/125] Central item expiration routine for external items --- doc/htconfig.md | 1 + include/dbclean.php | 79 ++++++++++++++++++++++++++++++++++++++++----- 2 files changed, 72 insertions(+), 8 deletions(-) diff --git a/doc/htconfig.md b/doc/htconfig.md index b2f7182960..ce0b446def 100644 --- a/doc/htconfig.md +++ b/doc/htconfig.md @@ -35,6 +35,7 @@ Example: To set the directory value please add this line to your .htconfig.php: * **db_loglimit_index_high** - Number of index rows to be logged anyway (for any index) * **db_log_index_blacklist** - Blacklist of indexes that shouldn't be watched * **dbclean** (Boolean) - Enable the automatic database cleanup process +* **dbclean-expire-days** (Integer) - Days after which remote items will be deleted. Own items, and marked or filed items are kept. * **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. diff --git a/include/dbclean.php b/include/dbclean.php index ff4993c4a0..024b845f7d 100644 --- a/include/dbclean.php +++ b/include/dbclean.php @@ -17,9 +17,14 @@ function dbclean_run(&$argv, &$argc) { $stage = 0; } + // Get the expire days for step 8 and 9 + $days = Config::get('system', 'dbclean-expire-days', 0); + if ($stage == 0) { - for ($i = 1; $i <= 7; $i++) { - if (!Config::get('system', 'finished-dbclean-'.$i, false)) { + for ($i = 1; $i <= 9; $i++) { + // Execute the background script for a step when it isn't finished. + // Execute step 8 and 9 only when $days is defined. + if (!Config::get('system', 'finished-dbclean-'.$i, false) AND (($i < 8) OR ($days > 0))) { proc_run(PRIORITY_LOW, 'include/dbclean.php', $i); } } @@ -39,6 +44,9 @@ function remove_orphans($stage = 0) { // We split the deletion in many small tasks $limit = 1000; + // Get the expire days for step 8 and 9 + $days = Config::get('system', 'dbclean-expire-days', 0); + if ($stage == 1) { $last_id = Config::get('system', 'dbclean-last-id-1', 0); @@ -61,11 +69,6 @@ function remove_orphans($stage = 0) { logger("Done deleting ".$count." old global item entries from item table without user copy. Last ID: ".$last_id); Config::set('system', 'dbclean-last-id-1', $last_id); - - // We will eventually set this value when we found a good way to delete these items in another way. - // if ($count < $limit) { - // Config::set('system', 'finished-dbclean-1', true); - // } } elseif ($stage == 2) { $last_id = Config::get('system', 'dbclean-last-id-2', 0); @@ -216,11 +219,71 @@ function remove_orphans($stage = 0) { if ($count < $limit) { Config::set('system', 'finished-dbclean-7', true); } + } elseif ($stage == 8) { + if ($days <= 0) { + return; + } + + $last_id = Config::get('system', 'dbclean-last-id-8', 0); + + logger("Deleting expired threads. Last ID: ".$last_id); + $r = dba::p("SELECT `thread`.`iid` FROM `thread` + INNER JOIN `contact` ON `thread`.`contact-id` = `contact`.`id` AND NOT `notify_new_posts` + WHERE `thread`.`received` < UTC_TIMESTAMP() - INTERVAL ? DAY + AND NOT `thread`.`mention` AND NOT `thread`.`starred` + AND NOT `thread`.`wall` AND NOT `thread`.`origin` + AND `thread`.`uid` != 0 AND `thread`.`iid` >= ? + AND NOT `thread`.`iid` IN (SELECT `parent` FROM `item` + WHERE (`item`.`starred` OR (`item`.`resource-id` != '') + OR (`item`.`file` != '') OR (`item`.`event-id` != '') + OR (`item`.`attach` != '') OR `item`.`wall` OR `item`.`origin`) + AND `item`.`parent` = `thread`.`iid`) + ORDER BY `thread`.`iid` LIMIT 1000", $days, $last_id); + $count = dba::num_rows($r); + if ($count > 0) { + logger("found expired threads: ".$count); + while ($thread = dba::fetch($r)) { + $last_id = $thread["iid"]; + dba::delete('thread', array('iid' => $thread["iid"])); + } + } else { + logger("No expired threads found"); + } + dba::close($r); + logger("Done deleting ".$count." expired threads. Last ID: ".$last_id); + + Config::set('system', 'dbclean-last-id-8', $last_id); + } elseif ($stage == 9) { + if ($days <= 0) { + return; + } + + $last_id = Config::get('system', 'dbclean-last-id-9', 0); + $till_id = Config::get('system', 'dbclean-last-id-8', 0); + + logger("Deleting old global item entries from expired threads from ID ".$last_id." to ID ".$till_id); + $r = dba::p("SELECT `id` FROM `item` WHERE `uid` = 0 AND + NOT EXISTS (SELECT `guid` FROM `item` AS `i` WHERE `item`.`guid` = `i`.`guid` AND `i`.`uid` != 0) AND + `received` < UTC_TIMESTAMP() - INTERVAL 90 DAY AND `id` >= ? AND `id` <= ? + ORDER BY `id` LIMIT ".intval($limit), $last_id, $till_id); + $count = dba::num_rows($r); + if ($count > 0) { + logger("found global item entries from expired threads: ".$count); + while ($orphan = dba::fetch($r)) { + $last_id = $orphan["id"]; + dba::delete('item', array('id' => $orphan["id"])); + } + } else { + logger("No global item entries from expired threads"); + } + dba::close($r); + logger("Done deleting ".$count." old global item entries from expired threads. Last ID: ".$last_id); + + Config::set('system', 'dbclean-last-id-9', $last_id); } // Call it again if not all entries were purged if (($stage != 0) AND ($count > 0)) { proc_run(PRIORITY_MEDIUM, 'include/dbclean.php'); } - } From 88e5e06b45fef7cc9c9b590ec42e28615bb1b697 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Sun, 21 May 2017 13:40:51 -0400 Subject: [PATCH 027/125] Standards --- view/theme/frio/js/textedit.js | 41 +++++++++++++++++----------------- 1 file changed, 21 insertions(+), 20 deletions(-) diff --git a/view/theme/frio/js/textedit.js b/view/theme/frio/js/textedit.js index 8794658dd6..bbbd8fde86 100644 --- a/view/theme/frio/js/textedit.js +++ b/view/theme/frio/js/textedit.js @@ -3,7 +3,7 @@ */ -function insertFormatting(BBcode,id) { +function insertFormatting(BBcode, id) { var tmpStr = $("#comment-edit-text-" + id).val(); if (tmpStr == '') { $("#comment-edit-text-" + id).addClass("comment-edit-text-full"); @@ -11,7 +11,7 @@ function insertFormatting(BBcode,id) { openMenu("comment-edit-submit-wrapper-" + id); } - textarea = document.getElementById("comment-edit-text-" +id); + textarea = document.getElementById("comment-edit-text-" + id); if (document.selection) { textarea.focus(); selected = document.selection.createRange(); @@ -62,7 +62,7 @@ function commentExpand(id) { return true; } -function commentClose(obj,id) { +function commentClose(obj, id) { if (obj.value == '') { $("#comment-edit-text-" + id).removeClass("comment-edit-text-full"); $("#comment-edit-text-" + id).addClass("comment-edit-text-empty"); @@ -74,10 +74,9 @@ function commentClose(obj,id) { } function showHideCommentBox(id) { - if( $('#comment-edit-form-' + id).is(':visible')) { + if ($('#comment-edit-form-' + id).is(':visible')) { $('#comment-edit-form-' + id).hide(); - } - else { + } else { $('#comment-edit-form-' + id).show(); } } @@ -86,8 +85,8 @@ function commentOpenUI(obj, id) { $("#comment-edit-text-" + id).addClass("comment-edit-text-full").removeClass("comment-edit-text-empty"); // Choose an arbitrary tab index that's greater than what we're using in jot (3 of them) // The submit button gets tabindex + 1 - $("#comment-edit-text-" + id).attr('tabindex','9'); - $("#comment-edit-submit-" + id).attr('tabindex','10'); + $("#comment-edit-text-" + id).attr('tabindex', '9'); + $("#comment-edit-submit-" + id).attr('tabindex', '10'); $("#comment-edit-submit-wrapper-" + id).show(); // initialize autosize for this comment autosize($("#comment-edit-text-" + id + ".text-autosize")); @@ -120,7 +119,7 @@ function jotTextCloseUI(obj) { } } -function commentOpen(obj,id) { +function commentOpen(obj, id) { if (obj.value == '') { $("#comment-edit-text-" + id).addClass("comment-edit-text-full"); $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty"); @@ -131,7 +130,7 @@ function commentOpen(obj,id) { return false; } -function commentInsert(obj,id) { +function commentInsert(obj, id) { var tmpStr = $("#comment-edit-text-" + id).val(); if (tmpStr == '') { $("#comment-edit-text-" + id).addClass("comment-edit-text-full"); @@ -139,14 +138,14 @@ function commentInsert(obj,id) { openMenu("comment-edit-submit-wrapper-" + id); } var ins = $(obj).html(); - ins = ins.replace('<','<'); - ins = ins.replace('>','>'); - ins = ins.replace('&','&'); - ins = ins.replace('"','"'); + ins = ins.replace('<', '<'); + ins = ins.replace('>', '>'); + ins = ins.replace('&', '&'); + ins = ins.replace('"', '"'); $("#comment-edit-text-" + id).val(tmpStr + ins); } -function qCommentInsert(obj,id) { +function qCommentInsert(obj, id) { var tmpStr = $("#comment-edit-text-" + id).val(); if (tmpStr == '') { $("#comment-edit-text-" + id).addClass("comment-edit-text-full"); @@ -154,15 +153,17 @@ function qCommentInsert(obj,id) { openMenu("comment-edit-submit-wrapper-" + id); } var ins = $(obj).val(); - ins = ins.replace('<','<'); - ins = ins.replace('>','>'); - ins = ins.replace('&','&'); - ins = ins.replace('"','"'); + ins = ins.replace('<', '<'); + ins = ins.replace('>', '>'); + ins = ins.replace('&', '&'); + ins = ins.replace('"', '"'); $("#comment-edit-text-" + id).val(tmpStr + ins); $(obj).val(''); } -function confirmDelete() { return confirm(aStr.delitem); } +function confirmDelete() { + return confirm(aStr.delitem); +} /** * Hide and removes an item element from the DOM after the deletion url is From d14da1214cbe495a05a32d822f97dd12b3da21e3 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Sun, 21 May 2017 13:41:28 -0400 Subject: [PATCH 028/125] Remove special case of "url" from insertFormatting --- view/theme/duepuntozero/theme.php | 12 ++---------- view/theme/frio/js/textedit.js | 12 ++---------- view/theme/frost-mobile/js/theme.js | 12 ++---------- view/theme/frost/js/theme.js | 12 ++---------- view/theme/quattro/js/quattro.js | 12 ++---------- view/theme/smoothly/templates/bottom.tpl | 18 ++++-------------- view/theme/smoothly/theme.php | 12 ++---------- view/theme/vier/theme.php | 12 ++---------- 8 files changed, 18 insertions(+), 84 deletions(-) diff --git a/view/theme/duepuntozero/theme.php b/view/theme/duepuntozero/theme.php index dc8f29b2fa..efb43a9248 100644 --- a/view/theme/duepuntozero/theme.php +++ b/view/theme/duepuntozero/theme.php @@ -37,19 +37,11 @@ function insertFormatting(BBcode, id) { if (document.selection) { textarea.focus(); selected = document.selection.createRange(); - if (BBcode == "url") { - selected.text = "["+BBcode+"]" + "http://" + selected.text + "[/"+BBcode+"]"; - } else { - selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]"; - } + selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]"; } else if (textarea.selectionStart || textarea.selectionStart == "0") { var start = textarea.selectionStart; var end = textarea.selectionEnd; - if (BBcode == "url") { - textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + "http://" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length); - } else { - textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length); - } + textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length); } return true; diff --git a/view/theme/frio/js/textedit.js b/view/theme/frio/js/textedit.js index bbbd8fde86..2079c20cdc 100644 --- a/view/theme/frio/js/textedit.js +++ b/view/theme/frio/js/textedit.js @@ -15,19 +15,11 @@ function insertFormatting(BBcode, id) { if (document.selection) { textarea.focus(); selected = document.selection.createRange(); - if (BBcode == "url") { - selected.text = "["+BBcode+"]" + "http://" + selected.text + "[/"+BBcode+"]"; - } else { - selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]"; - } + selected.text = "[" + BBcode + "]" + selected.text + "[/" + BBcode + "]"; } else if (textarea.selectionStart || textarea.selectionStart == "0") { var start = textarea.selectionStart; var end = textarea.selectionEnd; - if (BBcode == "url") { - textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + "http://" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length); - } else { - textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length); - } + textarea.value = textarea.value.substring(0, start) + "[" + BBcode + "]" + textarea.value.substring(start, end) + "[/" + BBcode + "]" + textarea.value.substring(end, textarea.value.length); } $(textarea).trigger('change'); diff --git a/view/theme/frost-mobile/js/theme.js b/view/theme/frost-mobile/js/theme.js index abb2ed7c42..09b5e4d383 100644 --- a/view/theme/frost-mobile/js/theme.js +++ b/view/theme/frost-mobile/js/theme.js @@ -423,19 +423,11 @@ function insertFormatting(BBcode, id) { if (document.selection) { textarea.focus(); selected = document.selection.createRange(); - if (BBcode == "url") { - selected.text = "["+BBcode+"=http://]" + selected.text + "[/"+BBcode+"]"; - } else { - selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]"; - } + selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]"; } else if (textarea.selectionStart || textarea.selectionStart == "0") { var start = textarea.selectionStart; var end = textarea.selectionEnd; - if (BBcode == "url") { - textarea.value = textarea.value.substring(0, start) + "["+BBcode+"=http://]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length); - } else { - textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length); - } + textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length); } return true; diff --git a/view/theme/frost/js/theme.js b/view/theme/frost/js/theme.js index 52e181a622..bf7bdd585c 100644 --- a/view/theme/frost/js/theme.js +++ b/view/theme/frost/js/theme.js @@ -603,19 +603,11 @@ function insertFormatting(BBcode, id) { if (document.selection) { textarea.focus(); selected = document.selection.createRange(); - if (BBcode == "url") { - selected.text = "["+BBcode+"=http://]" + selected.text + "[/"+BBcode+"]"; - } else { - selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]"; - } + selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]"; } else if (textarea.selectionStart || textarea.selectionStart == "0") { var start = textarea.selectionStart; var end = textarea.selectionEnd; - if (BBcode == "url") { - textarea.value = textarea.value.substring(0, start) + "["+BBcode+"=http://]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length); - } else { - textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length); - } + textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length); } return true; diff --git a/view/theme/quattro/js/quattro.js b/view/theme/quattro/js/quattro.js index 9ef66e220e..469a3bbc93 100644 --- a/view/theme/quattro/js/quattro.js +++ b/view/theme/quattro/js/quattro.js @@ -71,19 +71,11 @@ function insertFormatting(BBcode, id) { if (document.selection) { textarea.focus(); selected = document.selection.createRange(); - if (BBcode == "url") { - selected.text = "["+BBcode+"]" + "http://" + selected.text + "[/"+BBcode+"]"; - } else { - selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]"; - } + selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]"; } else if (textarea.selectionStart || textarea.selectionStart == "0") { var start = textarea.selectionStart; var end = textarea.selectionEnd; - if (BBcode == "url") { - textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + "http://" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length); - } else { - textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length); - } + textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length); } return true; diff --git a/view/theme/smoothly/templates/bottom.tpl b/view/theme/smoothly/templates/bottom.tpl index caebe37711..3b38eecb56 100644 --- a/view/theme/smoothly/templates/bottom.tpl +++ b/view/theme/smoothly/templates/bottom.tpl @@ -20,23 +20,13 @@ function insertFormatting(BBcode, id) { if (document.selection) { textarea.focus(); selected = document.selection.createRange(); - if (BBcode == "url") { - selected.text = "["+BBcode+"]" + "http://" + selected.text + "[/"+BBcode+"]"; - } else { - selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]"; - } + selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]"; } else if (textarea.selectionStart || textarea.selectionStart == "0") { var start = textarea.selectionStart; var end = textarea.selectionEnd; - if (BBcode == "url") { - textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" - + "http://" + textarea.value.substring(start, end) - + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length); - } else { - textarea.value = textarea.value.substring(0, start) - + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" - + textarea.value.substring(end, textarea.value.length); - } + textarea.value = textarea.value.substring(0, start) + + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + + textarea.value.substring(end, textarea.value.length); } return true; diff --git a/view/theme/smoothly/theme.php b/view/theme/smoothly/theme.php index 3efcf54f41..00f1147211 100644 --- a/view/theme/smoothly/theme.php +++ b/view/theme/smoothly/theme.php @@ -33,19 +33,11 @@ function insertFormatting(BBcode, id) { if (document.selection) { textarea.focus(); selected = document.selection.createRange(); - if (BBcode == "url") { - selected.text = "["+BBcode+"]" + "http://" + selected.text + "[/"+BBcode+"]"; - } else { - selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]"; - } + selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]"; } else if (textarea.selectionStart || textarea.selectionStart == "0") { var start = textarea.selectionStart; var end = textarea.selectionEnd; - if (BBcode == "url") { - textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + "http://" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length); - } else { - textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length); - } + textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length); } return true; diff --git a/view/theme/vier/theme.php b/view/theme/vier/theme.php index da2c08335d..269b34460c 100644 --- a/view/theme/vier/theme.php +++ b/view/theme/vier/theme.php @@ -50,19 +50,11 @@ function insertFormatting(BBcode, id) { if (document.selection) { textarea.focus(); selected = document.selection.createRange(); - if (BBcode == "url") { - selected.text = "["+BBcode+"]" + "http://" + selected.text + "[/"+BBcode+"]"; - } else { - selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]"; - } + selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]"; } else if (textarea.selectionStart || textarea.selectionStart == "0") { var start = textarea.selectionStart; var end = textarea.selectionEnd; - if (BBcode == "url") { - textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + "http://" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length); - } else { - textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length); - } + textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length); } return true; From dc76e81d3ea315cd8230cfd249b817afb8a8395d Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Mon, 22 May 2017 14:44:51 +0200 Subject: [PATCH 029/125] Bugfix: fix frio's event dropdown color --- view/theme/frio/css/mod_events.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/theme/frio/css/mod_events.css b/view/theme/frio/css/mod_events.css index 293ffe06b4..6932b1d507 100644 --- a/view/theme/frio/css/mod_events.css +++ b/view/theme/frio/css/mod_events.css @@ -22,7 +22,7 @@ #fc-header-right { margin-top: -4px; } -#fc-header-right button { +#fc-header-right .dropdown > button { color: inherit; } #event-calendar-title { From c84a2fb1a32f5c95d3f46e765d7de4bca896bc0c Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 23 May 2017 05:26:22 +0000 Subject: [PATCH 030/125] Bugfix ParseUrl: Only fetch a range to avoid memory issues --- src/ParseUrl.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/ParseUrl.php b/src/ParseUrl.php index e8b58806d9..9e21736a84 100644 --- a/src/ParseUrl.php +++ b/src/ParseUrl.php @@ -155,6 +155,12 @@ class ParseUrl { @curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2); } + $range = intval(Config::get('system', 'curl_range_bytes', 0)); + + if ($range > 0) { + curl_setopt($ch, CURLOPT_RANGE, '0-' . $range); + } + $header = curl_exec($ch); $curl_info = @curl_getinfo($ch); curl_close($ch); From 1bd6d7dd7a6e951c04df10ff27781832e0ba7c4d Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 23 May 2017 05:28:51 +0000 Subject: [PATCH 031/125] Bugfix OStatus: Avoid empty author data --- include/ostatus.php | 132 +++++++++++++++++++++++++------------------- 1 file changed, 76 insertions(+), 56 deletions(-) diff --git a/include/ostatus.php b/include/ostatus.php index a1da94f6a7..2b52de7344 100644 --- a/include/ostatus.php +++ b/include/ostatus.php @@ -647,6 +647,9 @@ class ostatus { $item_id = self::completion($conversation, $importer["uid"], $item, $self); if (!$item_id) { + // Store the conversation data. This is normally done in "item_store" + // but since something went wrong, we want to be sure to save the data. + store_conversation($item); logger("Error storing item", LOGGER_DEBUG); continue; } @@ -840,6 +843,30 @@ class ostatus { return $base_url."/conversation/".$conversation_id; } + /** + * @brief Fetches a shared object from a given conversation object + * + * Sometimes GNU Social seems to fail when returning shared objects. + * Then they don't contains all needed data. + * We then try to find this object in the conversation + * + * @param string $id Message id + * @param object $conversation Conversation object + * + * @return object The shared object + */ + private function shared_object($id, $conversation) { + if (!is_array($conversation->items)) { + return false; + } + foreach ($conversation->items AS $single_conv) { + if ($single_conv->id == $id) { + return $single_conv; + } + } + return false; + } + /** * @brief Fetches actor details of a given actor and user id * @@ -910,8 +937,6 @@ class ostatus { ($item["verb"] == ACTIVITY_LIKE) OR ($conversation_url == "")) { $item_stored = item_store($item, $all_threads); return $item_stored; - } elseif (count($item) > 0) { - $item = store_conversation($item); } // Get the parent @@ -921,14 +946,6 @@ class ostatus { STRAIGHT_JOIN `item` ON `item`.`parent` = `thritem`.`parent` WHERE `term`.`uid` = %d AND `term`.`otype` = %d AND `term`.`type` = %d AND `term`.`url` = '%s'", intval($uid), intval(TERM_OBJ_POST), intval(TERM_CONVERSATION), dbesc($conversation_url)); - -/* 2016-10-23: The old query will be kept until we are sure that the query above is a good and fast replacement - - $parents = q("SELECT `id`, `parent`, `uri`, `contact-id`, `type`, `verb`, `visible` FROM `item` WHERE `id` IN - (SELECT `parent` FROM `item` WHERE `id` IN - (SELECT `oid` FROM `term` WHERE `uid` = %d AND `otype` = %d AND `type` = %d AND `url` = '%s'))", - intval($uid), intval(TERM_OBJ_POST), intval(TERM_CONVERSATION), dbesc($conversation_url)); -*/ if ($parents) $parent = $parents[0]; elseif (count($item) > 0) { @@ -1205,42 +1222,52 @@ class ostatus { if (is_array($single_conv->object)) $single_conv->object = $single_conv->object[0]; - logger("Found reshared item ".$single_conv->object->id); - - // $single_conv->object->context->conversation; - - if (isset($single_conv->object->object->id)) - $arr["uri"] = $single_conv->object->object->id; - else - $arr["uri"] = $single_conv->object->id; - - if (isset($single_conv->object->object->url)) - $plink = self::convert_href($single_conv->object->object->url); - else - $plink = self::convert_href($single_conv->object->url); - - if (isset($single_conv->object->object->content)) - $arr["body"] = add_page_info_to_body(html2bbcode($single_conv->object->object->content)); - else - $arr["body"] = add_page_info_to_body(html2bbcode($single_conv->object->content)); - - $arr["plink"] = $plink; - - $arr["created"] = $single_conv->object->published; - $arr["edited"] = $single_conv->object->published; - - $arr["author-name"] = $single_conv->object->actor->displayName; - if ($arr["owner-name"] == '') { - $arr["author-name"] = $single_conv->object->actor->contact->displayName; + // Sometimes GNU Social doesn't returns a complete object + if (!isset($single_conv->object->actor->url)) { + $object = self::shared_object($single_conv->object->id, $conversation); + if (is_object($object)) { + $single_conv->object = $object; + } } - $arr["author-link"] = $single_conv->object->actor->url; - $arr["author-avatar"] = Probe::fixAvatar($single_conv->object->actor->image->url, $arr["author-link"]); - $arr["app"] = $single_conv->object->provider->displayName."#"; - //$arr["verb"] = $single_conv->object->verb; + if (isset($single_conv->object->actor->url)) { + logger("Found reshared item ".$single_conv->object->id); - $arr["location"] = $single_conv->object->location->displayName; - $arr["coord"] = trim($single_conv->object->location->lat." ".$single_conv->object->location->lon); + // $single_conv->object->context->conversation; + + if (isset($single_conv->object->object->id)) { + $arr["uri"] = $single_conv->object->object->id; + } else { + $arr["uri"] = $single_conv->object->id; + } + if (isset($single_conv->object->object->url)) { + $plink = self::convert_href($single_conv->object->object->url); + } else { + $plink = self::convert_href($single_conv->object->url); + } + if (isset($single_conv->object->object->content)) { + $arr["body"] = add_page_info_to_body(html2bbcode($single_conv->object->object->content)); + } else { + $arr["body"] = add_page_info_to_body(html2bbcode($single_conv->object->content)); + } + $arr["plink"] = $plink; + + $arr["created"] = $single_conv->object->published; + $arr["edited"] = $single_conv->object->published; + + $arr["author-name"] = $single_conv->object->actor->displayName; + if ($arr["owner-name"] == '') { + $arr["author-name"] = $single_conv->object->actor->contact->displayName; + } + $arr["author-link"] = $single_conv->object->actor->url; + $arr["author-avatar"] = Probe::fixAvatar($single_conv->object->actor->image->url, $arr["author-link"]); + + $arr["app"] = $single_conv->object->provider->displayName."#"; + //$arr["verb"] = $single_conv->object->verb; + + $arr["location"] = $single_conv->object->location->displayName; + $arr["coord"] = trim($single_conv->object->location->lat." ".$single_conv->object->location->lon); + } } if ($arr["location"] == "") @@ -1251,26 +1278,19 @@ class ostatus { // Copy fields from given item array if (isset($item["uri"]) AND (($item["uri"] == $arr["uri"]) OR ($item["uri"] == $single_conv->id))) { - $copy_fields = array("owner-name", "owner-link", "owner-avatar", "author-name", "author-link", "author-avatar", - "gravity", "body", "object-type", "object", "verb", "created", "edited", "coord", "tag", - "title", "attach", "app", "type", "location", "contact-id", "uri"); - foreach ($copy_fields AS $field) - if (isset($item[$field])) - $arr[$field] = $item[$field]; - + logger('Use stored item array for item with URI '.$item["uri"], LOGGER_DEBUG); + $newitem = item_store($item); + $item = array(); + $item_stored = $newitem; + } else { + $newitem = item_store($arr); } - $newitem = item_store($arr); if (!$newitem) { logger("Item wasn't stored ".print_r($arr, true), LOGGER_DEBUG); continue; } - if (isset($item["uri"]) AND ($item["uri"] == $arr["uri"])) { - $item = array(); - $item_stored = $newitem; - } - logger('Stored new item '.$plink.' for parent '.$arr["parent-uri"].' under id '.$newitem, LOGGER_DEBUG); // Add the conversation entry (but don't fetch the whole conversation) From 503e8d46abd586fb8b283244a3fcb0ade60e43a1 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 23 May 2017 11:54:00 +0200 Subject: [PATCH 032/125] issues for the CHANGELOG --- CHANGELOG | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/CHANGELOG b/CHANGELOG index a3a974eb62..46750920d4 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,17 @@ +Version 3.5.2 (2017-05-XX) + Friendica Core: + + Friendica Addons: + + Closed Issues: + 1626, 1720, 2432, 2792, 2833, 2364, 2448, 2496, 2690, 2752, 2775, + 2803, 2956, 2957, 2961, 2971, 2995, 2999, 3011, 3053, 3107, 3114, + 3134, 3138, 3142, 3157, 3172, 3189, 3194, 3195, 3198, 3206, 3215, + 3217, 3220, 3237, 3242, 3255, 3256, 3260, 3268, 3273, 3274, 3285, + 3288, 3292, 3293, 3300, 3314, 3316, 3317, 3322, 3325, 3327, 3328, + 3331, 3334, 3336, 3346, 3347, 3358, 3359, 3383, 3387, 3401, 3406, + 3428, 3440, 3435, 3436, 3452 + Version 3.5.1 (2017-03-12) Friendica Core: Updates to the translations (BG, CA, CS, DE, EO, ES, FR, IS, IT, NL, PL, PT-BR, RU, SV) [translation teams] From 85bfbdaeba483eb2d213fe9a693a30d748eccda8 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 23 May 2017 12:14:09 +0200 Subject: [PATCH 033/125] addons --- CHANGELOG | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 46750920d4..70c4cb0184 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,7 +2,12 @@ Version 3.5.2 (2017-05-XX) Friendica Core: Friendica Addons: - + Translations updated (RU) [pztrm] + Pledgie addon was updated to remove cert problems [tobiasd] + Securemail now uses openpgp-php and phpseclib [fabrixxm] + Superblock Configuration [tobiasd] + Twitter Connector updated to use with new deletion method [heluecht] + Closed Issues: 1626, 1720, 2432, 2792, 2833, 2364, 2448, 2496, 2690, 2752, 2775, 2803, 2956, 2957, 2961, 2971, 2995, 2999, 3011, 3053, 3107, 3114, From 9ee45329364cf0a74521ac274bb633b335b9f264 Mon Sep 17 00:00:00 2001 From: Andy H3 Date: Tue, 23 May 2017 20:05:40 +0700 Subject: [PATCH 034/125] Create messages.po British English localisation that aims to address various issues in the source, including consistent spelling, appropriate level of capitalisation, succinct wording, and user-centred phrases at basic level. --- view/lang/en-GB/messages.po | 8941 +++++++++++++++++++++++++++++++++++ 1 file changed, 8941 insertions(+) create mode 100644 view/lang/en-GB/messages.po diff --git a/view/lang/en-GB/messages.po b/view/lang/en-GB/messages.po new file mode 100644 index 0000000000..06dfc9a005 --- /dev/null +++ b/view/lang/en-GB/messages.po @@ -0,0 +1,8941 @@ +# FRIENDICA Distributed Social Network +# Copyright (C) 2010, 2011, 2012, 2013 the Friendica Project +# This file is distributed under the same license as the Friendica package. +# +# Translators: +# Andy H3 , 2017 +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-03 07:08+0200\n" +"PO-Revision-Date: 2017-05-23 11:00+0000\n" +"Last-Translator: Andy H3 \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/Friendica/friendica/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1093 +#: view/theme/vier/theme.php:254 +msgid "Forums" +msgstr "Forums" + +#: include/ForumManager.php:116 view/theme/vier/theme.php:256 +msgid "External link to forum" +msgstr "External link to forum" + +#: include/ForumManager.php:119 include/contact_widgets.php:269 +#: include/items.php:2450 mod/content.php:624 object/Item.php:420 +#: view/theme/vier/theme.php:259 boot.php:1000 +msgid "show more" +msgstr "Show more..." + +#: include/NotificationsManager.php:153 +msgid "System" +msgstr "System" + +#: include/NotificationsManager.php:160 include/nav.php:158 mod/admin.php:517 +#: view/theme/frio/theme.php:253 +msgid "Network" +msgstr "Network" + +#: include/NotificationsManager.php:167 mod/network.php:832 +#: mod/profiles.php:696 +msgid "Personal" +msgstr "Personal" + +#: include/NotificationsManager.php:174 include/nav.php:105 +#: include/nav.php:161 +msgid "Home" +msgstr "Home" + +#: include/NotificationsManager.php:181 include/nav.php:166 +msgid "Introductions" +msgstr "Introductions" + +#: include/NotificationsManager.php:239 include/NotificationsManager.php:251 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s commented on %s's post" + +#: include/NotificationsManager.php:250 +#, php-format +msgid "%s created a new post" +msgstr "%s posted something new" + +#: include/NotificationsManager.php:265 +#, php-format +msgid "%s liked %s's post" +msgstr "%s liked %s's post" + +#: include/NotificationsManager.php:278 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s disliked %s's post" + +#: include/NotificationsManager.php:291 +#, php-format +msgid "%s is attending %s's event" +msgstr "%s is going to %s's event" + +#: include/NotificationsManager.php:304 +#, php-format +msgid "%s is not attending %s's event" +msgstr "%s is not going to %s's event" + +#: include/NotificationsManager.php:317 +#, php-format +msgid "%s may attend %s's event" +msgstr "%s may go to %s's event" + +#: include/NotificationsManager.php:334 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s is now friends with %s" + +#: include/NotificationsManager.php:770 +msgid "Friend Suggestion" +msgstr "Friend suggestion" + +#: include/NotificationsManager.php:803 +msgid "Friend/Connect Request" +msgstr "Friend/Contact request" + +#: include/NotificationsManager.php:803 +msgid "New Follower" +msgstr "New follower" + +#: include/Photo.php:1038 include/Photo.php:1054 include/Photo.php:1062 +#: include/Photo.php:1087 include/message.php:146 mod/wall_upload.php:249 +#: mod/item.php:467 +msgid "Wall Photos" +msgstr "Wall photos" + +#: include/delivery.php:427 +msgid "(no subject)" +msgstr "(no subject)" + +#: include/delivery.php:439 include/enotify.php:43 +msgid "noreply" +msgstr "noreply" + +#: include/like.php:27 include/conversation.php:153 include/diaspora.php:1576 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s likes %2$s's %3$s" + +#: include/like.php:31 include/like.php:36 include/conversation.php:156 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s doesn't like %2$s's %3$s" + +#: include/like.php:41 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%1$s is going to %2$s's %3$s" + +#: include/like.php:46 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%1$s is not going to %2$s's %3$s" + +#: include/like.php:51 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%1$s may go to %2$s's %3$s" + +#: include/like.php:178 include/conversation.php:141 +#: include/conversation.php:293 include/text.php:1872 mod/subthread.php:88 +#: mod/tagger.php:62 +msgid "photo" +msgstr "photo" + +#: include/like.php:178 include/conversation.php:136 +#: include/conversation.php:146 include/conversation.php:288 +#: include/conversation.php:297 include/diaspora.php:1580 mod/subthread.php:88 +#: mod/tagger.php:62 +msgid "status" +msgstr "status" + +#: include/like.php:180 include/conversation.php:133 +#: include/conversation.php:285 include/text.php:1870 +msgid "event" +msgstr "event" + +#: include/message.php:15 include/message.php:169 +msgid "[no subject]" +msgstr "[no subject]" + +#: include/nav.php:35 mod/navigation.php:19 +msgid "Nothing new here" +msgstr "Nothing new here" + +#: include/nav.php:39 mod/navigation.php:23 +msgid "Clear notifications" +msgstr "Clear notifications" + +#: include/nav.php:40 include/text.php:1083 +msgid "@name, !forum, #tags, content" +msgstr "@name, !forum, #tags, content" + +#: include/nav.php:78 view/theme/frio/theme.php:243 boot.php:1867 +msgid "Logout" +msgstr "Logout" + +#: include/nav.php:78 view/theme/frio/theme.php:243 +msgid "End this session" +msgstr "End this session" + +#: include/nav.php:81 include/identity.php:769 mod/contacts.php:645 +#: mod/contacts.php:841 view/theme/frio/theme.php:246 +msgid "Status" +msgstr "Status" + +#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:246 +msgid "Your posts and conversations" +msgstr "My posts and conversations" + +#: include/nav.php:82 include/identity.php:622 include/identity.php:744 +#: include/identity.php:777 mod/contacts.php:647 mod/contacts.php:849 +#: mod/newmember.php:32 mod/profperm.php:105 view/theme/frio/theme.php:247 +msgid "Profile" +msgstr "Profile" + +#: include/nav.php:82 view/theme/frio/theme.php:247 +msgid "Your profile page" +msgstr "My profile page" + +#: include/nav.php:83 include/identity.php:785 mod/fbrowser.php:31 +#: view/theme/frio/theme.php:248 +msgid "Photos" +msgstr "Photos" + +#: include/nav.php:83 view/theme/frio/theme.php:248 +msgid "Your photos" +msgstr "My photos" + +#: include/nav.php:84 include/identity.php:793 include/identity.php:796 +#: view/theme/frio/theme.php:249 +msgid "Videos" +msgstr "Videos" + +#: include/nav.php:84 view/theme/frio/theme.php:249 +msgid "Your videos" +msgstr "My videos" + +#: include/nav.php:85 include/nav.php:149 include/identity.php:805 +#: include/identity.php:816 mod/cal.php:270 mod/events.php:374 +#: view/theme/frio/theme.php:250 view/theme/frio/theme.php:254 +msgid "Events" +msgstr "Events" + +#: include/nav.php:85 view/theme/frio/theme.php:250 +msgid "Your events" +msgstr "My events" + +#: include/nav.php:86 +msgid "Personal notes" +msgstr "Personal notes" + +#: include/nav.php:86 +msgid "Your personal notes" +msgstr "My personal notes" + +#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1868 +msgid "Login" +msgstr "Login" + +#: include/nav.php:95 +msgid "Sign in" +msgstr "Sign in" + +#: include/nav.php:105 +msgid "Home Page" +msgstr "Home page" + +#: include/nav.php:109 mod/register.php:289 boot.php:1844 +msgid "Register" +msgstr "Register" + +#: include/nav.php:109 +msgid "Create an account" +msgstr "Create an account" + +#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:297 +msgid "Help" +msgstr "Help" + +#: include/nav.php:115 +msgid "Help and documentation" +msgstr "Help and documentation" + +#: include/nav.php:119 +msgid "Apps" +msgstr "Apps" + +#: include/nav.php:119 +msgid "Addon applications, utilities, games" +msgstr "Addon applications, utilities, games" + +#: include/nav.php:123 include/text.php:1080 mod/search.php:149 +msgid "Search" +msgstr "Search" + +#: include/nav.php:123 +msgid "Search site content" +msgstr "Search site content" + +#: include/nav.php:126 include/text.php:1088 +msgid "Full Text" +msgstr "Full text" + +#: include/nav.php:127 include/text.php:1089 +msgid "Tags" +msgstr "Tags" + +#: include/nav.php:128 include/nav.php:192 include/identity.php:838 +#: include/identity.php:841 include/text.php:1090 mod/contacts.php:800 +#: mod/contacts.php:861 mod/viewcontacts.php:121 view/theme/frio/theme.php:257 +msgid "Contacts" +msgstr "Contacts" + +#: include/nav.php:143 include/nav.php:145 mod/community.php:32 +msgid "Community" +msgstr "Community" + +#: include/nav.php:143 +msgid "Conversations on this site" +msgstr "Public conversations on this site" + +#: include/nav.php:145 +msgid "Conversations on the network" +msgstr "Conversations on the network" + +#: include/nav.php:149 include/identity.php:808 include/identity.php:819 +#: view/theme/frio/theme.php:254 +msgid "Events and Calendar" +msgstr "Events and calendar" + +#: include/nav.php:152 +msgid "Directory" +msgstr "Directory" + +#: include/nav.php:152 +msgid "People directory" +msgstr "People directory" + +#: include/nav.php:154 +msgid "Information" +msgstr "Information" + +#: include/nav.php:154 +msgid "Information about this friendica instance" +msgstr "Information about this Friendica instance" + +#: include/nav.php:158 view/theme/frio/theme.php:253 +msgid "Conversations from your friends" +msgstr "My friends' conversations" + +#: include/nav.php:159 +msgid "Network Reset" +msgstr "Network reset" + +#: include/nav.php:159 +msgid "Load Network page with no filters" +msgstr "Load network page without filters" + +#: include/nav.php:166 +msgid "Friend Requests" +msgstr "Friend requests" + +#: include/nav.php:169 mod/notifications.php:96 +msgid "Notifications" +msgstr "Notifications" + +#: include/nav.php:170 +msgid "See all notifications" +msgstr "See all notifications" + +#: include/nav.php:171 mod/settings.php:906 +msgid "Mark as seen" +msgstr "Mark as seen" + +#: include/nav.php:171 +msgid "Mark all system notifications seen" +msgstr "Mark all system notifications seen" + +#: include/nav.php:175 mod/message.php:179 view/theme/frio/theme.php:255 +msgid "Messages" +msgstr "Messages" + +#: include/nav.php:175 view/theme/frio/theme.php:255 +msgid "Private mail" +msgstr "Private messages" + +#: include/nav.php:176 +msgid "Inbox" +msgstr "Inbox" + +#: include/nav.php:177 +msgid "Outbox" +msgstr "Outbox" + +#: include/nav.php:178 mod/message.php:16 +msgid "New Message" +msgstr "New Message" + +#: include/nav.php:181 +msgid "Manage" +msgstr "Manage" + +#: include/nav.php:181 +msgid "Manage other pages" +msgstr "Manage other pages" + +#: include/nav.php:184 mod/settings.php:81 +msgid "Delegations" +msgstr "Delegations" + +#: include/nav.php:184 mod/delegate.php:130 +msgid "Delegate Page Management" +msgstr "Delegate page management" + +#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111 +#: mod/admin.php:1618 mod/admin.php:1894 view/theme/frio/theme.php:256 +msgid "Settings" +msgstr "Settings" + +#: include/nav.php:186 view/theme/frio/theme.php:256 +msgid "Account settings" +msgstr "Account settings" + +#: include/nav.php:189 include/identity.php:290 +msgid "Profiles" +msgstr "Profiles" + +#: include/nav.php:189 +msgid "Manage/Edit Profiles" +msgstr "Manage/Edit profiles" + +#: include/nav.php:192 view/theme/frio/theme.php:257 +msgid "Manage/edit friends and contacts" +msgstr "Manage/Edit friends and contacts" + +#: include/nav.php:197 mod/admin.php:196 +msgid "Admin" +msgstr "Admin" + +#: include/nav.php:197 +msgid "Site setup and configuration" +msgstr "Site setup and configuration" + +#: include/nav.php:200 +msgid "Navigation" +msgstr "Navigation" + +#: include/nav.php:200 +msgid "Site map" +msgstr "Site map" + +#: include/plugin.php:530 include/plugin.php:532 +msgid "Click here to upgrade." +msgstr "Click here to upgrade." + +#: include/plugin.php:538 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "This action exceeds the limits set by your subscription plan." + +#: include/plugin.php:543 +msgid "This action is not available under your subscription plan." +msgstr "This action is not available under your subscription plan." + +#: include/profile_selectors.php:6 +msgid "Male" +msgstr "Male" + +#: include/profile_selectors.php:6 +msgid "Female" +msgstr "Female" + +#: include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Currently Male" + +#: include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Currently Female" + +#: include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Mostly Male" + +#: include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Mostly Female" + +#: include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgender" + +#: include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Intersex" + +#: include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transsexual" + +#: include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Hermaphrodite" + +#: include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Neuter" + +#: include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Non-specific" + +#: include/profile_selectors.php:6 +msgid "Other" +msgstr "Other" + +#: include/profile_selectors.php:6 include/conversation.php:1547 +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "Undecided" +msgstr[1] "Undecided" + +#: include/profile_selectors.php:23 +msgid "Males" +msgstr "Males" + +#: include/profile_selectors.php:23 +msgid "Females" +msgstr "Females" + +#: include/profile_selectors.php:23 +msgid "Gay" +msgstr "Gay" + +#: include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "Lesbian" + +#: include/profile_selectors.php:23 +msgid "No Preference" +msgstr "No Preference" + +#: include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "Bisexual" + +#: include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "Auto-sexual" + +#: include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "Abstinent" + +#: include/profile_selectors.php:23 +msgid "Virgin" +msgstr "Virgin" + +#: include/profile_selectors.php:23 +msgid "Deviant" +msgstr "Deviant" + +#: include/profile_selectors.php:23 +msgid "Fetish" +msgstr "Fetish" + +#: include/profile_selectors.php:23 +msgid "Oodles" +msgstr "Oodles" + +#: include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "Asexual" + +#: include/profile_selectors.php:42 +msgid "Single" +msgstr "Single" + +#: include/profile_selectors.php:42 +msgid "Lonely" +msgstr "Lonely" + +#: include/profile_selectors.php:42 +msgid "Available" +msgstr "Available" + +#: include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "Unavailable" + +#: include/profile_selectors.php:42 +msgid "Has crush" +msgstr "Having a crush" + +#: include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "Infatuated" + +#: include/profile_selectors.php:42 +msgid "Dating" +msgstr "Dating" + +#: include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "Unfaithful" + +#: include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "Sex addict" + +#: include/profile_selectors.php:42 include/user.php:263 include/user.php:267 +msgid "Friends" +msgstr "Friends" + +#: include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "Friends with benefits" + +#: include/profile_selectors.php:42 +msgid "Casual" +msgstr "Casual" + +#: include/profile_selectors.php:42 +msgid "Engaged" +msgstr "Engaged" + +#: include/profile_selectors.php:42 +msgid "Married" +msgstr "Married" + +#: include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "Imaginarily married" + +#: include/profile_selectors.php:42 +msgid "Partners" +msgstr "Partners" + +#: include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "Cohabiting" + +#: include/profile_selectors.php:42 +msgid "Common law" +msgstr "Common law spouse" + +#: include/profile_selectors.php:42 +msgid "Happy" +msgstr "Happy" + +#: include/profile_selectors.php:42 +msgid "Not looking" +msgstr "Not looking" + +#: include/profile_selectors.php:42 +msgid "Swinger" +msgstr "Swinger" + +#: include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "Betrayed" + +#: include/profile_selectors.php:42 +msgid "Separated" +msgstr "Separated" + +#: include/profile_selectors.php:42 +msgid "Unstable" +msgstr "Unstable" + +#: include/profile_selectors.php:42 +msgid "Divorced" +msgstr "Divorced" + +#: include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "Imaginarily divorced" + +#: include/profile_selectors.php:42 +msgid "Widowed" +msgstr "Widowed" + +#: include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "Uncertain" + +#: include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "It's complicated" + +#: include/profile_selectors.php:42 +msgid "Don't care" +msgstr "Don't care" + +#: include/profile_selectors.php:42 +msgid "Ask me" +msgstr "Ask me" + +#: include/security.php:61 +msgid "Welcome " +msgstr "Welcome " + +#: include/security.php:62 +msgid "Please upload a profile photo." +msgstr "Please upload a profile photo." + +#: include/security.php:65 +msgid "Welcome back " +msgstr "Welcome back " + +#: include/security.php:429 +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 "The form security token was incorrect. This probably happened because the form has not been submitted within 3 hours." + +#: include/uimport.php:91 +msgid "Error decoding account file" +msgstr "Error decoding account file" + +#: include/uimport.php:97 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Error! No version data in file! Is this a Friendica account file?" + +#: include/uimport.php:113 include/uimport.php:124 +msgid "Error! Cannot check nickname" +msgstr "Error! Cannot check nickname." + +#: include/uimport.php:117 include/uimport.php:128 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "User '%s' already exists on this server!" + +#: include/uimport.php:150 +msgid "User creation error" +msgstr "User creation error" + +#: include/uimport.php:170 +msgid "User profile creation error" +msgstr "User profile creation error" + +#: include/uimport.php:219 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d contact not imported" +msgstr[1] "%d contacts not imported" + +#: include/uimport.php:289 +msgid "Done. You can now login with your username and password" +msgstr "Done. You can now login with your username and password" + +#: include/Contact.php:395 include/Contact.php:408 include/Contact.php:453 +#: include/conversation.php:1004 include/conversation.php:1020 +#: mod/allfriends.php:68 mod/directory.php:157 mod/match.php:73 +#: mod/suggest.php:82 mod/dirfind.php:209 +msgid "View Profile" +msgstr "View profile" + +#: include/Contact.php:409 include/contact_widgets.php:32 +#: include/conversation.php:1017 mod/allfriends.php:69 mod/contacts.php:610 +#: mod/match.php:74 mod/suggest.php:83 mod/dirfind.php:210 mod/follow.php:106 +msgid "Connect/Follow" +msgstr "Connect/Follow" + +#: include/Contact.php:452 include/conversation.php:1003 +msgid "View Status" +msgstr "View status" + +#: include/Contact.php:454 include/conversation.php:1005 +msgid "View Photos" +msgstr "View photos" + +#: include/Contact.php:455 include/conversation.php:1006 +msgid "Network Posts" +msgstr "Network posts" + +#: include/Contact.php:456 include/conversation.php:1007 +msgid "View Contact" +msgstr "View contact" + +#: include/Contact.php:457 +msgid "Drop Contact" +msgstr "Drop contact" + +#: include/Contact.php:458 include/conversation.php:1008 +msgid "Send PM" +msgstr "Send PM" + +#: include/Contact.php:459 include/conversation.php:1012 +msgid "Poke" +msgstr "Poke" + +#: include/Contact.php:840 +msgid "Organisation" +msgstr "Organisation" + +#: include/Contact.php:843 +msgid "News" +msgstr "News" + +#: include/Contact.php:846 +msgid "Forum" +msgstr "Forum" + +#: include/acl_selectors.php:353 +msgid "Post to Email" +msgstr "Post to email" + +#: include/acl_selectors.php:358 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Connectors are disabled since \"%s\" is enabled." + +#: include/acl_selectors.php:359 mod/settings.php:1188 +msgid "Hide your profile details from unknown viewers?" +msgstr "Hide profile details from unknown viewers?" + +#: include/acl_selectors.php:365 +msgid "Visible to everybody" +msgstr "Visible to everybody" + +#: include/acl_selectors.php:366 view/theme/vier/config.php:108 +msgid "show" +msgstr "show" + +#: include/acl_selectors.php:367 view/theme/vier/config.php:108 +msgid "don't show" +msgstr "don't show" + +#: include/acl_selectors.php:373 mod/editpost.php:123 +msgid "CC: email addresses" +msgstr "CC: email addresses" + +#: include/acl_selectors.php:374 mod/editpost.php:130 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Example: bob@example.com, mary@example.com" + +#: include/acl_selectors.php:376 mod/events.php:508 mod/photos.php:1196 +#: mod/photos.php:1593 +msgid "Permissions" +msgstr "Permissions" + +#: include/acl_selectors.php:377 +msgid "Close" +msgstr "Close" + +#: include/api.php:1089 +#, php-format +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "Daily posting limit of %d posts reached. This post was rejected." + +#: include/api.php:1110 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." +msgstr "Weekly posting limit of %d posts reached. This post was rejected." + +#: include/api.php:1131 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "Monthly posting limit of %d posts reached. This post was rejected." + +#: include/auth.php:51 +msgid "Logged out." +msgstr "Logged out." + +#: include/auth.php:122 include/auth.php:184 mod/openid.php:110 +msgid "Login failed." +msgstr "Login failed." + +#: include/auth.php:138 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 "We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID." + +#: include/auth.php:138 include/user.php:75 +msgid "The error message was:" +msgstr "The error message was:" + +#: include/bb2diaspora.php:230 include/event.php:17 mod/localtime.php:12 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" + +#: include/bb2diaspora.php:236 include/event.php:34 include/event.php:54 +#: include/event.php:525 +msgid "Starts:" +msgstr "Starts:" + +#: include/bb2diaspora.php:244 include/event.php:37 include/event.php:60 +#: include/event.php:526 +msgid "Finishes:" +msgstr "Finishes:" + +#: include/bb2diaspora.php:253 include/event.php:41 include/event.php:67 +#: include/event.php:527 include/identity.php:336 mod/contacts.php:636 +#: mod/directory.php:139 mod/events.php:493 mod/notifications.php:244 +msgid "Location:" +msgstr "Location:" + +#: include/bbcode.php:380 include/bbcode.php:1132 include/bbcode.php:1133 +msgid "Image/photo" +msgstr "Image/Photo" + +#: include/bbcode.php:497 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" + +#: include/bbcode.php:1089 include/bbcode.php:1111 +msgid "$1 wrote:" +msgstr "$1 wrote:" + +#: include/bbcode.php:1141 include/bbcode.php:1142 +msgid "Encrypted content" +msgstr "Encrypted content" + +#: include/bbcode.php:1257 +msgid "Invalid source protocol" +msgstr "Invalid source protocol" + +#: include/bbcode.php:1267 +msgid "Invalid link protocol" +msgstr "Invalid link protocol" + +#: include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Unknown | Not categorised" + +#: include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Block immediately" + +#: 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 "Known to me, but no opinion" + +#: include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "OK, probably harmless" + +#: include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Reputable, has my trust" + +#: include/contact_selectors.php:56 mod/admin.php:980 +msgid "Frequently" +msgstr "Frequently" + +#: include/contact_selectors.php:57 mod/admin.php:981 +msgid "Hourly" +msgstr "Hourly" + +#: include/contact_selectors.php:58 mod/admin.php:982 +msgid "Twice daily" +msgstr "Twice daily" + +#: include/contact_selectors.php:59 mod/admin.php:983 +msgid "Daily" +msgstr "Daily" + +#: include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Weekly" + +#: include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Monthly" + +#: include/contact_selectors.php:76 mod/dfrn_request.php:886 +msgid "Friendica" +msgstr "Friendica" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: include/contact_selectors.php:79 include/contact_selectors.php:86 +#: mod/admin.php:1490 mod/admin.php:1503 mod/admin.php:1516 mod/admin.php:1534 +msgid "Email" +msgstr "Email" + +#: include/contact_selectors.php:80 mod/dfrn_request.php:888 +#: mod/settings.php:848 +msgid "Diaspora" +msgstr "Diaspora" + +#: include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" + +#: include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" + +#: include/contact_selectors.php:88 +msgid "pump.io" +msgstr "Pump.io" + +#: include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" + +#: include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Diaspora connector" + +#: include/contact_selectors.php:91 +msgid "GNU Social Connector" +msgstr "GNU Social connector" + +#: include/contact_selectors.php:92 +msgid "pnut" +msgstr "Pnut" + +#: include/contact_selectors.php:93 +msgid "App.net" +msgstr "App.net" + +#: include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Add new contact" + +#: include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Enter address or web location" + +#: include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Example: jo@example.com, http://example.com/jo" + +#: include/contact_widgets.php:10 include/identity.php:224 +#: mod/allfriends.php:85 mod/match.php:89 mod/suggest.php:101 +#: mod/dirfind.php:207 +msgid "Connect" +msgstr "Connect" + +#: include/contact_widgets.php:24 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invitation available" +msgstr[1] "%d invitations available" + +#: include/contact_widgets.php:30 +msgid "Find People" +msgstr "Find people" + +#: include/contact_widgets.php:31 +msgid "Enter name or interest" +msgstr "Enter name or interest" + +#: include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Examples: Robert Morgenstein, fishing" + +#: include/contact_widgets.php:34 mod/contacts.php:806 mod/directory.php:206 +msgid "Find" +msgstr "Find" + +#: include/contact_widgets.php:35 mod/suggest.php:114 +#: view/theme/vier/theme.php:201 +msgid "Friend Suggestions" +msgstr "Friend suggestions" + +#: include/contact_widgets.php:36 view/theme/vier/theme.php:200 +msgid "Similar Interests" +msgstr "Similar interests" + +#: include/contact_widgets.php:37 +msgid "Random Profile" +msgstr "Random profile" + +#: include/contact_widgets.php:38 view/theme/vier/theme.php:202 +msgid "Invite Friends" +msgstr "Invite friends" + +#: include/contact_widgets.php:125 +msgid "Networks" +msgstr "Networks" + +#: include/contact_widgets.php:128 +msgid "All Networks" +msgstr "All networks" + +#: include/contact_widgets.php:160 include/features.php:104 +msgid "Saved Folders" +msgstr "Saved Folders" + +#: include/contact_widgets.php:163 include/contact_widgets.php:198 +msgid "Everything" +msgstr "Everything" + +#: include/contact_widgets.php:195 +msgid "Categories" +msgstr "Categories" + +#: include/contact_widgets.php:264 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d contact in common" +msgstr[1] "%d contacts in common" + +#: include/conversation.php:159 +#, php-format +msgid "%1$s attends %2$s's %3$s" +msgstr "%1$s goes to %2$s's %3$s" + +#: include/conversation.php:162 +#, php-format +msgid "%1$s doesn't attend %2$s's %3$s" +msgstr "%1$s doesn't go %2$s's %3$s" + +#: include/conversation.php:165 +#, php-format +msgid "%1$s attends maybe %2$s's %3$s" +msgstr "%1$s might go to %2$s's %3$s" + +#: include/conversation.php:198 mod/dfrn_confirm.php:478 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s is now friends with %2$s" + +#: include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s poked %2$s" + +#: include/conversation.php:260 mod/mood.php:63 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s is currently %2$s" + +#: include/conversation.php:307 mod/tagger.php:95 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s tagged %2$s's %3$s with %4$s" + +#: include/conversation.php:334 +msgid "post/item" +msgstr "Post/Item" + +#: include/conversation.php:335 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s marked %2$s's %3$s as favourite" + +#: include/conversation.php:614 mod/content.php:372 mod/photos.php:1662 +#: mod/profiles.php:340 +msgid "Likes" +msgstr "Likes" + +#: include/conversation.php:614 mod/content.php:372 mod/photos.php:1662 +#: mod/profiles.php:344 +msgid "Dislikes" +msgstr "Dislikes" + +#: include/conversation.php:615 include/conversation.php:1541 +#: mod/content.php:373 mod/photos.php:1663 +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Attending" +msgstr[1] "Attending" + +#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1663 +msgid "Not attending" +msgstr "Not attending" + +#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1663 +msgid "Might attend" +msgstr "Might attend" + +#: include/conversation.php:747 mod/content.php:453 mod/content.php:759 +#: mod/photos.php:1728 object/Item.php:137 +msgid "Select" +msgstr "Select" + +#: include/conversation.php:748 mod/contacts.php:816 mod/contacts.php:1015 +#: mod/content.php:454 mod/content.php:760 mod/photos.php:1729 +#: mod/settings.php:744 mod/admin.php:1508 object/Item.php:138 +msgid "Delete" +msgstr "Delete" + +#: include/conversation.php:791 mod/content.php:487 mod/content.php:915 +#: mod/content.php:916 object/Item.php:356 object/Item.php:357 +#, php-format +msgid "View %s's profile @ %s" +msgstr "View %s's profile @ %s" + +#: include/conversation.php:803 object/Item.php:344 +msgid "Categories:" +msgstr "Categories:" + +#: include/conversation.php:804 object/Item.php:345 +msgid "Filed under:" +msgstr "Filed under:" + +#: include/conversation.php:811 mod/content.php:497 mod/content.php:928 +#: object/Item.php:370 +#, php-format +msgid "%s from %s" +msgstr "%s from %s" + +#: include/conversation.php:827 mod/content.php:513 +msgid "View in context" +msgstr "View in context" + +#: include/conversation.php:829 include/conversation.php:1298 +#: mod/content.php:515 mod/content.php:953 mod/editpost.php:114 +#: mod/wallmessage.php:140 mod/message.php:337 mod/message.php:522 +#: mod/photos.php:1627 object/Item.php:395 +msgid "Please wait" +msgstr "Please wait" + +#: include/conversation.php:906 +msgid "remove" +msgstr "Remove" + +#: include/conversation.php:910 +msgid "Delete Selected Items" +msgstr "Delete selected items" + +#: include/conversation.php:1002 +msgid "Follow Thread" +msgstr "Follow thread" + +#: include/conversation.php:1139 +#, php-format +msgid "%s likes this." +msgstr "%s likes this." + +#: include/conversation.php:1142 +#, php-format +msgid "%s doesn't like this." +msgstr "%s doesn't like this." + +#: include/conversation.php:1145 +#, php-format +msgid "%s attends." +msgstr "%s attends." + +#: include/conversation.php:1148 +#, php-format +msgid "%s doesn't attend." +msgstr "%s doesn't attend." + +#: include/conversation.php:1151 +#, php-format +msgid "%s attends maybe." +msgstr "%s may attend." + +#: include/conversation.php:1162 +msgid "and" +msgstr "and" + +#: include/conversation.php:1168 +#, php-format +msgid ", and %d other people" +msgstr ", and %d other people" + +#: include/conversation.php:1177 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d people like this" + +#: include/conversation.php:1178 +#, php-format +msgid "%s like this." +msgstr "%s like this." + +#: include/conversation.php:1181 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d people don't like this" + +#: include/conversation.php:1182 +#, php-format +msgid "%s don't like this." +msgstr "%s don't like this." + +#: include/conversation.php:1185 +#, php-format +msgid "%2$d people attend" +msgstr "%2$d people attend" + +#: include/conversation.php:1186 +#, php-format +msgid "%s attend." +msgstr "%s attend." + +#: include/conversation.php:1189 +#, php-format +msgid "%2$d people don't attend" +msgstr "%2$d people don't attend" + +#: include/conversation.php:1190 +#, php-format +msgid "%s don't attend." +msgstr "%s don't attend." + +#: include/conversation.php:1193 +#, php-format +msgid "%2$d people attend maybe" +msgstr "%2$d people attend maybe" + +#: include/conversation.php:1194 +#, php-format +msgid "%s anttend maybe." +msgstr "%s attend maybe." + +#: include/conversation.php:1223 include/conversation.php:1239 +msgid "Visible to everybody" +msgstr "Visible to everybody" + +#: include/conversation.php:1224 include/conversation.php:1240 +#: mod/wallmessage.php:114 mod/wallmessage.php:121 mod/message.php:271 +#: mod/message.php:278 mod/message.php:418 mod/message.php:425 +msgid "Please enter a link URL:" +msgstr "Please enter a link URL:" + +#: include/conversation.php:1225 include/conversation.php:1241 +msgid "Please enter a video link/URL:" +msgstr "Please enter a video link/URL:" + +#: include/conversation.php:1226 include/conversation.php:1242 +msgid "Please enter an audio link/URL:" +msgstr "Please enter an audio link/URL:" + +#: include/conversation.php:1227 include/conversation.php:1243 +msgid "Tag term:" +msgstr "Tag term:" + +#: include/conversation.php:1228 include/conversation.php:1244 +#: mod/filer.php:30 +msgid "Save to Folder:" +msgstr "Save to folder:" + +#: include/conversation.php:1229 include/conversation.php:1245 +msgid "Where are you right now?" +msgstr "Where are you right now?" + +#: include/conversation.php:1230 +msgid "Delete item(s)?" +msgstr "Delete item(s)?" + +#: include/conversation.php:1279 +msgid "Share" +msgstr "Share" + +#: include/conversation.php:1280 mod/editpost.php:100 mod/wallmessage.php:138 +#: mod/message.php:335 mod/message.php:519 +msgid "Upload photo" +msgstr "Upload photo" + +#: include/conversation.php:1281 mod/editpost.php:101 +msgid "upload photo" +msgstr "upload photo" + +#: include/conversation.php:1282 mod/editpost.php:102 +msgid "Attach file" +msgstr "Attach file" + +#: include/conversation.php:1283 mod/editpost.php:103 +msgid "attach file" +msgstr "attach file" + +#: include/conversation.php:1284 mod/editpost.php:104 mod/wallmessage.php:139 +#: mod/message.php:336 mod/message.php:520 +msgid "Insert web link" +msgstr "Insert web link" + +#: include/conversation.php:1285 mod/editpost.php:105 +msgid "web link" +msgstr "web link" + +#: include/conversation.php:1286 mod/editpost.php:106 +msgid "Insert video link" +msgstr "Insert video link" + +#: include/conversation.php:1287 mod/editpost.php:107 +msgid "video link" +msgstr "video link" + +#: include/conversation.php:1288 mod/editpost.php:108 +msgid "Insert audio link" +msgstr "Insert audio link" + +#: include/conversation.php:1289 mod/editpost.php:109 +msgid "audio link" +msgstr "audio link" + +#: include/conversation.php:1290 mod/editpost.php:110 +msgid "Set your location" +msgstr "Set your location" + +#: include/conversation.php:1291 mod/editpost.php:111 +msgid "set location" +msgstr "set location" + +#: include/conversation.php:1292 mod/editpost.php:112 +msgid "Clear browser location" +msgstr "Clear browser location" + +#: include/conversation.php:1293 mod/editpost.php:113 +msgid "clear location" +msgstr "clear location" + +#: include/conversation.php:1295 mod/editpost.php:127 +msgid "Set title" +msgstr "Set title" + +#: include/conversation.php:1297 mod/editpost.php:129 +msgid "Categories (comma-separated list)" +msgstr "Categories (comma-separated list)" + +#: include/conversation.php:1299 mod/editpost.php:115 +msgid "Permission settings" +msgstr "Permission settings" + +#: include/conversation.php:1300 mod/editpost.php:144 +msgid "permissions" +msgstr "permissions" + +#: include/conversation.php:1308 mod/editpost.php:124 +msgid "Public post" +msgstr "Public post" + +#: include/conversation.php:1313 mod/content.php:737 mod/editpost.php:135 +#: mod/events.php:503 mod/photos.php:1647 mod/photos.php:1689 +#: mod/photos.php:1769 object/Item.php:714 +msgid "Preview" +msgstr "Preview" + +#: include/conversation.php:1317 include/items.php:2167 mod/contacts.php:455 +#: mod/editpost.php:138 mod/fbrowser.php:100 mod/fbrowser.php:135 +#: mod/suggest.php:32 mod/tagrm.php:11 mod/tagrm.php:96 +#: mod/dfrn_request.php:894 mod/follow.php:124 mod/message.php:209 +#: mod/photos.php:245 mod/photos.php:337 mod/settings.php:682 +#: mod/settings.php:708 mod/videos.php:132 +msgid "Cancel" +msgstr "Cancel" + +#: include/conversation.php:1323 +msgid "Post to Groups" +msgstr "Post to groups" + +#: include/conversation.php:1324 +msgid "Post to Contacts" +msgstr "Post to contacts" + +#: include/conversation.php:1325 +msgid "Private post" +msgstr "Private post" + +#: include/conversation.php:1330 include/identity.php:264 mod/editpost.php:142 +msgid "Message" +msgstr "Message" + +#: include/conversation.php:1331 mod/editpost.php:143 +msgid "Browser" +msgstr "Browser" + +#: include/conversation.php:1513 +msgid "View all" +msgstr "View all" + +#: include/conversation.php:1535 +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Like" +msgstr[1] "Likes" + +#: include/conversation.php:1538 +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Dislike" +msgstr[1] "Dislikes" + +#: include/conversation.php:1544 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Not attending" +msgstr[1] "Not attending" + +#: include/datetime.php:66 include/datetime.php:68 mod/profiles.php:698 +msgid "Miscellaneous" +msgstr "Miscellaneous" + +#: include/datetime.php:196 include/identity.php:644 +msgid "Birthday:" +msgstr "Birthday:" + +#: include/datetime.php:198 mod/profiles.php:721 +msgid "Age: " +msgstr "Age: " + +#: include/datetime.php:200 +msgid "YYYY-MM-DD or MM-DD" +msgstr "YYYY-MM-DD or MM-DD" + +#: include/datetime.php:370 +msgid "never" +msgstr "never" + +#: include/datetime.php:376 +msgid "less than a second ago" +msgstr "less than a second ago" + +#: include/datetime.php:379 +msgid "year" +msgstr "year" + +#: include/datetime.php:379 +msgid "years" +msgstr "years" + +#: include/datetime.php:380 include/event.php:519 mod/cal.php:279 +#: mod/events.php:384 +msgid "month" +msgstr "month" + +#: include/datetime.php:380 +msgid "months" +msgstr "months" + +#: include/datetime.php:381 include/event.php:520 mod/cal.php:280 +#: mod/events.php:385 +msgid "week" +msgstr "week" + +#: include/datetime.php:381 +msgid "weeks" +msgstr "weeks" + +#: include/datetime.php:382 include/event.php:521 mod/cal.php:281 +#: mod/events.php:386 +msgid "day" +msgstr "day" + +#: include/datetime.php:382 +msgid "days" +msgstr "days" + +#: include/datetime.php:383 +msgid "hour" +msgstr "hour" + +#: include/datetime.php:383 +msgid "hours" +msgstr "hours" + +#: include/datetime.php:384 +msgid "minute" +msgstr "minute" + +#: include/datetime.php:384 +msgid "minutes" +msgstr "minutes" + +#: include/datetime.php:385 +msgid "second" +msgstr "second" + +#: include/datetime.php:385 +msgid "seconds" +msgstr "seconds" + +#: include/datetime.php:394 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s ago" + +#: include/datetime.php:620 +#, php-format +msgid "%s's birthday" +msgstr "%s's birthday" + +#: include/datetime.php:621 include/dfrn.php:1252 +#, php-format +msgid "Happy Birthday %s" +msgstr "Happy Birthday, %s!" + +#: include/dba_pdo.php:72 include/dba.php:47 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Cannot locate DNS info for database server '%s'" + +#: include/enotify.php:24 +msgid "Friendica Notification" +msgstr "Friendica notification" + +#: include/enotify.php:27 +msgid "Thank You," +msgstr "Thank you" + +#: include/enotify.php:30 +#, php-format +msgid "%s Administrator" +msgstr "%s Administrator" + +#: include/enotify.php:32 +#, php-format +msgid "%1$s, %2$s Administrator" +msgstr "%1$s, %2$s Administrator" + +#: include/enotify.php:70 +#, php-format +msgid "%s " +msgstr "%s " + +#: include/enotify.php:83 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica:Notify] New mail received at %s" + +#: include/enotify.php:85 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s sent you a new private message at %2$s." + +#: include/enotify.php:86 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s sent you %2$s." + +#: include/enotify.php:86 +msgid "a private message" +msgstr "a private message" + +#: include/enotify.php:88 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Please visit %s to view or reply to your private messages." + +#: include/enotify.php:134 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "%1$s commented on [url=%2$s]a %3$s[/url]" + +#: include/enotify.php:141 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" + +#: include/enotify.php:149 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +msgstr "%1$s commented on [url=%2$s]your %3$s[/url]" + +#: include/enotify.php:159 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Friendica:Notify] Comment to conversation #%1$d by %2$s" + +#: include/enotify.php:161 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s commented on an item/conversation you have been following." + +#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192 +#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Please visit %s to view or reply to the conversation." + +#: include/enotify.php:171 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "[Friendica:Notify] %s posted to your profile wall" + +#: include/enotify.php:173 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s posted to your profile wall at %2$s" + +#: include/enotify.php:174 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "%1$s posted to [url=%2$s]your wall[/url]" + +#: include/enotify.php:185 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica:Notify] %s tagged you" + +#: include/enotify.php:187 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s tagged you at %2$s" + +#: include/enotify.php:188 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "%1$s [url=%2$s]tagged you[/url]." + +#: include/enotify.php:199 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "[Friendica:Notify] %s shared a new post" + +#: include/enotify.php:201 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "%1$s shared a new post at %2$s" + +#: include/enotify.php:202 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "%1$s [url=%2$s]shared a post[/url]." + +#: include/enotify.php:213 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "[Friendica:Notify] %1$s poked you" + +#: include/enotify.php:215 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s poked you at %2$s" + +#: include/enotify.php:216 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "%1$s [url=%2$s]poked you[/url]." + +#: include/enotify.php:231 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica:Notify] %s tagged your post" + +#: include/enotify.php:233 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s tagged your post at %2$s" + +#: include/enotify.php:234 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "%1$s tagged [url=%2$s]your post[/url]" + +#: include/enotify.php:245 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica:Notify] Introduction received" + +#: include/enotify.php:247 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "You've received an introduction from '%1$s' at %2$s" + +#: include/enotify.php:248 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "You've received [url=%1$s]an introduction[/url] from %2$s." + +#: include/enotify.php:252 include/enotify.php:295 +#, php-format +msgid "You may visit their profile at %s" +msgstr "You may visit their profile at %s" + +#: include/enotify.php:254 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Please visit %s to approve or reject the introduction." + +#: include/enotify.php:262 +msgid "[Friendica:Notify] A new person is sharing with you" +msgstr "[Friendica:Notify] A new person is sharing with you" + +#: include/enotify.php:264 include/enotify.php:265 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "%1$s is sharing with you at %2$s" + +#: include/enotify.php:271 +msgid "[Friendica:Notify] You have a new follower" +msgstr "[Friendica:Notify] You have a new follower" + +#: include/enotify.php:273 include/enotify.php:274 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "You have a new follower at %2$s : %1$s" + +#: include/enotify.php:285 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "[Friendica:Notify] Friend suggestion received" + +#: include/enotify.php:287 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "You've received a friend suggestion from '%1$s' at %2$s" + +#: include/enotify.php:288 +#, php-format +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." + +#: include/enotify.php:293 +msgid "Name:" +msgstr "Name:" + +#: include/enotify.php:294 +msgid "Photo:" +msgstr "Photo:" + +#: include/enotify.php:297 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Please visit %s to approve or reject the suggestion." + +#: include/enotify.php:305 include/enotify.php:319 +msgid "[Friendica:Notify] Connection accepted" +msgstr "[Friendica:Notify] Connection accepted" + +#: include/enotify.php:307 include/enotify.php:321 +#, php-format +msgid "'%1$s' has accepted your connection request at %2$s" +msgstr "'%1$s' has accepted your connection request at %2$s" + +#: include/enotify.php:308 include/enotify.php:322 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "%2$s has accepted your [url=%1$s]connection request[/url]." + +#: include/enotify.php:312 +msgid "" +"You are now mutual friends and may exchange status updates, photos, and " +"email without restriction." +msgstr "You are now mutual friends and may exchange status updates, photos, and email without restriction." + +#: include/enotify.php:314 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "Please visit %s if you wish to make any changes to this relationship." + +#: include/enotify.php:326 +#, php-format +msgid "" +"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " +"communication - such as private messaging and some profile interactions. If " +"this is a celebrity or community page, these settings were applied " +"automatically." +msgstr "'%1$s' has chosen to accept you as \"Follower\". This 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." + +#: include/enotify.php:328 +#, php-format +msgid "" +"'%1$s' may choose to extend this into a two-way or more permissive " +"relationship in the future." +msgstr "'%1$s' may choose to extend this into a two-way or more permissive relationship in the future." + +#: include/enotify.php:330 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "Please visit %s if you wish to make any changes to this relationship." + +#: include/enotify.php:340 +msgid "[Friendica System:Notify] registration request" +msgstr "[Friendica:Notify] registration request" + +#: include/enotify.php:342 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "You've received a registration request from '%1$s' at %2$s." + +#: include/enotify.php:343 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "You've received a [url=%1$s]registration request[/url] from %2$s." + +#: include/enotify.php:347 +#, php-format +msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" +msgstr "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" + +#: include/enotify.php:350 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "Please visit %s to approve or reject the request." + +#: include/event.php:474 +msgid "all-day" +msgstr "All-day" + +#: include/event.php:476 +msgid "Sun" +msgstr "Sun" + +#: include/event.php:477 +msgid "Mon" +msgstr "Mon" + +#: include/event.php:478 +msgid "Tue" +msgstr "Tue" + +#: include/event.php:479 +msgid "Wed" +msgstr "Wed" + +#: include/event.php:480 +msgid "Thu" +msgstr "Thu" + +#: include/event.php:481 +msgid "Fri" +msgstr "Fri" + +#: include/event.php:482 +msgid "Sat" +msgstr "Sat" + +#: include/event.php:484 include/text.php:1198 mod/settings.php:981 +msgid "Sunday" +msgstr "Sunday" + +#: include/event.php:485 include/text.php:1198 mod/settings.php:981 +msgid "Monday" +msgstr "Monday" + +#: include/event.php:486 include/text.php:1198 +msgid "Tuesday" +msgstr "Tuesday" + +#: include/event.php:487 include/text.php:1198 +msgid "Wednesday" +msgstr "Wednesday" + +#: include/event.php:488 include/text.php:1198 +msgid "Thursday" +msgstr "Thursday" + +#: include/event.php:489 include/text.php:1198 +msgid "Friday" +msgstr "Friday" + +#: include/event.php:490 include/text.php:1198 +msgid "Saturday" +msgstr "Saturday" + +#: include/event.php:492 +msgid "Jan" +msgstr "Jan" + +#: include/event.php:493 +msgid "Feb" +msgstr "Feb" + +#: include/event.php:494 +msgid "Mar" +msgstr "Mar" + +#: include/event.php:495 +msgid "Apr" +msgstr "Apr" + +#: include/event.php:496 include/event.php:509 include/text.php:1202 +msgid "May" +msgstr "May" + +#: include/event.php:497 +msgid "Jun" +msgstr "Jun" + +#: include/event.php:498 +msgid "Jul" +msgstr "Jul" + +#: include/event.php:499 +msgid "Aug" +msgstr "Aug" + +#: include/event.php:500 +msgid "Sept" +msgstr "Sep" + +#: include/event.php:501 +msgid "Oct" +msgstr "Oct" + +#: include/event.php:502 +msgid "Nov" +msgstr "Nov" + +#: include/event.php:503 +msgid "Dec" +msgstr "Dec" + +#: include/event.php:505 include/text.php:1202 +msgid "January" +msgstr "January" + +#: include/event.php:506 include/text.php:1202 +msgid "February" +msgstr "February" + +#: include/event.php:507 include/text.php:1202 +msgid "March" +msgstr "March" + +#: include/event.php:508 include/text.php:1202 +msgid "April" +msgstr "April" + +#: include/event.php:510 include/text.php:1202 +msgid "June" +msgstr "June" + +#: include/event.php:511 include/text.php:1202 +msgid "July" +msgstr "July" + +#: include/event.php:512 include/text.php:1202 +msgid "August" +msgstr "August" + +#: include/event.php:513 include/text.php:1202 +msgid "September" +msgstr "September" + +#: include/event.php:514 include/text.php:1202 +msgid "October" +msgstr "October" + +#: include/event.php:515 include/text.php:1202 +msgid "November" +msgstr "November" + +#: include/event.php:516 include/text.php:1202 +msgid "December" +msgstr "December" + +#: include/event.php:518 mod/cal.php:278 mod/events.php:383 +msgid "today" +msgstr "today" + +#: include/event.php:523 +msgid "No events to display" +msgstr "No events to display" + +#: include/event.php:636 +msgid "l, F j" +msgstr "l, F j" + +#: include/event.php:658 +msgid "Edit event" +msgstr "Edit event" + +#: include/event.php:659 +msgid "Delete event" +msgstr "Delete event" + +#: include/event.php:685 include/text.php:1600 include/text.php:1607 +msgid "link to source" +msgstr "Link to source" + +#: include/event.php:939 +msgid "Export" +msgstr "Export" + +#: include/event.php:940 +msgid "Export calendar as ical" +msgstr "Export calendar as ical" + +#: include/event.php:941 +msgid "Export calendar as csv" +msgstr "Export calendar as csv" + +#: include/features.php:65 +msgid "General Features" +msgstr "General" + +#: include/features.php:67 +msgid "Multiple Profiles" +msgstr "Multiple profiles" + +#: include/features.php:67 +msgid "Ability to create multiple profiles" +msgstr "Ability to create multiple profiles" + +#: include/features.php:68 +msgid "Photo Location" +msgstr "Photo location" + +#: include/features.php:68 +msgid "" +"Photo metadata is normally stripped. This extracts the location (if present)" +" prior to stripping metadata and links it to a map." +msgstr "Photo metadata is normally removed. This extracts the location (if present) prior to removing metadata and links it to a map." + +#: include/features.php:69 +msgid "Export Public Calendar" +msgstr "Export public calendar" + +#: include/features.php:69 +msgid "Ability for visitors to download the public calendar" +msgstr "Ability for visitors to download the public calendar" + +#: include/features.php:74 +msgid "Post Composition Features" +msgstr "Post composition" + +#: include/features.php:75 +msgid "Post Preview" +msgstr "Post preview" + +#: include/features.php:75 +msgid "Allow previewing posts and comments before publishing them" +msgstr "Allow previewing posts and comments before publishing them" + +#: include/features.php:76 +msgid "Auto-mention Forums" +msgstr "Auto-mention forums" + +#: include/features.php:76 +msgid "" +"Add/remove mention when a forum page is selected/deselected in ACL window." +msgstr "Add/Remove mention when a forum page is selected or deselected in the ACL window." + +#: include/features.php:81 +msgid "Network Sidebar Widgets" +msgstr "Network sidebars" + +#: include/features.php:82 +msgid "Search by Date" +msgstr "Search by date" + +#: include/features.php:82 +msgid "Ability to select posts by date ranges" +msgstr "Ability to select posts by date ranges" + +#: include/features.php:83 include/features.php:113 +msgid "List Forums" +msgstr "List forums" + +#: include/features.php:83 +msgid "Enable widget to display the forums your are connected with" +msgstr "Enable widget to display the forums your are connected with" + +#: include/features.php:84 +msgid "Group Filter" +msgstr "Group filter" + +#: include/features.php:84 +msgid "Enable widget to display Network posts only from selected group" +msgstr "Enable widget to display network posts only from selected group" + +#: include/features.php:85 +msgid "Network Filter" +msgstr "Network filter" + +#: include/features.php:85 +msgid "Enable widget to display Network posts only from selected network" +msgstr "Enable widget to display network posts only from selected network" + +#: include/features.php:86 mod/network.php:206 mod/search.php:34 +msgid "Saved Searches" +msgstr "Saved searches" + +#: include/features.php:86 +msgid "Save search terms for re-use" +msgstr "Save search terms for re-use" + +#: include/features.php:91 +msgid "Network Tabs" +msgstr "Network tabs" + +#: include/features.php:92 +msgid "Network Personal Tab" +msgstr "Network personal tab" + +#: include/features.php:92 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Enable tab to display only network posts that you've interacted with" + +#: include/features.php:93 +msgid "Network New Tab" +msgstr "Network new tab" + +#: include/features.php:93 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "Enable tab to display only new network posts (last 12 hours)" + +#: include/features.php:94 +msgid "Network Shared Links Tab" +msgstr "Network shared links tab" + +#: include/features.php:94 +msgid "Enable tab to display only Network posts with links in them" +msgstr "Enable tab to display only network posts with links in them" + +#: include/features.php:99 +msgid "Post/Comment Tools" +msgstr "Post/Comment tools" + +#: include/features.php:100 +msgid "Multiple Deletion" +msgstr "Multiple deletion" + +#: include/features.php:100 +msgid "Select and delete multiple posts/comments at once" +msgstr "Select and delete multiple posts/comments at once" + +#: include/features.php:101 +msgid "Edit Sent Posts" +msgstr "Edit sent posts" + +#: include/features.php:101 +msgid "Edit and correct posts and comments after sending" +msgstr "Ability to editing posts and comments after sending" + +#: include/features.php:102 +msgid "Tagging" +msgstr "Tagging" + +#: include/features.php:102 +msgid "Ability to tag existing posts" +msgstr "Ability to tag existing posts" + +#: include/features.php:103 +msgid "Post Categories" +msgstr "Post categories" + +#: include/features.php:103 +msgid "Add categories to your posts" +msgstr "Add categories to your posts" + +#: include/features.php:104 +msgid "Ability to file posts under folders" +msgstr "Ability to file posts under folders" + +#: include/features.php:105 +msgid "Dislike Posts" +msgstr "Dislike posts" + +#: include/features.php:105 +msgid "Ability to dislike posts/comments" +msgstr "Ability to dislike posts/comments" + +#: include/features.php:106 +msgid "Star Posts" +msgstr "Star posts" + +#: include/features.php:106 +msgid "Ability to mark special posts with a star indicator" +msgstr "Ability to highlight posts with a star" + +#: include/features.php:107 +msgid "Mute Post Notifications" +msgstr "Mute post notifications" + +#: include/features.php:107 +msgid "Ability to mute notifications for a thread" +msgstr "Ability to mute notifications for a thread" + +#: include/features.php:112 +msgid "Advanced Profile Settings" +msgstr "Advanced profiles" + +#: include/features.php:113 +msgid "Show visitors public community forums at the Advanced Profile Page" +msgstr "Show visitors of public community forums at the advanced profile page" + +#: include/follow.php:81 mod/dfrn_request.php:512 +msgid "Disallowed profile URL." +msgstr "Disallowed profile URL." + +#: include/follow.php:86 mod/dfrn_request.php:518 mod/friendica.php:114 +#: mod/admin.php:279 mod/admin.php:297 +msgid "Blocked domain" +msgstr "Blocked domain" + +#: include/follow.php:91 +msgid "Connect URL missing." +msgstr "Connect URL missing." + +#: include/follow.php:119 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "This site is not configured to allow communications with other networks." + +#: include/follow.php:120 include/follow.php:134 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "No compatible communication protocols or feeds were discovered." + +#: include/follow.php:132 +msgid "The profile address specified does not provide adequate information." +msgstr "The profile address specified does not provide adequate information." + +#: include/follow.php:137 +msgid "An author or name was not found." +msgstr "An author or name was not found." + +#: include/follow.php:140 +msgid "No browser URL could be matched to this address." +msgstr "No browser URL could be matched to this address." + +#: include/follow.php:143 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Unable to match @-style identity address with a known protocol or email contact." + +#: include/follow.php:144 +msgid "Use mailto: in front of address to force email check." +msgstr "Use mailto: in front of address to force email check." + +#: include/follow.php:150 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "The profile address specified belongs to a network which has been disabled on this site." + +#: include/follow.php:155 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Limited profile: This person will be unable to receive direct/private messages from you." + +#: include/follow.php:256 +msgid "Unable to retrieve contact information." +msgstr "Unable to retrieve contact information." + +#: 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 "A deleted group with this name has been 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/group.php:210 +msgid "Default privacy group for new contacts" +msgstr "Default privacy group for new contacts" + +#: include/group.php:243 +msgid "Everybody" +msgstr "Everybody" + +#: include/group.php:266 +msgid "edit" +msgstr "edit" + +#: include/group.php:287 mod/newmember.php:61 +msgid "Groups" +msgstr "Groups" + +#: include/group.php:289 +msgid "Edit groups" +msgstr "Edit groups" + +#: include/group.php:291 +msgid "Edit group" +msgstr "Edit group" + +#: include/group.php:292 +msgid "Create a new group" +msgstr "Create new group" + +#: include/group.php:293 mod/group.php:99 mod/group.php:196 +msgid "Group Name: " +msgstr "Group name: " + +#: include/group.php:295 +msgid "Contacts not in any group" +msgstr "Contacts not in any group" + +#: include/group.php:297 mod/network.php:207 +msgid "add" +msgstr "add" + +#: include/identity.php:43 +msgid "Requested account is not available." +msgstr "Requested account is unavailable." + +#: include/identity.php:52 mod/profile.php:21 +msgid "Requested profile is not available." +msgstr "Requested profile is unavailable." + +#: include/identity.php:96 include/identity.php:319 include/identity.php:740 +msgid "Edit profile" +msgstr "Edit profile" + +#: include/identity.php:259 +msgid "Atom feed" +msgstr "Atom feed" + +#: include/identity.php:290 +msgid "Manage/edit profiles" +msgstr "Manage/Edit profiles" + +#: include/identity.php:295 include/identity.php:321 mod/profiles.php:787 +msgid "Change profile photo" +msgstr "Change profile photo" + +#: include/identity.php:296 mod/profiles.php:788 +msgid "Create New Profile" +msgstr "Create new profile" + +#: include/identity.php:306 mod/profiles.php:777 +msgid "Profile Image" +msgstr "Profile image" + +#: include/identity.php:309 mod/profiles.php:779 +msgid "visible to everybody" +msgstr "Visible to everybody" + +#: include/identity.php:310 mod/profiles.php:684 mod/profiles.php:780 +msgid "Edit visibility" +msgstr "Edit visibility" + +#: include/identity.php:338 include/identity.php:633 mod/directory.php:141 +#: mod/notifications.php:250 +msgid "Gender:" +msgstr "Gender:" + +#: include/identity.php:341 include/identity.php:651 mod/directory.php:143 +msgid "Status:" +msgstr "Status:" + +#: include/identity.php:343 include/identity.php:667 mod/directory.php:145 +msgid "Homepage:" +msgstr "Home page:" + +#: include/identity.php:345 include/identity.php:687 mod/contacts.php:640 +#: mod/directory.php:147 mod/notifications.php:246 +msgid "About:" +msgstr "About:" + +#: include/identity.php:347 mod/contacts.php:638 +msgid "XMPP:" +msgstr "XMPP:" + +#: include/identity.php:433 mod/contacts.php:55 mod/notifications.php:258 +msgid "Network:" +msgstr "Network:" + +#: include/identity.php:462 include/identity.php:552 +msgid "g A l F d" +msgstr "g A l F d" + +#: include/identity.php:463 include/identity.php:553 +msgid "F d" +msgstr "F d" + +#: include/identity.php:514 include/identity.php:599 +msgid "[today]" +msgstr "[today]" + +#: include/identity.php:526 +msgid "Birthday Reminders" +msgstr "Birthday reminders" + +#: include/identity.php:527 +msgid "Birthdays this week:" +msgstr "Birthdays this week:" + +#: include/identity.php:586 +msgid "[No description]" +msgstr "[No description]" + +#: include/identity.php:610 +msgid "Event Reminders" +msgstr "Event reminders" + +#: include/identity.php:611 +msgid "Events this week:" +msgstr "Events this week:" + +#: include/identity.php:631 mod/settings.php:1286 +msgid "Full Name:" +msgstr "Full name:" + +#: include/identity.php:636 +msgid "j F, Y" +msgstr "j F, Y" + +#: include/identity.php:637 +msgid "j F" +msgstr "j F" + +#: include/identity.php:648 +msgid "Age:" +msgstr "Age:" + +#: include/identity.php:659 +#, php-format +msgid "for %1$d %2$s" +msgstr "for %1$d %2$s" + +#: include/identity.php:663 mod/profiles.php:703 +msgid "Sexual Preference:" +msgstr "Sexual preference:" + +#: include/identity.php:671 mod/profiles.php:730 +msgid "Hometown:" +msgstr "Home town:" + +#: include/identity.php:675 mod/contacts.php:642 mod/follow.php:137 +#: mod/notifications.php:248 +msgid "Tags:" +msgstr "Tags:" + +#: include/identity.php:679 mod/profiles.php:731 +msgid "Political Views:" +msgstr "Political views:" + +#: include/identity.php:683 +msgid "Religion:" +msgstr "Religion:" + +#: include/identity.php:691 +msgid "Hobbies/Interests:" +msgstr "Hobbies/Interests:" + +#: include/identity.php:695 mod/profiles.php:735 +msgid "Likes:" +msgstr "Likes:" + +#: include/identity.php:699 mod/profiles.php:736 +msgid "Dislikes:" +msgstr "Dislikes:" + +#: include/identity.php:703 +msgid "Contact information and Social Networks:" +msgstr "Contact information and social networks:" + +#: include/identity.php:707 +msgid "Musical interests:" +msgstr "Musical interests:" + +#: include/identity.php:711 +msgid "Books, literature:" +msgstr "Books/Literature:" + +#: include/identity.php:715 +msgid "Television:" +msgstr "Television:" + +#: include/identity.php:719 +msgid "Film/dance/culture/entertainment:" +msgstr "Arts, film, dance, culture, entertainment:" + +#: include/identity.php:723 +msgid "Love/Romance:" +msgstr "Love/Romance:" + +#: include/identity.php:727 +msgid "Work/employment:" +msgstr "Work/Employment:" + +#: include/identity.php:731 +msgid "School/education:" +msgstr "School/Education:" + +#: include/identity.php:736 +msgid "Forums:" +msgstr "Forums:" + +#: include/identity.php:745 mod/events.php:506 +msgid "Basic" +msgstr "Basic" + +#: include/identity.php:746 mod/contacts.php:878 mod/events.php:507 +#: mod/admin.php:1059 +msgid "Advanced" +msgstr "Advanced" + +#: include/identity.php:772 mod/contacts.php:844 mod/follow.php:145 +msgid "Status Messages and Posts" +msgstr "Status Messages and Posts" + +#: include/identity.php:780 mod/contacts.php:852 +msgid "Profile Details" +msgstr "Profile Details" + +#: include/identity.php:788 mod/photos.php:93 +msgid "Photo Albums" +msgstr "Photo Albums" + +#: include/identity.php:827 mod/notes.php:47 +msgid "Personal Notes" +msgstr "Personal notes" + +#: include/identity.php:830 +msgid "Only You Can See This" +msgstr "Only you can see this." + +#: include/network.php:687 +msgid "view full size" +msgstr "view full size" + +#: include/oembed.php:255 +msgid "Embedded content" +msgstr "Embedded content" + +#: include/oembed.php:263 +msgid "Embedding disabled" +msgstr "Embedding disabled" + +#: include/photos.php:57 include/photos.php:66 mod/fbrowser.php:40 +#: mod/fbrowser.php:61 mod/photos.php:187 mod/photos.php:1123 +#: mod/photos.php:1256 mod/photos.php:1277 mod/photos.php:1839 +#: mod/photos.php:1853 +msgid "Contact Photos" +msgstr "Contact photos" + +#: include/user.php:39 mod/settings.php:375 +msgid "Passwords do not match. Password unchanged." +msgstr "Passwords do not match. Password unchanged." + +#: include/user.php:48 +msgid "An invitation is required." +msgstr "An invitation is required." + +#: include/user.php:53 +msgid "Invitation could not be verified." +msgstr "Invitation could not be verified." + +#: include/user.php:61 +msgid "Invalid OpenID url" +msgstr "Invalid OpenID URL" + +#: include/user.php:82 +msgid "Please enter the required information." +msgstr "Please enter the required information." + +#: include/user.php:96 +msgid "Please use a shorter name." +msgstr "Please use a shorter name." + +#: include/user.php:98 +msgid "Name too short." +msgstr "Name too short." + +#: include/user.php:106 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "That doesn't appear to be your full (i.e first and last) name." + +#: include/user.php:111 +msgid "Your email domain is not among those allowed on this site." +msgstr "Your email domain is not allowed on this site." + +#: include/user.php:114 +msgid "Not a valid email address." +msgstr "Not a valid email address." + +#: include/user.php:127 +msgid "Cannot use that email." +msgstr "Cannot use that email." + +#: include/user.php:133 +msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." +msgstr "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." + +#: include/user.php:140 include/user.php:228 +msgid "Nickname is already registered. Please choose another." +msgstr "Nickname is already registered. Please choose another." + +#: include/user.php:150 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Nickname was once registered here and may not be re-used. Please choose another." + +#: include/user.php:166 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "SERIOUS ERROR: Generation of security keys failed." + +#: include/user.php:214 +msgid "An error occurred during registration. Please try again." +msgstr "An error occurred during registration. Please try again." + +#: include/user.php:239 view/theme/duepuntozero/config.php:43 +msgid "default" +msgstr "default" + +#: include/user.php:249 +msgid "An error occurred creating your default profile. Please try again." +msgstr "An error occurred creating your default profile. Please try again." + +#: include/user.php:309 include/user.php:317 include/user.php:325 +#: mod/profile_photo.php:74 mod/profile_photo.php:82 mod/profile_photo.php:90 +#: mod/profile_photo.php:215 mod/profile_photo.php:310 +#: mod/profile_photo.php:320 mod/photos.php:71 mod/photos.php:187 +#: mod/photos.php:774 mod/photos.php:1256 mod/photos.php:1277 +#: mod/photos.php:1863 +msgid "Profile Photos" +msgstr "Profile photos" + +#: include/user.php:400 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" +"\t" +msgstr "\n\t\tDear %1$s,\n\t\t\tThank you for registering at %2$s. Your account is pending approval by the administrator.\n\t" + +#: include/user.php:410 +#, php-format +msgid "Registration at %s" +msgstr "Registration at %s" + +#: include/user.php:420 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t" +msgstr "\n\t\tDear %1$s,\n\t\t\tThank you for registering at %2$s. Your account has been created.\n\t" + +#: include/user.php:424 +#, php-format +msgid "" +"\n" +"\t\tThe login details are as follows:\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t%1$s\n" +"\t\t\tPassword:\t%5$s\n" +"\n" +"\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\tin.\n" +"\n" +"\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\tthan that.\n" +"\n" +"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\tIf you are new and do not know anybody here, they may help\n" +"\t\tyou to make some new and interesting friends.\n" +"\n" +"\n" +"\t\tThank you and welcome to %2$s." +msgstr "\n\t\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 for your account \"Settings\" 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 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, these settings may help to\n\t\tmake new and interesting friends.\n\n\n\t\tThank you and welcome to %2$s." + +#: include/user.php:456 mod/admin.php:1308 +#, php-format +msgid "Registration details for %s" +msgstr "Registration details for %s" + +#: include/dbstructure.php:20 +msgid "There are no tables on MyISAM." +msgstr "There are no tables on MyISAM." + +#: include/dbstructure.php:61 +#, php-format +msgid "" +"\n" +"\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." +msgstr "\n\t\t\tThe Friendica 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\n might be invalid." + +#: include/dbstructure.php:66 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "The error message is\n[pre]%s[/pre]" + +#: include/dbstructure.php:190 +#, php-format +msgid "" +"\n" +"Error %d occurred during database update:\n" +"%s\n" +msgstr "\nError %d occurred during database update:\n%s\n" + +#: include/dbstructure.php:193 +msgid "Errors encountered performing database changes: " +msgstr "Errors encountered performing database changes: " + +#: include/dbstructure.php:201 +msgid ": Database update" +msgstr ": Database update" + +#: include/dbstructure.php:425 +#, php-format +msgid "%s: updating %s table." +msgstr "%s: updating %s table." + +#: include/dfrn.php:1251 +#, php-format +msgid "%s\\'s birthday" +msgstr "%s\\'s birthday" + +#: include/diaspora.php:2137 +msgid "Sharing notification from Diaspora network" +msgstr "Sharing notification from Diaspora network" + +#: include/diaspora.php:3146 +msgid "Attachments:" +msgstr "Attachments:" + +#: include/items.php:1738 mod/dfrn_confirm.php:736 mod/dfrn_request.php:759 +msgid "[Name Withheld]" +msgstr "[Name Withheld]" + +#: include/items.php:2123 mod/display.php:103 mod/display.php:279 +#: mod/display.php:484 mod/notice.php:15 mod/viewsrc.php:15 mod/admin.php:247 +#: mod/admin.php:1565 mod/admin.php:1816 +msgid "Item not found." +msgstr "Item not found." + +#: include/items.php:2162 +msgid "Do you really want to delete this item?" +msgstr "Do you really want to delete this item?" + +#: include/items.php:2164 mod/api.php:105 mod/contacts.php:452 +#: mod/suggest.php:29 mod/dfrn_request.php:880 mod/follow.php:113 +#: mod/message.php:206 mod/profiles.php:640 mod/profiles.php:643 +#: mod/profiles.php:670 mod/register.php:245 mod/settings.php:1171 +#: mod/settings.php:1177 mod/settings.php:1184 mod/settings.php:1188 +#: mod/settings.php:1193 mod/settings.php:1198 mod/settings.php:1203 +#: mod/settings.php:1208 mod/settings.php:1234 mod/settings.php:1235 +#: mod/settings.php:1236 mod/settings.php:1237 mod/settings.php:1238 +msgid "Yes" +msgstr "Yes" + +#: include/items.php:2327 mod/allfriends.php:12 mod/api.php:26 mod/api.php:31 +#: mod/attach.php:33 mod/common.php:18 mod/contacts.php:360 +#: mod/crepair.php:102 mod/delegate.php:12 mod/display.php:481 +#: mod/editpost.php:10 mod/fsuggest.php:79 mod/invite.php:15 +#: mod/invite.php:103 mod/mood.php:115 mod/nogroup.php:27 mod/notes.php:23 +#: mod/ostatus_subscribe.php:9 mod/poke.php:154 mod/profile_photo.php:19 +#: mod/profile_photo.php:180 mod/profile_photo.php:191 +#: mod/profile_photo.php:204 mod/regmod.php:113 mod/repair_ostatus.php:9 +#: mod/suggest.php:58 mod/uimport.php:24 mod/viewcontacts.php:46 +#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wallmessage.php:9 +#: mod/wallmessage.php:33 mod/wallmessage.php:73 mod/wallmessage.php:97 +#: mod/cal.php:299 mod/dfrn_confirm.php:61 mod/dirfind.php:11 +#: mod/events.php:185 mod/follow.php:11 mod/follow.php:74 mod/follow.php:158 +#: mod/group.php:19 mod/manage.php:102 mod/message.php:46 mod/message.php:171 +#: mod/network.php:4 mod/photos.php:166 mod/photos.php:1109 +#: mod/profiles.php:168 mod/profiles.php:607 mod/register.php:42 +#: mod/settings.php:22 mod/settings.php:130 mod/settings.php:668 +#: mod/wall_upload.php:101 mod/wall_upload.php:104 mod/item.php:196 +#: mod/item.php:208 mod/notifications.php:71 index.php:407 +msgid "Permission denied." +msgstr "Permission denied." + +#: include/items.php:2444 +msgid "Archives" +msgstr "Archives" + +#: include/ostatus.php:1947 +#, php-format +msgid "%s is now following %s." +msgstr "%s is now following %s." + +#: include/ostatus.php:1948 +msgid "following" +msgstr "following" + +#: include/ostatus.php:1951 +#, php-format +msgid "%s stopped following %s." +msgstr "%s stopped following %s." + +#: include/ostatus.php:1952 +msgid "stopped following" +msgstr "stopped following" + +#: include/text.php:307 +msgid "newer" +msgstr "Later posts" + +#: include/text.php:308 +msgid "older" +msgstr "Earlier posts" + +#: include/text.php:313 +msgid "first" +msgstr "first" + +#: include/text.php:314 +msgid "prev" +msgstr "prev" + +#: include/text.php:348 +msgid "next" +msgstr "next" + +#: include/text.php:349 +msgid "last" +msgstr "last" + +#: include/text.php:403 +msgid "Loading more entries..." +msgstr "Loading more entries..." + +#: include/text.php:404 +msgid "The end" +msgstr "The end" + +#: include/text.php:955 +msgid "No contacts" +msgstr "No contacts" + +#: include/text.php:980 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d contact" +msgstr[1] "%d contacts" + +#: include/text.php:993 +msgid "View Contacts" +msgstr "View contacts" + +#: include/text.php:1081 mod/editpost.php:99 mod/filer.php:31 mod/notes.php:62 +msgid "Save" +msgstr "Save" + +#: include/text.php:1144 +msgid "poke" +msgstr "poke" + +#: include/text.php:1144 +msgid "poked" +msgstr "poked" + +#: include/text.php:1145 +msgid "ping" +msgstr "ping" + +#: include/text.php:1145 +msgid "pinged" +msgstr "pinged" + +#: include/text.php:1146 +msgid "prod" +msgstr "prod" + +#: include/text.php:1146 +msgid "prodded" +msgstr "prodded" + +#: include/text.php:1147 +msgid "slap" +msgstr "slap" + +#: include/text.php:1147 +msgid "slapped" +msgstr "slapped" + +#: include/text.php:1148 +msgid "finger" +msgstr "finger" + +#: include/text.php:1148 +msgid "fingered" +msgstr "fingered" + +#: include/text.php:1149 +msgid "rebuff" +msgstr "rebuff" + +#: include/text.php:1149 +msgid "rebuffed" +msgstr "rebuffed" + +#: include/text.php:1163 +msgid "happy" +msgstr "happy" + +#: include/text.php:1164 +msgid "sad" +msgstr "sad" + +#: include/text.php:1165 +msgid "mellow" +msgstr "mellow" + +#: include/text.php:1166 +msgid "tired" +msgstr "tired" + +#: include/text.php:1167 +msgid "perky" +msgstr "perky" + +#: include/text.php:1168 +msgid "angry" +msgstr "angry" + +#: include/text.php:1169 +msgid "stupified" +msgstr "stupified" + +#: include/text.php:1170 +msgid "puzzled" +msgstr "puzzled" + +#: include/text.php:1171 +msgid "interested" +msgstr "interested" + +#: include/text.php:1172 +msgid "bitter" +msgstr "bitter" + +#: include/text.php:1173 +msgid "cheerful" +msgstr "cheerful" + +#: include/text.php:1174 +msgid "alive" +msgstr "alive" + +#: include/text.php:1175 +msgid "annoyed" +msgstr "annoyed" + +#: include/text.php:1176 +msgid "anxious" +msgstr "anxious" + +#: include/text.php:1177 +msgid "cranky" +msgstr "cranky" + +#: include/text.php:1178 +msgid "disturbed" +msgstr "disturbed" + +#: include/text.php:1179 +msgid "frustrated" +msgstr "frustrated" + +#: include/text.php:1180 +msgid "motivated" +msgstr "motivated" + +#: include/text.php:1181 +msgid "relaxed" +msgstr "relaxed" + +#: include/text.php:1182 +msgid "surprised" +msgstr "surprised" + +#: include/text.php:1392 mod/videos.php:386 +msgid "View Video" +msgstr "View video" + +#: include/text.php:1424 +msgid "bytes" +msgstr "bytes" + +#: include/text.php:1456 include/text.php:1468 +msgid "Click to open/close" +msgstr "Click to open/close" + +#: include/text.php:1594 +msgid "View on separate page" +msgstr "View on separate page" + +#: include/text.php:1595 +msgid "view on separate page" +msgstr "view on separate page" + +#: include/text.php:1874 +msgid "activity" +msgstr "activity" + +#: include/text.php:1876 mod/content.php:623 object/Item.php:419 +#: object/Item.php:431 +msgid "comment" +msgid_plural "comments" +msgstr[0] "comment" +msgstr[1] "comments" + +#: include/text.php:1877 +msgid "post" +msgstr "post" + +#: include/text.php:2045 +msgid "Item filed" +msgstr "Item filed" + +#: mod/allfriends.php:46 +msgid "No friends to display." +msgstr "No friends to display." + +#: mod/api.php:76 mod/api.php:102 +msgid "Authorize application connection" +msgstr "Authorize application connection" + +#: mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Return to your app and insert this security code:" + +#: mod/api.php:89 +msgid "Please login to continue." +msgstr "Please login to continue." + +#: 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 "Do you want to authorize this application to access your posts and contacts and create new posts for you?" + +#: mod/api.php:106 mod/dfrn_request.php:880 mod/follow.php:113 +#: mod/profiles.php:640 mod/profiles.php:644 mod/profiles.php:670 +#: mod/register.php:246 mod/settings.php:1171 mod/settings.php:1177 +#: mod/settings.php:1184 mod/settings.php:1188 mod/settings.php:1193 +#: mod/settings.php:1198 mod/settings.php:1203 mod/settings.php:1208 +#: mod/settings.php:1234 mod/settings.php:1235 mod/settings.php:1236 +#: mod/settings.php:1237 mod/settings.php:1238 +msgid "No" +msgstr "No" + +#: mod/apps.php:7 index.php:254 +msgid "You must be logged in to use addons. " +msgstr "You must be logged in to use addons. " + +#: mod/apps.php:11 +msgid "Applications" +msgstr "Applications" + +#: mod/apps.php:14 +msgid "No installed applications." +msgstr "No installed applications." + +#: mod/attach.php:8 +msgid "Item not available." +msgstr "Item not available." + +#: mod/attach.php:20 +msgid "Item was not found." +msgstr "Item was not found." + +#: mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "The post was created" + +#: mod/common.php:91 +msgid "No contacts in common." +msgstr "No contacts in common." + +#: mod/common.php:141 mod/contacts.php:871 +msgid "Common Friends" +msgstr "Common friends" + +#: mod/contacts.php:134 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "%d contact edited." +msgstr[1] "%d contacts edited." + +#: mod/contacts.php:169 mod/contacts.php:378 +msgid "Could not access contact record." +msgstr "Could not access contact record." + +#: mod/contacts.php:183 +msgid "Could not locate selected profile." +msgstr "Could not locate selected profile." + +#: mod/contacts.php:216 +msgid "Contact updated." +msgstr "Contact updated." + +#: mod/contacts.php:218 mod/dfrn_request.php:593 +msgid "Failed to update contact record." +msgstr "Failed to update contact record." + +#: mod/contacts.php:399 +msgid "Contact has been blocked" +msgstr "Contact has been blocked" + +#: mod/contacts.php:399 +msgid "Contact has been unblocked" +msgstr "Contact has been unblocked" + +#: mod/contacts.php:410 +msgid "Contact has been ignored" +msgstr "Contact has been ignored" + +#: mod/contacts.php:410 +msgid "Contact has been unignored" +msgstr "Contact has been unignored" + +#: mod/contacts.php:422 +msgid "Contact has been archived" +msgstr "Contact has been archived" + +#: mod/contacts.php:422 +msgid "Contact has been unarchived" +msgstr "Contact has been unarchived" + +#: mod/contacts.php:447 +msgid "Drop contact" +msgstr "Drop contact" + +#: mod/contacts.php:450 mod/contacts.php:809 +msgid "Do you really want to delete this contact?" +msgstr "Do you really want to delete this contact?" + +#: mod/contacts.php:469 +msgid "Contact has been removed." +msgstr "Contact has been removed." + +#: mod/contacts.php:506 +#, php-format +msgid "You are mutual friends with %s" +msgstr "You are mutual friends with %s" + +#: mod/contacts.php:510 +#, php-format +msgid "You are sharing with %s" +msgstr "You are sharing with %s" + +#: mod/contacts.php:515 +#, php-format +msgid "%s is sharing with you" +msgstr "%s is sharing with you" + +#: mod/contacts.php:535 +msgid "Private communications are not available for this contact." +msgstr "Private communications are not available for this contact." + +#: mod/contacts.php:538 mod/admin.php:978 +msgid "Never" +msgstr "Never" + +#: mod/contacts.php:542 +msgid "(Update was successful)" +msgstr "(Update was successful)" + +#: mod/contacts.php:542 +msgid "(Update was not successful)" +msgstr "(Update was not successful)" + +#: mod/contacts.php:544 mod/contacts.php:972 +msgid "Suggest friends" +msgstr "Suggest friends" + +#: mod/contacts.php:548 +#, php-format +msgid "Network type: %s" +msgstr "Network type: %s" + +#: mod/contacts.php:561 +msgid "Communications lost with this contact!" +msgstr "Communications lost with this contact!" + +#: mod/contacts.php:564 +msgid "Fetch further information for feeds" +msgstr "Fetch further information for feeds" + +#: mod/contacts.php:565 mod/admin.php:987 +msgid "Disabled" +msgstr "Disabled" + +#: mod/contacts.php:565 +msgid "Fetch information" +msgstr "Fetch information" + +#: mod/contacts.php:565 +msgid "Fetch information and keywords" +msgstr "Fetch information and keywords" + +#: mod/contacts.php:583 +msgid "Contact" +msgstr "Contact" + +#: mod/contacts.php:585 mod/content.php:728 mod/crepair.php:156 +#: mod/fsuggest.php:108 mod/invite.php:142 mod/localtime.php:45 +#: mod/mood.php:138 mod/poke.php:203 mod/events.php:505 mod/manage.php:155 +#: mod/message.php:338 mod/message.php:521 mod/photos.php:1141 +#: mod/photos.php:1271 mod/photos.php:1597 mod/photos.php:1646 +#: mod/photos.php:1688 mod/photos.php:1768 mod/profiles.php:681 +#: mod/install.php:242 mod/install.php:282 object/Item.php:705 +#: view/theme/duepuntozero/config.php:61 view/theme/frio/config.php:64 +#: view/theme/quattro/config.php:67 view/theme/vier/config.php:112 +msgid "Submit" +msgstr "Submit" + +#: mod/contacts.php:586 +msgid "Profile Visibility" +msgstr "Profile visibility" + +#: mod/contacts.php:587 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Please choose the profile you would like to display to %s when viewing your profile securely." + +#: mod/contacts.php:588 +msgid "Contact Information / Notes" +msgstr "Personal note" + +#: mod/contacts.php:589 +msgid "Edit contact notes" +msgstr "Edit contact notes" + +#: mod/contacts.php:594 mod/contacts.php:938 mod/nogroup.php:43 +#: mod/viewcontacts.php:102 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visit %s's profile [%s]" + +#: mod/contacts.php:595 +msgid "Block/Unblock contact" +msgstr "Block/Unblock contact" + +#: mod/contacts.php:596 +msgid "Ignore contact" +msgstr "Ignore contact" + +#: mod/contacts.php:597 +msgid "Repair URL settings" +msgstr "Repair URL settings" + +#: mod/contacts.php:598 +msgid "View conversations" +msgstr "View conversations" + +#: mod/contacts.php:604 +msgid "Last update:" +msgstr "Last update:" + +#: mod/contacts.php:606 +msgid "Update public posts" +msgstr "Update public posts" + +#: mod/contacts.php:608 mod/contacts.php:982 +msgid "Update now" +msgstr "Update now" + +#: mod/contacts.php:613 mod/contacts.php:813 mod/contacts.php:991 +#: mod/admin.php:1510 +msgid "Unblock" +msgstr "Unblock" + +#: mod/contacts.php:613 mod/contacts.php:813 mod/contacts.php:991 +#: mod/admin.php:1509 +msgid "Block" +msgstr "Block" + +#: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999 +msgid "Unignore" +msgstr "Unignore" + +#: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999 +#: mod/notifications.php:60 mod/notifications.php:179 +#: mod/notifications.php:263 +msgid "Ignore" +msgstr "Ignore" + +#: mod/contacts.php:618 +msgid "Currently blocked" +msgstr "Currently blocked" + +#: mod/contacts.php:619 +msgid "Currently ignored" +msgstr "Currently ignored" + +#: mod/contacts.php:620 +msgid "Currently archived" +msgstr "Currently archived" + +#: mod/contacts.php:621 mod/notifications.php:172 mod/notifications.php:251 +msgid "Hide this contact from others" +msgstr "Hide this contact from others" + +#: mod/contacts.php:621 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Replies/Likes to your public posts may still be visible" + +#: mod/contacts.php:622 +msgid "Notification for new posts" +msgstr "Notification for new posts" + +#: mod/contacts.php:622 +msgid "Send a notification of every new post of this contact" +msgstr "Send notification for every new post from this contact" + +#: mod/contacts.php:625 +msgid "Blacklisted keywords" +msgstr "Blacklisted keywords" + +#: 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 "Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected" + +#: mod/contacts.php:632 mod/follow.php:129 mod/notifications.php:255 +msgid "Profile URL" +msgstr "Profile URL:" + +#: mod/contacts.php:643 +msgid "Actions" +msgstr "Actions" + +#: mod/contacts.php:646 +msgid "Contact Settings" +msgstr "Notification and privacy " + +#: mod/contacts.php:692 +msgid "Suggestions" +msgstr "Suggestions" + +#: mod/contacts.php:695 +msgid "Suggest potential friends" +msgstr "Suggest potential friends" + +#: mod/contacts.php:700 mod/group.php:212 +msgid "All Contacts" +msgstr "All contacts" + +#: mod/contacts.php:703 +msgid "Show all contacts" +msgstr "Show all contacts" + +#: mod/contacts.php:708 +msgid "Unblocked" +msgstr "Unblocked" + +#: mod/contacts.php:711 +msgid "Only show unblocked contacts" +msgstr "Only show unblocked contacts" + +#: mod/contacts.php:717 +msgid "Blocked" +msgstr "Blocked" + +#: mod/contacts.php:720 +msgid "Only show blocked contacts" +msgstr "Only show blocked contacts" + +#: mod/contacts.php:726 +msgid "Ignored" +msgstr "Ignored" + +#: mod/contacts.php:729 +msgid "Only show ignored contacts" +msgstr "Only show ignored contacts" + +#: mod/contacts.php:735 +msgid "Archived" +msgstr "Archived" + +#: mod/contacts.php:738 +msgid "Only show archived contacts" +msgstr "Only show archived contacts" + +#: mod/contacts.php:744 +msgid "Hidden" +msgstr "Hidden" + +#: mod/contacts.php:747 +msgid "Only show hidden contacts" +msgstr "Only show hidden contacts" + +#: mod/contacts.php:804 +msgid "Search your contacts" +msgstr "Search your contacts" + +#: mod/contacts.php:805 mod/network.php:151 mod/search.php:227 +#, php-format +msgid "Results for: %s" +msgstr "Results for: %s" + +#: mod/contacts.php:812 mod/settings.php:160 mod/settings.php:707 +msgid "Update" +msgstr "Update" + +#: mod/contacts.php:815 mod/contacts.php:1007 +msgid "Archive" +msgstr "Archive" + +#: mod/contacts.php:815 mod/contacts.php:1007 +msgid "Unarchive" +msgstr "Unarchive" + +#: mod/contacts.php:818 +msgid "Batch Actions" +msgstr "Batch actions" + +#: mod/contacts.php:864 +msgid "View all contacts" +msgstr "View all contacts" + +#: mod/contacts.php:874 +msgid "View all common friends" +msgstr "View all common friends" + +#: mod/contacts.php:881 +msgid "Advanced Contact Settings" +msgstr "Advanced contact settings" + +#: mod/contacts.php:915 +msgid "Mutual Friendship" +msgstr "Mutual friendship" + +#: mod/contacts.php:919 +msgid "is a fan of yours" +msgstr "is a fan of yours" + +#: mod/contacts.php:923 +msgid "you are a fan of" +msgstr "I follow them" + +#: mod/contacts.php:939 mod/nogroup.php:44 +msgid "Edit contact" +msgstr "Edit contact" + +#: mod/contacts.php:993 +msgid "Toggle Blocked status" +msgstr "Toggle blocked status" + +#: mod/contacts.php:1001 +msgid "Toggle Ignored status" +msgstr "Toggle ignored status" + +#: mod/contacts.php:1009 +msgid "Toggle Archive status" +msgstr "Toggle archive status" + +#: mod/contacts.php:1017 +msgid "Delete contact" +msgstr "Delete contact" + +#: mod/content.php:119 mod/network.php:475 +msgid "No such group" +msgstr "No such group" + +#: mod/content.php:130 mod/group.php:213 mod/network.php:502 +msgid "Group is empty" +msgstr "Group is empty" + +#: mod/content.php:135 mod/network.php:506 +#, php-format +msgid "Group: %s" +msgstr "Group: %s" + +#: mod/content.php:325 object/Item.php:96 +msgid "This entry was edited" +msgstr "This entry was edited" + +#: mod/content.php:621 object/Item.php:417 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d comment" +msgstr[1] "%d comments:" + +#: mod/content.php:638 mod/photos.php:1429 object/Item.php:117 +msgid "Private Message" +msgstr "Private message" + +#: mod/content.php:702 mod/photos.php:1625 object/Item.php:274 +msgid "I like this (toggle)" +msgstr "I like this (toggle)" + +#: mod/content.php:702 object/Item.php:274 +msgid "like" +msgstr "Like" + +#: mod/content.php:703 mod/photos.php:1626 object/Item.php:275 +msgid "I don't like this (toggle)" +msgstr "I don't like this (toggle)" + +#: mod/content.php:703 object/Item.php:275 +msgid "dislike" +msgstr "Dislike" + +#: mod/content.php:705 object/Item.php:278 +msgid "Share this" +msgstr "Share this" + +#: mod/content.php:705 object/Item.php:278 +msgid "share" +msgstr "Share" + +#: mod/content.php:725 mod/photos.php:1643 mod/photos.php:1685 +#: mod/photos.php:1765 object/Item.php:702 +msgid "This is you" +msgstr "This is me" + +#: mod/content.php:727 mod/content.php:950 mod/photos.php:1645 +#: mod/photos.php:1687 mod/photos.php:1767 object/Item.php:392 +#: object/Item.php:704 +msgid "Comment" +msgstr "Comment" + +#: mod/content.php:729 object/Item.php:706 +msgid "Bold" +msgstr "Bold" + +#: mod/content.php:730 object/Item.php:707 +msgid "Italic" +msgstr "Italic" + +#: mod/content.php:731 object/Item.php:708 +msgid "Underline" +msgstr "Underline" + +#: mod/content.php:732 object/Item.php:709 +msgid "Quote" +msgstr "Quote" + +#: mod/content.php:733 object/Item.php:710 +msgid "Code" +msgstr "Code" + +#: mod/content.php:734 object/Item.php:711 +msgid "Image" +msgstr "Image" + +#: mod/content.php:735 object/Item.php:712 +msgid "Link" +msgstr "Link" + +#: mod/content.php:736 object/Item.php:713 +msgid "Video" +msgstr "Video" + +#: mod/content.php:746 mod/settings.php:743 object/Item.php:122 +#: object/Item.php:124 +msgid "Edit" +msgstr "Edit" + +#: mod/content.php:772 object/Item.php:238 +msgid "add star" +msgstr "Add star" + +#: mod/content.php:773 object/Item.php:239 +msgid "remove star" +msgstr "Remove star" + +#: mod/content.php:774 object/Item.php:240 +msgid "toggle star status" +msgstr "Toggle star status" + +#: mod/content.php:777 object/Item.php:243 +msgid "starred" +msgstr "Starred" + +#: mod/content.php:778 mod/content.php:800 object/Item.php:263 +msgid "add tag" +msgstr "Add tag" + +#: mod/content.php:789 object/Item.php:251 +msgid "ignore thread" +msgstr "Ignore thread" + +#: mod/content.php:790 object/Item.php:252 +msgid "unignore thread" +msgstr "Unignore thread" + +#: mod/content.php:791 object/Item.php:253 +msgid "toggle ignore status" +msgstr "Toggle ignore status" + +#: mod/content.php:794 mod/ostatus_subscribe.php:73 object/Item.php:256 +msgid "ignored" +msgstr "Ignored" + +#: mod/content.php:805 object/Item.php:141 +msgid "save to folder" +msgstr "Save to folder" + +#: mod/content.php:853 object/Item.php:212 +msgid "I will attend" +msgstr "I will attend" + +#: mod/content.php:853 object/Item.php:212 +msgid "I will not attend" +msgstr "I will not attend" + +#: mod/content.php:853 object/Item.php:212 +msgid "I might attend" +msgstr "I might attend" + +#: mod/content.php:917 object/Item.php:358 +msgid "to" +msgstr "to" + +#: mod/content.php:918 object/Item.php:360 +msgid "Wall-to-Wall" +msgstr "Wall-to-wall" + +#: mod/content.php:919 object/Item.php:361 +msgid "via Wall-To-Wall:" +msgstr "via wall-to-wall:" + +#: mod/credits.php:16 +msgid "Credits" +msgstr "Credits" + +#: mod/credits.php:17 +msgid "" +"Friendica is a community project, that would not be possible without the " +"help of many people. Here is a list of those who have contributed to the " +"code or the translation of Friendica. Thank you all!" +msgstr "Friendica 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!" + +#: mod/crepair.php:89 +msgid "Contact settings applied." +msgstr "Contact settings applied." + +#: mod/crepair.php:91 +msgid "Contact update failed." +msgstr "Contact update failed." + +#: mod/crepair.php:116 mod/fsuggest.php:21 mod/fsuggest.php:93 +#: mod/dfrn_confirm.php:126 +msgid "Contact not found." +msgstr "Contact not found." + +#: mod/crepair.php:122 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "Warning: These are highly advanced settings. If you enter incorrect information your communications with this contact may not working." + +#: mod/crepair.php:123 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Please use your browser 'Back' button now if you are uncertain what to do on this page." + +#: mod/crepair.php:136 mod/crepair.php:138 +msgid "No mirroring" +msgstr "No mirroring" + +#: mod/crepair.php:136 +msgid "Mirror as forwarded posting" +msgstr "Mirror as forwarded posting" + +#: mod/crepair.php:136 mod/crepair.php:138 +msgid "Mirror as my own posting" +msgstr "Mirror as my own posting" + +#: mod/crepair.php:152 +msgid "Return to contact editor" +msgstr "Return to contact editor" + +#: mod/crepair.php:154 +msgid "Refetch contact data" +msgstr "Re-fetch contact data." + +#: mod/crepair.php:158 +msgid "Remote Self" +msgstr "Remote self" + +#: mod/crepair.php:161 +msgid "Mirror postings from this contact" +msgstr "Mirror postings from this contact:" + +#: mod/crepair.php:163 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "This will cause Friendica to repost new entries from this contact." + +#: mod/crepair.php:167 mod/settings.php:683 mod/settings.php:709 +#: mod/admin.php:1490 mod/admin.php:1503 mod/admin.php:1516 mod/admin.php:1532 +msgid "Name" +msgstr "Name:" + +#: mod/crepair.php:168 +msgid "Account Nickname" +msgstr "Account nickname:" + +#: mod/crepair.php:169 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Tag name - overrides name/nickname:" + +#: mod/crepair.php:170 +msgid "Account URL" +msgstr "Account URL:" + +#: mod/crepair.php:171 +msgid "Friend Request URL" +msgstr "Friend request URL:" + +#: mod/crepair.php:172 +msgid "Friend Confirm URL" +msgstr "Friend confirm URL:" + +#: mod/crepair.php:173 +msgid "Notification Endpoint URL" +msgstr "Notification endpoint URL" + +#: mod/crepair.php:174 +msgid "Poll/Feed URL" +msgstr "Poll/Feed URL:" + +#: mod/crepair.php:175 +msgid "New photo from this URL" +msgstr "New photo from this URL:" + +#: mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "No potential page delegates found." + +#: 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 "Delegates are able to manage all aspects of this account except for key setting features. Please do not delegate your personal account to anybody that you do not trust completely." + +#: mod/delegate.php:133 +msgid "Existing Page Managers" +msgstr "Existing page managers" + +#: mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "Existing page delegates" + +#: mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "Potential delegates" + +#: mod/delegate.php:139 mod/tagrm.php:95 +msgid "Remove" +msgstr "Remove" + +#: mod/delegate.php:140 +msgid "Add" +msgstr "Add" + +#: mod/delegate.php:141 +msgid "No entries." +msgstr "No entries." + +#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:539 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "%1$s welcomes %2$s" + +#: mod/directory.php:37 mod/display.php:200 mod/viewcontacts.php:36 +#: mod/community.php:18 mod/dfrn_request.php:804 mod/photos.php:979 +#: mod/probe.php:9 mod/search.php:93 mod/search.php:99 mod/videos.php:198 +#: mod/webfinger.php:8 +msgid "Public access denied." +msgstr "Public access denied." + +#: mod/directory.php:199 view/theme/vier/theme.php:199 +msgid "Global Directory" +msgstr "Global Directory" + +#: mod/directory.php:201 +msgid "Find on this site" +msgstr "Find on this site" + +#: mod/directory.php:203 +msgid "Results for:" +msgstr "Results for:" + +#: mod/directory.php:205 +msgid "Site Directory" +msgstr "Site directory" + +#: mod/directory.php:212 +msgid "No entries (some entries may be hidden)." +msgstr "No entries (entries may be hidden)." + +#: mod/display.php:328 mod/cal.php:143 mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "Access to this profile has been restricted." + +#: mod/display.php:479 +msgid "Item has been removed." +msgstr "Item has been removed." + +#: mod/editpost.php:17 mod/editpost.php:27 +msgid "Item not found" +msgstr "Item not found" + +#: mod/editpost.php:32 +msgid "Edit post" +msgstr "Edit post" + +#: mod/fbrowser.php:132 +msgid "Files" +msgstr "Files" + +#: mod/fetch.php:12 mod/fetch.php:39 mod/fetch.php:48 mod/help.php:53 +#: mod/p.php:16 mod/p.php:43 mod/p.php:52 index.php:298 +msgid "Not Found" +msgstr "Not found" + +#: mod/filer.php:30 +msgid "- select -" +msgstr "- select -" + +#: mod/fsuggest.php:64 +msgid "Friend suggestion sent." +msgstr "Friend suggestion sent" + +#: mod/fsuggest.php:98 +msgid "Suggest Friends" +msgstr "Suggest friends" + +#: mod/fsuggest.php:100 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Suggest a friend for %s" + +#: mod/hcard.php:11 +msgid "No profile" +msgstr "No profile" + +#: mod/help.php:41 +msgid "Help:" +msgstr "Help:" + +#: mod/help.php:56 index.php:301 +msgid "Page not found." +msgstr "Page not found" + +#: mod/home.php:39 +#, php-format +msgid "Welcome to %s" +msgstr "Welcome to %s" + +#: mod/invite.php:28 +msgid "Total invitation limit exceeded." +msgstr "Total invitation limit exceeded" + +#: mod/invite.php:51 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Not a valid email address" + +#: mod/invite.php:76 +msgid "Please join us on Friendica" +msgstr "Please join us on Friendica." + +#: mod/invite.php:87 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Invitation limit is exceeded. Please contact your site administrator." + +#: mod/invite.php:91 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Message delivery failed" + +#: mod/invite.php:95 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d message sent." +msgstr[1] "%d messages sent." + +#: mod/invite.php:114 +msgid "You have no more invitations available" +msgstr "You have no more invitations available." + +#: mod/invite.php:122 +#, 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 "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." + +#: mod/invite.php:124 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "To accept this invitation, please register at %s or any other public Friendica website." + +#: mod/invite.php:125 +#, php-format +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks. See %s for a list of alternate Friendica " +"sites you can join." +msgstr "Friendica sites are all inter-connect to create a large 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." + +#: mod/invite.php:128 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Our apologies. This system is not currently configured to connect with other public sites or invite members." + +#: mod/invite.php:134 +msgid "Send invitations" +msgstr "Send invitations" + +#: mod/invite.php:135 +msgid "Enter email addresses, one per line:" +msgstr "Enter email addresses, one per line:" + +#: mod/invite.php:136 mod/wallmessage.php:135 mod/message.php:332 +#: mod/message.php:515 +msgid "Your message:" +msgstr "Your message:" + +#: mod/invite.php:137 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web." + +#: mod/invite.php:139 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "You will need to supply this invitation code: $invite_code" + +#: mod/invite.php:139 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Once you have registered, please connect with me via my profile page at:" + +#: mod/invite.php:141 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" +msgstr "For more information about the Friendica project and why we feel it is important, please visit http://friendica.com" + +#: mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Time conversion" + +#: mod/localtime.php:26 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica provides this service for sharing events with other networks and friends in unknown time zones." + +#: mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "UTC time: %s" + +#: mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "Current time zone: %s" + +#: mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Converted local time: %s" + +#: mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Please select your time zone:" + +#: mod/lockview.php:32 mod/lockview.php:40 +msgid "Remote privacy information not available." +msgstr "Remote privacy information not available." + +#: mod/lockview.php:49 +msgid "Visible to:" +msgstr "Visible to:" + +#: mod/lostpass.php:19 +msgid "No valid account found." +msgstr "No valid account found." + +#: mod/lostpass.php:35 +msgid "Password reset request issued. Check your email." +msgstr "Password reset request issued. Please check your email." + +#: mod/lostpass.php:41 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" +"\t\tpassword. In order to confirm this request, please select the verification link\n" +"\t\tbelow or paste it into your web browser address bar.\n" +"\n" +"\t\tIf you did NOT request this change, please DO NOT follow the link\n" +"\t\tprovided and ignore and/or delete this email.\n" +"\n" +"\t\tYour password will not be changed unless we can verify that you\n" +"\t\tissued this request." +msgstr "\n\t\tDear %1$s,\n\t\t\tA request was issued 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/delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request." + +#: mod/lostpass.php:52 +#, php-format +msgid "" +"\n" +"\t\tFollow this link to verify your identity:\n" +"\n" +"\t\t%1$s\n" +"\n" +"\t\tYou will then receive a follow-up message containing the new password.\n" +"\t\tYou may change that password from your account settings page after logging in.\n" +"\n" +"\t\tThe login details are as follows:\n" +"\n" +"\t\tSite Location:\t%2$s\n" +"\t\tLogin Name:\t%3$s" +msgstr "\n\t\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" + +#: mod/lostpass.php:71 +#, php-format +msgid "Password reset requested at %s" +msgstr "Password reset requested at %s" + +#: mod/lostpass.php:91 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Request could not be verified. (You may have previously submitted it.) Password reset failed." + +#: mod/lostpass.php:110 boot.php:1882 +msgid "Password Reset" +msgstr "Password reset" + +#: mod/lostpass.php:111 +msgid "Your password has been reset as requested." +msgstr "Your password has been reset as requested." + +#: mod/lostpass.php:112 +msgid "Your new password is" +msgstr "Your new password is" + +#: mod/lostpass.php:113 +msgid "Save or copy your new password - and then" +msgstr "Save or copy your new password - and then" + +#: mod/lostpass.php:114 +msgid "click here to login" +msgstr "click here to login" + +#: mod/lostpass.php:115 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Your password may be changed from the Settings page after successful login." + +#: mod/lostpass.php:125 +#, php-format +msgid "" +"\n" +"\t\t\t\tDear %1$s,\n" +"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" +"\t\t\t\tinformation for your records (or change your password immediately to\n" +"\t\t\t\tsomething that you will remember).\n" +"\t\t\t" +msgstr "\n\t\t\t\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" + +#: mod/lostpass.php:131 +#, php-format +msgid "" +"\n" +"\t\t\t\tYour login details are as follows:\n" +"\n" +"\t\t\t\tSite Location:\t%1$s\n" +"\t\t\t\tLogin Name:\t%2$s\n" +"\t\t\t\tPassword:\t%3$s\n" +"\n" +"\t\t\t\tYou may change that password from your account settings page after logging in.\n" +"\t\t\t" +msgstr "\n\t\t\t\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" + +#: mod/lostpass.php:147 +#, php-format +msgid "Your password has been changed at %s" +msgstr "Your password has been changed at %s" + +#: mod/lostpass.php:159 +msgid "Forgot your Password?" +msgstr "Forgot your 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 "Enter your email address and submit to reset your password. Then check your email for further instructions." + +#: mod/lostpass.php:161 boot.php:1870 +msgid "Nickname or Email: " +msgstr "Nickname or Email: " + +#: mod/lostpass.php:162 +msgid "Reset" +msgstr "Reset" + +#: mod/maintenance.php:20 +msgid "System down for maintenance" +msgstr "Sorry, the system is currently down for maintenance." + +#: mod/match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "No keywords to match. Please add keywords to your default profile." + +#: mod/match.php:88 +msgid "is interested in:" +msgstr "is interested in:" + +#: mod/match.php:102 +msgid "Profile Match" +msgstr "Profile Match" + +#: mod/match.php:109 mod/dirfind.php:245 +msgid "No matches" +msgstr "No matches" + +#: mod/mood.php:134 +msgid "Mood" +msgstr "Mood" + +#: mod/mood.php:135 +msgid "Set your current mood and tell your friends" +msgstr "Set your current mood and tell your friends" + +#: mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Welcome to Friendica" + +#: mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "New Member Checklist" + +#: mod/newmember.php:12 +msgid "" +"We would like to offer some tips and links to help make your experience " +"enjoyable. Click any item to visit the relevant page. A link to this page " +"will be visible from your home page for two weeks after your initial " +"registration and then will quietly disappear." +msgstr "We 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." + +#: mod/newmember.php:14 +msgid "Getting Started" +msgstr "Getting started" + +#: mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "Friendica walk-through" + +#: 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 "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." + +#: mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "Go to your settings" + +#: 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 "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." + +#: 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 "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." + +#: mod/newmember.php:36 mod/profile_photo.php:256 mod/profiles.php:700 +msgid "Upload Profile Photo" +msgstr "Upload profile photo" + +#: mod/newmember.php:36 +msgid "" +"Upload a profile photo if you have not done so already. Studies have shown " +"that people with real photos of themselves are ten times more likely to make" +" friends than people who do not." +msgstr "Upload 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." + +#: mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "Edit your profile" + +#: 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 "Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors." + +#: mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "Profile keywords" + +#: 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 "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." + +#: mod/newmember.php:44 +msgid "Connecting" +msgstr "Connecting" + +#: mod/newmember.php:51 +msgid "Importing Emails" +msgstr "Importing emails" + +#: mod/newmember.php:51 +msgid "" +"Enter your email access information on your Connector Settings page if you " +"wish to import and interact with friends or mailing lists from your email " +"INBOX" +msgstr "Enter your email access information on your Connector Settings if you wish to import and interact with friends or mailing lists from your email INBOX" + +#: mod/newmember.php:53 +msgid "Go to Your Contacts Page" +msgstr "Go to your contacts page" + +#: mod/newmember.php:53 +msgid "" +"Your Contacts page is your gateway to managing friendships and connecting " +"with friends on other networks. Typically you enter their address or site " +"URL in the Add New Contact dialog." +msgstr "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." + +#: mod/newmember.php:55 +msgid "Go to Your Site's Directory" +msgstr "Go to your site's directory" + +#: mod/newmember.php:55 +msgid "" +"The Directory page lets you find other people in this network or other " +"federated sites. Look for a Connect or Follow link on " +"their profile page. Provide your own Identity Address if requested." +msgstr "The directory 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 when requested." + +#: mod/newmember.php:57 +msgid "Finding New People" +msgstr "Finding new people" + +#: mod/newmember.php:57 +msgid "" +"On the side panel of the Contacts page are several tools to find new " +"friends. We can match people by interest, look up people by name or " +"interest, and provide suggestions based on network relationships. On a brand" +" new site, friend suggestions will usually begin to be populated within 24 " +"hours." +msgstr "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." + +#: mod/newmember.php:65 +msgid "Group Your Contacts" +msgstr "Group your contacts" + +#: mod/newmember.php:65 +msgid "" +"Once you have made some friends, organize them into private conversation " +"groups from the sidebar of your Contacts page and then you can interact with" +" each group privately on your Network page." +msgstr "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." + +#: mod/newmember.php:68 +msgid "Why Aren't My Posts Public?" +msgstr "Why aren't my posts public?" + +#: mod/newmember.php:68 +msgid "" +"Friendica respects your privacy. By default, your posts will only show up to" +" people you've added as friends. For more information, see the help section " +"from the link above." +msgstr "Friendica 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." + +#: mod/newmember.php:73 +msgid "Getting Help" +msgstr "Getting help" + +#: mod/newmember.php:77 +msgid "Go to the Help Section" +msgstr "Go to the help section" + +#: mod/newmember.php:77 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Our help pages may be consulted for detail on other program features and resources." + +#: mod/nogroup.php:65 +msgid "Contacts who are not members of a group" +msgstr "Contacts who are not members of a group" + +#: mod/notify.php:65 +msgid "No more system notifications." +msgstr "No more system notifications." + +#: mod/notify.php:69 mod/notifications.php:111 +msgid "System Notifications" +msgstr "System notifications" + +#: mod/oexchange.php:21 +msgid "Post successful." +msgstr "Post successful." + +#: mod/ostatus_subscribe.php:14 +msgid "Subscribing to OStatus contacts" +msgstr "Subscribing to OStatus contacts" + +#: mod/ostatus_subscribe.php:25 +msgid "No contact provided." +msgstr "No contact provided." + +#: mod/ostatus_subscribe.php:31 +msgid "Couldn't fetch information for contact." +msgstr "Couldn't fetch information for contact." + +#: mod/ostatus_subscribe.php:40 +msgid "Couldn't fetch friends for contact." +msgstr "Couldn't fetch friends for contact." + +#: mod/ostatus_subscribe.php:54 mod/repair_ostatus.php:44 +msgid "Done" +msgstr "Done" + +#: mod/ostatus_subscribe.php:68 +msgid "success" +msgstr "success" + +#: mod/ostatus_subscribe.php:70 +msgid "failed" +msgstr "failed" + +#: mod/ostatus_subscribe.php:78 mod/repair_ostatus.php:50 +msgid "Keep this window open until done." +msgstr "Keep this window open until done." + +#: mod/p.php:9 +msgid "Not Extended" +msgstr "Not extended" + +#: mod/poke.php:196 +msgid "Poke/Prod" +msgstr "Poke/Prod" + +#: mod/poke.php:197 +msgid "poke, prod or do other things to somebody" +msgstr "Poke, prod or do other things to somebody" + +#: mod/poke.php:198 +msgid "Recipient" +msgstr "Recipient:" + +#: mod/poke.php:199 +msgid "Choose what you wish to do to recipient" +msgstr "Choose what you wish to do:" + +#: mod/poke.php:202 +msgid "Make this post private" +msgstr "Make this post private" + +#: mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Image uploaded but image cropping failed." + +#: mod/profile_photo.php:77 mod/profile_photo.php:85 mod/profile_photo.php:93 +#: mod/profile_photo.php:323 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Image size reduction [%s] failed." + +#: mod/profile_photo.php:127 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Shift-reload the page or clear browser cache if the new photo does not display immediately." + +#: mod/profile_photo.php:137 +msgid "Unable to process image" +msgstr "Unable to process image" + +#: mod/profile_photo.php:156 mod/photos.php:813 mod/wall_upload.php:181 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "Image exceeds size limit of %s" + +#: mod/profile_photo.php:165 mod/photos.php:854 mod/wall_upload.php:218 +msgid "Unable to process image." +msgstr "Unable to process image." + +#: mod/profile_photo.php:254 +msgid "Upload File:" +msgstr "Upload File:" + +#: mod/profile_photo.php:255 +msgid "Select a profile:" +msgstr "Select a profile:" + +#: mod/profile_photo.php:257 +msgid "Upload" +msgstr "Upload" + +#: mod/profile_photo.php:260 +msgid "or" +msgstr "or" + +#: mod/profile_photo.php:260 +msgid "skip this step" +msgstr "skip this step" + +#: mod/profile_photo.php:260 +msgid "select a photo from your photo albums" +msgstr "select a photo from your photo albums" + +#: mod/profile_photo.php:274 +msgid "Crop Image" +msgstr "Crop Image" + +#: mod/profile_photo.php:275 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Please adjust the image cropping for optimum viewing." + +#: mod/profile_photo.php:277 +msgid "Done Editing" +msgstr "Done editing" + +#: mod/profile_photo.php:313 +msgid "Image uploaded successfully." +msgstr "Image uploaded successfully." + +#: mod/profile_photo.php:315 mod/photos.php:883 mod/wall_upload.php:257 +msgid "Image upload failed." +msgstr "Image upload failed." + +#: mod/profperm.php:20 mod/group.php:76 index.php:406 +msgid "Permission denied" +msgstr "Permission denied" + +#: mod/profperm.php:26 mod/profperm.php:57 +msgid "Invalid profile identifier." +msgstr "Invalid profile identifier." + +#: mod/profperm.php:103 +msgid "Profile Visibility Editor" +msgstr "Profile Visibility Editor" + +#: mod/profperm.php:107 mod/group.php:262 +msgid "Click on a contact to add or remove." +msgstr "Click on a contact to add or remove." + +#: mod/profperm.php:116 +msgid "Visible To" +msgstr "Visible to" + +#: mod/profperm.php:132 +msgid "All Contacts (with secure profile access)" +msgstr "All contacts with secure profile access" + +#: mod/regmod.php:58 +msgid "Account approved." +msgstr "Account approved." + +#: mod/regmod.php:95 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registration revoked for %s" + +#: mod/regmod.php:107 +msgid "Please login." +msgstr "Please login." + +#: mod/removeme.php:52 mod/removeme.php:55 +msgid "Remove My Account" +msgstr "Remove my account" + +#: mod/removeme.php:53 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "This will completely remove your account. Once this has been done it is not recoverable." + +#: mod/removeme.php:54 +msgid "Please enter your password for verification:" +msgstr "Please enter your password for verification:" + +#: mod/repair_ostatus.php:14 +msgid "Resubscribing to OStatus contacts" +msgstr "Resubscribing to OStatus contacts" + +#: mod/repair_ostatus.php:30 +msgid "Error" +msgstr "Error" + +#: mod/subthread.php:104 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s is following %2$s's %3$s" + +#: mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Do you really want to delete this suggestion?" + +#: mod/suggest.php:71 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "No suggestions available. If this is a new site, please try again in 24 hours." + +#: mod/suggest.php:84 mod/suggest.php:104 +msgid "Ignore/Hide" +msgstr "Ignore/Hide" + +#: mod/tagrm.php:43 +msgid "Tag removed" +msgstr "Tag removed" + +#: mod/tagrm.php:82 +msgid "Remove Item Tag" +msgstr "Remove Item tag" + +#: mod/tagrm.php:84 +msgid "Select a tag to remove: " +msgstr "Select a tag to remove: " + +#: mod/uimport.php:51 mod/register.php:198 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "This site has exceeded the number of allowed daily account registrations. Please try again tomorrow." + +#: mod/uimport.php:66 mod/register.php:295 +msgid "Import" +msgstr "Import" + +#: mod/uimport.php:68 +msgid "Move account" +msgstr "Move account" + +#: mod/uimport.php:69 +msgid "You can import an account from another Friendica server." +msgstr "You can import an account from another Friendica server." + +#: mod/uimport.php:70 +msgid "" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also" +" to inform your friends that you moved here." +msgstr "You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here." + +#: mod/uimport.php:71 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora" + +#: mod/uimport.php:72 +msgid "Account file" +msgstr "Account file" + +#: mod/uimport.php:72 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "To export your account, go to \"Settings->Export personal data\" and select \"Export account\"" + +#: mod/update_community.php:19 mod/update_display.php:23 +#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35 +msgid "[Embedded content - reload page to view]" +msgstr "[Embedded content - reload page to view]" + +#: mod/viewcontacts.php:75 +msgid "No contacts." +msgstr "No contacts." + +#: mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Access denied." + +#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76 +#: mod/wall_upload.php:36 mod/wall_upload.php:52 mod/wall_upload.php:110 +#: mod/wall_upload.php:150 mod/wall_upload.php:153 +msgid "Invalid request." +msgstr "Invalid request." + +#: mod/wall_attach.php:94 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Sorry, maybe your upload is bigger than the PHP configuration allows" + +#: mod/wall_attach.php:94 +msgid "Or - did you try to upload an empty file?" +msgstr "Or did you try to upload an empty file?" + +#: mod/wall_attach.php:105 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "File exceeds size limit of %s" + +#: mod/wall_attach.php:158 mod/wall_attach.php:174 +msgid "File upload failed." +msgstr "File upload failed." + +#: mod/wallmessage.php:42 mod/wallmessage.php:106 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Number of daily wall messages for %s exceeded. Message failed." + +#: mod/wallmessage.php:50 mod/message.php:60 +msgid "No recipient selected." +msgstr "No recipient selected." + +#: mod/wallmessage.php:53 +msgid "Unable to check your home location." +msgstr "Unable to check your home location." + +#: mod/wallmessage.php:56 mod/message.php:67 +msgid "Message could not be sent." +msgstr "Message could not be sent." + +#: mod/wallmessage.php:59 mod/message.php:70 +msgid "Message collection failure." +msgstr "Message collection failure." + +#: mod/wallmessage.php:62 mod/message.php:73 +msgid "Message sent." +msgstr "Message sent." + +#: mod/wallmessage.php:80 mod/wallmessage.php:89 +msgid "No recipient." +msgstr "No recipient." + +#: mod/wallmessage.php:126 mod/message.php:322 +msgid "Send Private Message" +msgstr "Send private message" + +#: mod/wallmessage.php:127 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders." + +#: mod/wallmessage.php:128 mod/message.php:323 mod/message.php:510 +msgid "To:" +msgstr "To:" + +#: mod/wallmessage.php:129 mod/message.php:328 mod/message.php:512 +msgid "Subject:" +msgstr "Subject:" + +#: mod/babel.php:16 +msgid "Source (bbcode) text:" +msgstr "Source (bbcode) text:" + +#: mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Source (Diaspora) text to convert to BBcode:" + +#: mod/babel.php:31 +msgid "Source input: " +msgstr "Source input: " + +#: mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (raw HTML): " + +#: mod/babel.php:39 +msgid "bb2html: " +msgstr "bb2html: " + +#: mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " + +#: mod/babel.php:47 +msgid "bb2md: " +msgstr "bb2md: " + +#: mod/babel.php:51 +msgid "bb2md2html: " +msgstr "bb2md2html: " + +#: mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " + +#: mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " + +#: mod/babel.php:65 +msgid "Source input (Diaspora format): " +msgstr "Source input (Diaspora format): " + +#: mod/babel.php:69 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: mod/cal.php:271 mod/events.php:375 +msgid "View" +msgstr "View" + +#: mod/cal.php:272 mod/events.php:377 +msgid "Previous" +msgstr "Previous" + +#: mod/cal.php:273 mod/events.php:378 mod/install.php:201 +msgid "Next" +msgstr "Next" + +#: mod/cal.php:282 mod/events.php:387 +msgid "list" +msgstr "List" + +#: mod/cal.php:292 +msgid "User not found" +msgstr "User not found" + +#: mod/cal.php:308 +msgid "This calendar format is not supported" +msgstr "This calendar format is not supported" + +#: mod/cal.php:310 +msgid "No exportable data found" +msgstr "No exportable data found" + +#: mod/cal.php:325 +msgid "calendar" +msgstr "calendar" + +#: mod/community.php:23 +msgid "Not available." +msgstr "Not available." + +#: mod/community.php:50 mod/search.php:219 +msgid "No results." +msgstr "No results." + +#: mod/dfrn_confirm.php:70 mod/profiles.php:19 mod/profiles.php:135 +#: mod/profiles.php:182 mod/profiles.php:619 +msgid "Profile not found." +msgstr "Profile not found." + +#: mod/dfrn_confirm.php:127 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "This may occasionally happen if contact was requested by both persons and it has already been approved." + +#: mod/dfrn_confirm.php:244 +msgid "Response from remote site was not understood." +msgstr "Response from remote site was not understood." + +#: mod/dfrn_confirm.php:253 mod/dfrn_confirm.php:258 +msgid "Unexpected response from remote site: " +msgstr "Unexpected response from remote site: " + +#: mod/dfrn_confirm.php:267 +msgid "Confirmation completed successfully." +msgstr "Confirmation completed successfully." + +#: mod/dfrn_confirm.php:269 mod/dfrn_confirm.php:283 mod/dfrn_confirm.php:290 +msgid "Remote site reported: " +msgstr "Remote site reported: " + +#: mod/dfrn_confirm.php:281 +msgid "Temporary failure. Please wait and try again." +msgstr "Temporary failure. Please wait and try again." + +#: mod/dfrn_confirm.php:288 +msgid "Introduction failed or was revoked." +msgstr "Introduction failed or was revoked." + +#: mod/dfrn_confirm.php:418 +msgid "Unable to set contact photo." +msgstr "Unable to set contact photo." + +#: mod/dfrn_confirm.php:559 +#, php-format +msgid "No user record found for '%s' " +msgstr "No user record found for '%s' " + +#: mod/dfrn_confirm.php:569 +msgid "Our site encryption key is apparently messed up." +msgstr "Our site encryption key is apparently messed up." + +#: mod/dfrn_confirm.php:580 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "An empty URL was provided or the URL could not be decrypted by us." + +#: mod/dfrn_confirm.php:602 +msgid "Contact record was not found for you on our site." +msgstr "Contact record was not found for you on our site." + +#: mod/dfrn_confirm.php:616 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "Site public key not available in contact record for URL %s." + +#: mod/dfrn_confirm.php:636 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "The ID provided by your system is a duplicate on our system. It should work if you try again." + +#: mod/dfrn_confirm.php:647 +msgid "Unable to set your contact credentials on our system." +msgstr "Unable to set your contact credentials on our system." + +#: mod/dfrn_confirm.php:709 +msgid "Unable to update your contact profile details on our system" +msgstr "Unable to update your contact profile details on our system" + +#: mod/dfrn_confirm.php:781 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s has joined %2$s" + +#: mod/dfrn_request.php:101 +msgid "This introduction has already been accepted." +msgstr "This introduction has already been accepted." + +#: mod/dfrn_request.php:124 mod/dfrn_request.php:528 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Profile location is not valid or does not contain profile information." + +#: mod/dfrn_request.php:129 mod/dfrn_request.php:533 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Warning: profile location has no identifiable owner name." + +#: mod/dfrn_request.php:132 mod/dfrn_request.php:536 +msgid "Warning: profile location has no profile photo." +msgstr "Warning: profile location has no profile photo." + +#: mod/dfrn_request.php:136 mod/dfrn_request.php:540 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d required parameter was not found at the given location" +msgstr[1] "%d required parameters were not found at the given location" + +#: mod/dfrn_request.php:180 +msgid "Introduction complete." +msgstr "Introduction complete." + +#: mod/dfrn_request.php:225 +msgid "Unrecoverable protocol error." +msgstr "Unrecoverable protocol error." + +#: mod/dfrn_request.php:253 +msgid "Profile unavailable." +msgstr "Profile unavailable." + +#: mod/dfrn_request.php:280 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s has received too many connection requests today." + +#: mod/dfrn_request.php:281 +msgid "Spam protection measures have been invoked." +msgstr "Spam protection measures have been invoked." + +#: mod/dfrn_request.php:282 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Friends are advised to please try again in 24 hours." + +#: mod/dfrn_request.php:344 +msgid "Invalid locator" +msgstr "Invalid locator" + +#: mod/dfrn_request.php:353 +msgid "Invalid email address." +msgstr "Invalid email address." + +#: mod/dfrn_request.php:378 +msgid "This account has not been configured for email. Request failed." +msgstr "This account has not been configured for email. Request failed." + +#: mod/dfrn_request.php:481 +msgid "You have already introduced yourself here." +msgstr "You have already introduced yourself here." + +#: mod/dfrn_request.php:485 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Apparently you are already friends with %s." + +#: mod/dfrn_request.php:506 +msgid "Invalid profile URL." +msgstr "Invalid profile URL." + +#: mod/dfrn_request.php:614 +msgid "Your introduction has been sent." +msgstr "Your introduction has been sent." + +#: mod/dfrn_request.php:656 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "Remote subscription can't be done for your network. Please subscribe directly on your system." + +#: mod/dfrn_request.php:677 +msgid "Please login to confirm introduction." +msgstr "Please login to confirm introduction." + +#: mod/dfrn_request.php:687 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Incorrect identity currently logged in. Please login to this profile." + +#: mod/dfrn_request.php:701 mod/dfrn_request.php:718 +msgid "Confirm" +msgstr "Confirm" + +#: mod/dfrn_request.php:713 +msgid "Hide this contact" +msgstr "Hide this contact" + +#: mod/dfrn_request.php:716 +#, php-format +msgid "Welcome home %s." +msgstr "Welcome home %s." + +#: mod/dfrn_request.php:717 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Please confirm your introduction/connection request to %s." + +#: mod/dfrn_request.php:848 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Please enter your 'Identity address' from one of the following supported communications networks:" + +#: mod/dfrn_request.php:872 +#, 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 "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." + +#: mod/dfrn_request.php:877 +msgid "Friend/Connection Request" +msgstr "Friend/Connection request" + +#: mod/dfrn_request.php:878 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Examples: jojo@friendica.example.com, http://friendica.example.com/profile/jojo, sam@identi.ca" + +#: mod/dfrn_request.php:879 mod/follow.php:112 +msgid "Please answer the following:" +msgstr "Please answer the following:" + +#: mod/dfrn_request.php:880 mod/follow.php:113 +#, php-format +msgid "Does %s know you?" +msgstr "Does %s know you?" + +#: mod/dfrn_request.php:884 mod/follow.php:114 +msgid "Add a personal note:" +msgstr "Add a personal note:" + +#: mod/dfrn_request.php:887 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated social web" + +#: mod/dfrn_request.php:889 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr " - please do not use this form. Instead, enter %s into your Diaspora search bar." + +#: mod/dfrn_request.php:890 mod/follow.php:120 +msgid "Your Identity Address:" +msgstr "My identity address:" + +#: mod/dfrn_request.php:893 mod/follow.php:19 +msgid "Submit Request" +msgstr "Submit request" + +#: mod/dirfind.php:37 +#, php-format +msgid "People Search - %s" +msgstr "People search - %s" + +#: mod/dirfind.php:48 +#, php-format +msgid "Forum Search - %s" +msgstr "Forum search - %s" + +#: mod/events.php:93 mod/events.php:95 +msgid "Event can not end before it has started." +msgstr "Event cannot end before it has started." + +#: mod/events.php:102 mod/events.php:104 +msgid "Event title and start time are required." +msgstr "Event title and starting time are required." + +#: mod/events.php:376 +msgid "Create New Event" +msgstr "Create new event" + +#: mod/events.php:481 +msgid "Event details" +msgstr "Event details" + +#: mod/events.php:482 +msgid "Starting date and Title are required." +msgstr "Starting date and title are required." + +#: mod/events.php:483 mod/events.php:484 +msgid "Event Starts:" +msgstr "Event starts:" + +#: mod/events.php:483 mod/events.php:495 mod/profiles.php:709 +msgid "Required" +msgstr "Required" + +#: mod/events.php:485 mod/events.php:501 +msgid "Finish date/time is not known or not relevant" +msgstr "Finish date/time is not known or not relevant" + +#: mod/events.php:487 mod/events.php:488 +msgid "Event Finishes:" +msgstr "Event finishes:" + +#: mod/events.php:489 mod/events.php:502 +msgid "Adjust for viewer timezone" +msgstr "Adjust for viewer's time zone" + +#: mod/events.php:491 +msgid "Description:" +msgstr "Description:" + +#: mod/events.php:495 mod/events.php:497 +msgid "Title:" +msgstr "Title:" + +#: mod/events.php:498 mod/events.php:499 +msgid "Share this event" +msgstr "Share this event" + +#: mod/events.php:528 +msgid "Failed to remove event" +msgstr "Failed to remove event" + +#: mod/events.php:530 +msgid "Event removed" +msgstr "Event removed" + +#: mod/follow.php:30 +msgid "You already added this contact." +msgstr "You already added this contact." + +#: mod/follow.php:39 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "Diaspora support isn't enabled. Contact can't be added." + +#: mod/follow.php:46 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "OStatus support is disabled. Contact can't be added." + +#: mod/follow.php:53 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "The network type couldn't be detected. Contact can't be added." + +#: mod/follow.php:186 +msgid "Contact added" +msgstr "Contact added" + +#: mod/friendica.php:68 +msgid "This is Friendica, version" +msgstr "This is Friendica, version" + +#: mod/friendica.php:69 +msgid "running at web location" +msgstr "running at web location" + +#: mod/friendica.php:73 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Please visit Friendica.com to learn more about the Friendica project." + +#: mod/friendica.php:77 +msgid "Bug reports and issues: please visit" +msgstr "Bug reports and issues: please visit" + +#: mod/friendica.php:77 +msgid "the bugtracker at github" +msgstr "the bugtracker at github" + +#: mod/friendica.php:80 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com" + +#: mod/friendica.php:94 +msgid "Installed plugins/addons/apps:" +msgstr "Installed plugins/addons/apps:" + +#: mod/friendica.php:108 +msgid "No installed plugins/addons/apps" +msgstr "No installed plugins/addons/apps" + +#: mod/friendica.php:113 +msgid "On this server the following remote servers are blocked." +msgstr "On this server the following remote servers are blocked." + +#: mod/friendica.php:114 mod/admin.php:280 mod/admin.php:298 +msgid "Reason for the block" +msgstr "Reason for the block" + +#: mod/group.php:29 +msgid "Group created." +msgstr "Group created." + +#: mod/group.php:35 +msgid "Could not create group." +msgstr "Could not create group." + +#: mod/group.php:49 mod/group.php:154 +msgid "Group not found." +msgstr "Group not found." + +#: mod/group.php:63 +msgid "Group name changed." +msgstr "Group name changed." + +#: mod/group.php:93 +msgid "Save Group" +msgstr "Save group" + +#: mod/group.php:98 +msgid "Create a group of contacts/friends." +msgstr "Create a group of contacts/friends." + +#: mod/group.php:123 +msgid "Group removed." +msgstr "Group removed." + +#: mod/group.php:125 +msgid "Unable to remove group." +msgstr "Unable to remove group." + +#: mod/group.php:189 +msgid "Delete Group" +msgstr "Delete group" + +#: mod/group.php:195 +msgid "Group Editor" +msgstr "Group Editor" + +#: mod/group.php:200 +msgid "Edit Group Name" +msgstr "Edit group name" + +#: mod/group.php:210 +msgid "Members" +msgstr "Members" + +#: mod/group.php:226 +msgid "Remove Contact" +msgstr "Remove contact" + +#: mod/group.php:250 +msgid "Add Contact" +msgstr "Add contact" + +#: mod/manage.php:151 +msgid "Manage Identities and/or Pages" +msgstr "Manage identities/pages" + +#: mod/manage.php:152 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Accounts that I manage or own." + +#: mod/manage.php:153 +msgid "Select an identity to manage: " +msgstr "Select identity:" + +#: mod/message.php:64 +msgid "Unable to locate contact information." +msgstr "Unable to locate contact information." + +#: mod/message.php:204 +msgid "Do you really want to delete this message?" +msgstr "Do you really want to delete this message?" + +#: mod/message.php:224 +msgid "Message deleted." +msgstr "Message deleted." + +#: mod/message.php:255 +msgid "Conversation removed." +msgstr "Conversation removed." + +#: mod/message.php:364 +msgid "No messages." +msgstr "No messages." + +#: mod/message.php:403 +msgid "Message not available." +msgstr "Message not available." + +#: mod/message.php:477 +msgid "Delete message" +msgstr "Delete message" + +#: mod/message.php:503 mod/message.php:591 +msgid "Delete conversation" +msgstr "Delete conversation" + +#: mod/message.php:505 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "" + +#: mod/message.php:509 +msgid "Send Reply" +msgstr "Send reply" + +#: mod/message.php:561 +#, php-format +msgid "Unknown sender - %s" +msgstr "Unknown sender - %s" + +#: mod/message.php:563 +#, php-format +msgid "You and %s" +msgstr "Me and %s" + +#: mod/message.php:565 +#, php-format +msgid "%s and You" +msgstr "%s and me" + +#: mod/message.php:594 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" + +#: mod/message.php:597 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d message" +msgstr[1] "%d messages" + +#: mod/network.php:197 mod/search.php:25 +msgid "Remove term" +msgstr "Remove term" + +#: mod/network.php:404 +#, php-format +msgid "" +"Warning: This group contains %s member from a network that doesn't allow non" +" public messages." +msgid_plural "" +"Warning: This group contains %s members from a network that doesn't allow " +"non public messages." +msgstr[0] "Warning: This group contains %s member from a network that doesn't allow non public messages." +msgstr[1] "Warning: This group contains %s members from a network that doesn't allow non public messages." + +#: mod/network.php:407 +msgid "Messages in this group won't be send to these receivers." +msgstr "Messages in this group won't be send to these receivers." + +#: mod/network.php:535 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Private messages to this person are at risk of public disclosure." + +#: mod/network.php:540 +msgid "Invalid contact." +msgstr "Invalid contact." + +#: mod/network.php:813 +msgid "Commented Order" +msgstr "Commented last" + +#: mod/network.php:816 +msgid "Sort by Comment Date" +msgstr "Sort by comment date" + +#: mod/network.php:821 +msgid "Posted Order" +msgstr "Posted last" + +#: mod/network.php:824 +msgid "Sort by Post Date" +msgstr "Sort by post date" + +#: mod/network.php:835 +msgid "Posts that mention or involve you" +msgstr "Posts mentioning or involving me" + +#: mod/network.php:843 +msgid "New" +msgstr "New" + +#: mod/network.php:846 +msgid "Activity Stream - by date" +msgstr "Activity Stream - by date" + +#: mod/network.php:854 +msgid "Shared Links" +msgstr "Shared links" + +#: mod/network.php:857 +msgid "Interesting Links" +msgstr "Interesting links" + +#: mod/network.php:865 +msgid "Starred" +msgstr "Starred" + +#: mod/network.php:868 +msgid "Favourite Posts" +msgstr "My favourite posts" + +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID protocol error. No ID returned." + +#: mod/openid.php:60 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "Account not found and OpenID registration is not permitted on this site." + +#: mod/photos.php:94 mod/photos.php:1900 +msgid "Recent Photos" +msgstr "Recent photos" + +#: mod/photos.php:97 mod/photos.php:1328 mod/photos.php:1902 +msgid "Upload New Photos" +msgstr "Upload new photos" + +#: mod/photos.php:112 mod/settings.php:36 +msgid "everybody" +msgstr "everybody" + +#: mod/photos.php:176 +msgid "Contact information unavailable" +msgstr "Contact information unavailable" + +#: mod/photos.php:197 +msgid "Album not found." +msgstr "Album not found." + +#: mod/photos.php:230 mod/photos.php:242 mod/photos.php:1272 +msgid "Delete Album" +msgstr "Delete album" + +#: mod/photos.php:240 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Do you really want to delete this photo album and all its photos?" + +#: mod/photos.php:323 mod/photos.php:334 mod/photos.php:1598 +msgid "Delete Photo" +msgstr "Delete photo" + +#: mod/photos.php:332 +msgid "Do you really want to delete this photo?" +msgstr "Do you really want to delete this photo?" + +#: mod/photos.php:713 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s was tagged in %2$s by %3$s" + +#: mod/photos.php:713 +msgid "a photo" +msgstr "a photo" + +#: mod/photos.php:821 +msgid "Image file is empty." +msgstr "Image file is empty." + +#: mod/photos.php:988 +msgid "No photos selected" +msgstr "No photos selected" + +#: mod/photos.php:1091 mod/videos.php:309 +msgid "Access to this item is restricted." +msgstr "Access to this item is restricted." + +#: mod/photos.php:1151 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." + +#: mod/photos.php:1188 +msgid "Upload Photos" +msgstr "Upload photos" + +#: mod/photos.php:1192 mod/photos.php:1267 +msgid "New album name: " +msgstr "New album name: " + +#: mod/photos.php:1193 +msgid "or existing album name: " +msgstr "or existing album name: " + +#: mod/photos.php:1194 +msgid "Do not show a status post for this upload" +msgstr "Do not show a status post for this upload" + +#: mod/photos.php:1205 mod/photos.php:1602 mod/settings.php:1307 +msgid "Show to Groups" +msgstr "" + +#: mod/photos.php:1206 mod/photos.php:1603 mod/settings.php:1308 +msgid "Show to Contacts" +msgstr "" + +#: mod/photos.php:1207 +msgid "Private Photo" +msgstr "" + +#: mod/photos.php:1208 +msgid "Public Photo" +msgstr "" + +#: mod/photos.php:1278 +msgid "Edit Album" +msgstr "" + +#: mod/photos.php:1283 +msgid "Show Newest First" +msgstr "" + +#: mod/photos.php:1285 +msgid "Show Oldest First" +msgstr "" + +#: mod/photos.php:1314 mod/photos.php:1885 +msgid "View Photo" +msgstr "" + +#: mod/photos.php:1359 +msgid "Permission denied. Access to this item may be restricted." +msgstr "" + +#: mod/photos.php:1361 +msgid "Photo not available" +msgstr "" + +#: mod/photos.php:1422 +msgid "View photo" +msgstr "" + +#: mod/photos.php:1422 +msgid "Edit photo" +msgstr "" + +#: mod/photos.php:1423 +msgid "Use as profile photo" +msgstr "" + +#: mod/photos.php:1448 +msgid "View Full Size" +msgstr "" + +#: mod/photos.php:1538 +msgid "Tags: " +msgstr "" + +#: mod/photos.php:1541 +msgid "[Remove any tag]" +msgstr "" + +#: mod/photos.php:1584 +msgid "New album name" +msgstr "" + +#: mod/photos.php:1585 +msgid "Caption" +msgstr "" + +#: mod/photos.php:1586 +msgid "Add a Tag" +msgstr "Add Tag" + +#: mod/photos.php:1586 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "" + +#: mod/photos.php:1587 +msgid "Do not rotate" +msgstr "" + +#: mod/photos.php:1588 +msgid "Rotate CW (right)" +msgstr "" + +#: mod/photos.php:1589 +msgid "Rotate CCW (left)" +msgstr "" + +#: mod/photos.php:1604 +msgid "Private photo" +msgstr "" + +#: mod/photos.php:1605 +msgid "Public photo" +msgstr "" + +#: mod/photos.php:1814 +msgid "Map" +msgstr "" + +#: mod/photos.php:1891 mod/videos.php:393 +msgid "View Album" +msgstr "" + +#: mod/probe.php:10 mod/webfinger.php:9 +msgid "Only logged in users are permitted to perform a probing." +msgstr "" + +#: mod/profile.php:175 +msgid "Tips for New Members" +msgstr "" + +#: mod/profiles.php:38 +msgid "Profile deleted." +msgstr "" + +#: mod/profiles.php:54 mod/profiles.php:90 +msgid "Profile-" +msgstr "" + +#: mod/profiles.php:73 mod/profiles.php:118 +msgid "New profile created." +msgstr "" + +#: mod/profiles.php:96 +msgid "Profile unavailable to clone." +msgstr "" + +#: mod/profiles.php:192 +msgid "Profile Name is required." +msgstr "" + +#: mod/profiles.php:332 +msgid "Marital Status" +msgstr "" + +#: mod/profiles.php:336 +msgid "Romantic Partner" +msgstr "" + +#: mod/profiles.php:348 +msgid "Work/Employment" +msgstr "" + +#: mod/profiles.php:351 +msgid "Religion" +msgstr "" + +#: mod/profiles.php:355 +msgid "Political Views" +msgstr "" + +#: mod/profiles.php:359 +msgid "Gender" +msgstr "" + +#: mod/profiles.php:363 +msgid "Sexual Preference" +msgstr "" + +#: mod/profiles.php:367 +msgid "XMPP" +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:471 +msgid "Profile updated." +msgstr "" + +#: mod/profiles.php:564 +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:579 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "" + +#: mod/profiles.php:637 +msgid "Hide contacts and friends:" +msgstr "" + +#: mod/profiles.php:642 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "" + +#: mod/profiles.php:667 +msgid "Show more profile fields:" +msgstr "" + +#: mod/profiles.php:679 +msgid "Profile Actions" +msgstr "" + +#: mod/profiles.php:680 +msgid "Edit Profile Details" +msgstr "" + +#: mod/profiles.php:682 +msgid "Change Profile Photo" +msgstr "" + +#: mod/profiles.php:683 +msgid "View this profile" +msgstr "" + +#: mod/profiles.php:685 +msgid "Create a new profile using these settings" +msgstr "" + +#: mod/profiles.php:686 +msgid "Clone this profile" +msgstr "" + +#: mod/profiles.php:687 +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 "Relation" +msgstr "" + +#: mod/profiles.php:701 +msgid "Your Gender:" +msgstr "" + +#: mod/profiles.php:702 +msgid " Marital Status:" +msgstr "" + +#: mod/profiles.php:704 +msgid "Example: fishing photography software" +msgstr "" + +#: mod/profiles.php:709 +msgid "Profile Name:" +msgstr "" + +#: mod/profiles.php:711 +msgid "" +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "" + +#: mod/profiles.php:712 +msgid "Your Full Name:" +msgstr "" + +#: mod/profiles.php:713 +msgid "Title/Description:" +msgstr "" + +#: mod/profiles.php:716 +msgid "Street Address:" +msgstr "" + +#: mod/profiles.php:717 +msgid "Locality/City:" +msgstr "" + +#: mod/profiles.php:718 +msgid "Region/State:" +msgstr "" + +#: mod/profiles.php:719 +msgid "Postal/Zip Code:" +msgstr "" + +#: mod/profiles.php:720 +msgid "Country:" +msgstr "" + +#: mod/profiles.php:724 +msgid "Who: (if applicable)" +msgstr "" + +#: mod/profiles.php:724 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "" + +#: mod/profiles.php:725 +msgid "Since [date]:" +msgstr "" + +#: mod/profiles.php:727 +msgid "Tell us about yourself..." +msgstr "" + +#: mod/profiles.php:728 +msgid "XMPP (Jabber) address:" +msgstr "" + +#: mod/profiles.php:728 +msgid "" +"The XMPP address will be propagated to your contacts so that they can follow" +" you." +msgstr "" + +#: mod/profiles.php:729 +msgid "Homepage URL:" +msgstr "" + +#: mod/profiles.php:732 +msgid "Religious Views:" +msgstr "" + +#: mod/profiles.php:733 +msgid "Public Keywords:" +msgstr "" + +#: mod/profiles.php:733 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "" + +#: mod/profiles.php:734 +msgid "Private Keywords:" +msgstr "" + +#: mod/profiles.php:734 +msgid "(Used for searching profiles, never shown to others)" +msgstr "" + +#: mod/profiles.php:737 +msgid "Musical interests" +msgstr "" + +#: mod/profiles.php:738 +msgid "Books, literature" +msgstr "" + +#: mod/profiles.php:739 +msgid "Television" +msgstr "" + +#: mod/profiles.php:740 +msgid "Film/dance/culture/entertainment" +msgstr "" + +#: mod/profiles.php:741 +msgid "Hobbies/Interests" +msgstr "" + +#: mod/profiles.php:742 +msgid "Love/romance" +msgstr "" + +#: mod/profiles.php:743 +msgid "Work/employment" +msgstr "" + +#: mod/profiles.php:744 +msgid "School/education" +msgstr "" + +#: mod/profiles.php:745 +msgid "Contact information and Social Networks" +msgstr "" + +#: mod/profiles.php:786 +msgid "Edit/Manage Profiles" +msgstr "" + +#: mod/register.php:93 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "" + +#: mod/register.php:98 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
login: %s
" +"password: %s

You can change your password after login." +msgstr "" + +#: mod/register.php:105 +msgid "Registration successful." +msgstr "" + +#: mod/register.php:111 +msgid "Your registration can not be processed." +msgstr "" + +#: mod/register.php:160 +msgid "Your registration is pending approval by the site owner." +msgstr "" + +#: mod/register.php:226 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "" + +#: mod/register.php:227 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "" + +#: mod/register.php:228 +msgid "Your OpenID (optional): " +msgstr "" + +#: mod/register.php:242 +msgid "Include your profile in member directory?" +msgstr "" + +#: mod/register.php:267 +msgid "Note for the admin" +msgstr "" + +#: mod/register.php:267 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "" + +#: mod/register.php:268 +msgid "Membership on this site is by invitation only." +msgstr "" + +#: mod/register.php:269 +msgid "Your invitation ID: " +msgstr "" + +#: mod/register.php:272 mod/admin.php:1056 +msgid "Registration" +msgstr "" + +#: mod/register.php:280 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "" + +#: mod/register.php:281 +msgid "Your Email Address: " +msgstr "" + +#: mod/register.php:283 mod/settings.php:1278 +msgid "New Password:" +msgstr "New password:" + +#: mod/register.php:283 +msgid "Leave empty for an auto generated password." +msgstr "" + +#: mod/register.php:284 mod/settings.php:1279 +msgid "Confirm:" +msgstr "Confirm new password:" + +#: mod/register.php:285 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "" + +#: mod/register.php:286 +msgid "Choose a nickname: " +msgstr "" + +#: mod/register.php:296 +msgid "Import your profile to this friendica instance" +msgstr "" + +#: mod/search.php:100 +msgid "Only logged in users are permitted to perform a search." +msgstr "" + +#: mod/search.php:124 +msgid "Too Many Requests" +msgstr "" + +#: mod/search.php:125 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "" + +#: mod/search.php:225 +#, php-format +msgid "Items tagged with: %s" +msgstr "" + +#: mod/settings.php:43 mod/admin.php:1490 +msgid "Account" +msgstr "" + +#: mod/settings.php:52 mod/admin.php:169 +msgid "Additional features" +msgstr "" + +#: mod/settings.php:60 +msgid "Display" +msgstr "" + +#: mod/settings.php:67 mod/settings.php:890 +msgid "Social Networks" +msgstr "Social networks" + +#: mod/settings.php:74 mod/admin.php:167 mod/admin.php:1616 mod/admin.php:1679 +msgid "Plugins" +msgstr "" + +#: mod/settings.php:88 +msgid "Connected apps" +msgstr "" + +#: mod/settings.php:95 mod/uexport.php:45 +msgid "Export personal data" +msgstr "" + +#: mod/settings.php:102 +msgid "Remove account" +msgstr "" + +#: mod/settings.php:157 +msgid "Missing some important data!" +msgstr "" + +#: mod/settings.php:271 +msgid "Failed to connect with email account using the settings provided." +msgstr "" + +#: mod/settings.php:276 +msgid "Email settings updated." +msgstr "" + +#: mod/settings.php:291 +msgid "Features updated" +msgstr "" + +#: mod/settings.php:361 +msgid "Relocate message has been send to your contacts" +msgstr "Relocate message has been send to your contacts" + +#: mod/settings.php:380 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "" + +#: mod/settings.php:388 +msgid "Wrong password." +msgstr "" + +#: mod/settings.php:399 +msgid "Password changed." +msgstr "" + +#: mod/settings.php:401 +msgid "Password update failed. Please try again." +msgstr "" + +#: mod/settings.php:481 +msgid " Please use a shorter name." +msgstr "" + +#: mod/settings.php:483 +msgid " Name too short." +msgstr "" + +#: mod/settings.php:492 +msgid "Wrong Password" +msgstr "" + +#: mod/settings.php:497 +msgid " Not valid email." +msgstr "" + +#: mod/settings.php:503 +msgid " Cannot change to that email." +msgstr "" + +#: mod/settings.php:559 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "" + +#: mod/settings.php:563 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "" + +#: mod/settings.php:603 +msgid "Settings updated." +msgstr "" + +#: mod/settings.php:680 mod/settings.php:706 mod/settings.php:742 +msgid "Add application" +msgstr "" + +#: mod/settings.php:681 mod/settings.php:792 mod/settings.php:841 +#: mod/settings.php:908 mod/settings.php:1005 mod/settings.php:1271 +#: mod/admin.php:1055 mod/admin.php:1680 mod/admin.php:1943 mod/admin.php:2017 +#: mod/admin.php:2170 +msgid "Save Settings" +msgstr "Save settings" + +#: mod/settings.php:684 mod/settings.php:710 +msgid "Consumer Key" +msgstr "" + +#: mod/settings.php:685 mod/settings.php:711 +msgid "Consumer Secret" +msgstr "" + +#: mod/settings.php:686 mod/settings.php:712 +msgid "Redirect" +msgstr "" + +#: mod/settings.php:687 mod/settings.php:713 +msgid "Icon url" +msgstr "" + +#: mod/settings.php:698 +msgid "You can't edit this application." +msgstr "" + +#: mod/settings.php:741 +msgid "Connected Apps" +msgstr "" + +#: mod/settings.php:745 +msgid "Client key starts with" +msgstr "" + +#: mod/settings.php:746 +msgid "No name" +msgstr "" + +#: mod/settings.php:747 +msgid "Remove authorization" +msgstr "" + +#: mod/settings.php:759 +msgid "No Plugin settings configured" +msgstr "" + +#: mod/settings.php:768 +msgid "Plugin Settings" +msgstr "" + +#: mod/settings.php:782 mod/admin.php:2159 mod/admin.php:2160 +msgid "Off" +msgstr "" + +#: mod/settings.php:782 mod/admin.php:2159 mod/admin.php:2160 +msgid "On" +msgstr "" + +#: mod/settings.php:790 +msgid "Additional Features" +msgstr "" + +#: mod/settings.php:800 mod/settings.php:804 +msgid "General Social Media Settings" +msgstr "" + +#: mod/settings.php:810 +msgid "Disable intelligent shortening" +msgstr "" + +#: mod/settings.php:812 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "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." + +#: mod/settings.php:818 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "" + +#: mod/settings.php:820 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "" + +#: mod/settings.php:826 +msgid "Default group for OStatus contacts" +msgstr "" + +#: mod/settings.php:834 +msgid "Your legacy GNU Social account" +msgstr "" + +#: mod/settings.php:836 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "" + +#: mod/settings.php:839 +msgid "Repair OStatus subscriptions" +msgstr "" + +#: mod/settings.php:848 mod/settings.php:849 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "" + +#: mod/settings.php:848 mod/settings.php:849 +msgid "enabled" +msgstr "" + +#: mod/settings.php:848 mod/settings.php:849 +msgid "disabled" +msgstr "" + +#: mod/settings.php:849 +msgid "GNU Social (OStatus)" +msgstr "" + +#: mod/settings.php:883 +msgid "Email access is disabled on this site." +msgstr "" + +#: mod/settings.php:895 +msgid "Email/Mailbox Setup" +msgstr "" + +#: mod/settings.php:896 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "" + +#: mod/settings.php:897 +msgid "Last successful email check:" +msgstr "" + +#: mod/settings.php:899 +msgid "IMAP server name:" +msgstr "" + +#: mod/settings.php:900 +msgid "IMAP port:" +msgstr "" + +#: mod/settings.php:901 +msgid "Security:" +msgstr "" + +#: mod/settings.php:901 mod/settings.php:906 +msgid "None" +msgstr "" + +#: mod/settings.php:902 +msgid "Email login name:" +msgstr "" + +#: mod/settings.php:903 +msgid "Email password:" +msgstr "" + +#: mod/settings.php:904 +msgid "Reply-to address:" +msgstr "" + +#: mod/settings.php:905 +msgid "Send public posts to all email contacts:" +msgstr "" + +#: mod/settings.php:906 +msgid "Action after import:" +msgstr "" + +#: mod/settings.php:906 +msgid "Move to folder" +msgstr "Move to folder" + +#: mod/settings.php:907 +msgid "Move to folder:" +msgstr "Move to folder:" + +#: mod/settings.php:943 mod/admin.php:942 +msgid "No special theme for mobile devices" +msgstr "" + +#: mod/settings.php:1003 +msgid "Display Settings" +msgstr "" + +#: mod/settings.php:1009 mod/settings.php:1032 +msgid "Display Theme:" +msgstr "" + +#: mod/settings.php:1010 +msgid "Mobile Theme:" +msgstr "" + +#: mod/settings.php:1011 +msgid "Suppress warning of insecure networks" +msgstr "" + +#: mod/settings.php:1011 +msgid "" +"Should the system suppress the warning that the current group contains " +"members of networks that can't receive non public postings." +msgstr "" + +#: mod/settings.php:1012 +msgid "Update browser every xx seconds" +msgstr "Update browser every so many seconds:" + +#: mod/settings.php:1012 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "" + +#: mod/settings.php:1013 +msgid "Number of items to display per page:" +msgstr "" + +#: mod/settings.php:1013 mod/settings.php:1014 +msgid "Maximum of 100 items" +msgstr "" + +#: mod/settings.php:1014 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "" + +#: mod/settings.php:1015 +msgid "Don't show emoticons" +msgstr "" + +#: mod/settings.php:1016 +msgid "Calendar" +msgstr "" + +#: mod/settings.php:1017 +msgid "Beginning of week:" +msgstr "" + +#: mod/settings.php:1018 +msgid "Don't show notices" +msgstr "" + +#: mod/settings.php:1019 +msgid "Infinite scroll" +msgstr "" + +#: mod/settings.php:1020 +msgid "Automatic updates only at the top of the network page" +msgstr "" + +#: mod/settings.php:1021 +msgid "Bandwith Saver Mode" +msgstr "" + +#: mod/settings.php:1021 +msgid "" +"When enabled, embedded content is not displayed on automatic updates, they " +"only show on page reload." +msgstr "" + +#: mod/settings.php:1023 +msgid "General Theme Settings" +msgstr "Themes" + +#: mod/settings.php:1024 +msgid "Custom Theme Settings" +msgstr "Theme customisation" + +#: mod/settings.php:1025 +msgid "Content Settings" +msgstr "Content/Layout" + +#: mod/settings.php:1026 view/theme/duepuntozero/config.php:63 +#: view/theme/frio/config.php:66 view/theme/quattro/config.php:69 +#: view/theme/vier/config.php:114 +msgid "Theme settings" +msgstr "" + +#: mod/settings.php:1110 +msgid "Account Types" +msgstr "Account types:" + +#: mod/settings.php:1111 +msgid "Personal Page Subtypes" +msgstr "Personal Page subtypes" + +#: mod/settings.php:1112 +msgid "Community Forum Subtypes" +msgstr "" + +#: mod/settings.php:1119 +msgid "Personal Page" +msgstr "Personal Page" + +#: mod/settings.php:1120 +msgid "This account is a regular personal profile" +msgstr "Regular personal profile" + +#: mod/settings.php:1123 +msgid "Organisation Page" +msgstr "Organisation Page" + +#: mod/settings.php:1124 +msgid "This account is a profile for an organisation" +msgstr "Profile for an organisation" + +#: mod/settings.php:1127 +msgid "News Page" +msgstr "News Page" + +#: mod/settings.php:1128 +msgid "This account is a news account/reflector" +msgstr "News reflector" + +#: mod/settings.php:1131 +msgid "Community Forum" +msgstr "Community Forum" + +#: mod/settings.php:1132 +msgid "" +"This account is a community forum where people can discuss with each other" +msgstr "Discussion forum for community" + +#: mod/settings.php:1135 +msgid "Normal Account Page" +msgstr "Standard" + +#: mod/settings.php:1136 +msgid "This account is a normal personal profile" +msgstr "Regular personal profile" + +#: mod/settings.php:1139 +msgid "Soapbox Page" +msgstr "Soapbox" + +#: mod/settings.php:1140 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Automatically approves contact requests as followers" + +#: mod/settings.php:1143 +msgid "Public Forum" +msgstr "" + +#: mod/settings.php:1144 +msgid "Automatically approve all contact requests" +msgstr "" + +#: mod/settings.php:1147 +msgid "Automatic Friend Page" +msgstr "Popularity" + +#: mod/settings.php:1148 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Automatically approves contact requests as friends" + +#: mod/settings.php:1151 +msgid "Private Forum [Experimental]" +msgstr "" + +#: mod/settings.php:1152 +msgid "Private forum - approved members only" +msgstr "" + +#: mod/settings.php:1163 +msgid "OpenID:" +msgstr "" + +#: mod/settings.php:1163 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "" + +#: mod/settings.php:1171 +msgid "Publish your default profile in your local site directory?" +msgstr "Publish default profile in local site directory?" + +#: mod/settings.php:1171 +msgid "Your profile may be visible in public." +msgstr "Your local directory may be publicly visible" + +#: mod/settings.php:1177 +msgid "Publish your default profile in the global social directory?" +msgstr "Publish default profile in global directory?" + +#: mod/settings.php:1184 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Hide my contact list from others?" + +#: mod/settings.php:1188 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "Posting public messages to Diaspora and other networks will not be possible if enabled" + +#: mod/settings.php:1193 +msgid "Allow friends to post to your profile page?" +msgstr "Allow friends to post to my wall?" + +#: mod/settings.php:1198 +msgid "Allow friends to tag your posts?" +msgstr "Allow friends to tag my post?" + +#: mod/settings.php:1203 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "" + +#: mod/settings.php:1208 +msgid "Permit unknown people to send you private mail?" +msgstr "Allow unknown people to send me private messages?" + +#: mod/settings.php:1216 +msgid "Profile is not published." +msgstr "" + +#: mod/settings.php:1224 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "My identity address: '%s' or '%s'" + +#: mod/settings.php:1231 +msgid "Automatically expire posts after this many days:" +msgstr "Automatically expire posts after this many days:" + +#: mod/settings.php:1231 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Posts will not expire if empty; expired posts will be deleted" + +#: mod/settings.php:1232 +msgid "Advanced expiration settings" +msgstr "Advanced expiration settings" + +#: mod/settings.php:1233 +msgid "Advanced Expiration" +msgstr "Advanced expiration" + +#: mod/settings.php:1234 +msgid "Expire posts:" +msgstr "" + +#: mod/settings.php:1235 +msgid "Expire personal notes:" +msgstr "" + +#: mod/settings.php:1236 +msgid "Expire starred posts:" +msgstr "" + +#: mod/settings.php:1237 +msgid "Expire photos:" +msgstr "" + +#: mod/settings.php:1238 +msgid "Only expire posts by others:" +msgstr "" + +#: mod/settings.php:1269 +msgid "Account Settings" +msgstr "" + +#: mod/settings.php:1277 +msgid "Password Settings" +msgstr "Password change" + +#: mod/settings.php:1279 +msgid "Leave password fields blank unless changing" +msgstr "" + +#: mod/settings.php:1280 +msgid "Current Password:" +msgstr "Current password:" + +#: mod/settings.php:1280 mod/settings.php:1281 +msgid "Your current password to confirm the changes" +msgstr "Current password to confirm change" + +#: mod/settings.php:1281 +msgid "Password:" +msgstr "" + +#: mod/settings.php:1285 +msgid "Basic Settings" +msgstr "Basic information" + +#: mod/settings.php:1287 +msgid "Email Address:" +msgstr "Email address:" + +#: mod/settings.php:1288 +msgid "Your Timezone:" +msgstr "Time zone:" + +#: mod/settings.php:1289 +msgid "Your Language:" +msgstr "Language:" + +#: mod/settings.php:1289 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "" + +#: mod/settings.php:1290 +msgid "Default Post Location:" +msgstr "Posting location:" + +#: mod/settings.php:1291 +msgid "Use Browser Location:" +msgstr "Use browser location:" + +#: mod/settings.php:1294 +msgid "Security and Privacy Settings" +msgstr "Security and privacy" + +#: mod/settings.php:1296 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximum friend requests per day:" + +#: mod/settings.php:1296 mod/settings.php:1326 +msgid "(to prevent spam abuse)" +msgstr "May prevent spam or abuse registrations" + +#: mod/settings.php:1297 +msgid "Default Post Permissions" +msgstr "Default post permissions" + +#: mod/settings.php:1298 +msgid "(click to open/close)" +msgstr "" + +#: mod/settings.php:1309 +msgid "Default Private Post" +msgstr "" + +#: mod/settings.php:1310 +msgid "Default Public Post" +msgstr "" + +#: mod/settings.php:1314 +msgid "Default Permissions for New Posts" +msgstr "" + +#: mod/settings.php:1326 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum private messages per day from unknown people:" + +#: mod/settings.php:1329 +msgid "Notification Settings" +msgstr "Notification" + +#: mod/settings.php:1330 +msgid "By default post a status message when:" +msgstr "By default post a status message when:" + +#: mod/settings.php:1331 +msgid "accepting a friend request" +msgstr "accepting friend requests" + +#: mod/settings.php:1332 +msgid "joining a forum/community" +msgstr "joining forums or communities" + +#: mod/settings.php:1333 +msgid "making an interesting profile change" +msgstr "" + +#: mod/settings.php:1334 +msgid "Send a notification email when:" +msgstr "Send notification email when:" + +#: mod/settings.php:1335 +msgid "You receive an introduction" +msgstr "Receiving an introduction" + +#: mod/settings.php:1336 +msgid "Your introductions are confirmed" +msgstr "My introductions are confirmed" + +#: mod/settings.php:1337 +msgid "Someone writes on your profile wall" +msgstr "Someone writes on my wall" + +#: mod/settings.php:1338 +msgid "Someone writes a followup comment" +msgstr "A follow up comment is posted" + +#: mod/settings.php:1339 +msgid "You receive a private message" +msgstr "receiving a private message" + +#: mod/settings.php:1340 +msgid "You receive a friend suggestion" +msgstr "Receiving a friend suggestion" + +#: mod/settings.php:1341 +msgid "You are tagged in a post" +msgstr "Tagged in a post" + +#: mod/settings.php:1342 +msgid "You are poked/prodded/etc. in a post" +msgstr "Poked in a post" + +#: mod/settings.php:1344 +msgid "Activate desktop notifications" +msgstr "Activate desktop notifications" + +#: mod/settings.php:1344 +msgid "Show desktop popup on new notifications" +msgstr "Show desktop pop-up on new notifications" + +#: mod/settings.php:1346 +msgid "Text-only notification emails" +msgstr "Text-only notification emails" + +#: mod/settings.php:1348 +msgid "Send text only notification emails, without the html part" +msgstr "Receive text only emails without HTML " + +#: mod/settings.php:1350 +msgid "Advanced Account/Page Type Settings" +msgstr "Advanced account types" + +#: mod/settings.php:1351 +msgid "Change the behaviour of this account for special situations" +msgstr "Change behaviour of this account for special situations" + +#: mod/settings.php:1354 +msgid "Relocate" +msgstr "Recent relocation" + +#: mod/settings.php:1355 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "If you have moved this profile from another server and some of your contacts don't receive your updates:" + +#: mod/settings.php:1356 +msgid "Resend relocate message to contacts" +msgstr "" + +#: mod/uexport.php:37 +msgid "Export account" +msgstr "" + +#: mod/uexport.php:37 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "" + +#: mod/uexport.php:38 +msgid "Export all" +msgstr "" + +#: mod/uexport.php:38 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "" + +#: mod/videos.php:124 +msgid "Do you really want to delete this video?" +msgstr "" + +#: mod/videos.php:129 +msgid "Delete Video" +msgstr "" + +#: mod/videos.php:208 +msgid "No videos selected" +msgstr "" + +#: mod/videos.php:402 +msgid "Recent Videos" +msgstr "" + +#: mod/videos.php:404 +msgid "Upload New Videos" +msgstr "" + +#: mod/install.php:106 +msgid "Friendica Communications Server - Setup" +msgstr "" + +#: mod/install.php:112 +msgid "Could not connect to database." +msgstr "" + +#: mod/install.php:116 +msgid "Could not create table." +msgstr "" + +#: mod/install.php:122 +msgid "Your Friendica site database has been installed." +msgstr "" + +#: mod/install.php:127 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "" + +#: mod/install.php:128 mod/install.php:200 mod/install.php:547 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "" + +#: mod/install.php:140 +msgid "Database already in use." +msgstr "" + +#: mod/install.php:197 +msgid "System check" +msgstr "" + +#: mod/install.php:202 +msgid "Check again" +msgstr "" + +#: mod/install.php:221 +msgid "Database connection" +msgstr "" + +#: mod/install.php:222 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "" + +#: mod/install.php:223 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "" + +#: mod/install.php:224 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "" + +#: mod/install.php:228 +msgid "Database Server Name" +msgstr "" + +#: mod/install.php:229 +msgid "Database Login Name" +msgstr "" + +#: mod/install.php:230 +msgid "Database Login Password" +msgstr "" + +#: mod/install.php:230 +msgid "For security reasons the password must not be empty" +msgstr "" + +#: mod/install.php:231 +msgid "Database Name" +msgstr "" + +#: mod/install.php:232 mod/install.php:273 +msgid "Site administrator email address" +msgstr "" + +#: mod/install.php:232 mod/install.php:273 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "" + +#: mod/install.php:236 mod/install.php:276 +msgid "Please select a default timezone for your website" +msgstr "" + +#: mod/install.php:263 +msgid "Site settings" +msgstr "" + +#: mod/install.php:277 +msgid "System Language:" +msgstr "" + +#: mod/install.php:277 +msgid "" +"Set the default language for your Friendica installation interface and to " +"send emails." +msgstr "" + +#: mod/install.php:317 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "" + +#: mod/install.php:318 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run the background processing. See 'Setup the poller'" +msgstr "" + +#: mod/install.php:322 +msgid "PHP executable path" +msgstr "" + +#: mod/install.php:322 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "" + +#: mod/install.php:327 +msgid "Command line PHP" +msgstr "" + +#: mod/install.php:336 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "" + +#: mod/install.php:337 +msgid "Found PHP version: " +msgstr "" + +#: mod/install.php:339 +msgid "PHP cli binary" +msgstr "" + +#: mod/install.php:350 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "" + +#: mod/install.php:351 +msgid "This is required for message delivery to work." +msgstr "" + +#: mod/install.php:353 +msgid "PHP register_argc_argv" +msgstr "" + +#: mod/install.php:376 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "" + +#: mod/install.php:377 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "" + +#: mod/install.php:379 +msgid "Generate encryption keys" +msgstr "" + +#: mod/install.php:386 +msgid "libCurl PHP module" +msgstr "" + +#: mod/install.php:387 +msgid "GD graphics PHP module" +msgstr "" + +#: mod/install.php:388 +msgid "OpenSSL PHP module" +msgstr "" + +#: mod/install.php:389 +msgid "PDO or MySQLi PHP module" +msgstr "" + +#: mod/install.php:390 +msgid "mb_string PHP module" +msgstr "" + +#: mod/install.php:391 +msgid "XML PHP module" +msgstr "" + +#: mod/install.php:392 +msgid "iconv module" +msgstr "" + +#: mod/install.php:396 mod/install.php:398 +msgid "Apache mod_rewrite module" +msgstr "" + +#: mod/install.php:396 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "" + +#: mod/install.php:404 +msgid "Error: libCURL PHP module required but not installed." +msgstr "" + +#: mod/install.php:408 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "" + +#: mod/install.php:412 +msgid "Error: openssl PHP module required but not installed." +msgstr "" + +#: mod/install.php:416 +msgid "Error: PDO or MySQLi PHP module required but not installed." +msgstr "" + +#: mod/install.php:420 +msgid "Error: The MySQL driver for PDO is not installed." +msgstr "" + +#: mod/install.php:424 +msgid "Error: mb_string PHP module required but not installed." +msgstr "" + +#: mod/install.php:428 +msgid "Error: iconv PHP module required but not installed." +msgstr "" + +#: mod/install.php:438 +msgid "Error, XML PHP module required but not installed." +msgstr "" + +#: mod/install.php:450 +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-level directory of your web server, but it is unable to do so." + +#: mod/install.php:451 +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 issue, as the web server may not be able to write files in your directory - even if you can." + +#: mod/install.php:452 +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 "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top-level directory." + +#: mod/install.php:453 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "" + +#: mod/install.php:456 +msgid ".htconfig.php is writable" +msgstr "" + +#: mod/install.php:466 +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:467 +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 "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 directory." + +#: mod/install.php:468 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Please ensure the user (e.g. www-data) that your web server runs as has write access to this directory." + +#: mod/install.php:469 +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:472 +msgid "view/smarty3 is writable" +msgstr "" + +#: mod/install.php:488 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "" + +#: mod/install.php:490 +msgid "Url rewrite is working" +msgstr "" + +#: mod/install.php:509 +msgid "ImageMagick PHP extension is not installed" +msgstr "" + +#: mod/install.php:511 +msgid "ImageMagick PHP extension is installed" +msgstr "" + +#: mod/install.php:513 +msgid "ImageMagick supports GIF" +msgstr "" + +#: mod/install.php:520 +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:545 +msgid "

What next

" +msgstr "" + +#: mod/install.php:546 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "" + +#: mod/item.php:116 +msgid "Unable to locate original post." +msgstr "" + +#: mod/item.php:344 +msgid "Empty post discarded." +msgstr "" + +#: mod/item.php:904 +msgid "System error. Post not saved." +msgstr "" + +#: mod/item.php:995 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "" + +#: mod/item.php:997 +#, php-format +msgid "You may visit them online at %s" +msgstr "" + +#: mod/item.php:998 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "" + +#: mod/item.php:1002 +#, php-format +msgid "%s posted an update." +msgstr "" + +#: mod/notifications.php:35 +msgid "Invalid request identifier." +msgstr "" + +#: mod/notifications.php:44 mod/notifications.php:180 +#: mod/notifications.php:227 +msgid "Discard" +msgstr "" + +#: mod/notifications.php:105 +msgid "Network Notifications" +msgstr "" + +#: mod/notifications.php:117 +msgid "Personal Notifications" +msgstr "" + +#: mod/notifications.php:123 +msgid "Home Notifications" +msgstr "" + +#: mod/notifications.php:152 +msgid "Show Ignored Requests" +msgstr "Show ignored requests." + +#: mod/notifications.php:152 +msgid "Hide Ignored Requests" +msgstr "" + +#: mod/notifications.php:164 mod/notifications.php:234 +msgid "Notification type: " +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:261 mod/admin.php:1506 +msgid "Approve" +msgstr "" + +#: mod/notifications.php:195 +msgid "Claims to be known to you: " +msgstr "Says they know me:" + +#: mod/notifications.php:196 +msgid "yes" +msgstr "" + +#: mod/notifications.php:196 +msgid "no" +msgstr "" + +#: mod/notifications.php:197 mod/notifications.php:202 +msgid "Shall your connection be bidirectional or not?" +msgstr "Shall your connection be in both directions or not?" + +#: mod/notifications.php:198 mod/notifications.php:203 +#, php-format +msgid "" +"Accepting %s as a friend allows %s to subscribe to your posts, and you will " +"also receive updates from them in your news feed." +msgstr "" + +#: mod/notifications.php:199 +#, php-format +msgid "" +"Accepting %s as a subscriber allows them to subscribe to your posts, but you" +" will not receive updates from them in your news feed." +msgstr "" + +#: mod/notifications.php:204 +#, php-format +msgid "" +"Accepting %s as a sharer allows them to subscribe to your posts, but you " +"will not receive updates from them in your news feed." +msgstr "" + +#: mod/notifications.php:215 +msgid "Friend" +msgstr "" + +#: mod/notifications.php:216 +msgid "Sharer" +msgstr "" + +#: mod/notifications.php:216 +msgid "Subscriber" +msgstr "" + +#: mod/notifications.php:272 +msgid "No introductions." +msgstr "" + +#: mod/notifications.php:313 +msgid "Show unread" +msgstr "" + +#: mod/notifications.php:313 +msgid "Show all" +msgstr "" + +#: mod/notifications.php:319 +#, php-format +msgid "No more %s notifications." +msgstr "" + +#: mod/ping.php:270 +msgid "{0} wants to be your friend" +msgstr "" + +#: mod/ping.php:285 +msgid "{0} sent you a message" +msgstr "" + +#: mod/ping.php:300 +msgid "{0} requested registration" +msgstr "" + +#: mod/admin.php:96 +msgid "Theme settings updated." +msgstr "" + +#: mod/admin.php:165 mod/admin.php:1054 +msgid "Site" +msgstr "" + +#: mod/admin.php:166 mod/admin.php:988 mod/admin.php:1498 mod/admin.php:1514 +msgid "Users" +msgstr "" + +#: mod/admin.php:168 mod/admin.php:1892 mod/admin.php:1942 +msgid "Themes" +msgstr "Theme selection" + +#: mod/admin.php:170 +msgid "DB updates" +msgstr "" + +#: mod/admin.php:171 mod/admin.php:512 +msgid "Inspect Queue" +msgstr "" + +#: mod/admin.php:172 mod/admin.php:288 +msgid "Server Blocklist" +msgstr "" + +#: mod/admin.php:173 mod/admin.php:478 +msgid "Federation Statistics" +msgstr "" + +#: mod/admin.php:187 mod/admin.php:198 mod/admin.php:2016 +msgid "Logs" +msgstr "" + +#: mod/admin.php:188 mod/admin.php:2084 +msgid "View Logs" +msgstr "" + +#: mod/admin.php:189 +msgid "probe address" +msgstr "" + +#: mod/admin.php:190 +msgid "check webfinger" +msgstr "" + +#: mod/admin.php:197 +msgid "Plugin Features" +msgstr "" + +#: mod/admin.php:199 +msgid "diagnostics" +msgstr "" + +#: mod/admin.php:200 +msgid "User registrations waiting for confirmation" +msgstr "" + +#: mod/admin.php:279 +msgid "The blocked domain" +msgstr "" + +#: mod/admin.php:280 mod/admin.php:293 +msgid "The reason why you blocked this domain." +msgstr "" + +#: mod/admin.php:281 +msgid "Delete domain" +msgstr "" + +#: mod/admin.php:281 +msgid "Check to delete this entry from the blocklist" +msgstr "" + +#: mod/admin.php:287 mod/admin.php:477 mod/admin.php:511 mod/admin.php:586 +#: mod/admin.php:1053 mod/admin.php:1497 mod/admin.php:1615 mod/admin.php:1678 +#: mod/admin.php:1891 mod/admin.php:1941 mod/admin.php:2015 mod/admin.php:2083 +msgid "Administration" +msgstr "" + +#: mod/admin.php:289 +msgid "" +"This page can be used to define a black list of servers from the federated " +"network that are not allowed to interact with your node. For all entered " +"domains you should also give a reason why you have blocked the remote " +"server." +msgstr "" + +#: mod/admin.php:290 +msgid "" +"The list of blocked servers will be made publically available on the " +"/friendica page so that your users and people investigating communication " +"problems can find the reason easily." +msgstr "" + +#: mod/admin.php:291 +msgid "Add new entry to block list" +msgstr "" + +#: mod/admin.php:292 +msgid "Server Domain" +msgstr "" + +#: mod/admin.php:292 +msgid "" +"The domain of the new server to add to the block list. Do not include the " +"protocol." +msgstr "" + +#: mod/admin.php:293 +msgid "Block reason" +msgstr "" + +#: mod/admin.php:294 +msgid "Add Entry" +msgstr "" + +#: mod/admin.php:295 +msgid "Save changes to the blocklist" +msgstr "" + +#: mod/admin.php:296 +msgid "Current Entries in the Blocklist" +msgstr "" + +#: mod/admin.php:299 +msgid "Delete entry from blocklist" +msgstr "" + +#: mod/admin.php:302 +msgid "Delete entry from blocklist?" +msgstr "" + +#: mod/admin.php:327 +msgid "Server added to blocklist." +msgstr "" + +#: mod/admin.php:343 +msgid "Site blocklist updated." +msgstr "" + +#: mod/admin.php:408 +msgid "unknown" +msgstr "" + +#: mod/admin.php:471 +msgid "" +"This page offers you some numbers to the known part of the federated social " +"network your Friendica node is part of. These numbers are not complete but " +"only reflect the part of the network your node is aware of." +msgstr "" + +#: mod/admin.php:472 +msgid "" +"The Auto Discovered Contact Directory feature is not enabled, it " +"will improve the data displayed here." +msgstr "" + +#: mod/admin.php:484 +#, php-format +msgid "Currently this node is aware of %d nodes from the following platforms:" +msgstr "" + +#: mod/admin.php:514 +msgid "ID" +msgstr "" + +#: mod/admin.php:515 +msgid "Recipient Name" +msgstr "" + +#: mod/admin.php:516 +msgid "Recipient Profile" +msgstr "" + +#: mod/admin.php:518 +msgid "Created" +msgstr "" + +#: mod/admin.php:519 +msgid "Last Tried" +msgstr "" + +#: mod/admin.php:520 +msgid "" +"This page lists the content of the queue for outgoing postings. These are " +"postings the initial delivery failed for. They will be resend later and " +"eventually deleted if the delivery fails permanently." +msgstr "" + +#: mod/admin.php:545 +#, php-format +msgid "" +"Your DB still runs with MyISAM tables. You should change the engine type to " +"InnoDB. As Friendica will use InnoDB only features in the future, you should" +" change this! See here for a guide that may be helpful " +"converting the table engines. You may also use the command php " +"include/dbstructure.php toinnodb of your Friendica installation for an " +"automatic conversion.
" +msgstr "" + +#: mod/admin.php:550 +msgid "" +"You are using a MySQL version which does not support all features that " +"Friendica uses. You should consider switching to MariaDB." +msgstr "" + +#: mod/admin.php:554 mod/admin.php:1447 +msgid "Normal Account" +msgstr "Standard account" + +#: mod/admin.php:555 mod/admin.php:1448 +msgid "Soapbox Account" +msgstr "Soapbox account" + +#: mod/admin.php:556 mod/admin.php:1449 +msgid "Community/Celebrity Account" +msgstr "" + +#: mod/admin.php:557 mod/admin.php:1450 +msgid "Automatic Friend Account" +msgstr "" + +#: mod/admin.php:558 +msgid "Blog Account" +msgstr "" + +#: mod/admin.php:559 +msgid "Private Forum" +msgstr "" + +#: mod/admin.php:581 +msgid "Message queues" +msgstr "" + +#: mod/admin.php:587 +msgid "Summary" +msgstr "" + +#: mod/admin.php:589 +msgid "Registered users" +msgstr "" + +#: mod/admin.php:591 +msgid "Pending registrations" +msgstr "" + +#: mod/admin.php:592 +msgid "Version" +msgstr "" + +#: mod/admin.php:597 +msgid "Active plugins" +msgstr "" + +#: mod/admin.php:622 +msgid "Can not parse base url. Must have at least ://" +msgstr "" + +#: mod/admin.php:914 +msgid "Site settings updated." +msgstr "" + +#: mod/admin.php:971 +msgid "No community page" +msgstr "" + +#: mod/admin.php:972 +msgid "Public postings from users of this site" +msgstr "" + +#: mod/admin.php:973 +msgid "Global community page" +msgstr "" + +#: mod/admin.php:979 +msgid "At post arrival" +msgstr "" + +#: mod/admin.php:989 +msgid "Users, Global Contacts" +msgstr "" + +#: mod/admin.php:990 +msgid "Users, Global Contacts/fallback" +msgstr "" + +#: mod/admin.php:994 +msgid "One month" +msgstr "" + +#: mod/admin.php:995 +msgid "Three months" +msgstr "" + +#: mod/admin.php:996 +msgid "Half a year" +msgstr "" + +#: mod/admin.php:997 +msgid "One year" +msgstr "" + +#: mod/admin.php:1002 +msgid "Multi user instance" +msgstr "" + +#: mod/admin.php:1025 +msgid "Closed" +msgstr "" + +#: mod/admin.php:1026 +msgid "Requires approval" +msgstr "" + +#: mod/admin.php:1027 +msgid "Open" +msgstr "" + +#: mod/admin.php:1031 +msgid "No SSL policy, links will track page SSL state" +msgstr "" + +#: mod/admin.php:1032 +msgid "Force all links to use SSL" +msgstr "" + +#: mod/admin.php:1033 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "" + +#: mod/admin.php:1057 +msgid "File upload" +msgstr "" + +#: mod/admin.php:1058 +msgid "Policies" +msgstr "" + +#: mod/admin.php:1060 +msgid "Auto Discovered Contact Directory" +msgstr "" + +#: mod/admin.php:1061 +msgid "Performance" +msgstr "" + +#: mod/admin.php:1062 +msgid "Worker" +msgstr "" + +#: mod/admin.php:1063 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "Relocate - Warning, advanced function: This could make this server unreachable." + +#: mod/admin.php:1066 +msgid "Site name" +msgstr "" + +#: mod/admin.php:1067 +msgid "Host name" +msgstr "" + +#: mod/admin.php:1068 +msgid "Sender Email" +msgstr "" + +#: mod/admin.php:1068 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "" + +#: mod/admin.php:1069 +msgid "Banner/Logo" +msgstr "" + +#: mod/admin.php:1070 +msgid "Shortcut icon" +msgstr "" + +#: mod/admin.php:1070 +msgid "Link to an icon that will be used for browsers." +msgstr "" + +#: mod/admin.php:1071 +msgid "Touch icon" +msgstr "" + +#: mod/admin.php:1071 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "" + +#: mod/admin.php:1072 +msgid "Additional Info" +msgstr "" + +#: mod/admin.php:1072 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/siteinfo." +msgstr "" + +#: mod/admin.php:1073 +msgid "System language" +msgstr "" + +#: mod/admin.php:1074 +msgid "System theme" +msgstr "" + +#: mod/admin.php:1074 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "" + +#: mod/admin.php:1075 +msgid "Mobile system theme" +msgstr "" + +#: mod/admin.php:1075 +msgid "Theme for mobile devices" +msgstr "" + +#: mod/admin.php:1076 +msgid "SSL link policy" +msgstr "" + +#: mod/admin.php:1076 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "" + +#: mod/admin.php:1077 +msgid "Force SSL" +msgstr "" + +#: mod/admin.php:1077 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "" + +#: mod/admin.php:1078 +msgid "Hide help entry from navigation menu" +msgstr "" + +#: mod/admin.php:1078 +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:1079 +msgid "Single user instance" +msgstr "" + +#: mod/admin.php:1079 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "" + +#: mod/admin.php:1080 +msgid "Maximum image size" +msgstr "" + +#: mod/admin.php:1080 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "" + +#: mod/admin.php:1081 +msgid "Maximum image length" +msgstr "" + +#: mod/admin.php:1081 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "" + +#: mod/admin.php:1082 +msgid "JPEG image quality" +msgstr "" + +#: mod/admin.php:1082 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "" + +#: mod/admin.php:1084 +msgid "Register policy" +msgstr "" + +#: mod/admin.php:1085 +msgid "Maximum Daily Registrations" +msgstr "" + +#: mod/admin.php:1085 +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:1086 +msgid "Register text" +msgstr "" + +#: mod/admin.php:1086 +msgid "Will be displayed prominently on the registration page." +msgstr "" + +#: mod/admin.php:1087 +msgid "Accounts abandoned after x days" +msgstr "" + +#: mod/admin.php:1087 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "" + +#: mod/admin.php:1088 +msgid "Allowed friend domains" +msgstr "" + +#: mod/admin.php:1088 +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:1089 +msgid "Allowed email domains" +msgstr "" + +#: mod/admin.php:1089 +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:1090 +msgid "Block public" +msgstr "" + +#: mod/admin.php:1090 +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:1091 +msgid "Force publish" +msgstr "" + +#: mod/admin.php:1091 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "" + +#: mod/admin.php:1092 +msgid "Global directory URL" +msgstr "" + +#: mod/admin.php:1092 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "" + +#: mod/admin.php:1093 +msgid "Allow threaded items" +msgstr "" + +#: mod/admin.php:1093 +msgid "Allow infinite level threading for items on this site." +msgstr "" + +#: mod/admin.php:1094 +msgid "Private posts by default for new users" +msgstr "" + +#: mod/admin.php:1094 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "" + +#: mod/admin.php:1095 +msgid "Don't include post content in email notifications" +msgstr "" + +#: mod/admin.php:1095 +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:1096 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "" + +#: mod/admin.php:1096 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "" + +#: mod/admin.php:1097 +msgid "Don't embed private images in posts" +msgstr "" + +#: mod/admin.php:1097 +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:1098 +msgid "Allow Users to set remote_self" +msgstr "" + +#: mod/admin.php:1098 +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:1099 +msgid "Block multiple registrations" +msgstr "" + +#: mod/admin.php:1099 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "" + +#: mod/admin.php:1100 +msgid "OpenID support" +msgstr "" + +#: mod/admin.php:1100 +msgid "OpenID support for registration and logins." +msgstr "" + +#: mod/admin.php:1101 +msgid "Fullname check" +msgstr "" + +#: mod/admin.php:1101 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "" + +#: mod/admin.php:1102 +msgid "Community Page Style" +msgstr "" + +#: mod/admin.php:1102 +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:1103 +msgid "Posts per user on community page" +msgstr "" + +#: mod/admin.php:1103 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"'Global Community')" +msgstr "" + +#: mod/admin.php:1104 +msgid "Enable OStatus support" +msgstr "" + +#: mod/admin.php:1104 +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:1105 +msgid "OStatus conversation completion interval" +msgstr "" + +#: mod/admin.php:1105 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "" + +#: mod/admin.php:1106 +msgid "Only import OStatus threads from our contacts" +msgstr "" + +#: mod/admin.php:1106 +msgid "" +"Normally we import every content from our OStatus contacts. With this option" +" we only store threads that are started by a contact that is known on our " +"system." +msgstr "" + +#: mod/admin.php:1107 +msgid "OStatus support can only be enabled if threading is enabled." +msgstr "" + +#: mod/admin.php:1109 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "" + +#: mod/admin.php:1110 +msgid "Enable Diaspora support" +msgstr "" + +#: mod/admin.php:1110 +msgid "Provide built-in Diaspora network compatibility." +msgstr "" + +#: mod/admin.php:1111 +msgid "Only allow Friendica contacts" +msgstr "" + +#: mod/admin.php:1111 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "" + +#: mod/admin.php:1112 +msgid "Verify SSL" +msgstr "" + +#: mod/admin.php:1112 +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:1113 +msgid "Proxy user" +msgstr "" + +#: mod/admin.php:1114 +msgid "Proxy URL" +msgstr "" + +#: mod/admin.php:1115 +msgid "Network timeout" +msgstr "" + +#: mod/admin.php:1115 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "" + +#: mod/admin.php:1116 +msgid "Maximum Load Average" +msgstr "" + +#: mod/admin.php:1116 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "" + +#: mod/admin.php:1117 +msgid "Maximum Load Average (Frontend)" +msgstr "" + +#: mod/admin.php:1117 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "" + +#: mod/admin.php:1118 +msgid "Minimal Memory" +msgstr "" + +#: mod/admin.php:1118 +msgid "" +"Minimal free memory in MB for the poller. Needs access to /proc/meminfo - " +"default 0 (deactivated)." +msgstr "" + +#: mod/admin.php:1119 +msgid "Maximum table size for optimization" +msgstr "" + +#: mod/admin.php:1119 +msgid "" +"Maximum table size (in MB) for the automatic optimization - default 100 MB. " +"Enter -1 to disable it." +msgstr "" + +#: mod/admin.php:1120 +msgid "Minimum level of fragmentation" +msgstr "" + +#: mod/admin.php:1120 +msgid "" +"Minimum fragmenation level to start the automatic optimization - default " +"value is 30%." +msgstr "" + +#: mod/admin.php:1122 +msgid "Periodical check of global contacts" +msgstr "" + +#: mod/admin.php:1122 +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:1123 +msgid "Days between requery" +msgstr "" + +#: mod/admin.php:1123 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "" + +#: mod/admin.php:1124 +msgid "Discover contacts from other servers" +msgstr "" + +#: mod/admin.php:1124 +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 "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 recommend setting is 'Users, Global Contacts'." + +#: mod/admin.php:1125 +msgid "Timeframe for fetching global contacts" +msgstr "" + +#: mod/admin.php:1125 +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:1126 +msgid "Search the local directory" +msgstr "" + +#: mod/admin.php:1126 +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:1128 +msgid "Publish server information" +msgstr "" + +#: mod/admin.php:1128 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "" + +#: mod/admin.php:1130 +msgid "Suppress Tags" +msgstr "" + +#: mod/admin.php:1130 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "" + +#: mod/admin.php:1131 +msgid "Path to item cache" +msgstr "" + +#: mod/admin.php:1131 +msgid "The item caches buffers generated bbcode and external images." +msgstr "" + +#: mod/admin.php:1132 +msgid "Cache duration in seconds" +msgstr "" + +#: mod/admin.php:1132 +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:1133 +msgid "Maximum numbers of comments per post" +msgstr "" + +#: mod/admin.php:1133 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "" + +#: mod/admin.php:1134 +msgid "Temp path" +msgstr "" + +#: mod/admin.php:1134 +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:1135 +msgid "Base path to installation" +msgstr "" + +#: mod/admin.php:1135 +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:1136 +msgid "Disable picture proxy" +msgstr "" + +#: mod/admin.php:1136 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwith." +msgstr "" + +#: mod/admin.php:1137 +msgid "Only search in tags" +msgstr "" + +#: mod/admin.php:1137 +msgid "On large systems the text search can slow down the system extremely." +msgstr "" + +#: mod/admin.php:1139 +msgid "New base url" +msgstr "" + +#: mod/admin.php:1139 +msgid "" +"Change base url for this server. Sends relocate message to all DFRN contacts" +" of all users." +msgstr "" + +#: mod/admin.php:1141 +msgid "RINO Encryption" +msgstr "" + +#: mod/admin.php:1141 +msgid "Encryption layer between nodes." +msgstr "" + +#: mod/admin.php:1143 +msgid "Maximum number of parallel workers" +msgstr "" + +#: mod/admin.php:1143 +msgid "" +"On shared hosters set this to 2. On larger systems, values of 10 are great. " +"Default value is 4." +msgstr "" + +#: mod/admin.php:1144 +msgid "Don't use 'proc_open' with the worker" +msgstr "" + +#: mod/admin.php:1144 +msgid "" +"Enable this if your system doesn't allow the use of 'proc_open'. This can " +"happen on shared hosters. If this is enabled you should increase the " +"frequency of poller calls in your crontab." +msgstr "" + +#: mod/admin.php:1145 +msgid "Enable fastlane" +msgstr "" + +#: mod/admin.php:1145 +msgid "" +"When enabed, the fastlane mechanism starts an additional worker if processes" +" with higher priority are blocked by processes of lower priority." +msgstr "" + +#: mod/admin.php:1146 +msgid "Enable frontend worker" +msgstr "" + +#: mod/admin.php:1146 +msgid "" +"When enabled the Worker process is triggered when backend access is " +"performed (e.g. messages being delivered). On smaller sites you might want " +"to call yourdomain.tld/worker on a regular basis via an external cron job. " +"You should only enable this option if you cannot utilize cron/scheduled jobs" +" on your server. The worker background process needs to be activated for " +"this." +msgstr "" + +#: mod/admin.php:1176 +msgid "Update has been marked successful" +msgstr "" + +#: mod/admin.php:1184 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "" + +#: mod/admin.php:1187 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "" + +#: mod/admin.php:1201 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "" + +#: mod/admin.php:1204 +#, php-format +msgid "Update %s was successfully applied." +msgstr "" + +#: mod/admin.php:1207 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "" + +#: mod/admin.php:1210 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "" + +#: mod/admin.php:1230 +msgid "No failed updates." +msgstr "" + +#: mod/admin.php:1231 +msgid "Check database structure" +msgstr "" + +#: mod/admin.php:1236 +msgid "Failed Updates" +msgstr "" + +#: mod/admin.php:1237 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "" + +#: mod/admin.php:1238 +msgid "Mark success (if update was manually applied)" +msgstr "" + +#: mod/admin.php:1239 +msgid "Attempt to execute this update step automatically" +msgstr "" + +#: mod/admin.php:1273 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "" + +#: mod/admin.php:1276 +#, php-format +msgid "" +"\n" +"\t\t\tThe login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%1$s\n" +"\t\t\tLogin Name:\t\t%2$s\n" +"\t\t\tPassword:\t\t%3$s\n" +"\n" +"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\t\tin.\n" +"\n" +"\t\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\t\tthan that.\n" +"\n" +"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\t\tIf you are new and do not know anybody here, they may help\n" +"\t\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\t\tThank you and welcome to %4$s." +msgstr "" + +#: mod/admin.php:1320 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "" +msgstr[1] "" + +#: mod/admin.php:1327 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "" +msgstr[1] "" + +#: mod/admin.php:1374 +#, php-format +msgid "User '%s' deleted" +msgstr "" + +#: mod/admin.php:1382 +#, php-format +msgid "User '%s' unblocked" +msgstr "" + +#: mod/admin.php:1382 +#, php-format +msgid "User '%s' blocked" +msgstr "" + +#: mod/admin.php:1490 mod/admin.php:1516 +msgid "Register date" +msgstr "" + +#: mod/admin.php:1490 mod/admin.php:1516 +msgid "Last login" +msgstr "" + +#: mod/admin.php:1490 mod/admin.php:1516 +msgid "Last item" +msgstr "" + +#: mod/admin.php:1499 +msgid "Add User" +msgstr "" + +#: mod/admin.php:1500 +msgid "select all" +msgstr "" + +#: mod/admin.php:1501 +msgid "User registrations waiting for confirm" +msgstr "" + +#: mod/admin.php:1502 +msgid "User waiting for permanent deletion" +msgstr "" + +#: mod/admin.php:1503 +msgid "Request date" +msgstr "" + +#: mod/admin.php:1504 +msgid "No registrations." +msgstr "" + +#: mod/admin.php:1505 +msgid "Note from the user" +msgstr "" + +#: mod/admin.php:1507 +msgid "Deny" +msgstr "" + +#: mod/admin.php:1511 +msgid "Site admin" +msgstr "" + +#: mod/admin.php:1512 +msgid "Account expired" +msgstr "" + +#: mod/admin.php:1515 +msgid "New User" +msgstr "" + +#: mod/admin.php:1516 +msgid "Deleted since" +msgstr "" + +#: mod/admin.php:1521 +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:1522 +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:1532 +msgid "Name of the new user." +msgstr "" + +#: mod/admin.php:1533 +msgid "Nickname" +msgstr "" + +#: mod/admin.php:1533 +msgid "Nickname of the new user." +msgstr "" + +#: mod/admin.php:1534 +msgid "Email address of the new user." +msgstr "" + +#: mod/admin.php:1577 +#, php-format +msgid "Plugin %s disabled." +msgstr "" + +#: mod/admin.php:1581 +#, php-format +msgid "Plugin %s enabled." +msgstr "" + +#: mod/admin.php:1592 mod/admin.php:1844 +msgid "Disable" +msgstr "" + +#: mod/admin.php:1594 mod/admin.php:1846 +msgid "Enable" +msgstr "" + +#: mod/admin.php:1617 mod/admin.php:1893 +msgid "Toggle" +msgstr "" + +#: mod/admin.php:1625 mod/admin.php:1902 +msgid "Author: " +msgstr "" + +#: mod/admin.php:1626 mod/admin.php:1903 +msgid "Maintainer: " +msgstr "" + +#: mod/admin.php:1681 +msgid "Reload active plugins" +msgstr "" + +#: mod/admin.php:1686 +#, php-format +msgid "" +"There are currently no plugins available on your node. You can find the " +"official plugin repository at %1$s and might find other interesting plugins " +"in the open plugin registry at %2$s" +msgstr "" + +#: mod/admin.php:1805 +msgid "No themes found." +msgstr "" + +#: mod/admin.php:1884 +msgid "Screenshot" +msgstr "" + +#: mod/admin.php:1944 +msgid "Reload active themes" +msgstr "" + +#: mod/admin.php:1949 +#, php-format +msgid "No themes found on the system. They should be paced in %1$s" +msgstr "" + +#: mod/admin.php:1950 +msgid "[Experimental]" +msgstr "" + +#: mod/admin.php:1951 +msgid "[Unsupported]" +msgstr "" + +#: mod/admin.php:1975 +msgid "Log settings updated." +msgstr "" + +#: mod/admin.php:2007 +msgid "PHP log currently enabled." +msgstr "" + +#: mod/admin.php:2009 +msgid "PHP log currently disabled." +msgstr "" + +#: mod/admin.php:2018 +msgid "Clear" +msgstr "" + +#: mod/admin.php:2023 +msgid "Enable Debugging" +msgstr "" + +#: mod/admin.php:2024 +msgid "Log file" +msgstr "" + +#: mod/admin.php:2024 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "" + +#: mod/admin.php:2025 +msgid "Log level" +msgstr "" + +#: mod/admin.php:2028 +msgid "PHP logging" +msgstr "" + +#: mod/admin.php:2029 +msgid "" +"To enable logging of PHP errors and warnings you can add the following to " +"the .htconfig.php file of your installation. The filename set in the " +"'error_log' line is relative to the friendica top-level directory and must " +"be writeable by the web server. The option '1' for 'log_errors' and " +"'display_errors' is to enable these options, set to '0' to disable them." +msgstr "" + +#: mod/admin.php:2160 +#, php-format +msgid "Lock feature %s" +msgstr "" + +#: mod/admin.php:2168 +msgid "Manage Additional Features" +msgstr "" + +#: object/Item.php:359 +msgid "via" +msgstr "" + +#: view/theme/duepuntozero/config.php:44 +msgid "greenzero" +msgstr "" + +#: view/theme/duepuntozero/config.php:45 +msgid "purplezero" +msgstr "" + +#: view/theme/duepuntozero/config.php:46 +msgid "easterbunny" +msgstr "" + +#: view/theme/duepuntozero/config.php:47 +msgid "darkzero" +msgstr "" + +#: view/theme/duepuntozero/config.php:48 +msgid "comix" +msgstr "" + +#: view/theme/duepuntozero/config.php:49 +msgid "slackr" +msgstr "" + +#: view/theme/duepuntozero/config.php:64 +msgid "Variations" +msgstr "" + +#: view/theme/frio/config.php:47 +msgid "Default" +msgstr "" + +#: view/theme/frio/config.php:59 +msgid "Note: " +msgstr "" + +#: view/theme/frio/config.php:59 +msgid "Check image permissions if all users are allowed to visit the image" +msgstr "" + +#: view/theme/frio/config.php:67 +msgid "Select scheme" +msgstr "" + +#: view/theme/frio/config.php:68 +msgid "Navigation bar background color" +msgstr "" + +#: view/theme/frio/config.php:69 +msgid "Navigation bar icon color " +msgstr "" + +#: view/theme/frio/config.php:70 +msgid "Link color" +msgstr "" + +#: view/theme/frio/config.php:71 +msgid "Set the background color" +msgstr "" + +#: view/theme/frio/config.php:72 +msgid "Content background transparency" +msgstr "" + +#: view/theme/frio/config.php:73 +msgid "Set the background image" +msgstr "" + +#: view/theme/frio/php/Image.php:23 +msgid "Repeat the image" +msgstr "" + +#: view/theme/frio/php/Image.php:23 +msgid "Will repeat your image to fill the background." +msgstr "" + +#: view/theme/frio/php/Image.php:25 +msgid "Stretch" +msgstr "" + +#: view/theme/frio/php/Image.php:25 +msgid "Will stretch to width/height of the image." +msgstr "" + +#: view/theme/frio/php/Image.php:27 +msgid "Resize fill and-clip" +msgstr "" + +#: view/theme/frio/php/Image.php:27 +msgid "Resize to fill and retain aspect ratio." +msgstr "" + +#: view/theme/frio/php/Image.php:29 +msgid "Resize best fit" +msgstr "" + +#: view/theme/frio/php/Image.php:29 +msgid "Resize to best fit and retain aspect ratio." +msgstr "" + +#: view/theme/frio/theme.php:226 +msgid "Guest" +msgstr "" + +#: view/theme/frio/theme.php:232 +msgid "Visitor" +msgstr "" + +#: view/theme/quattro/config.php:70 +msgid "Alignment" +msgstr "" + +#: view/theme/quattro/config.php:70 +msgid "Left" +msgstr "" + +#: view/theme/quattro/config.php:70 +msgid "Center" +msgstr "" + +#: view/theme/quattro/config.php:71 +msgid "Color scheme" +msgstr "" + +#: view/theme/quattro/config.php:72 +msgid "Posts font size" +msgstr "" + +#: view/theme/quattro/config.php:73 +msgid "Textareas font size" +msgstr "" + +#: view/theme/vier/config.php:69 +msgid "Comma separated list of helper forums" +msgstr "" + +#: view/theme/vier/config.php:115 +msgid "Set style" +msgstr "" + +#: view/theme/vier/config.php:116 +msgid "Community Pages" +msgstr "" + +#: view/theme/vier/config.php:117 view/theme/vier/theme.php:149 +msgid "Community Profiles" +msgstr "" + +#: view/theme/vier/config.php:118 +msgid "Help or @NewHere ?" +msgstr "" + +#: view/theme/vier/config.php:119 view/theme/vier/theme.php:390 +msgid "Connect Services" +msgstr "" + +#: view/theme/vier/config.php:120 view/theme/vier/theme.php:197 +msgid "Find Friends" +msgstr "" + +#: view/theme/vier/config.php:121 view/theme/vier/theme.php:179 +msgid "Last users" +msgstr "" + +#: view/theme/vier/theme.php:198 +msgid "Local Directory" +msgstr "" + +#: view/theme/vier/theme.php:290 +msgid "Quick Start" +msgstr "" + +#: index.php:433 +msgid "toggle mobile" +msgstr "" + +#: boot.php:999 +msgid "Delete this item?" +msgstr "Delete this item?" + +#: boot.php:1001 +msgid "show fewer" +msgstr "Show fewer." + +#: boot.php:1729 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Update %s failed. See error logs." + +#: boot.php:1843 +msgid "Create a New Account" +msgstr "Create a new account" + +#: boot.php:1871 +msgid "Password: " +msgstr "Password: " + +#: boot.php:1872 +msgid "Remember me" +msgstr "Remember me" + +#: boot.php:1875 +msgid "Or login using OpenID: " +msgstr "Or login with OpenID: " + +#: boot.php:1881 +msgid "Forgot your password?" +msgstr "Forgot your password?" + +#: boot.php:1884 +msgid "Website Terms of Service" +msgstr "Website Terms of Service" + +#: boot.php:1885 +msgid "terms of service" +msgstr "Terms of service" + +#: boot.php:1887 +msgid "Website Privacy Policy" +msgstr "" + +#: boot.php:1888 +msgid "privacy policy" +msgstr "Privacy policy" From cebe1c00db43391f3d9ec7e40c3fe4fe020c69fa Mon Sep 17 00:00:00 2001 From: Andy H3 Date: Tue, 23 May 2017 22:05:34 +0700 Subject: [PATCH 035/125] EN-GB Translation --- view/lang/en-GB/strings.php | 2062 +++++++++++++++++++++++++++++++++++ 1 file changed, 2062 insertions(+) create mode 100644 view/lang/en-GB/strings.php diff --git a/view/lang/en-GB/strings.php b/view/lang/en-GB/strings.php new file mode 100644 index 0000000000..43a6db6dd7 --- /dev/null +++ b/view/lang/en-GB/strings.php @@ -0,0 +1,2062 @@ +strings["Forums"] = "Forums"; +$a->strings["External link to forum"] = "External link to forum"; +$a->strings["show more"] = "Show more..."; +$a->strings["System"] = "System"; +$a->strings["Network"] = "Network"; +$a->strings["Personal"] = "Personal"; +$a->strings["Home"] = "Home"; +$a->strings["Introductions"] = "Introductions"; +$a->strings["%s commented on %s's post"] = "%s commented on %s's post"; +$a->strings["%s created a new post"] = "%s posted something new"; +$a->strings["%s liked %s's post"] = "%s liked %s's post"; +$a->strings["%s disliked %s's post"] = "%s disliked %s's post"; +$a->strings["%s is attending %s's event"] = "%s is going to %s's event"; +$a->strings["%s is not attending %s's event"] = "%s is not going to %s's event"; +$a->strings["%s may attend %s's event"] = "%s may go to %s's event"; +$a->strings["%s is now friends with %s"] = "%s is now friends with %s"; +$a->strings["Friend Suggestion"] = "Friend suggestion"; +$a->strings["Friend/Connect Request"] = "Friend/Contact request"; +$a->strings["New Follower"] = "New follower"; +$a->strings["Wall Photos"] = "Wall photos"; +$a->strings["(no subject)"] = "(no subject)"; +$a->strings["noreply"] = "noreply"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s likes %2\$s's %3\$s"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s doesn't like %2\$s's %3\$s"; +$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s is going to %2\$s's %3\$s"; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s is not going to %2\$s's %3\$s"; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s may go to %2\$s's %3\$s"; +$a->strings["photo"] = "photo"; +$a->strings["status"] = "status"; +$a->strings["event"] = "event"; +$a->strings["[no subject]"] = "[no subject]"; +$a->strings["Nothing new here"] = "Nothing new here"; +$a->strings["Clear notifications"] = "Clear notifications"; +$a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, content"; +$a->strings["Logout"] = "Logout"; +$a->strings["End this session"] = "End this session"; +$a->strings["Status"] = "Status"; +$a->strings["Your posts and conversations"] = "My posts and conversations"; +$a->strings["Profile"] = "Profile"; +$a->strings["Your profile page"] = "My profile page"; +$a->strings["Photos"] = "Photos"; +$a->strings["Your photos"] = "My photos"; +$a->strings["Videos"] = "Videos"; +$a->strings["Your videos"] = "My videos"; +$a->strings["Events"] = "Events"; +$a->strings["Your events"] = "My events"; +$a->strings["Personal notes"] = "Personal notes"; +$a->strings["Your personal notes"] = "My personal notes"; +$a->strings["Login"] = "Login"; +$a->strings["Sign in"] = "Sign in"; +$a->strings["Home Page"] = "Home page"; +$a->strings["Register"] = "Register"; +$a->strings["Create an account"] = "Create an account"; +$a->strings["Help"] = "Help"; +$a->strings["Help and documentation"] = "Help and documentation"; +$a->strings["Apps"] = "Apps"; +$a->strings["Addon applications, utilities, games"] = "Addon applications, utilities, games"; +$a->strings["Search"] = "Search"; +$a->strings["Search site content"] = "Search site content"; +$a->strings["Full Text"] = "Full text"; +$a->strings["Tags"] = "Tags"; +$a->strings["Contacts"] = "Contacts"; +$a->strings["Community"] = "Community"; +$a->strings["Conversations on this site"] = "Public conversations on this site"; +$a->strings["Conversations on the network"] = "Conversations on the network"; +$a->strings["Events and Calendar"] = "Events and calendar"; +$a->strings["Directory"] = "Directory"; +$a->strings["People directory"] = "People directory"; +$a->strings["Information"] = "Information"; +$a->strings["Information about this friendica instance"] = "Information about this Friendica instance"; +$a->strings["Conversations from your friends"] = "My friends' conversations"; +$a->strings["Network Reset"] = "Network reset"; +$a->strings["Load Network page with no filters"] = "Load network page without filters"; +$a->strings["Friend Requests"] = "Friend requests"; +$a->strings["Notifications"] = "Notifications"; +$a->strings["See all notifications"] = "See all notifications"; +$a->strings["Mark as seen"] = "Mark as seen"; +$a->strings["Mark all system notifications seen"] = "Mark all system notifications seen"; +$a->strings["Messages"] = "Messages"; +$a->strings["Private mail"] = "Private messages"; +$a->strings["Inbox"] = "Inbox"; +$a->strings["Outbox"] = "Outbox"; +$a->strings["New Message"] = "New Message"; +$a->strings["Manage"] = "Manage"; +$a->strings["Manage other pages"] = "Manage other pages"; +$a->strings["Delegations"] = "Delegations"; +$a->strings["Delegate Page Management"] = "Delegate page management"; +$a->strings["Settings"] = "Settings"; +$a->strings["Account settings"] = "Account settings"; +$a->strings["Profiles"] = "Profiles"; +$a->strings["Manage/Edit Profiles"] = "Manage/Edit profiles"; +$a->strings["Manage/edit friends and contacts"] = "Manage/Edit friends and contacts"; +$a->strings["Admin"] = "Admin"; +$a->strings["Site setup and configuration"] = "Site setup and configuration"; +$a->strings["Navigation"] = "Navigation"; +$a->strings["Site map"] = "Site map"; +$a->strings["Click here to upgrade."] = "Click here to upgrade."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "This action exceeds the limits set by your subscription plan."; +$a->strings["This action is not available under your subscription plan."] = "This action is not available under your subscription plan."; +$a->strings["Male"] = "Male"; +$a->strings["Female"] = "Female"; +$a->strings["Currently Male"] = "Currently Male"; +$a->strings["Currently Female"] = "Currently Female"; +$a->strings["Mostly Male"] = "Mostly Male"; +$a->strings["Mostly Female"] = "Mostly Female"; +$a->strings["Transgender"] = "Transgender"; +$a->strings["Intersex"] = "Intersex"; +$a->strings["Transsexual"] = "Transsexual"; +$a->strings["Hermaphrodite"] = "Hermaphrodite"; +$a->strings["Neuter"] = "Neuter"; +$a->strings["Non-specific"] = "Non-specific"; +$a->strings["Other"] = "Other"; +$a->strings["Undecided"] = array( + 0 => "Undecided", + 1 => "Undecided", +); +$a->strings["Males"] = "Males"; +$a->strings["Females"] = "Females"; +$a->strings["Gay"] = "Gay"; +$a->strings["Lesbian"] = "Lesbian"; +$a->strings["No Preference"] = "No Preference"; +$a->strings["Bisexual"] = "Bisexual"; +$a->strings["Autosexual"] = "Auto-sexual"; +$a->strings["Abstinent"] = "Abstinent"; +$a->strings["Virgin"] = "Virgin"; +$a->strings["Deviant"] = "Deviant"; +$a->strings["Fetish"] = "Fetish"; +$a->strings["Oodles"] = "Oodles"; +$a->strings["Nonsexual"] = "Asexual"; +$a->strings["Single"] = "Single"; +$a->strings["Lonely"] = "Lonely"; +$a->strings["Available"] = "Available"; +$a->strings["Unavailable"] = "Unavailable"; +$a->strings["Has crush"] = "Having a crush"; +$a->strings["Infatuated"] = "Infatuated"; +$a->strings["Dating"] = "Dating"; +$a->strings["Unfaithful"] = "Unfaithful"; +$a->strings["Sex Addict"] = "Sex addict"; +$a->strings["Friends"] = "Friends"; +$a->strings["Friends/Benefits"] = "Friends with benefits"; +$a->strings["Casual"] = "Casual"; +$a->strings["Engaged"] = "Engaged"; +$a->strings["Married"] = "Married"; +$a->strings["Imaginarily married"] = "Imaginarily married"; +$a->strings["Partners"] = "Partners"; +$a->strings["Cohabiting"] = "Cohabiting"; +$a->strings["Common law"] = "Common law spouse"; +$a->strings["Happy"] = "Happy"; +$a->strings["Not looking"] = "Not looking"; +$a->strings["Swinger"] = "Swinger"; +$a->strings["Betrayed"] = "Betrayed"; +$a->strings["Separated"] = "Separated"; +$a->strings["Unstable"] = "Unstable"; +$a->strings["Divorced"] = "Divorced"; +$a->strings["Imaginarily divorced"] = "Imaginarily divorced"; +$a->strings["Widowed"] = "Widowed"; +$a->strings["Uncertain"] = "Uncertain"; +$a->strings["It's complicated"] = "It's complicated"; +$a->strings["Don't care"] = "Don't care"; +$a->strings["Ask me"] = "Ask me"; +$a->strings["Welcome "] = "Welcome "; +$a->strings["Please upload a profile photo."] = "Please upload a profile photo."; +$a->strings["Welcome back "] = "Welcome back "; +$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "The form security token was incorrect. This probably happened because the form has not been submitted within 3 hours."; +$a->strings["Error decoding account file"] = "Error decoding account file"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Error! No version data in file! Is this a Friendica account file?"; +$a->strings["Error! Cannot check nickname"] = "Error! Cannot check nickname."; +$a->strings["User '%s' already exists on this server!"] = "User '%s' already exists on this server!"; +$a->strings["User creation error"] = "User creation error"; +$a->strings["User profile creation error"] = "User profile creation error"; +$a->strings["%d contact not imported"] = array( + 0 => "%d contact not imported", + 1 => "%d contacts not imported", +); +$a->strings["Done. You can now login with your username and password"] = "Done. You can now login with your username and password"; +$a->strings["View Profile"] = "View profile"; +$a->strings["Connect/Follow"] = "Connect/Follow"; +$a->strings["View Status"] = "View status"; +$a->strings["View Photos"] = "View photos"; +$a->strings["Network Posts"] = "Network posts"; +$a->strings["View Contact"] = "View contact"; +$a->strings["Drop Contact"] = "Drop contact"; +$a->strings["Send PM"] = "Send PM"; +$a->strings["Poke"] = "Poke"; +$a->strings["Organisation"] = "Organisation"; +$a->strings["News"] = "News"; +$a->strings["Forum"] = "Forum"; +$a->strings["Post to Email"] = "Post to email"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Connectors are disabled since \"%s\" is enabled."; +$a->strings["Hide your profile details from unknown viewers?"] = "Hide profile details from unknown viewers?"; +$a->strings["Visible to everybody"] = "Visible to everybody"; +$a->strings["show"] = "show"; +$a->strings["don't show"] = "don't show"; +$a->strings["CC: email addresses"] = "CC: email addresses"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Example: bob@example.com, mary@example.com"; +$a->strings["Permissions"] = "Permissions"; +$a->strings["Close"] = "Close"; +$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Daily posting limit of %d posts reached. This post was rejected."; +$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Weekly posting limit of %d posts reached. This post was rejected."; +$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Monthly posting limit of %d posts reached. This post was rejected."; +$a->strings["Logged out."] = "Logged out."; +$a->strings["Login failed."] = "Login failed."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."; +$a->strings["The error message was:"] = "The error message was:"; +$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +$a->strings["Starts:"] = "Starts:"; +$a->strings["Finishes:"] = "Finishes:"; +$a->strings["Location:"] = "Location:"; +$a->strings["Image/photo"] = "Image/Photo"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["$1 wrote:"] = "$1 wrote:"; +$a->strings["Encrypted content"] = "Encrypted content"; +$a->strings["Invalid source protocol"] = "Invalid source protocol"; +$a->strings["Invalid link protocol"] = "Invalid link protocol"; +$a->strings["Unknown | Not categorised"] = "Unknown | Not categorised"; +$a->strings["Block immediately"] = "Block immediately"; +$a->strings["Shady, spammer, self-marketer"] = "Shady, spammer, self-marketer"; +$a->strings["Known to me, but no opinion"] = "Known to me, but no opinion"; +$a->strings["OK, probably harmless"] = "OK, probably harmless"; +$a->strings["Reputable, has my trust"] = "Reputable, has my trust"; +$a->strings["Frequently"] = "Frequently"; +$a->strings["Hourly"] = "Hourly"; +$a->strings["Twice daily"] = "Twice daily"; +$a->strings["Daily"] = "Daily"; +$a->strings["Weekly"] = "Weekly"; +$a->strings["Monthly"] = "Monthly"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Email"] = "Email"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Google+"] = "Google+"; +$a->strings["pump.io"] = "Pump.io"; +$a->strings["Twitter"] = "Twitter"; +$a->strings["Diaspora Connector"] = "Diaspora connector"; +$a->strings["GNU Social Connector"] = "GNU Social connector"; +$a->strings["pnut"] = "Pnut"; +$a->strings["App.net"] = "App.net"; +$a->strings["Add New Contact"] = "Add new contact"; +$a->strings["Enter address or web location"] = "Enter address or web location"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Example: jo@example.com, http://example.com/jo"; +$a->strings["Connect"] = "Connect"; +$a->strings["%d invitation available"] = array( + 0 => "%d invitation available", + 1 => "%d invitations available", +); +$a->strings["Find People"] = "Find people"; +$a->strings["Enter name or interest"] = "Enter name or interest"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Examples: Robert Morgenstein, fishing"; +$a->strings["Find"] = "Find"; +$a->strings["Friend Suggestions"] = "Friend suggestions"; +$a->strings["Similar Interests"] = "Similar interests"; +$a->strings["Random Profile"] = "Random profile"; +$a->strings["Invite Friends"] = "Invite friends"; +$a->strings["Networks"] = "Networks"; +$a->strings["All Networks"] = "All networks"; +$a->strings["Saved Folders"] = "Saved Folders"; +$a->strings["Everything"] = "Everything"; +$a->strings["Categories"] = "Categories"; +$a->strings["%d contact in common"] = array( + 0 => "%d contact in common", + 1 => "%d contacts in common", +); +$a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s goes to %2\$s's %3\$s"; +$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s doesn't go %2\$s's %3\$s"; +$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s might go to %2\$s's %3\$s"; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s is now friends with %2\$s"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s poked %2\$s"; +$a->strings["%1\$s is currently %2\$s"] = "%1\$s is currently %2\$s"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s tagged %2\$s's %3\$s with %4\$s"; +$a->strings["post/item"] = "Post/Item"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s marked %2\$s's %3\$s as favourite"; +$a->strings["Likes"] = "Likes"; +$a->strings["Dislikes"] = "Dislikes"; +$a->strings["Attending"] = array( + 0 => "Attending", + 1 => "Attending", +); +$a->strings["Not attending"] = "Not attending"; +$a->strings["Might attend"] = "Might attend"; +$a->strings["Select"] = "Select"; +$a->strings["Delete"] = "Delete"; +$a->strings["View %s's profile @ %s"] = "View %s's profile @ %s"; +$a->strings["Categories:"] = "Categories:"; +$a->strings["Filed under:"] = "Filed under:"; +$a->strings["%s from %s"] = "%s from %s"; +$a->strings["View in context"] = "View in context"; +$a->strings["Please wait"] = "Please wait"; +$a->strings["remove"] = "Remove"; +$a->strings["Delete Selected Items"] = "Delete selected items"; +$a->strings["Follow Thread"] = "Follow thread"; +$a->strings["%s likes this."] = "%s likes this."; +$a->strings["%s doesn't like this."] = "%s doesn't like this."; +$a->strings["%s attends."] = "%s attends."; +$a->strings["%s doesn't attend."] = "%s doesn't attend."; +$a->strings["%s attends maybe."] = "%s may attend."; +$a->strings["and"] = "and"; +$a->strings[", and %d other people"] = ", and %d other people"; +$a->strings["%2\$d people like this"] = "%2\$d people like this"; +$a->strings["%s like this."] = "%s like this."; +$a->strings["%2\$d people don't like this"] = "%2\$d people don't like this"; +$a->strings["%s don't like this."] = "%s don't like this."; +$a->strings["%2\$d people attend"] = "%2\$d people attend"; +$a->strings["%s attend."] = "%s attend."; +$a->strings["%2\$d people don't attend"] = "%2\$d people don't attend"; +$a->strings["%s don't attend."] = "%s don't attend."; +$a->strings["%2\$d people attend maybe"] = "%2\$d people attend maybe"; +$a->strings["%s anttend maybe."] = "%s attend maybe."; +$a->strings["Visible to everybody"] = "Visible to everybody"; +$a->strings["Please enter a link URL:"] = "Please enter a link URL:"; +$a->strings["Please enter a video link/URL:"] = "Please enter a video link/URL:"; +$a->strings["Please enter an audio link/URL:"] = "Please enter an audio link/URL:"; +$a->strings["Tag term:"] = "Tag term:"; +$a->strings["Save to Folder:"] = "Save to folder:"; +$a->strings["Where are you right now?"] = "Where are you right now?"; +$a->strings["Delete item(s)?"] = "Delete item(s)?"; +$a->strings["Share"] = "Share"; +$a->strings["Upload photo"] = "Upload photo"; +$a->strings["upload photo"] = "upload photo"; +$a->strings["Attach file"] = "Attach file"; +$a->strings["attach file"] = "attach file"; +$a->strings["Insert web link"] = "Insert web link"; +$a->strings["web link"] = "web link"; +$a->strings["Insert video link"] = "Insert video link"; +$a->strings["video link"] = "video link"; +$a->strings["Insert audio link"] = "Insert audio link"; +$a->strings["audio link"] = "audio link"; +$a->strings["Set your location"] = "Set your location"; +$a->strings["set location"] = "set location"; +$a->strings["Clear browser location"] = "Clear browser location"; +$a->strings["clear location"] = "clear location"; +$a->strings["Set title"] = "Set title"; +$a->strings["Categories (comma-separated list)"] = "Categories (comma-separated list)"; +$a->strings["Permission settings"] = "Permission settings"; +$a->strings["permissions"] = "permissions"; +$a->strings["Public post"] = "Public post"; +$a->strings["Preview"] = "Preview"; +$a->strings["Cancel"] = "Cancel"; +$a->strings["Post to Groups"] = "Post to groups"; +$a->strings["Post to Contacts"] = "Post to contacts"; +$a->strings["Private post"] = "Private post"; +$a->strings["Message"] = "Message"; +$a->strings["Browser"] = "Browser"; +$a->strings["View all"] = "View all"; +$a->strings["Like"] = array( + 0 => "Like", + 1 => "Likes", +); +$a->strings["Dislike"] = array( + 0 => "Dislike", + 1 => "Dislikes", +); +$a->strings["Not Attending"] = array( + 0 => "Not attending", + 1 => "Not attending", +); +$a->strings["Miscellaneous"] = "Miscellaneous"; +$a->strings["Birthday:"] = "Birthday:"; +$a->strings["Age: "] = "Age: "; +$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD or MM-DD"; +$a->strings["never"] = "never"; +$a->strings["less than a second ago"] = "less than a second ago"; +$a->strings["year"] = "year"; +$a->strings["years"] = "years"; +$a->strings["month"] = "month"; +$a->strings["months"] = "months"; +$a->strings["week"] = "week"; +$a->strings["weeks"] = "weeks"; +$a->strings["day"] = "day"; +$a->strings["days"] = "days"; +$a->strings["hour"] = "hour"; +$a->strings["hours"] = "hours"; +$a->strings["minute"] = "minute"; +$a->strings["minutes"] = "minutes"; +$a->strings["second"] = "second"; +$a->strings["seconds"] = "seconds"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s ago"; +$a->strings["%s's birthday"] = "%s's birthday"; +$a->strings["Happy Birthday %s"] = "Happy Birthday, %s!"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Cannot locate DNS info for database server '%s'"; +$a->strings["Friendica Notification"] = "Friendica notification"; +$a->strings["Thank You,"] = "Thank you"; +$a->strings["%s Administrator"] = "%s Administrator"; +$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:Notify] New mail received at %s"; +$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s sent you a new private message at %2\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s sent you %2\$s."; +$a->strings["a private message"] = "a private message"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Please visit %s to view or reply to your private messages."; +$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s commented on [url=%2\$s]a %3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s commented on [url=%2\$s]your %3\$s[/url]"; +$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"; +$a->strings["%s commented on an item/conversation you have been following."] = "%s commented on an item/conversation you have been following."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Please visit %s to view or reply to the conversation."; +$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s posted to your profile wall"; +$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s posted to your profile wall at %2\$s"; +$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s posted to [url=%2\$s]your wall[/url]"; +$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s tagged you"; +$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s tagged you at %2\$s"; +$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]tagged you[/url]."; +$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s shared a new post"; +$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s shared a new post at %2\$s"; +$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]shared a post[/url]."; +$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s poked you"; +$a->strings["%1\$s poked you at %2\$s"] = "%1\$s poked you at %2\$s"; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]poked you[/url]."; +$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notify] %s tagged your post"; +$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s tagged your post at %2\$s"; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s tagged [url=%2\$s]your post[/url]"; +$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notify] Introduction received"; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "You've received an introduction from '%1\$s' at %2\$s"; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "You've received [url=%1\$s]an introduction[/url] from %2\$s."; +$a->strings["You may visit their profile at %s"] = "You may visit their profile at %s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "Please visit %s to approve or reject the introduction."; +$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Notify] A new person is sharing with you"; +$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s is sharing with you at %2\$s"; +$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Notify] You have a new follower"; +$a->strings["You have a new follower at %2\$s : %1\$s"] = "You have a new follower at %2\$s : %1\$s"; +$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notify] Friend suggestion received"; +$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "You've received a friend suggestion from '%1\$s' at %2\$s"; +$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."; +$a->strings["Name:"] = "Name:"; +$a->strings["Photo:"] = "Photo:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Please visit %s to approve or reject the suggestion."; +$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Notify] Connection accepted"; +$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' has accepted your connection request at %2\$s"; +$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s has accepted your [url=%1\$s]connection request[/url]."; +$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "You are now mutual friends and may exchange status updates, photos, and email without restriction."; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Please visit %s if you wish to make any changes to this relationship."; +$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' has chosen to accept you as \"Follower\". This restricts some forms of communication, such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."; +$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Please visit %s if you wish to make any changes to this relationship."; +$a->strings["[Friendica System:Notify] registration request"] = "[Friendica:Notify] registration request"; +$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "You've received a registration request from '%1\$s' at %2\$s."; +$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "You've received a [url=%1\$s]registration request[/url] from %2\$s."; +$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"; +$a->strings["Please visit %s to approve or reject the request."] = "Please visit %s to approve or reject the request."; +$a->strings["all-day"] = "All-day"; +$a->strings["Sun"] = "Sun"; +$a->strings["Mon"] = "Mon"; +$a->strings["Tue"] = "Tue"; +$a->strings["Wed"] = "Wed"; +$a->strings["Thu"] = "Thu"; +$a->strings["Fri"] = "Fri"; +$a->strings["Sat"] = "Sat"; +$a->strings["Sunday"] = "Sunday"; +$a->strings["Monday"] = "Monday"; +$a->strings["Tuesday"] = "Tuesday"; +$a->strings["Wednesday"] = "Wednesday"; +$a->strings["Thursday"] = "Thursday"; +$a->strings["Friday"] = "Friday"; +$a->strings["Saturday"] = "Saturday"; +$a->strings["Jan"] = "Jan"; +$a->strings["Feb"] = "Feb"; +$a->strings["Mar"] = "Mar"; +$a->strings["Apr"] = "Apr"; +$a->strings["May"] = "May"; +$a->strings["Jun"] = "Jun"; +$a->strings["Jul"] = "Jul"; +$a->strings["Aug"] = "Aug"; +$a->strings["Sept"] = "Sep"; +$a->strings["Oct"] = "Oct"; +$a->strings["Nov"] = "Nov"; +$a->strings["Dec"] = "Dec"; +$a->strings["January"] = "January"; +$a->strings["February"] = "February"; +$a->strings["March"] = "March"; +$a->strings["April"] = "April"; +$a->strings["June"] = "June"; +$a->strings["July"] = "July"; +$a->strings["August"] = "August"; +$a->strings["September"] = "September"; +$a->strings["October"] = "October"; +$a->strings["November"] = "November"; +$a->strings["December"] = "December"; +$a->strings["today"] = "today"; +$a->strings["No events to display"] = "No events to display"; +$a->strings["l, F j"] = "l, F j"; +$a->strings["Edit event"] = "Edit event"; +$a->strings["Delete event"] = "Delete event"; +$a->strings["link to source"] = "Link to source"; +$a->strings["Export"] = "Export"; +$a->strings["Export calendar as ical"] = "Export calendar as ical"; +$a->strings["Export calendar as csv"] = "Export calendar as csv"; +$a->strings["General Features"] = "General"; +$a->strings["Multiple Profiles"] = "Multiple profiles"; +$a->strings["Ability to create multiple profiles"] = "Ability to create multiple profiles"; +$a->strings["Photo Location"] = "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."] = "Photo metadata is normally removed. This extracts the location (if present) prior to removing metadata and links it to a map."; +$a->strings["Export Public Calendar"] = "Export public calendar"; +$a->strings["Ability for visitors to download the public calendar"] = "Ability for visitors to download the public calendar"; +$a->strings["Post Composition Features"] = "Post composition"; +$a->strings["Post Preview"] = "Post preview"; +$a->strings["Allow previewing posts and comments before publishing them"] = "Allow previewing posts and comments before publishing them"; +$a->strings["Auto-mention Forums"] = "Auto-mention forums"; +$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Add/Remove mention when a forum page is selected or deselected in the ACL window."; +$a->strings["Network Sidebar Widgets"] = "Network sidebars"; +$a->strings["Search by Date"] = "Search by date"; +$a->strings["Ability to select posts by date ranges"] = "Ability to select posts by date ranges"; +$a->strings["List Forums"] = "List forums"; +$a->strings["Enable widget to display the forums your are connected with"] = "Enable widget to display the forums your are connected with"; +$a->strings["Group Filter"] = "Group filter"; +$a->strings["Enable widget to display Network posts only from selected group"] = "Enable widget to display network posts only from selected group"; +$a->strings["Network Filter"] = "Network filter"; +$a->strings["Enable widget to display Network posts only from selected network"] = "Enable widget to display network posts only from selected network"; +$a->strings["Saved Searches"] = "Saved searches"; +$a->strings["Save search terms for re-use"] = "Save search terms for re-use"; +$a->strings["Network Tabs"] = "Network tabs"; +$a->strings["Network Personal Tab"] = "Network personal tab"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Enable tab to display only network posts that you've interacted with"; +$a->strings["Network New Tab"] = "Network new tab"; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Enable tab to display only new network posts (last 12 hours)"; +$a->strings["Network Shared Links Tab"] = "Network shared links tab"; +$a->strings["Enable tab to display only Network posts with links in them"] = "Enable tab to display only network posts with links in them"; +$a->strings["Post/Comment Tools"] = "Post/Comment tools"; +$a->strings["Multiple Deletion"] = "Multiple deletion"; +$a->strings["Select and delete multiple posts/comments at once"] = "Select and delete multiple posts/comments at once"; +$a->strings["Edit Sent Posts"] = "Edit sent posts"; +$a->strings["Edit and correct posts and comments after sending"] = "Ability to editing posts and comments after sending"; +$a->strings["Tagging"] = "Tagging"; +$a->strings["Ability to tag existing posts"] = "Ability to tag existing posts"; +$a->strings["Post Categories"] = "Post categories"; +$a->strings["Add categories to your posts"] = "Add categories to your posts"; +$a->strings["Ability to file posts under folders"] = "Ability to file posts under folders"; +$a->strings["Dislike Posts"] = "Dislike posts"; +$a->strings["Ability to dislike posts/comments"] = "Ability to dislike posts/comments"; +$a->strings["Star Posts"] = "Star posts"; +$a->strings["Ability to mark special posts with a star indicator"] = "Ability to highlight posts with a star"; +$a->strings["Mute Post Notifications"] = "Mute post notifications"; +$a->strings["Ability to mute notifications for a thread"] = "Ability to mute notifications for a thread"; +$a->strings["Advanced Profile Settings"] = "Advanced profiles"; +$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Show visitors of public community forums at the advanced profile page"; +$a->strings["Disallowed profile URL."] = "Disallowed profile URL."; +$a->strings["Blocked domain"] = "Blocked domain"; +$a->strings["Connect URL missing."] = "Connect URL missing."; +$a->strings["This site is not configured to allow communications with other networks."] = "This site is not configured to allow communications with other networks."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "No compatible communication protocols or feeds were discovered."; +$a->strings["The profile address specified does not provide adequate information."] = "The profile address specified does not provide adequate information."; +$a->strings["An author or name was not found."] = "An author or name was not found."; +$a->strings["No browser URL could be matched to this address."] = "No browser URL could be matched to this address."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Unable to match @-style identity address with a known protocol or email contact."; +$a->strings["Use mailto: in front of address to force email check."] = "Use mailto: in front of address to force email check."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "The profile address specified belongs to a network which has been disabled on this site."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Limited profile: This person will be unable to receive direct/private messages from you."; +$a->strings["Unable to retrieve contact information."] = "Unable to retrieve contact information."; +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "A deleted group with this name has been revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."; +$a->strings["Default privacy group for new contacts"] = "Default privacy group for new contacts"; +$a->strings["Everybody"] = "Everybody"; +$a->strings["edit"] = "edit"; +$a->strings["Groups"] = "Groups"; +$a->strings["Edit groups"] = "Edit groups"; +$a->strings["Edit group"] = "Edit group"; +$a->strings["Create a new group"] = "Create new group"; +$a->strings["Group Name: "] = "Group name: "; +$a->strings["Contacts not in any group"] = "Contacts not in any group"; +$a->strings["add"] = "add"; +$a->strings["Requested account is not available."] = "Requested account is unavailable."; +$a->strings["Requested profile is not available."] = "Requested profile is unavailable."; +$a->strings["Edit profile"] = "Edit profile"; +$a->strings["Atom feed"] = "Atom feed"; +$a->strings["Manage/edit profiles"] = "Manage/Edit profiles"; +$a->strings["Change profile photo"] = "Change profile photo"; +$a->strings["Create New Profile"] = "Create new profile"; +$a->strings["Profile Image"] = "Profile image"; +$a->strings["visible to everybody"] = "Visible to everybody"; +$a->strings["Edit visibility"] = "Edit visibility"; +$a->strings["Gender:"] = "Gender:"; +$a->strings["Status:"] = "Status:"; +$a->strings["Homepage:"] = "Home page:"; +$a->strings["About:"] = "About:"; +$a->strings["XMPP:"] = "XMPP:"; +$a->strings["Network:"] = "Network:"; +$a->strings["g A l F d"] = "g A l F d"; +$a->strings["F d"] = "F d"; +$a->strings["[today]"] = "[today]"; +$a->strings["Birthday Reminders"] = "Birthday reminders"; +$a->strings["Birthdays this week:"] = "Birthdays this week:"; +$a->strings["[No description]"] = "[No description]"; +$a->strings["Event Reminders"] = "Event reminders"; +$a->strings["Events this week:"] = "Events this week:"; +$a->strings["Full Name:"] = "Full name:"; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$a->strings["Age:"] = "Age:"; +$a->strings["for %1\$d %2\$s"] = "for %1\$d %2\$s"; +$a->strings["Sexual Preference:"] = "Sexual preference:"; +$a->strings["Hometown:"] = "Home town:"; +$a->strings["Tags:"] = "Tags:"; +$a->strings["Political Views:"] = "Political views:"; +$a->strings["Religion:"] = "Religion:"; +$a->strings["Hobbies/Interests:"] = "Hobbies/Interests:"; +$a->strings["Likes:"] = "Likes:"; +$a->strings["Dislikes:"] = "Dislikes:"; +$a->strings["Contact information and Social Networks:"] = "Contact information and social networks:"; +$a->strings["Musical interests:"] = "Musical interests:"; +$a->strings["Books, literature:"] = "Books/Literature:"; +$a->strings["Television:"] = "Television:"; +$a->strings["Film/dance/culture/entertainment:"] = "Arts, film, dance, culture, entertainment:"; +$a->strings["Love/Romance:"] = "Love/Romance:"; +$a->strings["Work/employment:"] = "Work/Employment:"; +$a->strings["School/education:"] = "School/Education:"; +$a->strings["Forums:"] = "Forums:"; +$a->strings["Basic"] = "Basic"; +$a->strings["Advanced"] = "Advanced"; +$a->strings["Status Messages and Posts"] = "Status Messages and Posts"; +$a->strings["Profile Details"] = "Profile Details"; +$a->strings["Photo Albums"] = "Photo Albums"; +$a->strings["Personal Notes"] = "Personal notes"; +$a->strings["Only You Can See This"] = "Only you can see this."; +$a->strings["view full size"] = "view full size"; +$a->strings["Embedded content"] = "Embedded content"; +$a->strings["Embedding disabled"] = "Embedding disabled"; +$a->strings["Contact Photos"] = "Contact photos"; +$a->strings["Passwords do not match. Password unchanged."] = "Passwords do not match. Password unchanged."; +$a->strings["An invitation is required."] = "An invitation is required."; +$a->strings["Invitation could not be verified."] = "Invitation could not be verified."; +$a->strings["Invalid OpenID url"] = "Invalid OpenID URL"; +$a->strings["Please enter the required information."] = "Please enter the required information."; +$a->strings["Please use a shorter name."] = "Please use a shorter name."; +$a->strings["Name too short."] = "Name too short."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "That doesn't appear to be your full (i.e first and last) name."; +$a->strings["Your email domain is not among those allowed on this site."] = "Your email domain is not allowed on this site."; +$a->strings["Not a valid email address."] = "Not a valid email address."; +$a->strings["Cannot use that email."] = "Cannot use that email."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."; +$a->strings["Nickname is already registered. Please choose another."] = "Nickname is already registered. Please choose another."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Nickname was once registered here and may not be re-used. Please choose another."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "SERIOUS ERROR: Generation of security keys failed."; +$a->strings["An error occurred during registration. Please try again."] = "An error occurred during registration. Please try again."; +$a->strings["default"] = "default"; +$a->strings["An error occurred creating your default profile. Please try again."] = "An error occurred creating your default profile. Please try again."; +$a->strings["Profile Photos"] = "Profile photos"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending approval by the administrator.\n\t"; +$a->strings["Registration at %s"] = "Registration at %s"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"; +$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\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 for your account \"Settings\" 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 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, these settings may help to\n\t\tmake new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."; +$a->strings["Registration details for %s"] = "Registration details for %s"; +$a->strings["There are no tables on MyISAM."] = "There are no tables on MyISAM."; +$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\tThe Friendica 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\n might be invalid."; +$a->strings["The error message is\n[pre]%s[/pre]"] = "The error message is\n[pre]%s[/pre]"; +$a->strings["\nError %d occurred during database update:\n%s\n"] = "\nError %d occurred during database update:\n%s\n"; +$a->strings["Errors encountered performing database changes: "] = "Errors encountered performing database changes: "; +$a->strings[": Database update"] = ": Database update"; +$a->strings["%s: updating %s table."] = "%s: updating %s table."; +$a->strings["%s\\'s birthday"] = "%s\\'s birthday"; +$a->strings["Sharing notification from Diaspora network"] = "Sharing notification from Diaspora network"; +$a->strings["Attachments:"] = "Attachments:"; +$a->strings["[Name Withheld]"] = "[Name Withheld]"; +$a->strings["Item not found."] = "Item not found."; +$a->strings["Do you really want to delete this item?"] = "Do you really want to delete this item?"; +$a->strings["Yes"] = "Yes"; +$a->strings["Permission denied."] = "Permission denied."; +$a->strings["Archives"] = "Archives"; +$a->strings["%s is now following %s."] = "%s is now following %s."; +$a->strings["following"] = "following"; +$a->strings["%s stopped following %s."] = "%s stopped following %s."; +$a->strings["stopped following"] = "stopped following"; +$a->strings["newer"] = "Later posts"; +$a->strings["older"] = "Earlier posts"; +$a->strings["first"] = "first"; +$a->strings["prev"] = "prev"; +$a->strings["next"] = "next"; +$a->strings["last"] = "last"; +$a->strings["Loading more entries..."] = "Loading more entries..."; +$a->strings["The end"] = "The end"; +$a->strings["No contacts"] = "No contacts"; +$a->strings["%d Contact"] = array( + 0 => "%d contact", + 1 => "%d contacts", +); +$a->strings["View Contacts"] = "View contacts"; +$a->strings["Save"] = "Save"; +$a->strings["poke"] = "poke"; +$a->strings["poked"] = "poked"; +$a->strings["ping"] = "ping"; +$a->strings["pinged"] = "pinged"; +$a->strings["prod"] = "prod"; +$a->strings["prodded"] = "prodded"; +$a->strings["slap"] = "slap"; +$a->strings["slapped"] = "slapped"; +$a->strings["finger"] = "finger"; +$a->strings["fingered"] = "fingered"; +$a->strings["rebuff"] = "rebuff"; +$a->strings["rebuffed"] = "rebuffed"; +$a->strings["happy"] = "happy"; +$a->strings["sad"] = "sad"; +$a->strings["mellow"] = "mellow"; +$a->strings["tired"] = "tired"; +$a->strings["perky"] = "perky"; +$a->strings["angry"] = "angry"; +$a->strings["stupified"] = "stupified"; +$a->strings["puzzled"] = "puzzled"; +$a->strings["interested"] = "interested"; +$a->strings["bitter"] = "bitter"; +$a->strings["cheerful"] = "cheerful"; +$a->strings["alive"] = "alive"; +$a->strings["annoyed"] = "annoyed"; +$a->strings["anxious"] = "anxious"; +$a->strings["cranky"] = "cranky"; +$a->strings["disturbed"] = "disturbed"; +$a->strings["frustrated"] = "frustrated"; +$a->strings["motivated"] = "motivated"; +$a->strings["relaxed"] = "relaxed"; +$a->strings["surprised"] = "surprised"; +$a->strings["View Video"] = "View video"; +$a->strings["bytes"] = "bytes"; +$a->strings["Click to open/close"] = "Click to open/close"; +$a->strings["View on separate page"] = "View on separate page"; +$a->strings["view on separate page"] = "view on separate page"; +$a->strings["activity"] = "activity"; +$a->strings["comment"] = array( + 0 => "comment", + 1 => "comments", +); +$a->strings["post"] = "post"; +$a->strings["Item filed"] = "Item filed"; +$a->strings["No friends to display."] = "No friends to display."; +$a->strings["Authorize application connection"] = "Authorize application connection"; +$a->strings["Return to your app and insert this Securty Code:"] = "Return to your app and insert this security code:"; +$a->strings["Please login to continue."] = "Please login to continue."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Do you want to authorize this application to access your posts and contacts and create new posts for you?"; +$a->strings["No"] = "No"; +$a->strings["You must be logged in to use addons. "] = "You must be logged in to use addons. "; +$a->strings["Applications"] = "Applications"; +$a->strings["No installed applications."] = "No installed applications."; +$a->strings["Item not available."] = "Item not available."; +$a->strings["Item was not found."] = "Item was not found."; +$a->strings["The post was created"] = "The post was created"; +$a->strings["No contacts in common."] = "No contacts in common."; +$a->strings["Common Friends"] = "Common friends"; +$a->strings["%d contact edited."] = array( + 0 => "%d contact edited.", + 1 => "%d contacts edited.", +); +$a->strings["Could not access contact record."] = "Could not access contact record."; +$a->strings["Could not locate selected profile."] = "Could not locate selected profile."; +$a->strings["Contact updated."] = "Contact updated."; +$a->strings["Failed to update contact record."] = "Failed to update contact record."; +$a->strings["Contact has been blocked"] = "Contact has been blocked"; +$a->strings["Contact has been unblocked"] = "Contact has been unblocked"; +$a->strings["Contact has been ignored"] = "Contact has been ignored"; +$a->strings["Contact has been unignored"] = "Contact has been unignored"; +$a->strings["Contact has been archived"] = "Contact has been archived"; +$a->strings["Contact has been unarchived"] = "Contact has been unarchived"; +$a->strings["Drop contact"] = "Drop contact"; +$a->strings["Do you really want to delete this contact?"] = "Do you really want to delete this contact?"; +$a->strings["Contact has been removed."] = "Contact has been removed."; +$a->strings["You are mutual friends with %s"] = "You are mutual friends with %s"; +$a->strings["You are sharing with %s"] = "You are sharing with %s"; +$a->strings["%s is sharing with you"] = "%s is sharing with you"; +$a->strings["Private communications are not available for this contact."] = "Private communications are not available for this contact."; +$a->strings["Never"] = "Never"; +$a->strings["(Update was successful)"] = "(Update was successful)"; +$a->strings["(Update was not successful)"] = "(Update was not successful)"; +$a->strings["Suggest friends"] = "Suggest friends"; +$a->strings["Network type: %s"] = "Network type: %s"; +$a->strings["Communications lost with this contact!"] = "Communications lost with this contact!"; +$a->strings["Fetch further information for feeds"] = "Fetch further information for feeds"; +$a->strings["Disabled"] = "Disabled"; +$a->strings["Fetch information"] = "Fetch information"; +$a->strings["Fetch information and keywords"] = "Fetch information and keywords"; +$a->strings["Contact"] = "Contact"; +$a->strings["Submit"] = "Submit"; +$a->strings["Profile Visibility"] = "Profile visibility"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Please choose the profile you would like to display to %s when viewing your profile securely."; +$a->strings["Contact Information / Notes"] = "Personal note"; +$a->strings["Edit contact notes"] = "Edit contact notes"; +$a->strings["Visit %s's profile [%s]"] = "Visit %s's profile [%s]"; +$a->strings["Block/Unblock contact"] = "Block/Unblock contact"; +$a->strings["Ignore contact"] = "Ignore contact"; +$a->strings["Repair URL settings"] = "Repair URL settings"; +$a->strings["View conversations"] = "View conversations"; +$a->strings["Last update:"] = "Last update:"; +$a->strings["Update public posts"] = "Update public posts"; +$a->strings["Update now"] = "Update now"; +$a->strings["Unblock"] = "Unblock"; +$a->strings["Block"] = "Block"; +$a->strings["Unignore"] = "Unignore"; +$a->strings["Ignore"] = "Ignore"; +$a->strings["Currently blocked"] = "Currently blocked"; +$a->strings["Currently ignored"] = "Currently ignored"; +$a->strings["Currently archived"] = "Currently archived"; +$a->strings["Hide this contact from others"] = "Hide this contact from others"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Replies/Likes to your public posts may still be visible"; +$a->strings["Notification for new posts"] = "Notification for new posts"; +$a->strings["Send a notification of every new post of this contact"] = "Send notification for every new post from this contact"; +$a->strings["Blacklisted keywords"] = "Blacklisted keywords"; +$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"; +$a->strings["Profile URL"] = "Profile URL:"; +$a->strings["Actions"] = "Actions"; +$a->strings["Contact Settings"] = "Notification and privacy "; +$a->strings["Suggestions"] = "Suggestions"; +$a->strings["Suggest potential friends"] = "Suggest potential friends"; +$a->strings["All Contacts"] = "All contacts"; +$a->strings["Show all contacts"] = "Show all contacts"; +$a->strings["Unblocked"] = "Unblocked"; +$a->strings["Only show unblocked contacts"] = "Only show unblocked contacts"; +$a->strings["Blocked"] = "Blocked"; +$a->strings["Only show blocked contacts"] = "Only show blocked contacts"; +$a->strings["Ignored"] = "Ignored"; +$a->strings["Only show ignored contacts"] = "Only show ignored contacts"; +$a->strings["Archived"] = "Archived"; +$a->strings["Only show archived contacts"] = "Only show archived contacts"; +$a->strings["Hidden"] = "Hidden"; +$a->strings["Only show hidden contacts"] = "Only show hidden contacts"; +$a->strings["Search your contacts"] = "Search your contacts"; +$a->strings["Results for: %s"] = "Results for: %s"; +$a->strings["Update"] = "Update"; +$a->strings["Archive"] = "Archive"; +$a->strings["Unarchive"] = "Unarchive"; +$a->strings["Batch Actions"] = "Batch actions"; +$a->strings["View all contacts"] = "View all contacts"; +$a->strings["View all common friends"] = "View all common friends"; +$a->strings["Advanced Contact Settings"] = "Advanced contact settings"; +$a->strings["Mutual Friendship"] = "Mutual friendship"; +$a->strings["is a fan of yours"] = "is a fan of yours"; +$a->strings["you are a fan of"] = "I follow them"; +$a->strings["Edit contact"] = "Edit contact"; +$a->strings["Toggle Blocked status"] = "Toggle blocked status"; +$a->strings["Toggle Ignored status"] = "Toggle ignored status"; +$a->strings["Toggle Archive status"] = "Toggle archive status"; +$a->strings["Delete contact"] = "Delete contact"; +$a->strings["No such group"] = "No such group"; +$a->strings["Group is empty"] = "Group is empty"; +$a->strings["Group: %s"] = "Group: %s"; +$a->strings["This entry was edited"] = "This entry was edited"; +$a->strings["%d comment"] = array( + 0 => "%d comment", + 1 => "%d comments:", +); +$a->strings["Private Message"] = "Private message"; +$a->strings["I like this (toggle)"] = "I like this (toggle)"; +$a->strings["like"] = "Like"; +$a->strings["I don't like this (toggle)"] = "I don't like this (toggle)"; +$a->strings["dislike"] = "Dislike"; +$a->strings["Share this"] = "Share this"; +$a->strings["share"] = "Share"; +$a->strings["This is you"] = "This is me"; +$a->strings["Comment"] = "Comment"; +$a->strings["Bold"] = "Bold"; +$a->strings["Italic"] = "Italic"; +$a->strings["Underline"] = "Underline"; +$a->strings["Quote"] = "Quote"; +$a->strings["Code"] = "Code"; +$a->strings["Image"] = "Image"; +$a->strings["Link"] = "Link"; +$a->strings["Video"] = "Video"; +$a->strings["Edit"] = "Edit"; +$a->strings["add star"] = "Add star"; +$a->strings["remove star"] = "Remove star"; +$a->strings["toggle star status"] = "Toggle star status"; +$a->strings["starred"] = "Starred"; +$a->strings["add tag"] = "Add tag"; +$a->strings["ignore thread"] = "Ignore thread"; +$a->strings["unignore thread"] = "Unignore thread"; +$a->strings["toggle ignore status"] = "Toggle ignore status"; +$a->strings["ignored"] = "Ignored"; +$a->strings["save to folder"] = "Save to folder"; +$a->strings["I will attend"] = "I will attend"; +$a->strings["I will not attend"] = "I will not attend"; +$a->strings["I might attend"] = "I might attend"; +$a->strings["to"] = "to"; +$a->strings["Wall-to-Wall"] = "Wall-to-wall"; +$a->strings["via Wall-To-Wall:"] = "via wall-to-wall:"; +$a->strings["Credits"] = "Credits"; +$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica is a community project that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"; +$a->strings["Contact settings applied."] = "Contact settings applied."; +$a->strings["Contact update failed."] = "Contact update failed."; +$a->strings["Contact not found."] = "Contact not found."; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "Warning: These are highly advanced settings. If you enter incorrect information your communications with this contact may not working."; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Please use your browser 'Back' button now if you are uncertain what to do on this page."; +$a->strings["No mirroring"] = "No mirroring"; +$a->strings["Mirror as forwarded posting"] = "Mirror as forwarded posting"; +$a->strings["Mirror as my own posting"] = "Mirror as my own posting"; +$a->strings["Return to contact editor"] = "Return to contact editor"; +$a->strings["Refetch contact data"] = "Re-fetch contact data."; +$a->strings["Remote Self"] = "Remote self"; +$a->strings["Mirror postings from this contact"] = "Mirror postings from this contact:"; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "This will cause Friendica to repost new entries from this contact."; +$a->strings["Name"] = "Name:"; +$a->strings["Account Nickname"] = "Account nickname:"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Tag name - overrides name/nickname:"; +$a->strings["Account URL"] = "Account URL:"; +$a->strings["Friend Request URL"] = "Friend request URL:"; +$a->strings["Friend Confirm URL"] = "Friend confirm URL:"; +$a->strings["Notification Endpoint URL"] = "Notification endpoint URL"; +$a->strings["Poll/Feed URL"] = "Poll/Feed URL:"; +$a->strings["New photo from this URL"] = "New photo from this URL:"; +$a->strings["No potential page delegates located."] = "No potential page delegates found."; +$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."] = "Delegates are able to manage all aspects of this account except for key setting features. Please do not delegate your personal account to anybody that you do not trust completely."; +$a->strings["Existing Page Managers"] = "Existing page managers"; +$a->strings["Existing Page Delegates"] = "Existing page delegates"; +$a->strings["Potential Delegates"] = "Potential delegates"; +$a->strings["Remove"] = "Remove"; +$a->strings["Add"] = "Add"; +$a->strings["No entries."] = "No entries."; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s welcomes %2\$s"; +$a->strings["Public access denied."] = "Public access denied."; +$a->strings["Global Directory"] = "Global Directory"; +$a->strings["Find on this site"] = "Find on this site"; +$a->strings["Results for:"] = "Results for:"; +$a->strings["Site Directory"] = "Site directory"; +$a->strings["No entries (some entries may be hidden)."] = "No entries (entries may be hidden)."; +$a->strings["Access to this profile has been restricted."] = "Access to this profile has been restricted."; +$a->strings["Item has been removed."] = "Item has been removed."; +$a->strings["Item not found"] = "Item not found"; +$a->strings["Edit post"] = "Edit post"; +$a->strings["Files"] = "Files"; +$a->strings["Not Found"] = "Not found"; +$a->strings["- select -"] = "- select -"; +$a->strings["Friend suggestion sent."] = "Friend suggestion sent"; +$a->strings["Suggest Friends"] = "Suggest friends"; +$a->strings["Suggest a friend for %s"] = "Suggest a friend for %s"; +$a->strings["No profile"] = "No profile"; +$a->strings["Help:"] = "Help:"; +$a->strings["Page not found."] = "Page not found"; +$a->strings["Welcome to %s"] = "Welcome to %s"; +$a->strings["Total invitation limit exceeded."] = "Total invitation limit exceeded"; +$a->strings["%s : Not a valid email address."] = "%s : Not a valid email address"; +$a->strings["Please join us on Friendica"] = "Please join us on Friendica."; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Invitation limit is exceeded. Please contact your site administrator."; +$a->strings["%s : Message delivery failed."] = "%s : Message delivery failed"; +$a->strings["%d message sent."] = array( + 0 => "%d message sent.", + 1 => "%d messages sent.", +); +$a->strings["You have no more invitations available"] = "You have no more invitations available."; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "To accept this invitation, please register at %s or any other public Friendica website."; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica sites are all inter-connect to create a large privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Our apologies. This system is not currently configured to connect with other public sites or invite members."; +$a->strings["Send invitations"] = "Send invitations"; +$a->strings["Enter email addresses, one per line:"] = "Enter email addresses, one per line:"; +$a->strings["Your message:"] = "Your message:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "You will need to supply this invitation code: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Once you have registered, please connect with me via my profile page at:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"; +$a->strings["Time Conversion"] = "Time conversion"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica provides this service for sharing events with other networks and friends in unknown time zones."; +$a->strings["UTC time: %s"] = "UTC time: %s"; +$a->strings["Current timezone: %s"] = "Current time zone: %s"; +$a->strings["Converted localtime: %s"] = "Converted local time: %s"; +$a->strings["Please select your timezone:"] = "Please select your time zone:"; +$a->strings["Remote privacy information not available."] = "Remote privacy information not available."; +$a->strings["Visible to:"] = "Visible to:"; +$a->strings["No valid account found."] = "No valid account found."; +$a->strings["Password reset request issued. Check your email."] = "Password reset request issued. Please check your email."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\tDear %1\$s,\n\t\t\tA request was issued 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/delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."; +$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"; +$a->strings["Password reset requested at %s"] = "Password reset requested at %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Request could not be verified. (You may have previously submitted it.) Password reset failed."; +$a->strings["Password Reset"] = "Password reset"; +$a->strings["Your password has been reset as requested."] = "Your password has been reset as requested."; +$a->strings["Your new password is"] = "Your new password is"; +$a->strings["Save or copy your new password - and then"] = "Save or copy your new password - and then"; +$a->strings["click here to login"] = "click here to login"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Your password may be changed from the Settings page after successful login."; +$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records or change your password immediately to\n\t\t\t\tsomething that you will remember.\n\t\t\t"; +$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"; +$a->strings["Your password has been changed at %s"] = "Your password has been changed at %s"; +$a->strings["Forgot your Password?"] = "Forgot your password?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Enter your email address and submit to reset your password. Then check your email for further instructions."; +$a->strings["Nickname or Email: "] = "Nickname or Email: "; +$a->strings["Reset"] = "Reset"; +$a->strings["System down for maintenance"] = "Sorry, the system is currently down for maintenance."; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "No keywords to match. Please add keywords to your default profile."; +$a->strings["is interested in:"] = "is interested in:"; +$a->strings["Profile Match"] = "Profile Match"; +$a->strings["No matches"] = "No matches"; +$a->strings["Mood"] = "Mood"; +$a->strings["Set your current mood and tell your friends"] = "Set your current mood and tell your friends"; +$a->strings["Welcome to Friendica"] = "Welcome to Friendica"; +$a->strings["New Member Checklist"] = "New Member Checklist"; +$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."; +$a->strings["Getting Started"] = "Getting started"; +$a->strings["Friendica Walk-Through"] = "Friendica walk-through"; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."; +$a->strings["Go to Your Settings"] = "Go to your settings"; +$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."; +$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."; +$a->strings["Upload Profile Photo"] = "Upload profile photo"; +$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."; +$a->strings["Edit Your Profile"] = "Edit your profile"; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."; +$a->strings["Profile Keywords"] = "Profile keywords"; +$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."; +$a->strings["Connecting"] = "Connecting"; +$a->strings["Importing Emails"] = "Importing emails"; +$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Enter your email access information on your Connector Settings if you wish to import and interact with friends or mailing lists from your email INBOX"; +$a->strings["Go to Your Contacts Page"] = "Go to your contacts page"; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "Your contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add new contact dialog."; +$a->strings["Go to Your Site's Directory"] = "Go to your site's directory"; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "The directory 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 when requested."; +$a->strings["Finding New People"] = "Finding new people"; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."; +$a->strings["Group Your Contacts"] = "Group your contacts"; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Once you have made some friends, organize them into private conversation groups from the sidebar of your contacts page and then you can interact with each group privately on your network page."; +$a->strings["Why Aren't My Posts Public?"] = "Why aren't my posts public?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."; +$a->strings["Getting Help"] = "Getting help"; +$a->strings["Go to the Help Section"] = "Go to the help section"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Our help pages may be consulted for detail on other program features and resources."; +$a->strings["Contacts who are not members of a group"] = "Contacts who are not members of a group"; +$a->strings["No more system notifications."] = "No more system notifications."; +$a->strings["System Notifications"] = "System notifications"; +$a->strings["Post successful."] = "Post successful."; +$a->strings["Subscribing to OStatus contacts"] = "Subscribing to OStatus contacts"; +$a->strings["No contact provided."] = "No contact provided."; +$a->strings["Couldn't fetch information for contact."] = "Couldn't fetch information for contact."; +$a->strings["Couldn't fetch friends for contact."] = "Couldn't fetch friends for contact."; +$a->strings["Done"] = "Done"; +$a->strings["success"] = "success"; +$a->strings["failed"] = "failed"; +$a->strings["Keep this window open until done."] = "Keep this window open until done."; +$a->strings["Not Extended"] = "Not extended"; +$a->strings["Poke/Prod"] = "Poke/Prod"; +$a->strings["poke, prod or do other things to somebody"] = "Poke, prod or do other things to somebody"; +$a->strings["Recipient"] = "Recipient:"; +$a->strings["Choose what you wish to do to recipient"] = "Choose what you wish to do:"; +$a->strings["Make this post private"] = "Make this post private"; +$a->strings["Image uploaded but image cropping failed."] = "Image uploaded but image cropping failed."; +$a->strings["Image size reduction [%s] failed."] = "Image size reduction [%s] failed."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-reload the page or clear browser cache if the new photo does not display immediately."; +$a->strings["Unable to process image"] = "Unable to process image"; +$a->strings["Image exceeds size limit of %s"] = "Image exceeds size limit of %s"; +$a->strings["Unable to process image."] = "Unable to process image."; +$a->strings["Upload File:"] = "Upload File:"; +$a->strings["Select a profile:"] = "Select a profile:"; +$a->strings["Upload"] = "Upload"; +$a->strings["or"] = "or"; +$a->strings["skip this step"] = "skip this step"; +$a->strings["select a photo from your photo albums"] = "select a photo from your photo albums"; +$a->strings["Crop Image"] = "Crop Image"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Please adjust the image cropping for optimum viewing."; +$a->strings["Done Editing"] = "Done editing"; +$a->strings["Image uploaded successfully."] = "Image uploaded successfully."; +$a->strings["Image upload failed."] = "Image upload failed."; +$a->strings["Permission denied"] = "Permission denied"; +$a->strings["Invalid profile identifier."] = "Invalid profile identifier."; +$a->strings["Profile Visibility Editor"] = "Profile Visibility Editor"; +$a->strings["Click on a contact to add or remove."] = "Click on a contact to add or remove."; +$a->strings["Visible To"] = "Visible to"; +$a->strings["All Contacts (with secure profile access)"] = "All contacts with secure profile access"; +$a->strings["Account approved."] = "Account approved."; +$a->strings["Registration revoked for %s"] = "Registration revoked for %s"; +$a->strings["Please login."] = "Please login."; +$a->strings["Remove My Account"] = "Remove my account"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "This will completely remove your account. Once this has been done it is not recoverable."; +$a->strings["Please enter your password for verification:"] = "Please enter your password for verification:"; +$a->strings["Resubscribing to OStatus contacts"] = "Resubscribing to OStatus contacts"; +$a->strings["Error"] = "Error"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s is following %2\$s's %3\$s"; +$a->strings["Do you really want to delete this suggestion?"] = "Do you really want to delete this suggestion?"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No suggestions available. If this is a new site, please try again in 24 hours."; +$a->strings["Ignore/Hide"] = "Ignore/Hide"; +$a->strings["Tag removed"] = "Tag removed"; +$a->strings["Remove Item Tag"] = "Remove Item tag"; +$a->strings["Select a tag to remove: "] = "Select a tag to remove: "; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."; +$a->strings["Import"] = "Import"; +$a->strings["Move account"] = "Move account"; +$a->strings["You can import an account from another Friendica server."] = "You can import an account from another Friendica server."; +$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"; +$a->strings["Account file"] = "Account file"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "To export your account, go to \"Settings->Export personal data\" and select \"Export account\""; +$a->strings["[Embedded content - reload page to view]"] = "[Embedded content - reload page to view]"; +$a->strings["No contacts."] = "No contacts."; +$a->strings["Access denied."] = "Access denied."; +$a->strings["Invalid request."] = "Invalid request."; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Sorry, maybe your upload is bigger than the PHP configuration allows"; +$a->strings["Or - did you try to upload an empty file?"] = "Or did you try to upload an empty file?"; +$a->strings["File exceeds size limit of %s"] = "File exceeds size limit of %s"; +$a->strings["File upload failed."] = "File upload failed."; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Number of daily wall messages for %s exceeded. Message failed."; +$a->strings["No recipient selected."] = "No recipient selected."; +$a->strings["Unable to check your home location."] = "Unable to check your home location."; +$a->strings["Message could not be sent."] = "Message could not be sent."; +$a->strings["Message collection failure."] = "Message collection failure."; +$a->strings["Message sent."] = "Message sent."; +$a->strings["No recipient."] = "No recipient."; +$a->strings["Send Private Message"] = "Send private message"; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."; +$a->strings["To:"] = "To:"; +$a->strings["Subject:"] = "Subject:"; +$a->strings["Source (bbcode) text:"] = "Source (bbcode) text:"; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Source (Diaspora) text to convert to BBcode:"; +$a->strings["Source input: "] = "Source input: "; +$a->strings["bb2html (raw HTML): "] = "bb2html (raw HTML): "; +$a->strings["bb2html: "] = "bb2html: "; +$a->strings["bb2html2bb: "] = "bb2html2bb: "; +$a->strings["bb2md: "] = "bb2md: "; +$a->strings["bb2md2html: "] = "bb2md2html: "; +$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; +$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; +$a->strings["Source input (Diaspora format): "] = "Source input (Diaspora format): "; +$a->strings["diaspora2bb: "] = "diaspora2bb: "; +$a->strings["View"] = "View"; +$a->strings["Previous"] = "Previous"; +$a->strings["Next"] = "Next"; +$a->strings["list"] = "List"; +$a->strings["User not found"] = "User not found"; +$a->strings["This calendar format is not supported"] = "This calendar format is not supported"; +$a->strings["No exportable data found"] = "No exportable data found"; +$a->strings["calendar"] = "calendar"; +$a->strings["Not available."] = "Not available."; +$a->strings["No results."] = "No results."; +$a->strings["Profile not found."] = "Profile not found."; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "This may occasionally happen if contact was requested by both persons and it has already been approved."; +$a->strings["Response from remote site was not understood."] = "Response from remote site was not understood."; +$a->strings["Unexpected response from remote site: "] = "Unexpected response from remote site: "; +$a->strings["Confirmation completed successfully."] = "Confirmation completed successfully."; +$a->strings["Remote site reported: "] = "Remote site reported: "; +$a->strings["Temporary failure. Please wait and try again."] = "Temporary failure. Please wait and try again."; +$a->strings["Introduction failed or was revoked."] = "Introduction failed or was revoked."; +$a->strings["Unable to set contact photo."] = "Unable to set contact photo."; +$a->strings["No user record found for '%s' "] = "No user record found for '%s' "; +$a->strings["Our site encryption key is apparently messed up."] = "Our site encryption key is apparently messed up."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "An empty URL was provided or the URL could not be decrypted by us."; +$a->strings["Contact record was not found for you on our site."] = "Contact record was not found for you on our site."; +$a->strings["Site public key not available in contact record for URL %s."] = "Site public key not available in contact record for URL %s."; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "The ID provided by your system is a duplicate on our system. It should work if you try again."; +$a->strings["Unable to set your contact credentials on our system."] = "Unable to set your contact credentials on our system."; +$a->strings["Unable to update your contact profile details on our system"] = "Unable to update your contact profile details on our system"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s has joined %2\$s"; +$a->strings["This introduction has already been accepted."] = "This introduction has already been accepted."; +$a->strings["Profile location is not valid or does not contain profile information."] = "Profile location is not valid or does not contain profile information."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Warning: profile location has no identifiable owner name."; +$a->strings["Warning: profile location has no profile photo."] = "Warning: profile location has no profile photo."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d required parameter was not found at the given location", + 1 => "%d required parameters were not found at the given location", +); +$a->strings["Introduction complete."] = "Introduction complete."; +$a->strings["Unrecoverable protocol error."] = "Unrecoverable protocol error."; +$a->strings["Profile unavailable."] = "Profile unavailable."; +$a->strings["%s has received too many connection requests today."] = "%s has received too many connection requests today."; +$a->strings["Spam protection measures have been invoked."] = "Spam protection measures have been invoked."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Friends are advised to please try again in 24 hours."; +$a->strings["Invalid locator"] = "Invalid locator"; +$a->strings["Invalid email address."] = "Invalid email address."; +$a->strings["This account has not been configured for email. Request failed."] = "This account has not been configured for email. Request failed."; +$a->strings["You have already introduced yourself here."] = "You have already introduced yourself here."; +$a->strings["Apparently you are already friends with %s."] = "Apparently you are already friends with %s."; +$a->strings["Invalid profile URL."] = "Invalid profile URL."; +$a->strings["Your introduction has been sent."] = "Your introduction has been sent."; +$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Remote subscription can't be done for your network. Please subscribe directly on your system."; +$a->strings["Please login to confirm introduction."] = "Please login to confirm introduction."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Incorrect identity currently logged in. Please login to this profile."; +$a->strings["Confirm"] = "Confirm"; +$a->strings["Hide this contact"] = "Hide this contact"; +$a->strings["Welcome home %s."] = "Welcome home %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Please confirm your introduction/connection request to %s."; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Please enter your 'Identity address' from one of the following supported communications networks:"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."; +$a->strings["Friend/Connection Request"] = "Friend/Connection request"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Examples: jojo@friendica.example.com, http://friendica.example.com/profile/jojo, sam@identi.ca"; +$a->strings["Please answer the following:"] = "Please answer the following:"; +$a->strings["Does %s know you?"] = "Does %s know you?"; +$a->strings["Add a personal note:"] = "Add a personal note:"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated social web"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - please do not use this form. Instead, enter %s into your Diaspora search bar."; +$a->strings["Your Identity Address:"] = "My identity address:"; +$a->strings["Submit Request"] = "Submit request"; +$a->strings["People Search - %s"] = "People search - %s"; +$a->strings["Forum Search - %s"] = "Forum search - %s"; +$a->strings["Event can not end before it has started."] = "Event cannot end before it has started."; +$a->strings["Event title and start time are required."] = "Event title and starting time are required."; +$a->strings["Create New Event"] = "Create new event"; +$a->strings["Event details"] = "Event details"; +$a->strings["Starting date and Title are required."] = "Starting date and title are required."; +$a->strings["Event Starts:"] = "Event starts:"; +$a->strings["Required"] = "Required"; +$a->strings["Finish date/time is not known or not relevant"] = "Finish date/time is not known or not relevant"; +$a->strings["Event Finishes:"] = "Event finishes:"; +$a->strings["Adjust for viewer timezone"] = "Adjust for viewer's time zone"; +$a->strings["Description:"] = "Description:"; +$a->strings["Title:"] = "Title:"; +$a->strings["Share this event"] = "Share this event"; +$a->strings["Failed to remove event"] = "Failed to remove event"; +$a->strings["Event removed"] = "Event removed"; +$a->strings["You already added this contact."] = "You already added this contact."; +$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora support isn't enabled. Contact can't be added."; +$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus support is disabled. Contact can't be added."; +$a->strings["The network type couldn't be detected. Contact can't be added."] = "The network type couldn't be detected. Contact can't be added."; +$a->strings["Contact added"] = "Contact added"; +$a->strings["This is Friendica, version"] = "This is Friendica, version"; +$a->strings["running at web location"] = "running at web location"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Please visit Friendica.com to learn more about the Friendica project."; +$a->strings["Bug reports and issues: please visit"] = "Bug reports and issues: please visit"; +$a->strings["the bugtracker at github"] = "the bugtracker at github"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"; +$a->strings["Installed plugins/addons/apps:"] = "Installed plugins/addons/apps:"; +$a->strings["No installed plugins/addons/apps"] = "No installed plugins/addons/apps"; +$a->strings["On this server the following remote servers are blocked."] = "On this server the following remote servers are blocked."; +$a->strings["Reason for the block"] = "Reason for the block"; +$a->strings["Group created."] = "Group created."; +$a->strings["Could not create group."] = "Could not create group."; +$a->strings["Group not found."] = "Group not found."; +$a->strings["Group name changed."] = "Group name changed."; +$a->strings["Save Group"] = "Save group"; +$a->strings["Create a group of contacts/friends."] = "Create a group of contacts/friends."; +$a->strings["Group removed."] = "Group removed."; +$a->strings["Unable to remove group."] = "Unable to remove group."; +$a->strings["Delete Group"] = "Delete group"; +$a->strings["Group Editor"] = "Group Editor"; +$a->strings["Edit Group Name"] = "Edit group name"; +$a->strings["Members"] = "Members"; +$a->strings["Remove Contact"] = "Remove contact"; +$a->strings["Add Contact"] = "Add contact"; +$a->strings["Manage Identities and/or Pages"] = "Manage identities/pages"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Accounts that I manage or own."; +$a->strings["Select an identity to manage: "] = "Select identity:"; +$a->strings["Unable to locate contact information."] = "Unable to locate contact information."; +$a->strings["Do you really want to delete this message?"] = "Do you really want to delete this message?"; +$a->strings["Message deleted."] = "Message deleted."; +$a->strings["Conversation removed."] = "Conversation removed."; +$a->strings["No messages."] = "No messages."; +$a->strings["Message not available."] = "Message not available."; +$a->strings["Delete message"] = "Delete message"; +$a->strings["Delete conversation"] = "Delete conversation"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = ""; +$a->strings["Send Reply"] = "Send reply"; +$a->strings["Unknown sender - %s"] = "Unknown sender - %s"; +$a->strings["You and %s"] = "Me and %s"; +$a->strings["%s and You"] = "%s and me"; +$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["Remove term"] = "Remove term"; +$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array( + 0 => "Warning: This group contains %s member from a network that doesn't allow non public messages.", + 1 => "Warning: This group contains %s members from a network that doesn't allow non public messages.", +); +$a->strings["Messages in this group won't be send to these receivers."] = "Messages in this group won't be send to these receivers."; +$a->strings["Private messages to this person are at risk of public disclosure."] = "Private messages to this person are at risk of public disclosure."; +$a->strings["Invalid contact."] = "Invalid contact."; +$a->strings["Commented Order"] = "Commented last"; +$a->strings["Sort by Comment Date"] = "Sort by comment date"; +$a->strings["Posted Order"] = "Posted last"; +$a->strings["Sort by Post Date"] = "Sort by post date"; +$a->strings["Posts that mention or involve you"] = "Posts mentioning or involving me"; +$a->strings["New"] = "New"; +$a->strings["Activity Stream - by date"] = "Activity Stream - by date"; +$a->strings["Shared Links"] = "Shared links"; +$a->strings["Interesting Links"] = "Interesting links"; +$a->strings["Starred"] = "Starred"; +$a->strings["Favourite Posts"] = "My favourite posts"; +$a->strings["OpenID protocol error. No ID returned."] = "OpenID protocol error. No ID returned."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Account not found and OpenID registration is not permitted on this site."; +$a->strings["Recent Photos"] = "Recent photos"; +$a->strings["Upload New Photos"] = "Upload new photos"; +$a->strings["everybody"] = "everybody"; +$a->strings["Contact information unavailable"] = "Contact information unavailable"; +$a->strings["Album not found."] = "Album not found."; +$a->strings["Delete Album"] = "Delete album"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Do you really want to delete this photo album and all its photos?"; +$a->strings["Delete Photo"] = "Delete photo"; +$a->strings["Do you really want to delete this photo?"] = "Do you really want to delete this photo?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s was tagged in %2\$s by %3\$s"; +$a->strings["a photo"] = "a photo"; +$a->strings["Image file is empty."] = "Image file is empty."; +$a->strings["No photos selected"] = "No photos selected"; +$a->strings["Access to this item is restricted."] = "Access to this item is restricted."; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."; +$a->strings["Upload Photos"] = "Upload photos"; +$a->strings["New album name: "] = "New album name: "; +$a->strings["or existing album name: "] = "or existing album name: "; +$a->strings["Do not show a status post for this upload"] = "Do not show a status post for this upload"; +$a->strings["Show to Groups"] = ""; +$a->strings["Show to Contacts"] = ""; +$a->strings["Private Photo"] = ""; +$a->strings["Public Photo"] = ""; +$a->strings["Edit Album"] = ""; +$a->strings["Show Newest First"] = ""; +$a->strings["Show Oldest First"] = ""; +$a->strings["View Photo"] = ""; +$a->strings["Permission denied. Access to this item may be restricted."] = ""; +$a->strings["Photo not available"] = ""; +$a->strings["View photo"] = ""; +$a->strings["Edit photo"] = ""; +$a->strings["Use as profile photo"] = ""; +$a->strings["View Full Size"] = ""; +$a->strings["Tags: "] = ""; +$a->strings["[Remove any tag]"] = ""; +$a->strings["New album name"] = ""; +$a->strings["Caption"] = ""; +$a->strings["Add a Tag"] = "Add Tag"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = ""; +$a->strings["Do not rotate"] = ""; +$a->strings["Rotate CW (right)"] = ""; +$a->strings["Rotate CCW (left)"] = ""; +$a->strings["Private photo"] = ""; +$a->strings["Public photo"] = ""; +$a->strings["Map"] = ""; +$a->strings["View Album"] = ""; +$a->strings["Only logged in users are permitted to perform a probing."] = ""; +$a->strings["Tips for New Members"] = ""; +$a->strings["Profile deleted."] = ""; +$a->strings["Profile-"] = ""; +$a->strings["New profile created."] = ""; +$a->strings["Profile unavailable to clone."] = ""; +$a->strings["Profile Name is required."] = ""; +$a->strings["Marital Status"] = ""; +$a->strings["Romantic Partner"] = ""; +$a->strings["Work/Employment"] = ""; +$a->strings["Religion"] = ""; +$a->strings["Political Views"] = ""; +$a->strings["Gender"] = ""; +$a->strings["Sexual Preference"] = ""; +$a->strings["XMPP"] = ""; +$a->strings["Homepage"] = ""; +$a->strings["Interests"] = ""; +$a->strings["Address"] = ""; +$a->strings["Location"] = ""; +$a->strings["Profile updated."] = ""; +$a->strings[" and "] = ""; +$a->strings["public profile"] = ""; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = ""; +$a->strings[" - Visit %1\$s's %2\$s"] = ""; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = ""; +$a->strings["Hide contacts and friends:"] = ""; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = ""; +$a->strings["Show more profile fields:"] = ""; +$a->strings["Profile Actions"] = ""; +$a->strings["Edit Profile Details"] = ""; +$a->strings["Change Profile Photo"] = ""; +$a->strings["View this profile"] = ""; +$a->strings["Create a new profile using these settings"] = ""; +$a->strings["Clone this profile"] = ""; +$a->strings["Delete this profile"] = ""; +$a->strings["Basic information"] = ""; +$a->strings["Profile picture"] = ""; +$a->strings["Preferences"] = ""; +$a->strings["Status information"] = ""; +$a->strings["Additional information"] = ""; +$a->strings["Relation"] = ""; +$a->strings["Your Gender:"] = ""; +$a->strings[" Marital Status:"] = ""; +$a->strings["Example: fishing photography software"] = ""; +$a->strings["Profile Name:"] = ""; +$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = ""; +$a->strings["Your Full Name:"] = ""; +$a->strings["Title/Description:"] = ""; +$a->strings["Street Address:"] = ""; +$a->strings["Locality/City:"] = ""; +$a->strings["Region/State:"] = ""; +$a->strings["Postal/Zip Code:"] = ""; +$a->strings["Country:"] = ""; +$a->strings["Who: (if applicable)"] = ""; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = ""; +$a->strings["Since [date]:"] = ""; +$a->strings["Tell us about yourself..."] = ""; +$a->strings["XMPP (Jabber) address:"] = ""; +$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = ""; +$a->strings["Homepage URL:"] = ""; +$a->strings["Religious Views:"] = ""; +$a->strings["Public Keywords:"] = ""; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = ""; +$a->strings["Private Keywords:"] = ""; +$a->strings["(Used for searching profiles, never shown to others)"] = ""; +$a->strings["Musical interests"] = ""; +$a->strings["Books, literature"] = ""; +$a->strings["Television"] = ""; +$a->strings["Film/dance/culture/entertainment"] = ""; +$a->strings["Hobbies/Interests"] = ""; +$a->strings["Love/romance"] = ""; +$a->strings["Work/employment"] = ""; +$a->strings["School/education"] = ""; +$a->strings["Contact information and Social Networks"] = ""; +$a->strings["Edit/Manage Profiles"] = ""; +$a->strings["Registration successful. Please check your email for further instructions."] = ""; +$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = ""; +$a->strings["Registration successful."] = ""; +$a->strings["Your registration can not be processed."] = ""; +$a->strings["Your registration is pending approval by the site owner."] = ""; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = ""; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = ""; +$a->strings["Your OpenID (optional): "] = ""; +$a->strings["Include your profile in member directory?"] = ""; +$a->strings["Note for the admin"] = ""; +$a->strings["Leave a message for the admin, why you want to join this node"] = ""; +$a->strings["Membership on this site is by invitation only."] = ""; +$a->strings["Your invitation ID: "] = ""; +$a->strings["Registration"] = ""; +$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = ""; +$a->strings["Your Email Address: "] = ""; +$a->strings["New Password:"] = "New password:"; +$a->strings["Leave empty for an auto generated password."] = ""; +$a->strings["Confirm:"] = "Confirm new 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'."] = ""; +$a->strings["Choose a nickname: "] = ""; +$a->strings["Import your profile to this friendica instance"] = ""; +$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["Items tagged with: %s"] = ""; +$a->strings["Account"] = ""; +$a->strings["Additional features"] = ""; +$a->strings["Display"] = ""; +$a->strings["Social Networks"] = "Social networks"; +$a->strings["Plugins"] = ""; +$a->strings["Connected apps"] = ""; +$a->strings["Export personal data"] = ""; +$a->strings["Remove account"] = ""; +$a->strings["Missing some important data!"] = ""; +$a->strings["Failed to connect with email account using the settings provided."] = ""; +$a->strings["Email settings updated."] = ""; +$a->strings["Features updated"] = ""; +$a->strings["Relocate message has been send to your contacts"] = "Relocate message has been send to your contacts"; +$a->strings["Empty passwords are not allowed. Password unchanged."] = ""; +$a->strings["Wrong password."] = ""; +$a->strings["Password changed."] = ""; +$a->strings["Password update failed. Please try again."] = ""; +$a->strings[" Please use a shorter name."] = ""; +$a->strings[" Name too short."] = ""; +$a->strings["Wrong Password"] = ""; +$a->strings[" Not valid email."] = ""; +$a->strings[" Cannot change to that email."] = ""; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = ""; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = ""; +$a->strings["Settings updated."] = ""; +$a->strings["Add application"] = ""; +$a->strings["Save Settings"] = "Save settings"; +$a->strings["Consumer Key"] = ""; +$a->strings["Consumer Secret"] = ""; +$a->strings["Redirect"] = ""; +$a->strings["Icon url"] = ""; +$a->strings["You can't edit this application."] = ""; +$a->strings["Connected Apps"] = ""; +$a->strings["Client key starts with"] = ""; +$a->strings["No name"] = ""; +$a->strings["Remove authorization"] = ""; +$a->strings["No Plugin settings configured"] = ""; +$a->strings["Plugin Settings"] = ""; +$a->strings["Off"] = ""; +$a->strings["On"] = ""; +$a->strings["Additional Features"] = ""; +$a->strings["General Social Media Settings"] = ""; +$a->strings["Disable intelligent shortening"] = ""; +$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original Friendica post."; +$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = ""; +$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = ""; +$a->strings["Default group for OStatus contacts"] = ""; +$a->strings["Your legacy GNU Social account"] = ""; +$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = ""; +$a->strings["Repair OStatus subscriptions"] = ""; +$a->strings["Built-in support for %s connectivity is %s"] = ""; +$a->strings["enabled"] = ""; +$a->strings["disabled"] = ""; +$a->strings["GNU Social (OStatus)"] = ""; +$a->strings["Email access is disabled on this site."] = ""; +$a->strings["Email/Mailbox Setup"] = ""; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = ""; +$a->strings["Last successful email check:"] = ""; +$a->strings["IMAP server name:"] = ""; +$a->strings["IMAP port:"] = ""; +$a->strings["Security:"] = ""; +$a->strings["None"] = ""; +$a->strings["Email login name:"] = ""; +$a->strings["Email password:"] = ""; +$a->strings["Reply-to address:"] = ""; +$a->strings["Send public posts to all email contacts:"] = ""; +$a->strings["Action after import:"] = ""; +$a->strings["Move to folder"] = "Move to folder"; +$a->strings["Move to folder:"] = "Move to folder:"; +$a->strings["No special theme for mobile devices"] = ""; +$a->strings["Display Settings"] = ""; +$a->strings["Display Theme:"] = ""; +$a->strings["Mobile Theme:"] = ""; +$a->strings["Suppress warning of insecure networks"] = ""; +$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = ""; +$a->strings["Update browser every xx seconds"] = "Update browser every so many seconds:"; +$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = ""; +$a->strings["Number of items to display per page:"] = ""; +$a->strings["Maximum of 100 items"] = ""; +$a->strings["Number of items to display per page when viewed from mobile device:"] = ""; +$a->strings["Don't show emoticons"] = ""; +$a->strings["Calendar"] = ""; +$a->strings["Beginning of week:"] = ""; +$a->strings["Don't show notices"] = ""; +$a->strings["Infinite scroll"] = ""; +$a->strings["Automatic updates only at the top of the network page"] = ""; +$a->strings["Bandwith Saver Mode"] = ""; +$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = ""; +$a->strings["General Theme Settings"] = "Themes"; +$a->strings["Custom Theme Settings"] = "Theme customisation"; +$a->strings["Content Settings"] = "Content/Layout"; +$a->strings["Theme settings"] = ""; +$a->strings["Account Types"] = "Account types:"; +$a->strings["Personal Page Subtypes"] = "Personal Page subtypes"; +$a->strings["Community Forum Subtypes"] = ""; +$a->strings["Personal Page"] = "Personal Page"; +$a->strings["This account is a regular personal profile"] = "Regular personal profile"; +$a->strings["Organisation Page"] = "Organisation Page"; +$a->strings["This account is a profile for an organisation"] = "Profile for an organisation"; +$a->strings["News Page"] = "News Page"; +$a->strings["This account is a news account/reflector"] = "News reflector"; +$a->strings["Community Forum"] = "Community Forum"; +$a->strings["This account is a community forum where people can discuss with each other"] = "Discussion forum for community"; +$a->strings["Normal Account Page"] = "Standard"; +$a->strings["This account is a normal personal profile"] = "Regular personal profile"; +$a->strings["Soapbox Page"] = "Soapbox"; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Automatically approves contact requests as followers"; +$a->strings["Public Forum"] = ""; +$a->strings["Automatically approve all contact requests"] = ""; +$a->strings["Automatic Friend Page"] = "Popularity"; +$a->strings["Automatically approve all connection/friend requests as friends"] = "Automatically approves contact requests as friends"; +$a->strings["Private Forum [Experimental]"] = ""; +$a->strings["Private forum - approved members only"] = ""; +$a->strings["OpenID:"] = ""; +$a->strings["(Optional) Allow this OpenID to login to this account."] = ""; +$a->strings["Publish your default profile in your local site directory?"] = "Publish default profile in local site directory?"; +$a->strings["Your profile may be visible in public."] = "Your local directory may be publicly visible"; +$a->strings["Publish your default profile in the global social directory?"] = "Publish default profile in global directory?"; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Hide my contact list from others?"; +$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Posting public messages to Diaspora and other networks will not be possible if enabled"; +$a->strings["Allow friends to post to your profile page?"] = "Allow friends to post to my wall?"; +$a->strings["Allow friends to tag your posts?"] = "Allow friends to tag my post?"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = ""; +$a->strings["Permit unknown people to send you private mail?"] = "Allow unknown people to send me private messages?"; +$a->strings["Profile is not published."] = ""; +$a->strings["Your Identity Address is '%s' or '%s'."] = "My identity address: '%s' or '%s'"; +$a->strings["Automatically expire posts after this many days:"] = "Automatically expire posts after this many days:"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Posts will not expire if empty; expired posts will be deleted"; +$a->strings["Advanced expiration settings"] = "Advanced expiration settings"; +$a->strings["Advanced Expiration"] = "Advanced expiration"; +$a->strings["Expire posts:"] = ""; +$a->strings["Expire personal notes:"] = ""; +$a->strings["Expire starred posts:"] = ""; +$a->strings["Expire photos:"] = ""; +$a->strings["Only expire posts by others:"] = ""; +$a->strings["Account Settings"] = ""; +$a->strings["Password Settings"] = "Password change"; +$a->strings["Leave password fields blank unless changing"] = ""; +$a->strings["Current Password:"] = "Current password:"; +$a->strings["Your current password to confirm the changes"] = "Current password to confirm change"; +$a->strings["Password:"] = ""; +$a->strings["Basic Settings"] = "Basic information"; +$a->strings["Email Address:"] = "Email address:"; +$a->strings["Your Timezone:"] = "Time zone:"; +$a->strings["Your Language:"] = "Language:"; +$a->strings["Set the language we use to show you friendica interface and to send you emails"] = ""; +$a->strings["Default Post Location:"] = "Posting location:"; +$a->strings["Use Browser Location:"] = "Use browser location:"; +$a->strings["Security and Privacy Settings"] = "Security and privacy"; +$a->strings["Maximum Friend Requests/Day:"] = "Maximum friend requests per day:"; +$a->strings["(to prevent spam abuse)"] = "May prevent spam or abuse registrations"; +$a->strings["Default Post Permissions"] = "Default post permissions"; +$a->strings["(click to open/close)"] = ""; +$a->strings["Default Private Post"] = ""; +$a->strings["Default Public Post"] = ""; +$a->strings["Default Permissions for New Posts"] = ""; +$a->strings["Maximum private messages per day from unknown people:"] = "Maximum private messages per day from unknown people:"; +$a->strings["Notification Settings"] = "Notification"; +$a->strings["By default post a status message when:"] = "By default post a status message when:"; +$a->strings["accepting a friend request"] = "accepting friend requests"; +$a->strings["joining a forum/community"] = "joining forums or communities"; +$a->strings["making an interesting profile change"] = ""; +$a->strings["Send a notification email when:"] = "Send notification email when:"; +$a->strings["You receive an introduction"] = "Receiving an introduction"; +$a->strings["Your introductions are confirmed"] = "My introductions are confirmed"; +$a->strings["Someone writes on your profile wall"] = "Someone writes on my wall"; +$a->strings["Someone writes a followup comment"] = "A follow up comment is posted"; +$a->strings["You receive a private message"] = "receiving a private message"; +$a->strings["You receive a friend suggestion"] = "Receiving a friend suggestion"; +$a->strings["You are tagged in a post"] = "Tagged in a post"; +$a->strings["You are poked/prodded/etc. in a post"] = "Poked in a post"; +$a->strings["Activate desktop notifications"] = "Activate desktop notifications"; +$a->strings["Show desktop popup on new notifications"] = "Show desktop pop-up on new notifications"; +$a->strings["Text-only notification emails"] = "Text-only notification emails"; +$a->strings["Send text only notification emails, without the html part"] = "Receive text only emails without HTML "; +$a->strings["Advanced Account/Page Type Settings"] = "Advanced account types"; +$a->strings["Change the behaviour of this account for special situations"] = "Change behaviour of this account for special situations"; +$a->strings["Relocate"] = "Recent relocation"; +$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."] = "If you have moved this profile from another server and some of your contacts don't receive your updates:"; +$a->strings["Resend relocate message to contacts"] = ""; +$a->strings["Export account"] = ""; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = ""; +$a->strings["Export all"] = ""; +$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = ""; +$a->strings["Do you really want to delete this video?"] = ""; +$a->strings["Delete Video"] = ""; +$a->strings["No videos selected"] = ""; +$a->strings["Recent Videos"] = ""; +$a->strings["Upload New Videos"] = ""; +$a->strings["Friendica Communications Server - Setup"] = ""; +$a->strings["Could not connect to database."] = ""; +$a->strings["Could not create table."] = ""; +$a->strings["Your Friendica site database has been installed."] = ""; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = ""; +$a->strings["Please see the file \"INSTALL.txt\"."] = ""; +$a->strings["Database already in use."] = ""; +$a->strings["System check"] = ""; +$a->strings["Check again"] = ""; +$a->strings["Database connection"] = ""; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = ""; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = ""; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = ""; +$a->strings["Database Server Name"] = ""; +$a->strings["Database Login Name"] = ""; +$a->strings["Database Login Password"] = ""; +$a->strings["For security reasons the password must not be empty"] = ""; +$a->strings["Database Name"] = ""; +$a->strings["Site administrator email address"] = ""; +$a->strings["Your account email address must match this in order to use the web admin panel."] = ""; +$a->strings["Please select a default timezone for your website"] = ""; +$a->strings["Site settings"] = ""; +$a->strings["System Language:"] = ""; +$a->strings["Set the default language for your Friendica installation interface and to send emails."] = ""; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = ""; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run the background processing. See 'Setup the poller'"] = ""; +$a->strings["PHP executable path"] = ""; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = ""; +$a->strings["Command line PHP"] = ""; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = ""; +$a->strings["Found PHP version: "] = ""; +$a->strings["PHP cli binary"] = ""; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = ""; +$a->strings["This is required for message delivery to work."] = ""; +$a->strings["PHP register_argc_argv"] = ""; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = ""; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = ""; +$a->strings["Generate encryption keys"] = ""; +$a->strings["libCurl PHP module"] = ""; +$a->strings["GD graphics PHP module"] = ""; +$a->strings["OpenSSL PHP module"] = ""; +$a->strings["PDO or MySQLi PHP module"] = ""; +$a->strings["mb_string PHP module"] = ""; +$a->strings["XML PHP module"] = ""; +$a->strings["iconv module"] = ""; +$a->strings["Apache mod_rewrite module"] = ""; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = ""; +$a->strings["Error: libCURL PHP module required but not installed."] = ""; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = ""; +$a->strings["Error: openssl PHP module required but not installed."] = ""; +$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = ""; +$a->strings["Error: The MySQL driver for PDO is not installed."] = ""; +$a->strings["Error: mb_string PHP module required but not installed."] = ""; +$a->strings["Error: iconv PHP module required but not installed."] = ""; +$a->strings["Error, XML PHP module required but not installed."] = ""; +$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "The web installer needs to be able to create a file called \".htconfig.php\" in the top-level directory of your web server, but it is unable to do so."; +$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "This is most often a permission setting issue, as the web server may not be able to write files in your directory - even if you can."; +$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top-level directory."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = ""; +$a->strings[".htconfig.php is writable"] = ""; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = ""; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "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 directory."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Please ensure the user (e.g. www-data) that your web server runs as has write access to this directory."; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = ""; +$a->strings["view/smarty3 is writable"] = ""; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = ""; +$a->strings["Url rewrite is working"] = ""; +$a->strings["ImageMagick PHP extension is not installed"] = ""; +$a->strings["ImageMagick PHP extension is installed"] = ""; +$a->strings["ImageMagick supports GIF"] = ""; +$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = ""; +$a->strings["

What next

"] = ""; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = ""; +$a->strings["Unable to locate original post."] = ""; +$a->strings["Empty post discarded."] = ""; +$a->strings["System error. Post not saved."] = ""; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = ""; +$a->strings["You may visit them online at %s"] = ""; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = ""; +$a->strings["%s posted an update."] = ""; +$a->strings["Invalid request identifier."] = ""; +$a->strings["Discard"] = ""; +$a->strings["Network Notifications"] = ""; +$a->strings["Personal Notifications"] = ""; +$a->strings["Home Notifications"] = ""; +$a->strings["Show Ignored Requests"] = "Show ignored requests."; +$a->strings["Hide Ignored Requests"] = ""; +$a->strings["Notification type: "] = ""; +$a->strings["suggested by %s"] = ""; +$a->strings["Post a new friend activity"] = ""; +$a->strings["if applicable"] = ""; +$a->strings["Approve"] = ""; +$a->strings["Claims to be known to you: "] = "Says they know me:"; +$a->strings["yes"] = ""; +$a->strings["no"] = ""; +$a->strings["Shall your connection be bidirectional or not?"] = "Shall your connection be in both directions or not?"; +$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = ""; +$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = ""; +$a->strings["Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = ""; +$a->strings["Friend"] = ""; +$a->strings["Sharer"] = ""; +$a->strings["Subscriber"] = ""; +$a->strings["No introductions."] = ""; +$a->strings["Show unread"] = ""; +$a->strings["Show all"] = ""; +$a->strings["No more %s notifications."] = ""; +$a->strings["{0} wants to be your friend"] = ""; +$a->strings["{0} sent you a message"] = ""; +$a->strings["{0} requested registration"] = ""; +$a->strings["Theme settings updated."] = ""; +$a->strings["Site"] = ""; +$a->strings["Users"] = ""; +$a->strings["Themes"] = "Theme selection"; +$a->strings["DB updates"] = ""; +$a->strings["Inspect Queue"] = ""; +$a->strings["Server Blocklist"] = ""; +$a->strings["Federation Statistics"] = ""; +$a->strings["Logs"] = ""; +$a->strings["View Logs"] = ""; +$a->strings["probe address"] = ""; +$a->strings["check webfinger"] = ""; +$a->strings["Plugin Features"] = ""; +$a->strings["diagnostics"] = ""; +$a->strings["User registrations waiting for confirmation"] = ""; +$a->strings["The blocked domain"] = ""; +$a->strings["The reason why you blocked this domain."] = ""; +$a->strings["Delete domain"] = ""; +$a->strings["Check to delete this entry from the blocklist"] = ""; +$a->strings["Administration"] = ""; +$a->strings["This page can be used to define a black list of servers from the federated network that are not allowed to interact with your node. For all entered domains you should also give a reason why you have blocked the remote server."] = ""; +$a->strings["The list of blocked servers will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily."] = ""; +$a->strings["Add new entry to block list"] = ""; +$a->strings["Server Domain"] = ""; +$a->strings["The domain of the new server to add to the block list. Do not include the protocol."] = ""; +$a->strings["Block reason"] = ""; +$a->strings["Add Entry"] = ""; +$a->strings["Save changes to the blocklist"] = ""; +$a->strings["Current Entries in the Blocklist"] = ""; +$a->strings["Delete entry from blocklist"] = ""; +$a->strings["Delete entry from blocklist?"] = ""; +$a->strings["Server added to blocklist."] = ""; +$a->strings["Site blocklist updated."] = ""; +$a->strings["unknown"] = ""; +$a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = ""; +$a->strings["The Auto Discovered Contact Directory feature is not enabled, it will improve the data displayed here."] = ""; +$a->strings["Currently this node is aware of %d nodes from the following platforms:"] = ""; +$a->strings["ID"] = ""; +$a->strings["Recipient Name"] = ""; +$a->strings["Recipient Profile"] = ""; +$a->strings["Created"] = ""; +$a->strings["Last Tried"] = ""; +$a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = ""; +$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the command php include/dbstructure.php toinnodb of your Friendica installation for an automatic conversion.
"] = ""; +$a->strings["You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB."] = ""; +$a->strings["Normal Account"] = "Standard account"; +$a->strings["Soapbox Account"] = "Soapbox account"; +$a->strings["Community/Celebrity Account"] = ""; +$a->strings["Automatic Friend Account"] = ""; +$a->strings["Blog Account"] = ""; +$a->strings["Private Forum"] = ""; +$a->strings["Message queues"] = ""; +$a->strings["Summary"] = ""; +$a->strings["Registered users"] = ""; +$a->strings["Pending registrations"] = ""; +$a->strings["Version"] = ""; +$a->strings["Active plugins"] = ""; +$a->strings["Can not parse base url. Must have at least ://"] = ""; +$a->strings["Site settings updated."] = ""; +$a->strings["No community page"] = ""; +$a->strings["Public postings from users of this site"] = ""; +$a->strings["Global community page"] = ""; +$a->strings["At post arrival"] = ""; +$a->strings["Users, Global Contacts"] = ""; +$a->strings["Users, Global Contacts/fallback"] = ""; +$a->strings["One month"] = ""; +$a->strings["Three months"] = ""; +$a->strings["Half a year"] = ""; +$a->strings["One year"] = ""; +$a->strings["Multi user instance"] = ""; +$a->strings["Closed"] = ""; +$a->strings["Requires approval"] = ""; +$a->strings["Open"] = ""; +$a->strings["No SSL policy, links will track page SSL state"] = ""; +$a->strings["Force all links to use SSL"] = ""; +$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = ""; +$a->strings["File upload"] = ""; +$a->strings["Policies"] = ""; +$a->strings["Auto Discovered Contact Directory"] = ""; +$a->strings["Performance"] = ""; +$a->strings["Worker"] = ""; +$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Relocate - Warning, advanced function: This could make this server unreachable."; +$a->strings["Site name"] = ""; +$a->strings["Host name"] = ""; +$a->strings["Sender Email"] = ""; +$a->strings["The email address your server shall use to send notification emails from."] = ""; +$a->strings["Banner/Logo"] = ""; +$a->strings["Shortcut icon"] = ""; +$a->strings["Link to an icon that will be used for browsers."] = ""; +$a->strings["Touch icon"] = ""; +$a->strings["Link to an icon that will be used for tablets and mobiles."] = ""; +$a->strings["Additional Info"] = ""; +$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = ""; +$a->strings["System language"] = ""; +$a->strings["System theme"] = ""; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = ""; +$a->strings["Mobile system theme"] = ""; +$a->strings["Theme for mobile devices"] = ""; +$a->strings["SSL link policy"] = ""; +$a->strings["Determines whether generated links should be forced to use SSL"] = ""; +$a->strings["Force SSL"] = ""; +$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = ""; +$a->strings["Hide help entry from navigation menu"] = ""; +$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = ""; +$a->strings["Single user instance"] = ""; +$a->strings["Make this instance multi-user or single-user for the named user"] = ""; +$a->strings["Maximum image size"] = ""; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = ""; +$a->strings["Maximum image length"] = ""; +$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = ""; +$a->strings["JPEG image quality"] = ""; +$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = ""; +$a->strings["Register policy"] = ""; +$a->strings["Maximum Daily Registrations"] = ""; +$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."] = ""; +$a->strings["Register text"] = ""; +$a->strings["Will be displayed prominently on the registration page."] = ""; +$a->strings["Accounts abandoned after x days"] = ""; +$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = ""; +$a->strings["Allowed friend domains"] = ""; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = ""; +$a->strings["Allowed email domains"] = ""; +$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = ""; +$a->strings["Block public"] = ""; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = ""; +$a->strings["Force publish"] = ""; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = ""; +$a->strings["Global directory URL"] = ""; +$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = ""; +$a->strings["Allow threaded items"] = ""; +$a->strings["Allow infinite level threading for items on this site."] = ""; +$a->strings["Private posts by default for new users"] = ""; +$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = ""; +$a->strings["Don't include post content in email notifications"] = ""; +$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = ""; +$a->strings["Disallow public access to addons listed in the apps menu."] = ""; +$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = ""; +$a->strings["Don't embed private images in posts"] = ""; +$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = ""; +$a->strings["Allow Users to set remote_self"] = ""; +$a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = ""; +$a->strings["Block multiple registrations"] = ""; +$a->strings["Disallow users to register additional accounts for use as pages."] = ""; +$a->strings["OpenID support"] = ""; +$a->strings["OpenID support for registration and logins."] = ""; +$a->strings["Fullname check"] = ""; +$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = ""; +$a->strings["Community Page Style"] = ""; +$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = ""; +$a->strings["Posts per user on community page"] = ""; +$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = ""; +$a->strings["Enable OStatus support"] = ""; +$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = ""; +$a->strings["OStatus conversation completion interval"] = ""; +$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = ""; +$a->strings["Only import OStatus threads from our contacts"] = ""; +$a->strings["Normally we import every content from our OStatus contacts. With this option we only store threads that are started by a contact that is known on our system."] = ""; +$a->strings["OStatus support can only be enabled if threading is enabled."] = ""; +$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = ""; +$a->strings["Enable Diaspora support"] = ""; +$a->strings["Provide built-in Diaspora network compatibility."] = ""; +$a->strings["Only allow Friendica contacts"] = ""; +$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = ""; +$a->strings["Verify SSL"] = ""; +$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = ""; +$a->strings["Proxy user"] = ""; +$a->strings["Proxy URL"] = ""; +$a->strings["Network timeout"] = ""; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = ""; +$a->strings["Maximum Load Average"] = ""; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = ""; +$a->strings["Maximum Load Average (Frontend)"] = ""; +$a->strings["Maximum system load before the frontend quits service - default 50."] = ""; +$a->strings["Minimal Memory"] = ""; +$a->strings["Minimal free memory in MB for the poller. Needs access to /proc/meminfo - default 0 (deactivated)."] = ""; +$a->strings["Maximum table size for optimization"] = ""; +$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = ""; +$a->strings["Minimum level of fragmentation"] = ""; +$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = ""; +$a->strings["Periodical check of global contacts"] = ""; +$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = ""; +$a->strings["Days between requery"] = ""; +$a->strings["Number of days after which a server is requeried for his contacts."] = ""; +$a->strings["Discover contacts from other servers"] = ""; +$a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = "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 recommend setting is 'Users, Global Contacts'."; +$a->strings["Timeframe for fetching global contacts"] = ""; +$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = ""; +$a->strings["Search the local directory"] = ""; +$a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = ""; +$a->strings["Publish server information"] = ""; +$a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details."] = ""; +$a->strings["Suppress Tags"] = ""; +$a->strings["Suppress showing a list of hashtags at the end of the posting."] = ""; +$a->strings["Path to item cache"] = ""; +$a->strings["The item caches buffers generated bbcode and external images."] = ""; +$a->strings["Cache duration in seconds"] = ""; +$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = ""; +$a->strings["Maximum numbers of comments per post"] = ""; +$a->strings["How much comments should be shown for each post? Default value is 100."] = ""; +$a->strings["Temp path"] = ""; +$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = ""; +$a->strings["Base path to installation"] = ""; +$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = ""; +$a->strings["Disable picture proxy"] = ""; +$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = ""; +$a->strings["Only search in tags"] = ""; +$a->strings["On large systems the text search can slow down the system extremely."] = ""; +$a->strings["New base url"] = ""; +$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = ""; +$a->strings["RINO Encryption"] = ""; +$a->strings["Encryption layer between nodes."] = ""; +$a->strings["Maximum number of parallel workers"] = ""; +$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = ""; +$a->strings["Don't use 'proc_open' with the worker"] = ""; +$a->strings["Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosters. If this is enabled you should increase the frequency of poller calls in your crontab."] = ""; +$a->strings["Enable fastlane"] = ""; +$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = ""; +$a->strings["Enable frontend worker"] = ""; +$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = ""; +$a->strings["Update has been marked successful"] = ""; +$a->strings["Database structure update %s was successfully applied."] = ""; +$a->strings["Executing of database structure update %s failed with error: %s"] = ""; +$a->strings["Executing %s failed with error: %s"] = ""; +$a->strings["Update %s was successfully applied."] = ""; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = ""; +$a->strings["There was no additional update function %s that needed to be called."] = ""; +$a->strings["No failed updates."] = ""; +$a->strings["Check database structure"] = ""; +$a->strings["Failed Updates"] = ""; +$a->strings["This does not include updates prior to 1139, which did not return a status."] = ""; +$a->strings["Mark success (if update was manually applied)"] = ""; +$a->strings["Attempt to execute this update step automatically"] = ""; +$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = ""; +$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = ""; +$a->strings["%s user blocked/unblocked"] = array( + 0 => "", + 1 => "", +); +$a->strings["%s user deleted"] = array( + 0 => "", + 1 => "", +); +$a->strings["User '%s' deleted"] = ""; +$a->strings["User '%s' unblocked"] = ""; +$a->strings["User '%s' blocked"] = ""; +$a->strings["Register date"] = ""; +$a->strings["Last login"] = ""; +$a->strings["Last item"] = ""; +$a->strings["Add User"] = ""; +$a->strings["select all"] = ""; +$a->strings["User registrations waiting for confirm"] = ""; +$a->strings["User waiting for permanent deletion"] = ""; +$a->strings["Request date"] = ""; +$a->strings["No registrations."] = ""; +$a->strings["Note from the user"] = ""; +$a->strings["Deny"] = ""; +$a->strings["Site admin"] = ""; +$a->strings["Account expired"] = ""; +$a->strings["New User"] = ""; +$a->strings["Deleted since"] = ""; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; +$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; +$a->strings["Name of the new user."] = ""; +$a->strings["Nickname"] = ""; +$a->strings["Nickname of the new user."] = ""; +$a->strings["Email address of the new user."] = ""; +$a->strings["Plugin %s disabled."] = ""; +$a->strings["Plugin %s enabled."] = ""; +$a->strings["Disable"] = ""; +$a->strings["Enable"] = ""; +$a->strings["Toggle"] = ""; +$a->strings["Author: "] = ""; +$a->strings["Maintainer: "] = ""; +$a->strings["Reload active plugins"] = ""; +$a->strings["There are currently no plugins available on your node. You can find the official plugin repository at %1\$s and might find other interesting plugins in the open plugin registry at %2\$s"] = ""; +$a->strings["No themes found."] = ""; +$a->strings["Screenshot"] = ""; +$a->strings["Reload active themes"] = ""; +$a->strings["No themes found on the system. They should be paced in %1\$s"] = ""; +$a->strings["[Experimental]"] = ""; +$a->strings["[Unsupported]"] = ""; +$a->strings["Log settings updated."] = ""; +$a->strings["PHP log currently enabled."] = ""; +$a->strings["PHP log currently disabled."] = ""; +$a->strings["Clear"] = ""; +$a->strings["Enable Debugging"] = ""; +$a->strings["Log file"] = ""; +$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = ""; +$a->strings["Log level"] = ""; +$a->strings["PHP logging"] = ""; +$a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = ""; +$a->strings["Lock feature %s"] = ""; +$a->strings["Manage Additional Features"] = ""; +$a->strings["via"] = ""; +$a->strings["greenzero"] = ""; +$a->strings["purplezero"] = ""; +$a->strings["easterbunny"] = ""; +$a->strings["darkzero"] = ""; +$a->strings["comix"] = ""; +$a->strings["slackr"] = ""; +$a->strings["Variations"] = ""; +$a->strings["Default"] = ""; +$a->strings["Note: "] = ""; +$a->strings["Check image permissions if all users are allowed to visit the image"] = ""; +$a->strings["Select scheme"] = ""; +$a->strings["Navigation bar background color"] = ""; +$a->strings["Navigation bar icon color "] = ""; +$a->strings["Link color"] = ""; +$a->strings["Set the background color"] = ""; +$a->strings["Content background transparency"] = ""; +$a->strings["Set the background image"] = ""; +$a->strings["Repeat the image"] = ""; +$a->strings["Will repeat your image to fill the background."] = ""; +$a->strings["Stretch"] = ""; +$a->strings["Will stretch to width/height of the image."] = ""; +$a->strings["Resize fill and-clip"] = ""; +$a->strings["Resize to fill and retain aspect ratio."] = ""; +$a->strings["Resize best fit"] = ""; +$a->strings["Resize to best fit and retain aspect ratio."] = ""; +$a->strings["Guest"] = ""; +$a->strings["Visitor"] = ""; +$a->strings["Alignment"] = ""; +$a->strings["Left"] = ""; +$a->strings["Center"] = ""; +$a->strings["Color scheme"] = ""; +$a->strings["Posts font size"] = ""; +$a->strings["Textareas font size"] = ""; +$a->strings["Comma separated list of helper forums"] = ""; +$a->strings["Set style"] = ""; +$a->strings["Community Pages"] = ""; +$a->strings["Community Profiles"] = ""; +$a->strings["Help or @NewHere ?"] = ""; +$a->strings["Connect Services"] = ""; +$a->strings["Find Friends"] = ""; +$a->strings["Last users"] = ""; +$a->strings["Local Directory"] = ""; +$a->strings["Quick Start"] = ""; +$a->strings["toggle mobile"] = ""; +$a->strings["Delete this item?"] = "Delete this item?"; +$a->strings["show fewer"] = "Show fewer."; +$a->strings["Update %s failed. See error logs."] = "Update %s failed. See error logs."; +$a->strings["Create a New Account"] = "Create a new account"; +$a->strings["Password: "] = "Password: "; +$a->strings["Remember me"] = "Remember me"; +$a->strings["Or login using OpenID: "] = "Or login with OpenID: "; +$a->strings["Forgot your password?"] = "Forgot your password?"; +$a->strings["Website Terms of Service"] = "Website Terms of Service"; +$a->strings["terms of service"] = "Terms of service"; +$a->strings["Website Privacy Policy"] = ""; +$a->strings["privacy policy"] = "Privacy policy"; From e37b6bcd41560a229e23a812a72b6b44e54ed7f0 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 23 May 2017 19:38:47 +0000 Subject: [PATCH 036/125] Probing via web frontend shouldn't use the cache. --- mod/probe.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/mod/probe.php b/mod/probe.php index abeccef446..dfd4792c9b 100644 --- a/mod/probe.php +++ b/mod/probe.php @@ -1,8 +1,7 @@ '; $o .= str_replace("\n", '
', print_r($res, true)); $o .= ''; From 07e318e991b71c31656d406aa79e5e928e0f2d75 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 23 May 2017 20:19:39 +0000 Subject: [PATCH 037/125] some more logging --- src/Network/Probe.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/Network/Probe.php b/src/Network/Probe.php index 2901ead0e4..5606332849 100644 --- a/src/Network/Probe.php +++ b/src/Network/Probe.php @@ -79,6 +79,8 @@ class Probe { $xrd_timeout = Config::get('system', 'xrd_timeout', 20); $redirects = 0; + logger("Probing for ".$host, LOGGER_DEBUG); + $ret = z_fetch_url($ssl_url, false, $redirects, array('timeout' => $xrd_timeout, 'accept_content' => 'application/xrd+xml')); if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) { return false; @@ -101,6 +103,7 @@ class Probe { $links = xml::element_to_array($xrd); if (!isset($links["xrd"]["link"])) { + logger("No xrd data found for ".$host, LOGGER_DEBUG); return false; } @@ -214,6 +217,7 @@ class Probe { } if (!$lrdd) { + logger("No lrdd data found for ".$uri, LOGGER_DEBUG); return array(); } @@ -249,6 +253,7 @@ class Probe { } if (!is_array($webfinger["links"])) { + logger("No webfinger links found for ".$uri, LOGGER_DEBUG); return false; } @@ -435,6 +440,7 @@ class Probe { $addr = $uri; } else { + logger("Uri ".$uri." was not detectable", LOGGER_DEBUG); return false; } @@ -544,6 +550,7 @@ class Probe { $webfinger = json_decode($data, true); if (!isset($webfinger["links"])) { + logger("No json webfinger links for ".$url, LOGGER_DEBUG); return false; } @@ -552,6 +559,7 @@ class Probe { $xrd_arr = xml::element_to_array($xrd); if (!isset($xrd_arr["xrd"]["link"])) { + logger("No XML webfinger links for ".$url, LOGGER_DEBUG); return false; } @@ -599,11 +607,13 @@ class Probe { } $content = $ret['body']; if (!$content) { + logger("Empty body for ".$noscrape_url, LOGGER_DEBUG); return false; } $json = json_decode($content, true); if (!is_array($json)) { + logger("No json data for ".$noscrape_url, LOGGER_DEBUG); return false; } From d7de7bb70a4e74e7f771160857ce78e5d74860be Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 24 May 2017 06:29:47 +0000 Subject: [PATCH 038/125] Optimized priorities for the automated expiring of items --- include/cron.php | 9 +++++++-- include/items.php | 16 ++++++++++------ include/notifier.php | 19 +++++++++++++++---- 3 files changed, 32 insertions(+), 12 deletions(-) diff --git a/include/cron.php b/include/cron.php index bac9c8a3d8..9b3a5e16c1 100644 --- a/include/cron.php +++ b/include/cron.php @@ -195,7 +195,7 @@ function cron_poll_contacts($argc, $argv) { $contact['priority'] = (($poll_interval !== false) ? intval($poll_interval) : 3); } - if ($contact['priority'] AND !$force) { + if (($contact['priority'] >= 0) AND !$force) { $update = false; $t = $contact['last-update']; @@ -225,11 +225,16 @@ function cron_poll_contacts($argc, $argv) { } break; case 1: - default: if (datetime_convert('UTC', 'UTC', 'now') > datetime_convert('UTC', 'UTC', $t . " + 1 hour")) { $update = true; } break; + case 0: + default: + if (datetime_convert('UTC', 'UTC', 'now') > datetime_convert('UTC', 'UTC', $t . " + 15 minute")) { + $update = true; + } + break; } if (!$update) { continue; diff --git a/include/items.php b/include/items.php index c36b842b4b..f6027e56ba 100644 --- a/include/items.php +++ b/include/items.php @@ -2076,7 +2076,7 @@ function item_expire($uid, $days, $network = "", $force = false) { drop_item($item['id'], false); } - proc_run(PRIORITY_HIGH, "include/notifier.php", "expire", $uid); + proc_run(PRIORITY_LOW, "include/notifier.php", "expire", $uid); } @@ -2099,7 +2099,7 @@ function drop_items($items) { // multiple threads may have been deleted, send an expire notification if ($uid) { - proc_run(PRIORITY_HIGH, "include/notifier.php", "expire", $uid); + proc_run(PRIORITY_LOW, "include/notifier.php", "expire", $uid); } } @@ -2290,11 +2290,15 @@ function drop_item($id, $interactive = true) { } } - $drop_id = intval($item['id']); + // send the notification upstream/downstream when it is one of our posts + // We don't have to do this for foreign posts + /// @todo Check if we still can delete foreign comments on our own post + if ($item['wall'] OR $item['origin']) { + $drop_id = intval($item['id']); + $priority = ($interactive ? PRIORITY_HIGH : PRIORITY_LOW); - // send the notification upstream/downstream as the case may be - - proc_run(PRIORITY_HIGH, "include/notifier.php", "drop", $drop_id); + proc_run($priority, "include/notifier.php", "drop", $drop_id); + } if (! $interactive) { return $owner; diff --git a/include/notifier.php b/include/notifier.php index 4f9b34d014..dd0a65089a 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -55,6 +55,17 @@ function notifier_run(&$argv, &$argc){ return; } + // Inherit the priority + $queue = dba::select('workerqueue', array('priority'), array('pid' => getmypid()), array('limit' => 1)); + if (dbm::is_result($queue)) { + $priority = $queue['priority']; + logger('inherited priority: '.$priority); + } else { + // Normally this shouldn't happen. + $priority = PRIORITY_HIGH; + logger('no inherited priority! Something is wrong.'); + } + logger('notifier: invoked: ' . print_r($argv,true), LOGGER_DEBUG); $cmd = $argv[1]; @@ -348,7 +359,7 @@ function notifier_run(&$argv, &$argc){ // a delivery fork. private groups (forum_mode == 2) do not uplink if ((intval($parent['forum_mode']) == 1) && (! $top_level) && ($cmd !== 'uplink')) { - proc_run(PRIORITY_HIGH,'include/notifier.php','uplink',$item_id); + proc_run($priority, 'include/notifier.php', 'uplink', $item_id); } $conversants = array(); @@ -487,7 +498,7 @@ function notifier_run(&$argv, &$argc){ } logger("Deliver ".$target_item["guid"]." to ".$contact['url']." via network ".$contact['network'], LOGGER_DEBUG); - proc_run(PRIORITY_HIGH,'include/delivery.php', $cmd, $item_id, $contact['id']); + proc_run($priority, 'include/delivery.php', $cmd, $item_id, $contact['id']); } } @@ -552,7 +563,7 @@ function notifier_run(&$argv, &$argc){ if ((! $mail) && (! $fsuggest) && (! $followup)) { logger('notifier: delivery agent: '.$rr['name'].' '.$rr['id'].' '.$rr['network'].' '.$target_item["guid"]); - proc_run(PRIORITY_HIGH,'include/delivery.php',$cmd,$item_id,$rr['id']); + proc_run($priority, 'include/delivery.php', $cmd, $item_id, $rr['id']); } } } @@ -592,7 +603,7 @@ function notifier_run(&$argv, &$argc){ } // Handling the pubsubhubbub requests - proc_run(PRIORITY_HIGH,'include/pubsubpublish.php'); + proc_run($priority, 'include/pubsubpublish.php'); } logger('notifier: calling hooks', LOGGER_DEBUG); From d2dd0b3248d2309fb3afd1e95a9cbd0071bed8bb Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 24 May 2017 08:21:05 +0000 Subject: [PATCH 039/125] Minimal poll intervall --- doc/htconfig.md | 1 + include/cron.php | 4 +++- include/items.php | 13 +++++-------- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/doc/htconfig.md b/doc/htconfig.md index b2f7cf66e3..2c8b44439c 100644 --- a/doc/htconfig.md +++ b/doc/htconfig.md @@ -54,6 +54,7 @@ Example: To set the directory value please add this line to your .htconfig.php: * **max_batch_queue** - Default value is 1000. * **max_processes_backend** - Maximum number of concurrent database processes for background tasks. Default value is 5. * **max_processes_frontend** - Maximum number of concurrent database processes for foreground tasks. Default value is 20. +* **min_poll_interval** - minimal distance in minutes between two polls for a contact. Default is 1. Reasonable values are between 1 and 59. * **memcache** (Boolean) - Use memcache. To use memcache the PECL extension "memcache" has to be installed and activated. * **memcache_host** - Hostname of the memcache daemon. Default is '127.0.0.1'. * **memcache_port** - Portnumber of the memcache daemon. Default is 11211. diff --git a/include/cron.php b/include/cron.php index 9b3a5e16c1..3702bf8b36 100644 --- a/include/cron.php +++ b/include/cron.php @@ -122,6 +122,8 @@ function cron_poll_contacts($argc, $argv) { $force = true; } + $min_poll_interval = Config::get('system', 'min_poll_interval', 1); + $sql_extra = (($manual_id) ? " AND `id` = $manual_id " : ""); reload_plugins(); @@ -231,7 +233,7 @@ function cron_poll_contacts($argc, $argv) { break; case 0: default: - if (datetime_convert('UTC', 'UTC', 'now') > datetime_convert('UTC', 'UTC', $t . " + 15 minute")) { + if (datetime_convert('UTC', 'UTC', 'now') > datetime_convert('UTC', 'UTC', $t . " + ".$min_poll_interval." minute")) { $update = true; } break; diff --git a/include/items.php b/include/items.php index f6027e56ba..4a68bd2864 100644 --- a/include/items.php +++ b/include/items.php @@ -2290,15 +2290,12 @@ function drop_item($id, $interactive = true) { } } - // send the notification upstream/downstream when it is one of our posts - // We don't have to do this for foreign posts - /// @todo Check if we still can delete foreign comments on our own post - if ($item['wall'] OR $item['origin']) { - $drop_id = intval($item['id']); - $priority = ($interactive ? PRIORITY_HIGH : PRIORITY_LOW); + // send the notification upstream/downstream + // The priority depends on how the deletion is done. + $drop_id = intval($item['id']); + $priority = ($interactive ? PRIORITY_HIGH : PRIORITY_LOW); - proc_run($priority, "include/notifier.php", "drop", $drop_id); - } + proc_run($priority, "include/notifier.php", "drop", $drop_id); if (! $interactive) { return $owner; From 3d14fa3d816cddf07b399cff0dad2a2c128dba4d Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 24 May 2017 10:36:44 +0000 Subject: [PATCH 040/125] Priority needs to be integer --- include/notifier.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/notifier.php b/include/notifier.php index dd0a65089a..f0396798f7 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -58,7 +58,7 @@ function notifier_run(&$argv, &$argc){ // Inherit the priority $queue = dba::select('workerqueue', array('priority'), array('pid' => getmypid()), array('limit' => 1)); if (dbm::is_result($queue)) { - $priority = $queue['priority']; + $priority = (int)$queue['priority']; logger('inherited priority: '.$priority); } else { // Normally this shouldn't happen. From 960a1b6e9b2fb6d4e2872be21513fa100cd895f6 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 24 May 2017 14:33:43 +0200 Subject: [PATCH 041/125] core --- CHANGELOG | 37 +++++++++++++++++++++++++++++++++++-- 1 file changed, 35 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 70c4cb0184..3d7d4d7e47 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,8 +1,41 @@ Version 3.5.2 (2017-05-XX) Friendica Core: - + Updates to the translations (DE, EN-GB, ES, IT, RU) [translation teams] + Updates to the documentation [annando, beardyunixer, rabuzarus, tobiasd] + Updated the nginx example configuration [beardyunixer] + Code revision and refractoring [annando, hypolite, Quix0r, rebeka-catalina] + Background process is now done by the new worker process [heluecht] + Added support of Composer for dependencies [Hypolite] + Added support of Web app manifests [Rudloff] + Added basic robot.txt functionality if none exists [Shnoulle] + Added server blocklist [Hypolite, tobiasd] + Removed mcrypt dependency [heluecht] + Removed unused libraries [heluecht] + Removed Embedly integration [Hypolite] + Fixed a bug in the language detection for EN [Hypolite] + Improved API [annando, gerhard6380] + Improved Diaspora federation [heluecht] + Improved Mastodon federation [heluecht, Hypolite] + Improved import from OStatus threads [heluecht] + Improved the themes (frio, quattro) [fabrixxm, Hypolite, rabuzarus, Rudloff, strk, tobiasd] + Improved maintenance mode [heluecht] + Improved gcontact handling [heluecht] + Improved desktop notifications [rabuzarus] + Improved keyboard shortcuts for navigation [Rudloff] + Improved the installer [heluecht] + Improved openid handling [strk] + Improved php7 support [heluecht] + Improved display of notifications [heluecht] + Improved logging mechanism [beardyunixer] + Behaviour clarification of the group filter / new tab [heluecht] + Old options for the pager and share element were removed [heluecht] + Support of PDO was added [heluecht] + Improved error logging for issues with the database [heluecht] + Adoption to changes in DateTime handling of MySQL [heluecht] + Friendica Addons: - Translations updated (RU) [pztrm] + Updates to the translation (RU) [pztrm] + (core) Fix blocking issue for Communityhome [heluecht] Pledgie addon was updated to remove cert problems [tobiasd] Securemail now uses openpgp-php and phpseclib [fabrixxm] Superblock Configuration [tobiasd] From d48a2776240f257505047979b6a53df90d09d953 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 24 May 2017 14:46:27 +0200 Subject: [PATCH 042/125] regen credits --- util/credits.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/util/credits.txt b/util/credits.txt index 92d8aca92c..8847eefa2f 100644 --- a/util/credits.txt +++ b/util/credits.txt @@ -13,6 +13,7 @@ Andreas H. Andrej Stieben André Alves André Lohan +Andy H3 Anthronaut Arian - Cazare Muncitori Athalbert From 068e52d4ea47e536ac2905d22afebb1625e4e5a0 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 24 May 2017 18:42:42 +0200 Subject: [PATCH 043/125] typo --- CHANGELOG | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 3d7d4d7e47..74a6f70bf8 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -3,7 +3,7 @@ Version 3.5.2 (2017-05-XX) Updates to the translations (DE, EN-GB, ES, IT, RU) [translation teams] Updates to the documentation [annando, beardyunixer, rabuzarus, tobiasd] Updated the nginx example configuration [beardyunixer] - Code revision and refractoring [annando, hypolite, Quix0r, rebeka-catalina] + Code revision and refactoring [annando, hypolite, Quix0r, rebeka-catalina] Background process is now done by the new worker process [heluecht] Added support of Composer for dependencies [Hypolite] Added support of Web app manifests [Rudloff] @@ -27,6 +27,7 @@ Version 3.5.2 (2017-05-XX) Improved php7 support [heluecht] Improved display of notifications [heluecht] Improved logging mechanism [beardyunixer] + Improved the worker [heluecht] Behaviour clarification of the group filter / new tab [heluecht] Old options for the pager and share element were removed [heluecht] Support of PDO was added [heluecht] From 646ef9842c8a0795abda1b10cad42f18fec7e89a Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 25 May 2017 03:04:26 +0000 Subject: [PATCH 044/125] Bugfix: pubsubpublish has always to be called with high priority --- include/notifier.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/notifier.php b/include/notifier.php index f0396798f7..74cfabb6cd 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -603,7 +603,7 @@ function notifier_run(&$argv, &$argc){ } // Handling the pubsubhubbub requests - proc_run($priority, 'include/pubsubpublish.php'); + proc_run(PRIORITY_HIGH, 'include/pubsubpublish.php'); } logger('notifier: calling hooks', LOGGER_DEBUG); From 65a0dc4a73edd556382bb3fa211757cb1cbf58d1 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Thu, 25 May 2017 08:00:22 +0200 Subject: [PATCH 045/125] MySQL version and annando --- CHANGELOG | 132 +++++++++++++++++++++++++++--------------------------- 1 file changed, 66 insertions(+), 66 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 74a6f70bf8..392609dc35 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -4,43 +4,43 @@ Version 3.5.2 (2017-05-XX) Updates to the documentation [annando, beardyunixer, rabuzarus, tobiasd] Updated the nginx example configuration [beardyunixer] Code revision and refactoring [annando, hypolite, Quix0r, rebeka-catalina] - Background process is now done by the new worker process [heluecht] + Background process is now done by the new worker process [annando] Added support of Composer for dependencies [Hypolite] Added support of Web app manifests [Rudloff] Added basic robot.txt functionality if none exists [Shnoulle] Added server blocklist [Hypolite, tobiasd] - Removed mcrypt dependency [heluecht] - Removed unused libraries [heluecht] + Removed mcrypt dependency [annando] + Removed unused libraries [annando] Removed Embedly integration [Hypolite] Fixed a bug in the language detection for EN [Hypolite] Improved API [annando, gerhard6380] - Improved Diaspora federation [heluecht] - Improved Mastodon federation [heluecht, Hypolite] - Improved import from OStatus threads [heluecht] + Improved Diaspora federation [annando] + Improved Mastodon federation [annando, Hypolite] + Improved import from OStatus threads [annando] Improved the themes (frio, quattro) [fabrixxm, Hypolite, rabuzarus, Rudloff, strk, tobiasd] - Improved maintenance mode [heluecht] - Improved gcontact handling [heluecht] + Improved maintenance mode [annando] + Improved gcontact handling [annando] Improved desktop notifications [rabuzarus] Improved keyboard shortcuts for navigation [Rudloff] - Improved the installer [heluecht] + Improved the installer [annando] Improved openid handling [strk] - Improved php7 support [heluecht] - Improved display of notifications [heluecht] + Improved php7 support [annando] + Improved display of notifications [annando] Improved logging mechanism [beardyunixer] - Improved the worker [heluecht] - Behaviour clarification of the group filter / new tab [heluecht] - Old options for the pager and share element were removed [heluecht] - Support of PDO was added [heluecht] - Improved error logging for issues with the database [heluecht] - Adoption to changes in DateTime handling of MySQL [heluecht] + Improved the worker [annando] + Improved compatibility with MySQL 5.7 + Behaviour clarification of the group filter / new tab [annando] + Old options for the pager and share element were removed [annando] + Support of PDO was added [annando] + Improved error logging for issues with the database [annando] Friendica Addons: Updates to the translation (RU) [pztrm] - (core) Fix blocking issue for Communityhome [heluecht] + (core) Fix blocking issue for Communityhome [annando] Pledgie addon was updated to remove cert problems [tobiasd] Securemail now uses openpgp-php and phpseclib [fabrixxm] Superblock Configuration [tobiasd] - Twitter Connector updated to use with new deletion method [heluecht] + Twitter Connector updated to use with new deletion method [annando] Closed Issues: 1626, 1720, 2432, 2792, 2833, 2364, 2448, 2496, 2690, 2752, 2775, @@ -54,10 +54,10 @@ Version 3.5.2 (2017-05-XX) Version 3.5.1 (2017-03-12) Friendica Core: Updates to the translations (BG, CA, CS, DE, EO, ES, FR, IS, IT, NL, PL, PT-BR, RU, SV) [translation teams] - Fix for a potential XSS vector [heluecht, thanks to Vít Šesták 'v6ak' for reporting the problem] + Fix for a potential XSS vector [annando, thanks to Vít Šesták 'v6ak' for reporting the problem] Fix for ghost request notifications on single user instances [Hypolite] Fix user language selection [tobiasd] - Fix a problem with communication to Diaspora with set posting locations [heluecht] + Fix a problem with communication to Diaspora with set posting locations [annando] Fix schema handling of direct links to a original posting [Rabuzarus] Fix a bug in notification handling [Rabuzarus] Adjustments for the Vagrant VM settings [silke, eelcomaljaars] @@ -65,22 +65,22 @@ Version 3.5.1 (2017-03-12) Improvements to the API and Friendica specific extensions [gerhard6380] Improvements to the Browser Notification functionality [Hypolite] Improvements to the themes [Hypolite, rabuzarus, rebeka-catalina, tobiasd] - Improvements to the database handling [heluecht] + Improvements to the database handling [annando] Improvements to the admin panel [tobiasd, Hypolite] - Improvements to the update process [heluecht] - Improvements to the handling of worker processes [heluecht] - Improvements to the performance [heluecht, Hypolite] + Improvements to the update process [annando] + Improvements to the handling of worker processes [annando] + Improvements to the performance [annando, Hypolite] Improvements to the documentation [Hypolite, tobiasd, rabuzarus, beardyunixer, eelcomaljaars] Improvements to the BBCode / Markdown conversation [Hypolite] - Improvements to the OStatus protocol implementation [heluecht] + Improvements to the OStatus protocol implementation [annando] Improvements to the installation wizzard [tobiasd] - Improvements to the Diaspora connectivity [heluecht, Hypolite] + Improvements to the Diaspora connectivity [annando, Hypolite] Work on PHP7 compatibility [ddorian1] Code cleanup [Hypolite, Quix0r] - Initial federation with Mastodon [heluecht] - The worker process can now also be started from the frontend [heluecht] - Deletion of postings is now done in the background [heluecht] - Extension of the DFRN transmitted information fields [heluecht] + Initial federation with Mastodon [annando] + The worker process can now also be started from the frontend [annando] + Deletion of postings is now done in the background [annando] + Extension of the DFRN transmitted information fields [annando] Translations of the core are now in /view/lang [Hypolite, tobiasd] Update of the fullCalendar library to 3.0.1 and adjusting the themes [rabuzarus] ping now works with JSON as well [Hypolite] @@ -99,16 +99,16 @@ Version 3.5.1 (2017-03-12) Updates to the translations (DE, ES, FR, IT, PT-BR) [translation teams] Improvements to the IFTTT addon [Hypolite] Improvements to the language filter addon [strk] - Improvements to the pump.io bridge [heluecht] - Improvements to the jappixmini addon [heluecht] - Improvements to the gpluspost addon [heluecht] - Improvements to the performance of the Twitter bridge when using workers [heluecht] - Diaspora Export addon is now working again [heluecht] + Improvements to the pump.io bridge [annando] + Improvements to the jappixmini addon [annando] + Improvements to the gpluspost addon [annando] + Improvements to the performance of the Twitter bridge when using workers [annando] + Diaspora Export addon is now working again [annando] Pledgie badge now uses https protocol for embedding [tobiasd] - Better posting loop prevention for the Google+/Twitter/GS connectors [heluecht] + Better posting loop prevention for the Google+/Twitter/GS connectors [annando] One can now configure the message for wppost bridged blog postings [tobiasd] - On some pages the result of the Rendertime is not shown anymore [heluecht] - Twitter-bridge now supports quotes and long posts when importing tweets [heluecht] + On some pages the result of the Rendertime is not shown anymore [annando] + Twitter-bridge now supports quotes and long posts when importing tweets [annando] Closed Issues 1019, 1163, 1612, 1613, 2103, 2177, 2252, 2260, 2403, 2991, 2614, @@ -120,48 +120,48 @@ Version 3.5.1 (2017-03-12) Version 3.5 (2016-09-13) Friendica Core: - NEW Optional local directory with possible federated contacts [heluecht] + NEW Optional local directory with possible federated contacts [annando] NEW Autocompletion for @-mentions and BBCode tags [rabuzarus] NEW Added a composer derived autoloader which allows composer autoloaders in addons/libraries [fabrixxm] - NEW theme: frio [rabuzarus, heluecht, fabrixxm] + NEW theme: frio [rabuzarus, annando, fabrixxm] Enhance .htaccess file (nerdoc, dissolve) Updates to the translations (DE, ES, IS, IT, RU) [translation teams] - Updates to the documentation [tobiasd, heluecht, mexcon, silke, rabuzarus, fabrixxm, Olivier Mehani, gerhard6380, ben utzer] - Extended the BBCode by [abstract] tag used for bridged postings to networks with limited character length [heluecht] - Code cleanup [heluecht, QuixOr] - Improvements to the API and Friendica specific extensions [heluecht, fabrixxm, gerhard6380] + Updates to the documentation [tobiasd, annando, mexcon, silke, rabuzarus, fabrixxm, Olivier Mehani, gerhard6380, ben utzer] + Extended the BBCode by [abstract] tag used for bridged postings to networks with limited character length [annando] + Code cleanup [annando, QuixOr] + Improvements to the API and Friendica specific extensions [annando, fabrixxm, gerhard6380] Improvements to the RSS/Atom feed import [mexcon] - Improvements to the communication with federated networks (Diaspora, Hubzilla, OStatus) [heluecht] - Improvements on the themes (quattro, vier, frost) [rabuzarus, fabrixxm, stieben, heluecht, Quix0r, tobiasd] + Improvements to the communication with federated networks (Diaspora, Hubzilla, OStatus) [annando] + Improvements on the themes (quattro, vier, frost) [rabuzarus, fabrixxm, stieben, annando, Quix0r, tobiasd] Improvements to the ACL dialog [fabrixxm, rabuzarus] - Improvements to the database structure and optimization of queries [heluecht] - Improvements to the UI (contacts, hotkeys, remember me, ARIA, code hightlighting) [rabuzarus, heluecht, tobiasd] - Improvements to the background process (poller, worker) [heluecht] - Improvements to the admin panel [tobiasd, heluecht, fabrixxm] - Improvements to the performance [heluecht] + Improvements to the database structure and optimization of queries [annando] + Improvements to the UI (contacts, hotkeys, remember me, ARIA, code hightlighting) [rabuzarus, annando, tobiasd] + Improvements to the background process (poller, worker) [annando] + Improvements to the admin panel [tobiasd, annando, fabrixxm] + Improvements to the performance [annando] Improvements to the installation wizzard (language selection, RINO version, check required PHP modules, default theme is now vier) [tobiasd] - Improvements to the relocation of nodes and accounts [heluecht] - Improvements to the DDoS detection [heluecht] - Improvements to the calendar/events module [heluecht, rabuzarus] + Improvements to the relocation of nodes and accounts [annando] + Improvements to the DDoS detection [annando] + Improvements to the calendar/events module [annando, rabuzarus] Improvements to OpenID login [strk] Improvements to the ShaShape font [andi] - Reworked the implementation of the DFRN, Diaspora protocols [heluecht] - Reworked the notifications code [fabrixxm, rabuzarus, heluecht] + Reworked the implementation of the DFRN, Diaspora protocols [annando] + Reworked the notifications code [fabrixxm, rabuzarus, annando] Reworked the p/config code [fabrixxm, rabuzarus] - Reworked XML generation [heluecht] - Removed now unused simplepie from library [heluecht] + Reworked XML generation [annando] + Removed now unused simplepie from library [annando] Friendica Addons Updated to the translations (DE, ES, IS, NL, PT BR), [translation teams] Piwik [tobiasd] - Twitter Connector [heluecht] - Pumpio Connector [heluecht] - Rendertime [heluecht] - wppost [heluecht] + Twitter Connector [annando] + Pumpio Connector [annando] + Rendertime [annando] + wppost [annando] showmore [rabuzarus] - fromgplus [heluecht] - app.net Connector [heluecht] - GNU Social Connector [heluecht] + fromgplus [annando] + app.net Connector [annando] + GNU Social Connector [annando] LDAP [Olivier Mehani] smileybutton [rabuzarus] retriver [mexon] From 226c7f7910d634a80e17f6eeb76a3ef68baff1f7 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sat, 27 May 2017 09:09:41 +0200 Subject: [PATCH 046/125] RU translations THX pztrn --- view/lang/ru/messages.po | 9201 +++++++++++++++++++------------------- view/lang/ru/strings.php | 1731 +++---- 2 files changed, 5528 insertions(+), 5404 deletions(-) diff --git a/view/lang/ru/messages.po b/view/lang/ru/messages.po index 6690728d93..8986fad38a 100644 --- a/view/lang/ru/messages.po +++ b/view/lang/ru/messages.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-03-20 08:24+0100\n" -"PO-Revision-Date: 2017-04-08 16:49+0000\n" +"POT-Creation-Date: 2017-05-03 07:08+0200\n" +"PO-Revision-Date: 2017-05-26 12:25+0000\n" "Last-Translator: Stanislav N. \n" "Language-Team: Russian (http://www.transifex.com/Friendica/friendica/language/ru/)\n" "MIME-Version: 1.0\n" @@ -29,156 +29,34 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: boot.php:976 -msgid "Delete this item?" -msgstr "Удалить этот элемент?" - -#: boot.php:977 include/ForumManager.php:119 include/contact_widgets.php:253 -#: include/items.php:2254 mod/content.php:624 object/Item.php:420 -#: view/theme/vier/theme.php:255 -msgid "show more" -msgstr "показать больше" - -#: boot.php:978 -msgid "show fewer" -msgstr "показать меньше" - -#: boot.php:1667 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Обновление %s не удалось. Смотрите журнал ошибок." - -#: boot.php:1779 -msgid "Create a New Account" -msgstr "Создать новый аккаунт" - -#: boot.php:1780 include/nav.php:109 mod/register.php:289 -msgid "Register" -msgstr "Регистрация" - -#: boot.php:1804 include/nav.php:78 view/theme/frio/theme.php:243 -msgid "Logout" -msgstr "Выход" - -#: boot.php:1805 include/nav.php:95 mod/bookmarklet.php:12 -msgid "Login" -msgstr "Вход" - -#: boot.php:1807 mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "Ник или E-mail: " - -#: boot.php:1808 -msgid "Password: " -msgstr "Пароль: " - -#: boot.php:1809 -msgid "Remember me" -msgstr "Запомнить" - -#: boot.php:1812 -msgid "Or login using OpenID: " -msgstr "Или зайти с OpenID: " - -#: boot.php:1818 -msgid "Forgot your password?" -msgstr "Забыли пароль?" - -#: boot.php:1819 mod/lostpass.php:110 -msgid "Password Reset" -msgstr "Сброс пароля" - -#: boot.php:1821 -msgid "Website Terms of Service" -msgstr "Правила сайта" - -#: boot.php:1822 -msgid "terms of service" -msgstr "правила" - -#: boot.php:1824 -msgid "Website Privacy Policy" -msgstr "Политика конфиденциальности сервера" - -#: boot.php:1825 -msgid "privacy policy" -msgstr "политика конфиденциальности" - -#: include/Contact.php:387 include/Contact.php:400 include/Contact.php:445 -#: include/conversation.php:970 include/conversation.php:986 -#: mod/allfriends.php:68 mod/directory.php:157 mod/dirfind.php:209 -#: mod/match.php:73 mod/suggest.php:82 -msgid "View Profile" -msgstr "Просмотреть профиль" - -#: include/Contact.php:401 include/contact_widgets.php:32 -#: include/conversation.php:983 mod/allfriends.php:69 mod/contacts.php:610 -#: mod/dirfind.php:210 mod/follow.php:106 mod/match.php:74 mod/suggest.php:83 -msgid "Connect/Follow" -msgstr "Подключиться/Следовать" - -#: include/Contact.php:444 include/conversation.php:969 -msgid "View Status" -msgstr "Просмотреть статус" - -#: include/Contact.php:446 include/conversation.php:971 -msgid "View Photos" -msgstr "Просмотреть фото" - -#: include/Contact.php:447 include/conversation.php:972 -msgid "Network Posts" -msgstr "Посты сети" - -#: include/Contact.php:448 include/conversation.php:973 -msgid "View Contact" -msgstr "Просмотреть контакт" - -#: include/Contact.php:449 -msgid "Drop Contact" -msgstr "Удалить контакт" - -#: include/Contact.php:450 include/conversation.php:974 -msgid "Send PM" -msgstr "Отправить ЛС" - -#: include/Contact.php:451 include/conversation.php:978 -msgid "Poke" -msgstr "потыкать" - -#: include/Contact.php:828 -msgid "Organisation" -msgstr "Организация" - -#: include/Contact.php:831 -msgid "News" -msgstr "Новости" - -#: include/Contact.php:834 -msgid "Forum" -msgstr "Форум" - -#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1027 -#: view/theme/vier/theme.php:250 +#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1093 +#: view/theme/vier/theme.php:254 msgid "Forums" msgstr "Форумы" -#: include/ForumManager.php:116 view/theme/vier/theme.php:252 +#: include/ForumManager.php:116 view/theme/vier/theme.php:256 msgid "External link to forum" msgstr "Внешняя ссылка на форум" +#: include/ForumManager.php:119 include/contact_widgets.php:269 +#: include/items.php:2450 mod/content.php:624 object/Item.php:420 +#: view/theme/vier/theme.php:259 boot.php:1000 +msgid "show more" +msgstr "показать больше" + #: include/NotificationsManager.php:153 msgid "System" msgstr "Система" -#: include/NotificationsManager.php:160 include/nav.php:158 mod/admin.php:421 +#: include/NotificationsManager.php:160 include/nav.php:158 mod/admin.php:517 #: view/theme/frio/theme.php:253 msgid "Network" msgstr "Новости" -#: include/NotificationsManager.php:167 mod/network.php:829 -#: mod/profiles.php:695 +#: include/NotificationsManager.php:167 mod/network.php:832 +#: mod/profiles.php:696 msgid "Personal" -msgstr "Персонал" +msgstr "Личные" #: include/NotificationsManager.php:174 include/nav.php:105 #: include/nav.php:161 @@ -242,128 +120,811 @@ msgid "New Follower" msgstr "Новый фолловер" #: include/Photo.php:1038 include/Photo.php:1054 include/Photo.php:1062 -#: include/Photo.php:1087 include/message.php:146 mod/item.php:462 -#: mod/wall_upload.php:216 mod/wall_upload.php:230 mod/wall_upload.php:237 +#: include/Photo.php:1087 include/message.php:146 mod/wall_upload.php:249 +#: mod/item.php:467 msgid "Wall Photos" msgstr "Фото стены" -#: include/acl_selectors.php:341 +#: include/delivery.php:427 +msgid "(no subject)" +msgstr "(без темы)" + +#: include/delivery.php:439 include/enotify.php:43 +msgid "noreply" +msgstr "без ответа" + +#: include/like.php:27 include/conversation.php:153 include/diaspora.php:1576 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s нравится %3$s от %2$s " + +#: include/like.php:31 include/like.php:36 include/conversation.php:156 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s не нравится %3$s от %2$s " + +#: include/like.php:41 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "" + +#: include/like.php:46 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "" + +#: include/like.php:51 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "" + +#: include/like.php:178 include/conversation.php:141 +#: include/conversation.php:293 include/text.php:1872 mod/subthread.php:88 +#: mod/tagger.php:62 +msgid "photo" +msgstr "фото" + +#: include/like.php:178 include/conversation.php:136 +#: include/conversation.php:146 include/conversation.php:288 +#: include/conversation.php:297 include/diaspora.php:1580 mod/subthread.php:88 +#: mod/tagger.php:62 +msgid "status" +msgstr "статус" + +#: include/like.php:180 include/conversation.php:133 +#: include/conversation.php:285 include/text.php:1870 +msgid "event" +msgstr "мероприятие" + +#: include/message.php:15 include/message.php:169 +msgid "[no subject]" +msgstr "[без темы]" + +#: include/nav.php:35 mod/navigation.php:19 +msgid "Nothing new here" +msgstr "Ничего нового здесь" + +#: include/nav.php:39 mod/navigation.php:23 +msgid "Clear notifications" +msgstr "Стереть уведомления" + +#: include/nav.php:40 include/text.php:1083 +msgid "@name, !forum, #tags, content" +msgstr "@имя, !форум, #тег, контент" + +#: include/nav.php:78 view/theme/frio/theme.php:243 boot.php:1867 +msgid "Logout" +msgstr "Выход" + +#: include/nav.php:78 view/theme/frio/theme.php:243 +msgid "End this session" +msgstr "Завершить эту сессию" + +#: include/nav.php:81 include/identity.php:769 mod/contacts.php:645 +#: mod/contacts.php:841 view/theme/frio/theme.php:246 +msgid "Status" +msgstr "Посты" + +#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:246 +msgid "Your posts and conversations" +msgstr "Данные вашей учётной записи" + +#: include/nav.php:82 include/identity.php:622 include/identity.php:744 +#: include/identity.php:777 mod/contacts.php:647 mod/contacts.php:849 +#: mod/newmember.php:32 mod/profperm.php:105 view/theme/frio/theme.php:247 +msgid "Profile" +msgstr "Информация" + +#: include/nav.php:82 view/theme/frio/theme.php:247 +msgid "Your profile page" +msgstr "Информация о вас" + +#: include/nav.php:83 include/identity.php:785 mod/fbrowser.php:31 +#: view/theme/frio/theme.php:248 +msgid "Photos" +msgstr "Фото" + +#: include/nav.php:83 view/theme/frio/theme.php:248 +msgid "Your photos" +msgstr "Ваши фотографии" + +#: include/nav.php:84 include/identity.php:793 include/identity.php:796 +#: view/theme/frio/theme.php:249 +msgid "Videos" +msgstr "Видео" + +#: include/nav.php:84 view/theme/frio/theme.php:249 +msgid "Your videos" +msgstr "Ваши видео" + +#: include/nav.php:85 include/nav.php:149 include/identity.php:805 +#: include/identity.php:816 mod/cal.php:270 mod/events.php:374 +#: view/theme/frio/theme.php:250 view/theme/frio/theme.php:254 +msgid "Events" +msgstr "Мероприятия" + +#: include/nav.php:85 view/theme/frio/theme.php:250 +msgid "Your events" +msgstr "Ваши события" + +#: include/nav.php:86 +msgid "Personal notes" +msgstr "Личные заметки" + +#: include/nav.php:86 +msgid "Your personal notes" +msgstr "Ваши личные заметки" + +#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1868 +msgid "Login" +msgstr "Вход" + +#: include/nav.php:95 +msgid "Sign in" +msgstr "Вход" + +#: include/nav.php:105 +msgid "Home Page" +msgstr "Главная страница" + +#: include/nav.php:109 mod/register.php:289 boot.php:1844 +msgid "Register" +msgstr "Регистрация" + +#: include/nav.php:109 +msgid "Create an account" +msgstr "Создать аккаунт" + +#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:297 +msgid "Help" +msgstr "Помощь" + +#: include/nav.php:115 +msgid "Help and documentation" +msgstr "Помощь и документация" + +#: include/nav.php:119 +msgid "Apps" +msgstr "Приложения" + +#: include/nav.php:119 +msgid "Addon applications, utilities, games" +msgstr "Дополнительные приложения, утилиты, игры" + +#: include/nav.php:123 include/text.php:1080 mod/search.php:149 +msgid "Search" +msgstr "Поиск" + +#: include/nav.php:123 +msgid "Search site content" +msgstr "Поиск по сайту" + +#: include/nav.php:126 include/text.php:1088 +msgid "Full Text" +msgstr "Контент" + +#: include/nav.php:127 include/text.php:1089 +msgid "Tags" +msgstr "Тэги" + +#: include/nav.php:128 include/nav.php:192 include/identity.php:838 +#: include/identity.php:841 include/text.php:1090 mod/contacts.php:800 +#: mod/contacts.php:861 mod/viewcontacts.php:121 view/theme/frio/theme.php:257 +msgid "Contacts" +msgstr "Контакты" + +#: include/nav.php:143 include/nav.php:145 mod/community.php:32 +msgid "Community" +msgstr "Сообщество" + +#: include/nav.php:143 +msgid "Conversations on this site" +msgstr "Беседы на этом сайте" + +#: include/nav.php:145 +msgid "Conversations on the network" +msgstr "Беседы в сети" + +#: include/nav.php:149 include/identity.php:808 include/identity.php:819 +#: view/theme/frio/theme.php:254 +msgid "Events and Calendar" +msgstr "Календарь и события" + +#: include/nav.php:152 +msgid "Directory" +msgstr "Каталог" + +#: include/nav.php:152 +msgid "People directory" +msgstr "Каталог участников" + +#: include/nav.php:154 +msgid "Information" +msgstr "Информация" + +#: include/nav.php:154 +msgid "Information about this friendica instance" +msgstr "Информация об этом экземпляре Friendica" + +#: include/nav.php:158 view/theme/frio/theme.php:253 +msgid "Conversations from your friends" +msgstr "Сообщения ваших друзей" + +#: include/nav.php:159 +msgid "Network Reset" +msgstr "Перезагрузка сети" + +#: include/nav.php:159 +msgid "Load Network page with no filters" +msgstr "Загрузить страницу сети без фильтров" + +#: include/nav.php:166 +msgid "Friend Requests" +msgstr "Запросы на добавление в список друзей" + +#: include/nav.php:169 mod/notifications.php:96 +msgid "Notifications" +msgstr "Уведомления" + +#: include/nav.php:170 +msgid "See all notifications" +msgstr "Посмотреть все уведомления" + +#: include/nav.php:171 mod/settings.php:906 +msgid "Mark as seen" +msgstr "Отметить, как прочитанное" + +#: include/nav.php:171 +msgid "Mark all system notifications seen" +msgstr "Отметить все системные уведомления, как прочитанные" + +#: include/nav.php:175 mod/message.php:179 view/theme/frio/theme.php:255 +msgid "Messages" +msgstr "Сообщения" + +#: include/nav.php:175 view/theme/frio/theme.php:255 +msgid "Private mail" +msgstr "Личная почта" + +#: include/nav.php:176 +msgid "Inbox" +msgstr "Входящие" + +#: include/nav.php:177 +msgid "Outbox" +msgstr "Исходящие" + +#: include/nav.php:178 mod/message.php:16 +msgid "New Message" +msgstr "Новое сообщение" + +#: include/nav.php:181 +msgid "Manage" +msgstr "Управлять" + +#: include/nav.php:181 +msgid "Manage other pages" +msgstr "Управление другими страницами" + +#: include/nav.php:184 mod/settings.php:81 +msgid "Delegations" +msgstr "Делегирование" + +#: include/nav.php:184 mod/delegate.php:130 +msgid "Delegate Page Management" +msgstr "Делегировать управление страницей" + +#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111 +#: mod/admin.php:1618 mod/admin.php:1894 view/theme/frio/theme.php:256 +msgid "Settings" +msgstr "Настройки" + +#: include/nav.php:186 view/theme/frio/theme.php:256 +msgid "Account settings" +msgstr "Настройки аккаунта" + +#: include/nav.php:189 include/identity.php:290 +msgid "Profiles" +msgstr "Профили" + +#: include/nav.php:189 +msgid "Manage/Edit Profiles" +msgstr "Управление/редактирование профилей" + +#: include/nav.php:192 view/theme/frio/theme.php:257 +msgid "Manage/edit friends and contacts" +msgstr "Управление / редактирование друзей и контактов" + +#: include/nav.php:197 mod/admin.php:196 +msgid "Admin" +msgstr "Администратор" + +#: include/nav.php:197 +msgid "Site setup and configuration" +msgstr "Конфигурация сайта" + +#: include/nav.php:200 +msgid "Navigation" +msgstr "Навигация" + +#: include/nav.php:200 +msgid "Site map" +msgstr "Карта сайта" + +#: include/plugin.php:530 include/plugin.php:532 +msgid "Click here to upgrade." +msgstr "Нажмите для обновления." + +#: include/plugin.php:538 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Это действие превышает лимиты, установленные вашим тарифным планом." + +#: include/plugin.php:543 +msgid "This action is not available under your subscription plan." +msgstr "Это действие не доступно в соответствии с вашим планом подписки." + +#: include/profile_selectors.php:6 +msgid "Male" +msgstr "Мужчина" + +#: include/profile_selectors.php:6 +msgid "Female" +msgstr "Женщина" + +#: include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "В данный момент мужчина" + +#: include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "В настоящее время женщина" + +#: include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "В основном мужчина" + +#: include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "В основном женщина" + +#: include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Транссексуал" + +#: include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Интерсексуал" + +#: include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Транссексуал" + +#: include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Гермафродит" + +#: include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Средний род" + +#: include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Не определен" + +#: include/profile_selectors.php:6 +msgid "Other" +msgstr "Другой" + +#: include/profile_selectors.php:6 include/conversation.php:1547 +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: include/profile_selectors.php:23 +msgid "Males" +msgstr "Мужчины" + +#: include/profile_selectors.php:23 +msgid "Females" +msgstr "Женщины" + +#: include/profile_selectors.php:23 +msgid "Gay" +msgstr "Гей" + +#: include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "Лесбиянка" + +#: include/profile_selectors.php:23 +msgid "No Preference" +msgstr "Без предпочтений" + +#: include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "Бисексуал" + +#: include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "Автосексуал" + +#: include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "Воздержанный" + +#: include/profile_selectors.php:23 +msgid "Virgin" +msgstr "Девственница" + +#: include/profile_selectors.php:23 +msgid "Deviant" +msgstr "Deviant" + +#: include/profile_selectors.php:23 +msgid "Fetish" +msgstr "Фетиш" + +#: include/profile_selectors.php:23 +msgid "Oodles" +msgstr "Групповой" + +#: include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "Нет интереса к сексу" + +#: include/profile_selectors.php:42 +msgid "Single" +msgstr "Без пары" + +#: include/profile_selectors.php:42 +msgid "Lonely" +msgstr "Пока никого нет" + +#: include/profile_selectors.php:42 +msgid "Available" +msgstr "Доступный" + +#: include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "Не ищу никого" + +#: include/profile_selectors.php:42 +msgid "Has crush" +msgstr "Имеет ошибку" + +#: include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "Влюблён" + +#: include/profile_selectors.php:42 +msgid "Dating" +msgstr "Свидания" + +#: include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "Изменяю супругу" + +#: include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "Люблю секс" + +#: include/profile_selectors.php:42 include/user.php:263 include/user.php:267 +msgid "Friends" +msgstr "Друзья" + +#: include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "Друзья / Предпочтения" + +#: include/profile_selectors.php:42 +msgid "Casual" +msgstr "Обычный" + +#: include/profile_selectors.php:42 +msgid "Engaged" +msgstr "Занят" + +#: include/profile_selectors.php:42 +msgid "Married" +msgstr "Женат / Замужем" + +#: include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "Воображаемо женат (замужем)" + +#: include/profile_selectors.php:42 +msgid "Partners" +msgstr "Партнеры" + +#: include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "Партнерство" + +#: include/profile_selectors.php:42 +msgid "Common law" +msgstr "" + +#: include/profile_selectors.php:42 +msgid "Happy" +msgstr "Счастлив/а/" + +#: include/profile_selectors.php:42 +msgid "Not looking" +msgstr "Не в поиске" + +#: include/profile_selectors.php:42 +msgid "Swinger" +msgstr "Свинг" + +#: include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "Преданный" + +#: include/profile_selectors.php:42 +msgid "Separated" +msgstr "Разделенный" + +#: include/profile_selectors.php:42 +msgid "Unstable" +msgstr "Нестабильный" + +#: include/profile_selectors.php:42 +msgid "Divorced" +msgstr "Разведен(а)" + +#: include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "Воображаемо разведен(а)" + +#: include/profile_selectors.php:42 +msgid "Widowed" +msgstr "Овдовевший" + +#: include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "Неопределенный" + +#: include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "влишком сложно" + +#: include/profile_selectors.php:42 +msgid "Don't care" +msgstr "Не беспокоить" + +#: include/profile_selectors.php:42 +msgid "Ask me" +msgstr "Спросите меня" + +#: include/security.php:61 +msgid "Welcome " +msgstr "Добро пожаловать, " + +#: include/security.php:62 +msgid "Please upload a profile photo." +msgstr "Пожалуйста, загрузите фотографию профиля." + +#: include/security.php:65 +msgid "Welcome back " +msgstr "Добро пожаловать обратно, " + +#: include/security.php:429 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "Ключ формы безопасности неправильный. Вероятно, это произошло потому, что форма была открыта слишком долго (более 3 часов) до её отправки." + +#: include/uimport.php:91 +msgid "Error decoding account file" +msgstr "Ошибка расшифровки файла аккаунта" + +#: include/uimport.php:97 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Ошибка! Неправильная версия данных в файле! Это не файл аккаунта Friendica?" + +#: include/uimport.php:113 include/uimport.php:124 +msgid "Error! Cannot check nickname" +msgstr "Ошибка! Невозможно проверить никнейм" + +#: include/uimport.php:117 include/uimport.php:128 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "Пользователь '%s' уже существует на этом сервере!" + +#: include/uimport.php:150 +msgid "User creation error" +msgstr "Ошибка создания пользователя" + +#: include/uimport.php:170 +msgid "User profile creation error" +msgstr "Ошибка создания профиля пользователя" + +#: include/uimport.php:219 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d контакт не импортирован" +msgstr[1] "%d контакты не импортированы" +msgstr[2] "%d контакты не импортированы" +msgstr[3] "%d контакты не импортированы" + +#: include/uimport.php:289 +msgid "Done. You can now login with your username and password" +msgstr "Завершено. Теперь вы можете войти с вашим логином и паролем" + +#: include/Contact.php:395 include/Contact.php:408 include/Contact.php:453 +#: include/conversation.php:1004 include/conversation.php:1020 +#: mod/allfriends.php:68 mod/directory.php:157 mod/match.php:73 +#: mod/suggest.php:82 mod/dirfind.php:209 +msgid "View Profile" +msgstr "Просмотреть профиль" + +#: include/Contact.php:409 include/contact_widgets.php:32 +#: include/conversation.php:1017 mod/allfriends.php:69 mod/contacts.php:610 +#: mod/match.php:74 mod/suggest.php:83 mod/dirfind.php:210 mod/follow.php:106 +msgid "Connect/Follow" +msgstr "Подключиться/Следовать" + +#: include/Contact.php:452 include/conversation.php:1003 +msgid "View Status" +msgstr "Просмотреть статус" + +#: include/Contact.php:454 include/conversation.php:1005 +msgid "View Photos" +msgstr "Просмотреть фото" + +#: include/Contact.php:455 include/conversation.php:1006 +msgid "Network Posts" +msgstr "Посты сети" + +#: include/Contact.php:456 include/conversation.php:1007 +msgid "View Contact" +msgstr "Просмотреть контакт" + +#: include/Contact.php:457 +msgid "Drop Contact" +msgstr "Удалить контакт" + +#: include/Contact.php:458 include/conversation.php:1008 +msgid "Send PM" +msgstr "Отправить ЛС" + +#: include/Contact.php:459 include/conversation.php:1012 +msgid "Poke" +msgstr "потыкать" + +#: include/Contact.php:840 +msgid "Organisation" +msgstr "Организация" + +#: include/Contact.php:843 +msgid "News" +msgstr "Новости" + +#: include/Contact.php:846 +msgid "Forum" +msgstr "Форум" + +#: include/acl_selectors.php:353 msgid "Post to Email" msgstr "Отправить на Email" -#: include/acl_selectors.php:346 +#: include/acl_selectors.php:358 #, php-format msgid "Connectors disabled, since \"%s\" is enabled." msgstr "Коннекторы отключены так как \"%s\" включен." -#: include/acl_selectors.php:347 mod/settings.php:1188 +#: include/acl_selectors.php:359 mod/settings.php:1188 msgid "Hide your profile details from unknown viewers?" msgstr "Скрыть данные профиля из неизвестных зрителей?" -#: include/acl_selectors.php:352 +#: include/acl_selectors.php:365 msgid "Visible to everybody" msgstr "Видимо всем" -#: include/acl_selectors.php:353 view/theme/vier/config.php:108 +#: include/acl_selectors.php:366 view/theme/vier/config.php:108 msgid "show" msgstr "показывать" -#: include/acl_selectors.php:354 view/theme/vier/config.php:108 +#: include/acl_selectors.php:367 view/theme/vier/config.php:108 msgid "don't show" msgstr "не показывать" -#: include/acl_selectors.php:360 mod/editpost.php:123 +#: include/acl_selectors.php:373 mod/editpost.php:123 msgid "CC: email addresses" msgstr "Копии на email адреса" -#: include/acl_selectors.php:361 mod/editpost.php:130 +#: include/acl_selectors.php:374 mod/editpost.php:130 msgid "Example: bob@example.com, mary@example.com" msgstr "Пример: bob@example.com, mary@example.com" -#: include/acl_selectors.php:363 mod/events.php:516 mod/photos.php:1176 -#: mod/photos.php:1558 +#: include/acl_selectors.php:376 mod/events.php:508 mod/photos.php:1196 +#: mod/photos.php:1593 msgid "Permissions" msgstr "Разрешения" -#: include/acl_selectors.php:364 +#: include/acl_selectors.php:377 msgid "Close" msgstr "Закрыть" -#: include/api.php:1021 +#: include/api.php:1089 #, php-format msgid "Daily posting limit of %d posts reached. The post was rejected." msgstr "Дневной лимит в %d постов достигнут. Пост отклонен." -#: include/api.php:1041 +#: include/api.php:1110 #, php-format msgid "Weekly posting limit of %d posts reached. The post was rejected." msgstr "Недельный лимит в %d постов достигнут. Пост отклонен." -#: include/api.php:1062 +#: include/api.php:1131 #, php-format msgid "Monthly posting limit of %d posts reached. The post was rejected." msgstr "Месячный лимит в %d постов достигнут. Пост отклонен." -#: include/auth.php:45 +#: include/auth.php:51 msgid "Logged out." msgstr "Выход из системы." -#: include/auth.php:116 include/auth.php:178 mod/openid.php:110 +#: include/auth.php:122 include/auth.php:184 mod/openid.php:110 msgid "Login failed." msgstr "Войти не удалось." -#: include/auth.php:132 include/user.php:75 +#: include/auth.php:138 include/user.php:75 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Мы столкнулись с проблемой при входе с OpenID, который вы указали. Пожалуйста, проверьте правильность написания ID." -#: include/auth.php:132 include/user.php:75 +#: include/auth.php:138 include/user.php:75 msgid "The error message was:" msgstr "Сообщение об ошибке было:" -#: include/bb2diaspora.php:199 include/event.php:16 mod/localtime.php:12 +#: include/bb2diaspora.php:230 include/event.php:17 mod/localtime.php:12 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" -#: include/bb2diaspora.php:205 include/event.php:33 include/event.php:51 -#: include/event.php:488 +#: include/bb2diaspora.php:236 include/event.php:34 include/event.php:54 +#: include/event.php:525 msgid "Starts:" msgstr "Начало:" -#: include/bb2diaspora.php:213 include/event.php:36 include/event.php:57 -#: include/event.php:489 +#: include/bb2diaspora.php:244 include/event.php:37 include/event.php:60 +#: include/event.php:526 msgid "Finishes:" msgstr "Окончание:" -#: include/bb2diaspora.php:221 include/event.php:39 include/event.php:63 -#: include/event.php:490 include/identity.php:331 mod/contacts.php:636 -#: mod/directory.php:139 mod/events.php:501 mod/notifications.php:238 +#: include/bb2diaspora.php:253 include/event.php:41 include/event.php:67 +#: include/event.php:527 include/identity.php:336 mod/contacts.php:636 +#: mod/directory.php:139 mod/events.php:493 mod/notifications.php:244 msgid "Location:" msgstr "Откуда:" -#: include/bbcode.php:350 include/bbcode.php:1055 include/bbcode.php:1056 +#: include/bbcode.php:380 include/bbcode.php:1132 include/bbcode.php:1133 msgid "Image/photo" msgstr "Изображение / Фото" -#: include/bbcode.php:467 +#: include/bbcode.php:497 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: include/bbcode.php:1015 include/bbcode.php:1035 +#: include/bbcode.php:1089 include/bbcode.php:1111 msgid "$1 wrote:" msgstr "$1 написал:" -#: include/bbcode.php:1064 include/bbcode.php:1065 +#: include/bbcode.php:1141 include/bbcode.php:1142 msgid "Encrypted content" msgstr "Зашифрованный контент" -#: include/bbcode.php:1169 +#: include/bbcode.php:1257 msgid "Invalid source protocol" msgstr "Неправильный протокол источника" -#: include/bbcode.php:1179 +#: include/bbcode.php:1267 msgid "Invalid link protocol" msgstr "Неправильная протокольная ссылка" @@ -391,19 +952,19 @@ msgstr "Хорошо, наверное, безвредные" msgid "Reputable, has my trust" msgstr "Уважаемые, есть мое доверие" -#: include/contact_selectors.php:56 mod/admin.php:893 +#: include/contact_selectors.php:56 mod/admin.php:980 msgid "Frequently" msgstr "Часто" -#: include/contact_selectors.php:57 mod/admin.php:894 +#: include/contact_selectors.php:57 mod/admin.php:981 msgid "Hourly" msgstr "Раз в час" -#: include/contact_selectors.php:58 mod/admin.php:895 +#: include/contact_selectors.php:58 mod/admin.php:982 msgid "Twice daily" msgstr "Два раза в день" -#: include/contact_selectors.php:59 mod/admin.php:896 +#: include/contact_selectors.php:59 mod/admin.php:983 msgid "Daily" msgstr "Ежедневно" @@ -415,7 +976,7 @@ msgstr "Еженедельно" msgid "Monthly" msgstr "Ежемесячно" -#: include/contact_selectors.php:76 mod/dfrn_request.php:881 +#: include/contact_selectors.php:76 mod/dfrn_request.php:886 msgid "Friendica" msgstr "Friendica" @@ -428,11 +989,11 @@ msgid "RSS/Atom" msgstr "RSS/Atom" #: include/contact_selectors.php:79 include/contact_selectors.php:86 -#: mod/admin.php:1405 mod/admin.php:1418 mod/admin.php:1431 mod/admin.php:1449 +#: mod/admin.php:1490 mod/admin.php:1503 mod/admin.php:1516 mod/admin.php:1534 msgid "Email" msgstr "Эл. почта" -#: include/contact_selectors.php:80 mod/dfrn_request.php:883 +#: include/contact_selectors.php:80 mod/dfrn_request.php:888 #: mod/settings.php:848 msgid "Diaspora" msgstr "Diaspora" @@ -474,8 +1035,8 @@ msgid "Diaspora Connector" msgstr "Коннектор Diaspora" #: include/contact_selectors.php:91 -msgid "GNU Social" -msgstr "GNU Social" +msgid "GNU Social Connector" +msgstr "" #: include/contact_selectors.php:92 msgid "pnut" @@ -485,10 +1046,6 @@ msgstr "pnut" msgid "App.net" msgstr "App.net" -#: include/contact_selectors.php:104 -msgid "Hubzilla/Redmatrix" -msgstr "Hubzilla/Redmatrix" - #: include/contact_widgets.php:6 msgid "Add New Contact" msgstr "Добавить контакт" @@ -501,9 +1058,9 @@ msgstr "Введите адрес или веб-местонахождение" msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Пример: bob@example.com, http://example.com/barbara" -#: include/contact_widgets.php:10 include/identity.php:219 -#: mod/allfriends.php:85 mod/dirfind.php:207 mod/match.php:89 -#: mod/suggest.php:101 +#: include/contact_widgets.php:10 include/identity.php:224 +#: mod/allfriends.php:85 mod/match.php:89 mod/suggest.php:101 +#: mod/dirfind.php:207 msgid "Connect" msgstr "Подключить" @@ -533,11 +1090,11 @@ msgid "Find" msgstr "Найти" #: include/contact_widgets.php:35 mod/suggest.php:114 -#: view/theme/vier/theme.php:198 +#: view/theme/vier/theme.php:201 msgid "Friend Suggestions" msgstr "Предложения друзей" -#: include/contact_widgets.php:36 view/theme/vier/theme.php:197 +#: include/contact_widgets.php:36 view/theme/vier/theme.php:200 msgid "Similar Interests" msgstr "Похожие интересы" @@ -545,31 +1102,31 @@ msgstr "Похожие интересы" msgid "Random Profile" msgstr "Случайный профиль" -#: include/contact_widgets.php:38 view/theme/vier/theme.php:199 +#: include/contact_widgets.php:38 view/theme/vier/theme.php:202 msgid "Invite Friends" msgstr "Пригласить друзей" -#: include/contact_widgets.php:115 +#: include/contact_widgets.php:125 msgid "Networks" msgstr "Сети" -#: include/contact_widgets.php:118 +#: include/contact_widgets.php:128 msgid "All Networks" msgstr "Все сети" -#: include/contact_widgets.php:150 include/features.php:104 +#: include/contact_widgets.php:160 include/features.php:104 msgid "Saved Folders" msgstr "Сохранённые папки" -#: include/contact_widgets.php:153 include/contact_widgets.php:187 +#: include/contact_widgets.php:163 include/contact_widgets.php:198 msgid "Everything" msgstr "Всё" -#: include/contact_widgets.php:184 +#: include/contact_widgets.php:195 msgid "Categories" msgstr "Категории" -#: include/contact_widgets.php:248 +#: include/contact_widgets.php:264 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" @@ -578,90 +1135,62 @@ msgstr[1] "%d Контактов" msgstr[2] "%d Контактов" msgstr[3] "%d Контактов" -#: include/conversation.php:122 include/conversation.php:258 -#: include/like.php:180 include/text.php:1804 -msgid "event" -msgstr "мероприятие" - -#: include/conversation.php:125 include/conversation.php:134 -#: include/conversation.php:261 include/conversation.php:270 -#: include/diaspora.php:1530 include/like.php:178 mod/subthread.php:88 -#: mod/tagger.php:62 -msgid "status" -msgstr "статус" - -#: include/conversation.php:130 include/conversation.php:266 -#: include/like.php:178 include/text.php:1806 mod/subthread.php:88 -#: mod/tagger.php:62 -msgid "photo" -msgstr "фото" - -#: include/conversation.php:141 include/diaspora.php:1526 include/like.php:27 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s нравится %3$s от %2$s " - -#: include/conversation.php:144 include/like.php:31 include/like.php:36 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s не нравится %3$s от %2$s " - -#: include/conversation.php:147 +#: include/conversation.php:159 #, php-format msgid "%1$s attends %2$s's %3$s" msgstr "%1$s уделил внимание %2$s's %3$s" -#: include/conversation.php:150 +#: include/conversation.php:162 #, php-format msgid "%1$s doesn't attend %2$s's %3$s" msgstr "" -#: include/conversation.php:153 +#: include/conversation.php:165 #, php-format msgid "%1$s attends maybe %2$s's %3$s" msgstr "" -#: include/conversation.php:185 mod/dfrn_confirm.php:478 +#: include/conversation.php:198 mod/dfrn_confirm.php:478 #, php-format msgid "%1$s is now friends with %2$s" msgstr "%1$s и %2$s теперь друзья" -#: include/conversation.php:219 +#: include/conversation.php:239 #, php-format msgid "%1$s poked %2$s" msgstr "" -#: include/conversation.php:239 mod/mood.php:63 +#: include/conversation.php:260 mod/mood.php:63 #, php-format msgid "%1$s is currently %2$s" msgstr "" -#: include/conversation.php:278 mod/tagger.php:95 +#: include/conversation.php:307 mod/tagger.php:95 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s tagged %2$s's %3$s в %4$s" -#: include/conversation.php:303 +#: include/conversation.php:334 msgid "post/item" msgstr "пост/элемент" -#: include/conversation.php:304 +#: include/conversation.php:335 #, php-format msgid "%1$s marked %2$s's %3$s as favorite" msgstr "%1$s пометил %2$s %3$s как Фаворит" -#: include/conversation.php:587 mod/content.php:372 mod/photos.php:1629 -#: mod/profiles.php:346 +#: include/conversation.php:614 mod/content.php:372 mod/photos.php:1662 +#: mod/profiles.php:340 msgid "Likes" msgstr "Лайки" -#: include/conversation.php:587 mod/content.php:372 mod/photos.php:1629 -#: mod/profiles.php:350 +#: include/conversation.php:614 mod/content.php:372 mod/photos.php:1662 +#: mod/profiles.php:344 msgid "Dislikes" msgstr "Не нравится" -#: include/conversation.php:588 include/conversation.php:1473 -#: mod/content.php:373 mod/photos.php:1630 +#: include/conversation.php:615 include/conversation.php:1541 +#: mod/content.php:373 mod/photos.php:1663 msgid "Attending" msgid_plural "Attending" msgstr[0] "" @@ -669,310 +1198,309 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: include/conversation.php:588 mod/content.php:373 mod/photos.php:1630 +#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1663 msgid "Not attending" msgstr "" -#: include/conversation.php:588 mod/content.php:373 mod/photos.php:1630 +#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1663 msgid "Might attend" msgstr "" -#: include/conversation.php:710 mod/content.php:453 mod/content.php:759 -#: mod/photos.php:1703 object/Item.php:137 +#: include/conversation.php:747 mod/content.php:453 mod/content.php:759 +#: mod/photos.php:1728 object/Item.php:137 msgid "Select" msgstr "Выберите" -#: include/conversation.php:711 mod/admin.php:1423 mod/contacts.php:816 -#: mod/contacts.php:1015 mod/content.php:454 mod/content.php:760 -#: mod/group.php:181 mod/photos.php:1704 mod/settings.php:744 -#: object/Item.php:138 +#: include/conversation.php:748 mod/contacts.php:816 mod/contacts.php:1015 +#: mod/content.php:454 mod/content.php:760 mod/photos.php:1729 +#: mod/settings.php:744 mod/admin.php:1508 object/Item.php:138 msgid "Delete" msgstr "Удалить" -#: include/conversation.php:755 mod/content.php:487 mod/content.php:915 +#: include/conversation.php:791 mod/content.php:487 mod/content.php:915 #: mod/content.php:916 object/Item.php:356 object/Item.php:357 #, php-format msgid "View %s's profile @ %s" msgstr "Просмотреть профиль %s [@ %s]" -#: include/conversation.php:767 object/Item.php:344 +#: include/conversation.php:803 object/Item.php:344 msgid "Categories:" msgstr "Категории:" -#: include/conversation.php:768 object/Item.php:345 +#: include/conversation.php:804 object/Item.php:345 msgid "Filed under:" msgstr "В рубрике:" -#: include/conversation.php:775 mod/content.php:497 mod/content.php:928 +#: include/conversation.php:811 mod/content.php:497 mod/content.php:928 #: object/Item.php:370 #, php-format msgid "%s from %s" msgstr "%s с %s" -#: include/conversation.php:791 mod/content.php:513 +#: include/conversation.php:827 mod/content.php:513 msgid "View in context" msgstr "Смотреть в контексте" -#: include/conversation.php:793 include/conversation.php:1256 +#: include/conversation.php:829 include/conversation.php:1298 #: mod/content.php:515 mod/content.php:953 mod/editpost.php:114 -#: mod/message.php:337 mod/message.php:522 mod/photos.php:1592 -#: mod/wallmessage.php:140 object/Item.php:395 +#: mod/wallmessage.php:140 mod/message.php:337 mod/message.php:522 +#: mod/photos.php:1627 object/Item.php:395 msgid "Please wait" msgstr "Пожалуйста, подождите" -#: include/conversation.php:872 +#: include/conversation.php:906 msgid "remove" msgstr "удалить" -#: include/conversation.php:876 +#: include/conversation.php:910 msgid "Delete Selected Items" msgstr "Удалить выбранные позиции" -#: include/conversation.php:968 +#: include/conversation.php:1002 msgid "Follow Thread" msgstr "Подписаться на тему" -#: include/conversation.php:1100 +#: include/conversation.php:1139 #, php-format msgid "%s likes this." msgstr "%s нравится это." -#: include/conversation.php:1103 +#: include/conversation.php:1142 #, php-format msgid "%s doesn't like this." msgstr "%s не нравится это." -#: include/conversation.php:1106 +#: include/conversation.php:1145 #, php-format msgid "%s attends." msgstr "" -#: include/conversation.php:1109 +#: include/conversation.php:1148 #, php-format msgid "%s doesn't attend." msgstr "" -#: include/conversation.php:1112 +#: include/conversation.php:1151 #, php-format msgid "%s attends maybe." msgstr "" -#: include/conversation.php:1122 +#: include/conversation.php:1162 msgid "and" msgstr "и" -#: include/conversation.php:1128 +#: include/conversation.php:1168 #, php-format msgid ", and %d other people" msgstr ", и %d других чел." -#: include/conversation.php:1137 +#: include/conversation.php:1177 #, php-format msgid "%2$d people like this" msgstr "%2$d людям нравится это" -#: include/conversation.php:1138 +#: include/conversation.php:1178 #, php-format msgid "%s like this." msgstr "%s нравится это." -#: include/conversation.php:1141 +#: include/conversation.php:1181 #, php-format msgid "%2$d people don't like this" msgstr "%2$d людям не нравится это" -#: include/conversation.php:1142 +#: include/conversation.php:1182 #, php-format msgid "%s don't like this." msgstr "%s не нравится это" -#: include/conversation.php:1145 +#: include/conversation.php:1185 #, php-format msgid "%2$d people attend" msgstr "" -#: include/conversation.php:1146 +#: include/conversation.php:1186 #, php-format msgid "%s attend." msgstr "" -#: include/conversation.php:1149 +#: include/conversation.php:1189 #, php-format msgid "%2$d people don't attend" msgstr "" -#: include/conversation.php:1150 +#: include/conversation.php:1190 #, php-format msgid "%s don't attend." msgstr "" -#: include/conversation.php:1153 +#: include/conversation.php:1193 #, php-format msgid "%2$d people attend maybe" msgstr "" -#: include/conversation.php:1154 +#: include/conversation.php:1194 #, php-format msgid "%s anttend maybe." msgstr "" -#: include/conversation.php:1184 include/conversation.php:1200 +#: include/conversation.php:1223 include/conversation.php:1239 msgid "Visible to everybody" msgstr "Видимое всем" -#: include/conversation.php:1185 include/conversation.php:1201 -#: mod/message.php:271 mod/message.php:278 mod/message.php:418 -#: mod/message.php:425 mod/wallmessage.php:114 mod/wallmessage.php:121 +#: include/conversation.php:1224 include/conversation.php:1240 +#: mod/wallmessage.php:114 mod/wallmessage.php:121 mod/message.php:271 +#: mod/message.php:278 mod/message.php:418 mod/message.php:425 msgid "Please enter a link URL:" msgstr "Пожалуйста, введите URL ссылки:" -#: include/conversation.php:1186 include/conversation.php:1202 +#: include/conversation.php:1225 include/conversation.php:1241 msgid "Please enter a video link/URL:" msgstr "Введите ссылку на видео link/URL:" -#: include/conversation.php:1187 include/conversation.php:1203 +#: include/conversation.php:1226 include/conversation.php:1242 msgid "Please enter an audio link/URL:" msgstr "Введите ссылку на аудио link/URL:" -#: include/conversation.php:1188 include/conversation.php:1204 +#: include/conversation.php:1227 include/conversation.php:1243 msgid "Tag term:" msgstr "Тег:" -#: include/conversation.php:1189 include/conversation.php:1205 +#: include/conversation.php:1228 include/conversation.php:1244 #: mod/filer.php:30 msgid "Save to Folder:" msgstr "Сохранить в папку:" -#: include/conversation.php:1190 include/conversation.php:1206 +#: include/conversation.php:1229 include/conversation.php:1245 msgid "Where are you right now?" msgstr "И где вы сейчас?" -#: include/conversation.php:1191 +#: include/conversation.php:1230 msgid "Delete item(s)?" msgstr "Удалить елемент(ты)?" -#: include/conversation.php:1237 +#: include/conversation.php:1279 msgid "Share" msgstr "Поделиться" -#: include/conversation.php:1238 mod/editpost.php:100 mod/message.php:335 -#: mod/message.php:519 mod/wallmessage.php:138 +#: include/conversation.php:1280 mod/editpost.php:100 mod/wallmessage.php:138 +#: mod/message.php:335 mod/message.php:519 msgid "Upload photo" msgstr "Загрузить фото" -#: include/conversation.php:1239 mod/editpost.php:101 +#: include/conversation.php:1281 mod/editpost.php:101 msgid "upload photo" msgstr "загрузить фото" -#: include/conversation.php:1240 mod/editpost.php:102 +#: include/conversation.php:1282 mod/editpost.php:102 msgid "Attach file" msgstr "Прикрепить файл" -#: include/conversation.php:1241 mod/editpost.php:103 +#: include/conversation.php:1283 mod/editpost.php:103 msgid "attach file" msgstr "приложить файл" -#: include/conversation.php:1242 mod/editpost.php:104 mod/message.php:336 -#: mod/message.php:520 mod/wallmessage.php:139 +#: include/conversation.php:1284 mod/editpost.php:104 mod/wallmessage.php:139 +#: mod/message.php:336 mod/message.php:520 msgid "Insert web link" msgstr "Вставить веб-ссылку" -#: include/conversation.php:1243 mod/editpost.php:105 +#: include/conversation.php:1285 mod/editpost.php:105 msgid "web link" msgstr "веб-ссылка" -#: include/conversation.php:1244 mod/editpost.php:106 +#: include/conversation.php:1286 mod/editpost.php:106 msgid "Insert video link" msgstr "Вставить ссылку видео" -#: include/conversation.php:1245 mod/editpost.php:107 +#: include/conversation.php:1287 mod/editpost.php:107 msgid "video link" msgstr "видео-ссылка" -#: include/conversation.php:1246 mod/editpost.php:108 +#: include/conversation.php:1288 mod/editpost.php:108 msgid "Insert audio link" msgstr "Вставить ссылку аудио" -#: include/conversation.php:1247 mod/editpost.php:109 +#: include/conversation.php:1289 mod/editpost.php:109 msgid "audio link" msgstr "аудио-ссылка" -#: include/conversation.php:1248 mod/editpost.php:110 +#: include/conversation.php:1290 mod/editpost.php:110 msgid "Set your location" msgstr "Задать ваше местоположение" -#: include/conversation.php:1249 mod/editpost.php:111 +#: include/conversation.php:1291 mod/editpost.php:111 msgid "set location" msgstr "установить местонахождение" -#: include/conversation.php:1250 mod/editpost.php:112 +#: include/conversation.php:1292 mod/editpost.php:112 msgid "Clear browser location" msgstr "Очистить местонахождение браузера" -#: include/conversation.php:1251 mod/editpost.php:113 +#: include/conversation.php:1293 mod/editpost.php:113 msgid "clear location" msgstr "убрать местонахождение" -#: include/conversation.php:1253 mod/editpost.php:127 +#: include/conversation.php:1295 mod/editpost.php:127 msgid "Set title" msgstr "Установить заголовок" -#: include/conversation.php:1255 mod/editpost.php:129 +#: include/conversation.php:1297 mod/editpost.php:129 msgid "Categories (comma-separated list)" msgstr "Категории (список через запятую)" -#: include/conversation.php:1257 mod/editpost.php:115 +#: include/conversation.php:1299 mod/editpost.php:115 msgid "Permission settings" msgstr "Настройки разрешений" -#: include/conversation.php:1258 mod/editpost.php:144 +#: include/conversation.php:1300 mod/editpost.php:144 msgid "permissions" msgstr "разрешения" -#: include/conversation.php:1266 mod/editpost.php:124 +#: include/conversation.php:1308 mod/editpost.php:124 msgid "Public post" msgstr "Публичное сообщение" -#: include/conversation.php:1271 mod/content.php:737 mod/editpost.php:135 -#: mod/events.php:511 mod/photos.php:1613 mod/photos.php:1661 -#: mod/photos.php:1747 object/Item.php:714 +#: include/conversation.php:1313 mod/content.php:737 mod/editpost.php:135 +#: mod/events.php:503 mod/photos.php:1647 mod/photos.php:1689 +#: mod/photos.php:1769 object/Item.php:714 msgid "Preview" msgstr "Предварительный просмотр" -#: include/conversation.php:1275 include/items.php:1983 mod/contacts.php:455 -#: mod/dfrn_request.php:889 mod/editpost.php:138 mod/fbrowser.php:100 -#: mod/fbrowser.php:135 mod/follow.php:124 mod/message.php:209 -#: mod/photos.php:240 mod/photos.php:331 mod/settings.php:682 -#: mod/settings.php:708 mod/suggest.php:32 mod/tagrm.php:11 mod/tagrm.php:96 -#: mod/videos.php:132 +#: include/conversation.php:1317 include/items.php:2167 mod/contacts.php:455 +#: mod/editpost.php:138 mod/fbrowser.php:100 mod/fbrowser.php:135 +#: mod/suggest.php:32 mod/tagrm.php:11 mod/tagrm.php:96 +#: mod/dfrn_request.php:894 mod/follow.php:124 mod/message.php:209 +#: mod/photos.php:245 mod/photos.php:337 mod/settings.php:682 +#: mod/settings.php:708 mod/videos.php:132 msgid "Cancel" msgstr "Отмена" -#: include/conversation.php:1281 +#: include/conversation.php:1323 msgid "Post to Groups" msgstr "Пост для групп" -#: include/conversation.php:1282 +#: include/conversation.php:1324 msgid "Post to Contacts" msgstr "Пост для контактов" -#: include/conversation.php:1283 +#: include/conversation.php:1325 msgid "Private post" msgstr "Личное сообщение" -#: include/conversation.php:1288 include/identity.php:259 mod/editpost.php:142 +#: include/conversation.php:1330 include/identity.php:264 mod/editpost.php:142 msgid "Message" msgstr "Сообщение" -#: include/conversation.php:1289 mod/editpost.php:143 +#: include/conversation.php:1331 mod/editpost.php:143 msgid "Browser" msgstr "Браузер" -#: include/conversation.php:1445 +#: include/conversation.php:1513 msgid "View all" msgstr "Посмотреть все" -#: include/conversation.php:1467 +#: include/conversation.php:1535 msgid "Like" msgid_plural "Likes" msgstr[0] "Нравится" @@ -980,7 +1508,7 @@ msgstr[1] "Нравится" msgstr[2] "Нравится" msgstr[3] "Нравится" -#: include/conversation.php:1470 +#: include/conversation.php:1538 msgid "Dislike" msgid_plural "Dislikes" msgstr[0] "Не нравится" @@ -988,7 +1516,7 @@ msgstr[1] "Не нравится" msgstr[2] "Не нравится" msgstr[3] "Не нравится" -#: include/conversation.php:1476 +#: include/conversation.php:1544 msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "" @@ -996,165 +1524,109 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: include/conversation.php:1479 include/profile_selectors.php:6 -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: include/datetime.php:58 include/datetime.php:60 mod/profiles.php:697 +#: include/datetime.php:66 include/datetime.php:68 mod/profiles.php:698 msgid "Miscellaneous" msgstr "Разное" -#: include/datetime.php:184 include/identity.php:641 +#: include/datetime.php:196 include/identity.php:644 msgid "Birthday:" msgstr "День рождения:" -#: include/datetime.php:186 mod/profiles.php:720 +#: include/datetime.php:198 mod/profiles.php:721 msgid "Age: " msgstr "Возраст: " -#: include/datetime.php:188 +#: include/datetime.php:200 msgid "YYYY-MM-DD or MM-DD" msgstr "YYYY-MM-DD или MM-DD" -#: include/datetime.php:343 +#: include/datetime.php:370 msgid "never" msgstr "никогда" -#: include/datetime.php:349 +#: include/datetime.php:376 msgid "less than a second ago" msgstr "менее сек. назад" -#: include/datetime.php:352 +#: include/datetime.php:379 msgid "year" msgstr "год" -#: include/datetime.php:352 +#: include/datetime.php:379 msgid "years" msgstr "лет" -#: include/datetime.php:353 include/event.php:481 mod/cal.php:279 -#: mod/events.php:396 +#: include/datetime.php:380 include/event.php:519 mod/cal.php:279 +#: mod/events.php:384 msgid "month" msgstr "мес." -#: include/datetime.php:353 +#: include/datetime.php:380 msgid "months" msgstr "мес." -#: include/datetime.php:354 include/event.php:482 mod/cal.php:280 -#: mod/events.php:397 +#: include/datetime.php:381 include/event.php:520 mod/cal.php:280 +#: mod/events.php:385 msgid "week" msgstr "неделя" -#: include/datetime.php:354 +#: include/datetime.php:381 msgid "weeks" msgstr "недель" -#: include/datetime.php:355 include/event.php:483 mod/cal.php:281 -#: mod/events.php:398 +#: include/datetime.php:382 include/event.php:521 mod/cal.php:281 +#: mod/events.php:386 msgid "day" msgstr "день" -#: include/datetime.php:355 +#: include/datetime.php:382 msgid "days" msgstr "дней" -#: include/datetime.php:356 +#: include/datetime.php:383 msgid "hour" msgstr "час" -#: include/datetime.php:356 +#: include/datetime.php:383 msgid "hours" msgstr "час." -#: include/datetime.php:357 +#: include/datetime.php:384 msgid "minute" msgstr "минута" -#: include/datetime.php:357 +#: include/datetime.php:384 msgid "minutes" msgstr "мин." -#: include/datetime.php:358 +#: include/datetime.php:385 msgid "second" msgstr "секунда" -#: include/datetime.php:358 +#: include/datetime.php:385 msgid "seconds" msgstr "сек." -#: include/datetime.php:367 +#: include/datetime.php:394 #, php-format msgid "%1$d %2$s ago" msgstr "%1$d %2$s назад" -#: include/datetime.php:585 +#: include/datetime.php:620 #, php-format msgid "%s's birthday" msgstr "день рождения %s" -#: include/datetime.php:586 include/dfrn.php:1131 +#: include/datetime.php:621 include/dfrn.php:1252 #, php-format msgid "Happy Birthday %s" msgstr "С днём рождения %s" -#: include/dba.php:43 include/dba_pdo.php:72 +#: include/dba_pdo.php:72 include/dba.php:47 #, php-format msgid "Cannot locate DNS info for database server '%s'" msgstr "Не могу найти информацию для DNS-сервера базы данных '%s'" -#: include/dbstructure.php:36 -#, php-format -msgid "" -"\n" -"\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." -msgstr "" - -#: include/dbstructure.php:41 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "Сообщение об ошибке:\n[pre]%s[/pre]" - -#: include/dbstructure.php:199 -msgid "Errors encountered creating database tables." -msgstr "Обнаружены ошибки при создании таблиц базы данных." - -#: include/dbstructure.php:333 include/dbstructure.php:341 -#: include/dbstructure.php:349 include/dbstructure.php:354 -#: include/dbstructure.php:359 -msgid "Errors encountered performing database changes." -msgstr "Обнаружены ошибки при изменении базы данных." - -#: include/delivery.php:427 -msgid "(no subject)" -msgstr "(без темы)" - -#: include/delivery.php:439 include/enotify.php:43 -msgid "noreply" -msgstr "без ответа" - -#: include/dfrn.php:1130 -#, php-format -msgid "%s\\'s birthday" -msgstr "День рождения %s" - -#: include/diaspora.php:2087 -msgid "Sharing notification from Diaspora network" -msgstr "Уведомление о шаре из сети Diaspora" - -#: include/diaspora.php:3096 -msgid "Attachments:" -msgstr "Вложения:" - #: include/enotify.php:24 msgid "Friendica Notification" msgstr "Уведомления Friendica" @@ -1261,7 +1733,7 @@ msgstr "%1$s отметил вас в %2$s" #: include/enotify.php:188 #, php-format msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [url=%2$s]поставил тег[/url]." +msgstr "%1$s [url=%2$s]отметил вас[/url]." #: include/enotify.php:199 #, php-format @@ -1448,187 +1920,191 @@ msgstr "Полное имя:⇥%1$s\\nСайт:⇥%2$s\\nЛогин:⇥%3$s (%4$ msgid "Please visit %s to approve or reject the request." msgstr "Пожалуйста, посетите %s чтобы подтвердить или отвергнуть запрос." -#: include/event.php:442 -msgid "Sun" -msgstr "Вс" - -#: include/event.php:443 -msgid "Mon" -msgstr "Пн" - -#: include/event.php:444 -msgid "Tue" -msgstr "Вт" - -#: include/event.php:445 -msgid "Wed" -msgstr "Ср" - -#: include/event.php:446 -msgid "Thu" -msgstr "Чт" - -#: include/event.php:447 -msgid "Fri" -msgstr "Пт" - -#: include/event.php:448 -msgid "Sat" -msgstr "Сб" - -#: include/event.php:449 include/text.php:1132 mod/settings.php:981 -msgid "Sunday" -msgstr "Воскресенье" - -#: include/event.php:450 include/text.php:1132 mod/settings.php:981 -msgid "Monday" -msgstr "Понедельник" - -#: include/event.php:451 include/text.php:1132 -msgid "Tuesday" -msgstr "Вторник" - -#: include/event.php:452 include/text.php:1132 -msgid "Wednesday" -msgstr "Среда" - -#: include/event.php:453 include/text.php:1132 -msgid "Thursday" -msgstr "Четверг" - -#: include/event.php:454 include/text.php:1132 -msgid "Friday" -msgstr "Пятница" - -#: include/event.php:455 include/text.php:1132 -msgid "Saturday" -msgstr "Суббота" - -#: include/event.php:456 -msgid "Jan" -msgstr "Янв" - -#: include/event.php:457 -msgid "Feb" -msgstr "Фев" - -#: include/event.php:458 -msgid "Mar" -msgstr "Мрт" - -#: include/event.php:459 -msgid "Apr" -msgstr "Апр" - -#: include/event.php:460 include/event.php:472 include/text.php:1136 -msgid "May" -msgstr "Май" - -#: include/event.php:461 -msgid "Jun" -msgstr "Июн" - -#: include/event.php:462 -msgid "Jul" -msgstr "Июл" - -#: include/event.php:463 -msgid "Aug" -msgstr "Авг" - -#: include/event.php:464 -msgid "Sept" -msgstr "Сен" - -#: include/event.php:465 -msgid "Oct" -msgstr "Окт" - -#: include/event.php:466 -msgid "Nov" -msgstr "Нбр" - -#: include/event.php:467 -msgid "Dec" -msgstr "Дек" - -#: include/event.php:468 include/text.php:1136 -msgid "January" -msgstr "Январь" - -#: include/event.php:469 include/text.php:1136 -msgid "February" -msgstr "Февраль" - -#: include/event.php:470 include/text.php:1136 -msgid "March" -msgstr "Март" - -#: include/event.php:471 include/text.php:1136 -msgid "April" -msgstr "Апрель" - -#: include/event.php:473 include/text.php:1136 -msgid "June" -msgstr "Июнь" - -#: include/event.php:474 include/text.php:1136 -msgid "July" -msgstr "Июль" - -#: include/event.php:475 include/text.php:1136 -msgid "August" -msgstr "Август" - -#: include/event.php:476 include/text.php:1136 -msgid "September" -msgstr "Сентябрь" - -#: include/event.php:477 include/text.php:1136 -msgid "October" -msgstr "Октябрь" - -#: include/event.php:478 include/text.php:1136 -msgid "November" -msgstr "Ноябрь" - -#: include/event.php:479 include/text.php:1136 -msgid "December" -msgstr "Декабрь" - -#: include/event.php:480 mod/cal.php:278 mod/events.php:395 -msgid "today" -msgstr "сегодня" - -#: include/event.php:484 +#: include/event.php:474 msgid "all-day" msgstr "" -#: include/event.php:486 +#: include/event.php:476 +msgid "Sun" +msgstr "Вс" + +#: include/event.php:477 +msgid "Mon" +msgstr "Пн" + +#: include/event.php:478 +msgid "Tue" +msgstr "Вт" + +#: include/event.php:479 +msgid "Wed" +msgstr "Ср" + +#: include/event.php:480 +msgid "Thu" +msgstr "Чт" + +#: include/event.php:481 +msgid "Fri" +msgstr "Пт" + +#: include/event.php:482 +msgid "Sat" +msgstr "Сб" + +#: include/event.php:484 include/text.php:1198 mod/settings.php:981 +msgid "Sunday" +msgstr "Воскресенье" + +#: include/event.php:485 include/text.php:1198 mod/settings.php:981 +msgid "Monday" +msgstr "Понедельник" + +#: include/event.php:486 include/text.php:1198 +msgid "Tuesday" +msgstr "Вторник" + +#: include/event.php:487 include/text.php:1198 +msgid "Wednesday" +msgstr "Среда" + +#: include/event.php:488 include/text.php:1198 +msgid "Thursday" +msgstr "Четверг" + +#: include/event.php:489 include/text.php:1198 +msgid "Friday" +msgstr "Пятница" + +#: include/event.php:490 include/text.php:1198 +msgid "Saturday" +msgstr "Суббота" + +#: include/event.php:492 +msgid "Jan" +msgstr "Янв" + +#: include/event.php:493 +msgid "Feb" +msgstr "Фев" + +#: include/event.php:494 +msgid "Mar" +msgstr "Мрт" + +#: include/event.php:495 +msgid "Apr" +msgstr "Апр" + +#: include/event.php:496 include/event.php:509 include/text.php:1202 +msgid "May" +msgstr "Май" + +#: include/event.php:497 +msgid "Jun" +msgstr "Июн" + +#: include/event.php:498 +msgid "Jul" +msgstr "Июл" + +#: include/event.php:499 +msgid "Aug" +msgstr "Авг" + +#: include/event.php:500 +msgid "Sept" +msgstr "Сен" + +#: include/event.php:501 +msgid "Oct" +msgstr "Окт" + +#: include/event.php:502 +msgid "Nov" +msgstr "Нбр" + +#: include/event.php:503 +msgid "Dec" +msgstr "Дек" + +#: include/event.php:505 include/text.php:1202 +msgid "January" +msgstr "Январь" + +#: include/event.php:506 include/text.php:1202 +msgid "February" +msgstr "Февраль" + +#: include/event.php:507 include/text.php:1202 +msgid "March" +msgstr "Март" + +#: include/event.php:508 include/text.php:1202 +msgid "April" +msgstr "Апрель" + +#: include/event.php:510 include/text.php:1202 +msgid "June" +msgstr "Июнь" + +#: include/event.php:511 include/text.php:1202 +msgid "July" +msgstr "Июль" + +#: include/event.php:512 include/text.php:1202 +msgid "August" +msgstr "Август" + +#: include/event.php:513 include/text.php:1202 +msgid "September" +msgstr "Сентябрь" + +#: include/event.php:514 include/text.php:1202 +msgid "October" +msgstr "Октябрь" + +#: include/event.php:515 include/text.php:1202 +msgid "November" +msgstr "Ноябрь" + +#: include/event.php:516 include/text.php:1202 +msgid "December" +msgstr "Декабрь" + +#: include/event.php:518 mod/cal.php:278 mod/events.php:383 +msgid "today" +msgstr "сегодня" + +#: include/event.php:523 msgid "No events to display" msgstr "Нет событий для показа" -#: include/event.php:596 +#: include/event.php:636 msgid "l, F j" msgstr "l, j F" -#: include/event.php:615 +#: include/event.php:658 msgid "Edit event" msgstr "Редактировать мероприятие" -#: include/event.php:637 include/text.php:1534 include/text.php:1541 +#: include/event.php:659 +msgid "Delete event" +msgstr "" + +#: include/event.php:685 include/text.php:1600 include/text.php:1607 msgid "link to source" msgstr "ссылка на сообщение" -#: include/event.php:872 +#: include/event.php:939 msgid "Export" msgstr "Экспорт" -#: include/event.php:873 +#: include/event.php:940 msgid "Export calendar as ical" msgstr "Экспортировать календарь в формат ical" -#: include/event.php:874 +#: include/event.php:941 msgid "Export calendar as csv" msgstr "Экспортировать календарь в формат csv" @@ -1719,7 +2195,7 @@ msgstr "Фильтр сети" msgid "Enable widget to display Network posts only from selected network" msgstr "Включить виджет для отображения сообщений сети только от выбранной сети" -#: include/features.php:86 mod/network.php:199 mod/search.php:34 +#: include/features.php:86 mod/network.php:206 mod/search.php:34 msgid "Saved Searches" msgstr "запомненные поиски" @@ -1831,54 +2307,59 @@ msgstr "" msgid "Disallowed profile URL." msgstr "Запрещенный URL профиля." -#: include/follow.php:86 +#: include/follow.php:86 mod/dfrn_request.php:518 mod/friendica.php:114 +#: mod/admin.php:279 mod/admin.php:297 +msgid "Blocked domain" +msgstr "" + +#: include/follow.php:91 msgid "Connect URL missing." msgstr "Connect-URL отсутствует." -#: include/follow.php:114 +#: include/follow.php:119 msgid "" "This site is not configured to allow communications with other networks." msgstr "Данный сайт не настроен так, чтобы держать связь с другими сетями." -#: include/follow.php:115 include/follow.php:129 +#: include/follow.php:120 include/follow.php:134 msgid "No compatible communication protocols or feeds were discovered." msgstr "Обнаружены несовместимые протоколы связи или каналы." -#: include/follow.php:127 +#: include/follow.php:132 msgid "The profile address specified does not provide adequate information." msgstr "Указанный адрес профиля не дает адекватной информации." -#: include/follow.php:132 +#: include/follow.php:137 msgid "An author or name was not found." msgstr "Автор или имя не найдены." -#: include/follow.php:135 +#: include/follow.php:140 msgid "No browser URL could be matched to this address." msgstr "Нет URL браузера, который соответствует этому адресу." -#: include/follow.php:138 +#: include/follow.php:143 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "" -#: include/follow.php:139 +#: include/follow.php:144 msgid "Use mailto: in front of address to force email check." msgstr "Bcgjkmpeqnt mailto: перед адресом для быстрого доступа к email." -#: include/follow.php:145 +#: include/follow.php:150 msgid "" "The profile address specified belongs to a network which has been disabled " "on this site." msgstr "Указанный адрес профиля принадлежит сети, недоступной на этом сайта." -#: include/follow.php:150 +#: include/follow.php:155 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Ограниченный профиль. Этот человек не сможет получить прямые / личные уведомления от вас." -#: include/follow.php:251 +#: include/follow.php:256 msgid "Unable to retrieve contact information." msgstr "Невозможно получить контактную информацию." @@ -1917,7 +2398,7 @@ msgstr "Редактировать группу" msgid "Create a new group" msgstr "Создать новую группу" -#: include/group.php:293 mod/group.php:98 mod/group.php:188 +#: include/group.php:293 mod/group.php:99 mod/group.php:196 msgid "Group Name: " msgstr "Название группы: " @@ -1925,7 +2406,7 @@ msgstr "Название группы: " msgid "Contacts not in any group" msgstr "Контакты не состоят в группе" -#: include/group.php:297 mod/network.php:200 +#: include/group.php:297 mod/network.php:207 msgid "add" msgstr "добавить" @@ -1937,838 +2418,499 @@ msgstr "Запрашиваемый профиль недоступен." msgid "Requested profile is not available." msgstr "Запрашиваемый профиль недоступен." -#: include/identity.php:96 include/identity.php:314 include/identity.php:737 +#: include/identity.php:96 include/identity.php:319 include/identity.php:740 msgid "Edit profile" msgstr "Редактировать профиль" -#: include/identity.php:254 +#: include/identity.php:259 msgid "Atom feed" msgstr "Фид Atom" -#: include/identity.php:285 include/nav.php:189 -msgid "Profiles" -msgstr "Профили" - -#: include/identity.php:285 +#: include/identity.php:290 msgid "Manage/edit profiles" msgstr "Управление / редактирование профилей" -#: include/identity.php:290 include/identity.php:316 mod/profiles.php:789 +#: include/identity.php:295 include/identity.php:321 mod/profiles.php:787 msgid "Change profile photo" msgstr "Изменить фото профиля" -#: include/identity.php:291 mod/profiles.php:790 +#: include/identity.php:296 mod/profiles.php:788 msgid "Create New Profile" msgstr "Создать новый профиль" -#: include/identity.php:301 mod/profiles.php:779 +#: include/identity.php:306 mod/profiles.php:777 msgid "Profile Image" msgstr "Фото профиля" -#: include/identity.php:304 mod/profiles.php:781 +#: include/identity.php:309 mod/profiles.php:779 msgid "visible to everybody" msgstr "видимый всем" -#: include/identity.php:305 mod/profiles.php:683 mod/profiles.php:782 +#: include/identity.php:310 mod/profiles.php:684 mod/profiles.php:780 msgid "Edit visibility" msgstr "Редактировать видимость" -#: include/identity.php:333 include/identity.php:628 mod/directory.php:141 -#: mod/notifications.php:244 +#: include/identity.php:338 include/identity.php:633 mod/directory.php:141 +#: mod/notifications.php:250 msgid "Gender:" msgstr "Пол:" -#: include/identity.php:336 include/identity.php:648 mod/directory.php:143 +#: include/identity.php:341 include/identity.php:651 mod/directory.php:143 msgid "Status:" msgstr "Статус:" -#: include/identity.php:338 include/identity.php:664 mod/directory.php:145 +#: include/identity.php:343 include/identity.php:667 mod/directory.php:145 msgid "Homepage:" msgstr "Домашняя страничка:" -#: include/identity.php:340 include/identity.php:684 mod/contacts.php:640 -#: mod/directory.php:147 mod/notifications.php:240 +#: include/identity.php:345 include/identity.php:687 mod/contacts.php:640 +#: mod/directory.php:147 mod/notifications.php:246 msgid "About:" msgstr "О себе:" -#: include/identity.php:342 mod/contacts.php:638 +#: include/identity.php:347 mod/contacts.php:638 msgid "XMPP:" msgstr "XMPP:" -#: include/identity.php:428 mod/contacts.php:55 mod/notifications.php:252 +#: include/identity.php:433 mod/contacts.php:55 mod/notifications.php:258 msgid "Network:" msgstr "Сеть:" -#: include/identity.php:457 include/identity.php:547 +#: include/identity.php:462 include/identity.php:552 msgid "g A l F d" msgstr "g A l F d" -#: include/identity.php:458 include/identity.php:548 +#: include/identity.php:463 include/identity.php:553 msgid "F d" msgstr "F d" -#: include/identity.php:509 include/identity.php:594 +#: include/identity.php:514 include/identity.php:599 msgid "[today]" msgstr "[сегодня]" -#: include/identity.php:521 +#: include/identity.php:526 msgid "Birthday Reminders" msgstr "Напоминания о днях рождения" -#: include/identity.php:522 +#: include/identity.php:527 msgid "Birthdays this week:" msgstr "Дни рождения на этой неделе:" -#: include/identity.php:581 +#: include/identity.php:586 msgid "[No description]" msgstr "[без описания]" -#: include/identity.php:605 +#: include/identity.php:610 msgid "Event Reminders" msgstr "Напоминания о мероприятиях" -#: include/identity.php:606 +#: include/identity.php:611 msgid "Events this week:" msgstr "Мероприятия на этой неделе:" -#: include/identity.php:617 include/identity.php:741 include/identity.php:774 -#: include/nav.php:82 mod/contacts.php:647 mod/contacts.php:849 -#: mod/newmember.php:32 mod/profperm.php:105 view/theme/frio/theme.php:247 -msgid "Profile" -msgstr "Информация" - -#: include/identity.php:626 mod/settings.php:1286 +#: include/identity.php:631 mod/settings.php:1286 msgid "Full Name:" msgstr "Полное имя:" -#: include/identity.php:633 +#: include/identity.php:636 msgid "j F, Y" msgstr "j F, Y" -#: include/identity.php:634 +#: include/identity.php:637 msgid "j F" msgstr "j F" -#: include/identity.php:645 +#: include/identity.php:648 msgid "Age:" msgstr "Возраст:" -#: include/identity.php:656 +#: include/identity.php:659 #, php-format msgid "for %1$d %2$s" msgstr "для %1$d %2$s" -#: include/identity.php:660 mod/profiles.php:702 +#: include/identity.php:663 mod/profiles.php:703 msgid "Sexual Preference:" msgstr "Сексуальные предпочтения:" -#: include/identity.php:668 mod/profiles.php:729 +#: include/identity.php:671 mod/profiles.php:730 msgid "Hometown:" msgstr "Родной город:" -#: include/identity.php:672 mod/contacts.php:642 mod/follow.php:137 -#: mod/notifications.php:242 +#: include/identity.php:675 mod/contacts.php:642 mod/follow.php:137 +#: mod/notifications.php:248 msgid "Tags:" msgstr "Ключевые слова: " -#: include/identity.php:676 mod/profiles.php:730 +#: include/identity.php:679 mod/profiles.php:731 msgid "Political Views:" msgstr "Политические взгляды:" -#: include/identity.php:680 +#: include/identity.php:683 msgid "Religion:" msgstr "Религия:" -#: include/identity.php:688 +#: include/identity.php:691 msgid "Hobbies/Interests:" msgstr "Хобби / Интересы:" -#: include/identity.php:692 mod/profiles.php:734 +#: include/identity.php:695 mod/profiles.php:735 msgid "Likes:" msgstr "Нравится:" -#: include/identity.php:696 mod/profiles.php:735 +#: include/identity.php:699 mod/profiles.php:736 msgid "Dislikes:" msgstr "Не нравится:" -#: include/identity.php:700 +#: include/identity.php:703 msgid "Contact information and Social Networks:" msgstr "Информация о контакте и социальных сетях:" -#: include/identity.php:704 +#: include/identity.php:707 msgid "Musical interests:" msgstr "Музыкальные интересы:" -#: include/identity.php:708 +#: include/identity.php:711 msgid "Books, literature:" msgstr "Книги, литература:" -#: include/identity.php:712 +#: include/identity.php:715 msgid "Television:" msgstr "Телевидение:" -#: include/identity.php:716 +#: include/identity.php:719 msgid "Film/dance/culture/entertainment:" msgstr "Кино / Танцы / Культура / Развлечения:" -#: include/identity.php:720 +#: include/identity.php:723 msgid "Love/Romance:" msgstr "Любовь / Романтика:" -#: include/identity.php:724 +#: include/identity.php:727 msgid "Work/employment:" msgstr "Работа / Занятость:" -#: include/identity.php:728 +#: include/identity.php:731 msgid "School/education:" msgstr "Школа / Образование:" -#: include/identity.php:733 +#: include/identity.php:736 msgid "Forums:" msgstr "Форумы:" -#: include/identity.php:742 mod/events.php:514 +#: include/identity.php:745 mod/events.php:506 msgid "Basic" msgstr "Базовый" -#: include/identity.php:743 mod/admin.php:972 mod/contacts.php:878 -#: mod/events.php:515 +#: include/identity.php:746 mod/contacts.php:878 mod/events.php:507 +#: mod/admin.php:1059 msgid "Advanced" msgstr "Расширенный" -#: include/identity.php:766 include/nav.php:81 mod/contacts.php:645 -#: mod/contacts.php:841 view/theme/frio/theme.php:246 -msgid "Status" -msgstr "Посты" - -#: include/identity.php:769 mod/contacts.php:844 mod/follow.php:145 +#: include/identity.php:772 mod/contacts.php:844 mod/follow.php:145 msgid "Status Messages and Posts" msgstr "Ваши посты" -#: include/identity.php:777 mod/contacts.php:852 +#: include/identity.php:780 mod/contacts.php:852 msgid "Profile Details" msgstr "Информация о вас" -#: include/identity.php:782 include/nav.php:83 mod/fbrowser.php:31 -#: view/theme/frio/theme.php:248 -msgid "Photos" -msgstr "Фото" - -#: include/identity.php:785 mod/photos.php:89 +#: include/identity.php:788 mod/photos.php:93 msgid "Photo Albums" msgstr "Фотоальбомы" -#: include/identity.php:790 include/identity.php:793 include/nav.php:84 -#: view/theme/frio/theme.php:249 -msgid "Videos" -msgstr "Видео" - -#: include/identity.php:802 include/identity.php:813 include/nav.php:85 -#: include/nav.php:149 mod/cal.php:270 mod/events.php:386 -#: view/theme/frio/theme.php:250 view/theme/frio/theme.php:254 -msgid "Events" -msgstr "Мероприятия" - -#: include/identity.php:805 include/identity.php:816 include/nav.php:149 -#: view/theme/frio/theme.php:254 -msgid "Events and Calendar" -msgstr "Календарь и события" - -#: include/identity.php:824 mod/notes.php:47 +#: include/identity.php:827 mod/notes.php:47 msgid "Personal Notes" msgstr "Личные заметки" -#: include/identity.php:827 +#: include/identity.php:830 msgid "Only You Can See This" msgstr "Только вы можете это видеть" -#: include/identity.php:835 include/identity.php:838 include/nav.php:128 -#: include/nav.php:192 include/text.php:1024 mod/contacts.php:800 -#: mod/contacts.php:861 mod/viewcontacts.php:121 view/theme/frio/theme.php:257 -msgid "Contacts" -msgstr "Контакты" - -#: include/items.php:1584 mod/dfrn_confirm.php:735 mod/dfrn_request.php:754 -msgid "[Name Withheld]" -msgstr "[Имя не разглашается]" - -#: include/items.php:1939 mod/admin.php:240 mod/admin.php:1480 -#: mod/admin.php:1731 mod/display.php:103 mod/display.php:279 -#: mod/display.php:484 mod/notice.php:15 mod/viewsrc.php:15 -msgid "Item not found." -msgstr "Пункт не найден." - -#: include/items.php:1978 -msgid "Do you really want to delete this item?" -msgstr "Вы действительно хотите удалить этот элемент?" - -#: include/items.php:1980 mod/api.php:105 mod/contacts.php:452 -#: mod/dfrn_request.php:875 mod/follow.php:113 mod/message.php:206 -#: mod/profiles.php:640 mod/profiles.php:643 mod/profiles.php:669 -#: mod/register.php:245 mod/settings.php:1171 mod/settings.php:1177 -#: mod/settings.php:1184 mod/settings.php:1188 mod/settings.php:1193 -#: mod/settings.php:1198 mod/settings.php:1203 mod/settings.php:1208 -#: mod/settings.php:1234 mod/settings.php:1235 mod/settings.php:1236 -#: mod/settings.php:1237 mod/settings.php:1238 mod/suggest.php:29 -msgid "Yes" -msgstr "Да" - -#: include/items.php:2143 index.php:407 mod/allfriends.php:12 mod/api.php:26 -#: mod/api.php:31 mod/attach.php:33 mod/cal.php:299 mod/common.php:18 -#: mod/contacts.php:360 mod/crepair.php:102 mod/delegate.php:12 -#: mod/dfrn_confirm.php:61 mod/dirfind.php:11 mod/display.php:481 -#: mod/editpost.php:10 mod/events.php:195 mod/follow.php:11 mod/follow.php:74 -#: mod/follow.php:158 mod/fsuggest.php:79 mod/group.php:19 mod/invite.php:15 -#: mod/invite.php:103 mod/item.php:193 mod/item.php:205 mod/manage.php:98 -#: mod/message.php:46 mod/message.php:171 mod/mood.php:115 mod/network.php:4 -#: mod/nogroup.php:27 mod/notes.php:23 mod/notifications.php:71 -#: mod/ostatus_subscribe.php:9 mod/photos.php:161 mod/photos.php:1092 -#: mod/poke.php:154 mod/profile_photo.php:19 mod/profile_photo.php:180 -#: mod/profile_photo.php:191 mod/profile_photo.php:204 mod/profiles.php:166 -#: mod/profiles.php:607 mod/register.php:42 mod/regmod.php:113 -#: mod/repair_ostatus.php:9 mod/settings.php:22 mod/settings.php:130 -#: mod/settings.php:668 mod/suggest.php:58 mod/uimport.php:24 -#: mod/viewcontacts.php:46 mod/wall_attach.php:67 mod/wall_attach.php:70 -#: mod/wall_upload.php:77 mod/wall_upload.php:80 mod/wallmessage.php:9 -#: mod/wallmessage.php:33 mod/wallmessage.php:73 mod/wallmessage.php:97 -msgid "Permission denied." -msgstr "Нет разрешения." - -#: include/items.php:2248 -msgid "Archives" -msgstr "Архивы" - -#: include/like.php:41 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "" - -#: include/like.php:46 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "" - -#: include/like.php:51 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "" - -#: include/message.php:15 include/message.php:169 -msgid "[no subject]" -msgstr "[без темы]" - -#: include/nav.php:35 mod/navigation.php:19 -msgid "Nothing new here" -msgstr "Ничего нового здесь" - -#: include/nav.php:39 mod/navigation.php:23 -msgid "Clear notifications" -msgstr "Стереть уведомления" - -#: include/nav.php:40 include/text.php:1017 -msgid "@name, !forum, #tags, content" -msgstr "@имя, !форум, #тег, контент" - -#: include/nav.php:78 view/theme/frio/theme.php:243 -msgid "End this session" -msgstr "Завершить эту сессию" - -#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:246 -msgid "Your posts and conversations" -msgstr "Данные вашей учётной записи" - -#: include/nav.php:82 view/theme/frio/theme.php:247 -msgid "Your profile page" -msgstr "Информация о вас" - -#: include/nav.php:83 view/theme/frio/theme.php:248 -msgid "Your photos" -msgstr "Ваши фотографии" - -#: include/nav.php:84 view/theme/frio/theme.php:249 -msgid "Your videos" -msgstr "Ваши видео" - -#: include/nav.php:85 view/theme/frio/theme.php:250 -msgid "Your events" -msgstr "Ваши события" - -#: include/nav.php:86 -msgid "Personal notes" -msgstr "Личные заметки" - -#: include/nav.php:86 -msgid "Your personal notes" -msgstr "Ваши личные заметки" - -#: include/nav.php:95 -msgid "Sign in" -msgstr "Вход" - -#: include/nav.php:105 -msgid "Home Page" -msgstr "Главная страница" - -#: include/nav.php:109 -msgid "Create an account" -msgstr "Создать аккаунт" - -#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:293 -msgid "Help" -msgstr "Помощь" - -#: include/nav.php:115 -msgid "Help and documentation" -msgstr "Помощь и документация" - -#: include/nav.php:119 -msgid "Apps" -msgstr "Приложения" - -#: include/nav.php:119 -msgid "Addon applications, utilities, games" -msgstr "Дополнительные приложения, утилиты, игры" - -#: include/nav.php:123 include/text.php:1014 mod/search.php:149 -msgid "Search" -msgstr "Поиск" - -#: include/nav.php:123 -msgid "Search site content" -msgstr "Поиск по сайту" - -#: include/nav.php:126 include/text.php:1022 -msgid "Full Text" -msgstr "Контент" - -#: include/nav.php:127 include/text.php:1023 -msgid "Tags" -msgstr "Тэги" - -#: include/nav.php:143 include/nav.php:145 mod/community.php:36 -msgid "Community" -msgstr "Сообщество" - -#: include/nav.php:143 -msgid "Conversations on this site" -msgstr "Беседы на этом сайте" - -#: include/nav.php:145 -msgid "Conversations on the network" -msgstr "Беседы в сети" - -#: include/nav.php:152 -msgid "Directory" -msgstr "Каталог" - -#: include/nav.php:152 -msgid "People directory" -msgstr "Каталог участников" - -#: include/nav.php:154 -msgid "Information" -msgstr "Информация" - -#: include/nav.php:154 -msgid "Information about this friendica instance" -msgstr "Информация об этом экземпляре Friendica" - -#: include/nav.php:158 view/theme/frio/theme.php:253 -msgid "Conversations from your friends" -msgstr "Посты ваших друзей" - -#: include/nav.php:159 -msgid "Network Reset" -msgstr "Перезагрузка сети" - -#: include/nav.php:159 -msgid "Load Network page with no filters" -msgstr "Загрузить страницу сети без фильтров" - -#: include/nav.php:166 -msgid "Friend Requests" -msgstr "Запросы на добавление в список друзей" - -#: include/nav.php:169 mod/notifications.php:96 -msgid "Notifications" -msgstr "Уведомления" - -#: include/nav.php:170 -msgid "See all notifications" -msgstr "Посмотреть все уведомления" - -#: include/nav.php:171 mod/settings.php:906 -msgid "Mark as seen" -msgstr "Отметить, как прочитанное" - -#: include/nav.php:171 -msgid "Mark all system notifications seen" -msgstr "Отметить все системные уведомления, как прочитанные" - -#: include/nav.php:175 mod/message.php:179 view/theme/frio/theme.php:255 -msgid "Messages" -msgstr "Сообщения" - -#: include/nav.php:175 view/theme/frio/theme.php:255 -msgid "Private mail" -msgstr "Личная почта" - -#: include/nav.php:176 -msgid "Inbox" -msgstr "Входящие" - -#: include/nav.php:177 -msgid "Outbox" -msgstr "Исходящие" - -#: include/nav.php:178 mod/message.php:16 -msgid "New Message" -msgstr "Новое сообщение" - -#: include/nav.php:181 -msgid "Manage" -msgstr "Управлять" - -#: include/nav.php:181 -msgid "Manage other pages" -msgstr "Управление другими страницами" - -#: include/nav.php:184 mod/settings.php:81 -msgid "Delegations" -msgstr "Делегирование" - -#: include/nav.php:184 mod/delegate.php:130 -msgid "Delegate Page Management" -msgstr "Делегировать управление страницей" - -#: include/nav.php:186 mod/admin.php:1533 mod/admin.php:1809 -#: mod/newmember.php:22 mod/settings.php:111 view/theme/frio/theme.php:256 -msgid "Settings" -msgstr "Настройки" - -#: include/nav.php:186 view/theme/frio/theme.php:256 -msgid "Account settings" -msgstr "Настройки аккаунта" - -#: include/nav.php:189 -msgid "Manage/Edit Profiles" -msgstr "Управление/редактирование профилей" - -#: include/nav.php:192 view/theme/frio/theme.php:257 -msgid "Manage/edit friends and contacts" -msgstr "Управление / редактирование друзей и контактов" - -#: include/nav.php:197 mod/admin.php:192 -msgid "Admin" -msgstr "Администратор" - -#: include/nav.php:197 -msgid "Site setup and configuration" -msgstr "Конфигурация сайта" - -#: include/nav.php:200 -msgid "Navigation" -msgstr "Навигация" - -#: include/nav.php:200 -msgid "Site map" -msgstr "Карта сайта" - -#: include/network.php:622 +#: include/network.php:687 msgid "view full size" msgstr "посмотреть в полный размер" -#: include/oembed.php:266 +#: include/oembed.php:255 msgid "Embedded content" msgstr "Встроенное содержание" -#: include/oembed.php:274 +#: include/oembed.php:263 msgid "Embedding disabled" msgstr "Встраивание отключено" -#: include/ostatus.php:1832 +#: include/photos.php:57 include/photos.php:66 mod/fbrowser.php:40 +#: mod/fbrowser.php:61 mod/photos.php:187 mod/photos.php:1123 +#: mod/photos.php:1256 mod/photos.php:1277 mod/photos.php:1839 +#: mod/photos.php:1853 +msgid "Contact Photos" +msgstr "Фотографии контакта" + +#: include/user.php:39 mod/settings.php:375 +msgid "Passwords do not match. Password unchanged." +msgstr "Пароли не совпадают. Пароль не изменен." + +#: include/user.php:48 +msgid "An invitation is required." +msgstr "Требуется приглашение." + +#: include/user.php:53 +msgid "Invitation could not be verified." +msgstr "Приглашение не может быть проверено." + +#: include/user.php:61 +msgid "Invalid OpenID url" +msgstr "Неверный URL OpenID" + +#: include/user.php:82 +msgid "Please enter the required information." +msgstr "Пожалуйста, введите необходимую информацию." + +#: include/user.php:96 +msgid "Please use a shorter name." +msgstr "Пожалуйста, используйте более короткое имя." + +#: include/user.php:98 +msgid "Name too short." +msgstr "Имя слишком короткое." + +#: include/user.php:106 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Кажется, что это ваше неполное (Имя Фамилия) имя." + +#: include/user.php:111 +msgid "Your email domain is not among those allowed on this site." +msgstr "Домен вашего адреса электронной почты не относится к числу разрешенных на этом сайте." + +#: include/user.php:114 +msgid "Not a valid email address." +msgstr "Неверный адрес электронной почты." + +#: include/user.php:127 +msgid "Cannot use that email." +msgstr "Нельзя использовать этот Email." + +#: include/user.php:133 +msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." +msgstr "" + +#: include/user.php:140 include/user.php:228 +msgid "Nickname is already registered. Please choose another." +msgstr "Такой ник уже зарегистрирован. Пожалуйста, выберите другой." + +#: include/user.php:150 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Ник уже зарегистрирован на этом сайте и не может быть изменён. Пожалуйста, выберите другой ник." + +#: include/user.php:166 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "СЕРЬЕЗНАЯ ОШИБКА: генерация ключей безопасности не удалась." + +#: include/user.php:214 +msgid "An error occurred during registration. Please try again." +msgstr "Ошибка при регистрации. Пожалуйста, попробуйте еще раз." + +#: include/user.php:239 view/theme/duepuntozero/config.php:43 +msgid "default" +msgstr "значение по умолчанию" + +#: include/user.php:249 +msgid "An error occurred creating your default profile. Please try again." +msgstr "Ошибка создания вашего профиля. Пожалуйста, попробуйте еще раз." + +#: include/user.php:309 include/user.php:317 include/user.php:325 +#: mod/profile_photo.php:74 mod/profile_photo.php:82 mod/profile_photo.php:90 +#: mod/profile_photo.php:215 mod/profile_photo.php:310 +#: mod/profile_photo.php:320 mod/photos.php:71 mod/photos.php:187 +#: mod/photos.php:774 mod/photos.php:1256 mod/photos.php:1277 +#: mod/photos.php:1863 +msgid "Profile Photos" +msgstr "Фотографии профиля" + +#: include/user.php:400 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" +"\t" +msgstr "" + +#: include/user.php:410 +#, php-format +msgid "Registration at %s" +msgstr "" + +#: include/user.php:420 +#, 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:424 +#, php-format +msgid "" +"\n" +"\t\tThe login details are as follows:\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t%1$s\n" +"\t\t\tPassword:\t%5$s\n" +"\n" +"\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\tin.\n" +"\n" +"\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\tthan that.\n" +"\n" +"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\tIf you are new and do not know anybody here, they may help\n" +"\t\tyou to make some new and interesting friends.\n" +"\n" +"\n" +"\t\tThank you and welcome to %2$s." +msgstr "" + +#: include/user.php:456 mod/admin.php:1308 +#, php-format +msgid "Registration details for %s" +msgstr "Подробности регистрации для %s" + +#: include/dbstructure.php:20 +msgid "There are no tables on MyISAM." +msgstr "" + +#: include/dbstructure.php:61 +#, php-format +msgid "" +"\n" +"\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." +msgstr "" + +#: include/dbstructure.php:66 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "Сообщение об ошибке:\n[pre]%s[/pre]" + +#: include/dbstructure.php:190 +#, php-format +msgid "" +"\n" +"Error %d occurred during database update:\n" +"%s\n" +msgstr "" + +#: include/dbstructure.php:193 +msgid "Errors encountered performing database changes: " +msgstr "" + +#: include/dbstructure.php:201 +msgid ": Database update" +msgstr "" + +#: include/dbstructure.php:425 +#, php-format +msgid "%s: updating %s table." +msgstr "" + +#: include/dfrn.php:1251 +#, php-format +msgid "%s\\'s birthday" +msgstr "День рождения %s" + +#: include/diaspora.php:2137 +msgid "Sharing notification from Diaspora network" +msgstr "Уведомление о шаре из сети Diaspora" + +#: include/diaspora.php:3146 +msgid "Attachments:" +msgstr "Вложения:" + +#: include/items.php:1738 mod/dfrn_confirm.php:736 mod/dfrn_request.php:759 +msgid "[Name Withheld]" +msgstr "[Имя не разглашается]" + +#: include/items.php:2123 mod/display.php:103 mod/display.php:279 +#: mod/display.php:484 mod/notice.php:15 mod/viewsrc.php:15 mod/admin.php:247 +#: mod/admin.php:1565 mod/admin.php:1816 +msgid "Item not found." +msgstr "Пункт не найден." + +#: include/items.php:2162 +msgid "Do you really want to delete this item?" +msgstr "Вы действительно хотите удалить этот элемент?" + +#: include/items.php:2164 mod/api.php:105 mod/contacts.php:452 +#: mod/suggest.php:29 mod/dfrn_request.php:880 mod/follow.php:113 +#: mod/message.php:206 mod/profiles.php:640 mod/profiles.php:643 +#: mod/profiles.php:670 mod/register.php:245 mod/settings.php:1171 +#: mod/settings.php:1177 mod/settings.php:1184 mod/settings.php:1188 +#: mod/settings.php:1193 mod/settings.php:1198 mod/settings.php:1203 +#: mod/settings.php:1208 mod/settings.php:1234 mod/settings.php:1235 +#: mod/settings.php:1236 mod/settings.php:1237 mod/settings.php:1238 +msgid "Yes" +msgstr "Да" + +#: include/items.php:2327 mod/allfriends.php:12 mod/api.php:26 mod/api.php:31 +#: mod/attach.php:33 mod/common.php:18 mod/contacts.php:360 +#: mod/crepair.php:102 mod/delegate.php:12 mod/display.php:481 +#: mod/editpost.php:10 mod/fsuggest.php:79 mod/invite.php:15 +#: mod/invite.php:103 mod/mood.php:115 mod/nogroup.php:27 mod/notes.php:23 +#: mod/ostatus_subscribe.php:9 mod/poke.php:154 mod/profile_photo.php:19 +#: mod/profile_photo.php:180 mod/profile_photo.php:191 +#: mod/profile_photo.php:204 mod/regmod.php:113 mod/repair_ostatus.php:9 +#: mod/suggest.php:58 mod/uimport.php:24 mod/viewcontacts.php:46 +#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wallmessage.php:9 +#: mod/wallmessage.php:33 mod/wallmessage.php:73 mod/wallmessage.php:97 +#: mod/cal.php:299 mod/dfrn_confirm.php:61 mod/dirfind.php:11 +#: mod/events.php:185 mod/follow.php:11 mod/follow.php:74 mod/follow.php:158 +#: mod/group.php:19 mod/manage.php:102 mod/message.php:46 mod/message.php:171 +#: mod/network.php:4 mod/photos.php:166 mod/photos.php:1109 +#: mod/profiles.php:168 mod/profiles.php:607 mod/register.php:42 +#: mod/settings.php:22 mod/settings.php:130 mod/settings.php:668 +#: mod/wall_upload.php:101 mod/wall_upload.php:104 mod/item.php:196 +#: mod/item.php:208 mod/notifications.php:71 index.php:407 +msgid "Permission denied." +msgstr "Нет разрешения." + +#: include/items.php:2444 +msgid "Archives" +msgstr "Архивы" + +#: include/ostatus.php:1947 #, php-format msgid "%s is now following %s." msgstr "%s теперь подписан на %s." -#: include/ostatus.php:1833 +#: include/ostatus.php:1948 msgid "following" msgstr "следует" -#: include/ostatus.php:1836 +#: include/ostatus.php:1951 #, php-format msgid "%s stopped following %s." msgstr "%s отписался от %s." -#: include/ostatus.php:1837 +#: include/ostatus.php:1952 msgid "stopped following" msgstr "остановлено следование" -#: include/photos.php:57 include/photos.php:67 mod/fbrowser.php:40 -#: mod/fbrowser.php:61 mod/photos.php:182 mod/photos.php:1106 -#: mod/photos.php:1231 mod/photos.php:1252 mod/photos.php:1817 -#: mod/photos.php:1829 -msgid "Contact Photos" -msgstr "Фотографии контакта" - -#: include/plugin.php:530 include/plugin.php:532 -msgid "Click here to upgrade." -msgstr "Нажмите для обновления." - -#: include/plugin.php:538 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Это действие превышает лимиты, установленные вашим тарифным планом." - -#: include/plugin.php:543 -msgid "This action is not available under your subscription plan." -msgstr "Это действие не доступно в соответствии с вашим планом подписки." - -#: include/profile_selectors.php:6 -msgid "Male" -msgstr "Мужчина" - -#: include/profile_selectors.php:6 -msgid "Female" -msgstr "Женщина" - -#: include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "В данный момент мужчина" - -#: include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "В настоящее время женщина" - -#: include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "В основном мужчина" - -#: include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "В основном женщина" - -#: include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Транссексуал" - -#: include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Интерсексуал" - -#: include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Транссексуал" - -#: include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Гермафродит" - -#: include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Средний род" - -#: include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Не определен" - -#: include/profile_selectors.php:6 -msgid "Other" -msgstr "Другой" - -#: include/profile_selectors.php:23 -msgid "Males" -msgstr "Мужчины" - -#: include/profile_selectors.php:23 -msgid "Females" -msgstr "Женщины" - -#: include/profile_selectors.php:23 -msgid "Gay" -msgstr "Гей" - -#: include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "Лесбиянка" - -#: include/profile_selectors.php:23 -msgid "No Preference" -msgstr "Без предпочтений" - -#: include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "Бисексуал" - -#: include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "Автосексуал" - -#: include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "Воздержанный" - -#: include/profile_selectors.php:23 -msgid "Virgin" -msgstr "Девственница" - -#: include/profile_selectors.php:23 -msgid "Deviant" -msgstr "Deviant" - -#: include/profile_selectors.php:23 -msgid "Fetish" -msgstr "Фетиш" - -#: include/profile_selectors.php:23 -msgid "Oodles" -msgstr "Групповой" - -#: include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "Нет интереса к сексу" - -#: include/profile_selectors.php:42 -msgid "Single" -msgstr "Без пары" - -#: include/profile_selectors.php:42 -msgid "Lonely" -msgstr "Пока никого нет" - -#: include/profile_selectors.php:42 -msgid "Available" -msgstr "Доступный" - -#: include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "Не ищу никого" - -#: include/profile_selectors.php:42 -msgid "Has crush" -msgstr "Имеет ошибку" - -#: include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "Влюблён" - -#: include/profile_selectors.php:42 -msgid "Dating" -msgstr "Свидания" - -#: include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "Изменяю супругу" - -#: include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "Люблю секс" - -#: include/profile_selectors.php:42 include/user.php:280 include/user.php:284 -msgid "Friends" -msgstr "Друзья" - -#: include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "Друзья / Предпочтения" - -#: include/profile_selectors.php:42 -msgid "Casual" -msgstr "Обычный" - -#: include/profile_selectors.php:42 -msgid "Engaged" -msgstr "Занят" - -#: include/profile_selectors.php:42 -msgid "Married" -msgstr "Женат / Замужем" - -#: include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "Воображаемо женат (замужем)" - -#: include/profile_selectors.php:42 -msgid "Partners" -msgstr "Партнеры" - -#: include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "Партнерство" - -#: include/profile_selectors.php:42 -msgid "Common law" -msgstr "" - -#: include/profile_selectors.php:42 -msgid "Happy" -msgstr "Счастлив/а/" - -#: include/profile_selectors.php:42 -msgid "Not looking" -msgstr "Не в поиске" - -#: include/profile_selectors.php:42 -msgid "Swinger" -msgstr "Свинг" - -#: include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "Преданный" - -#: include/profile_selectors.php:42 -msgid "Separated" -msgstr "Разделенный" - -#: include/profile_selectors.php:42 -msgid "Unstable" -msgstr "Нестабильный" - -#: include/profile_selectors.php:42 -msgid "Divorced" -msgstr "Разведен(а)" - -#: include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "Воображаемо разведен(а)" - -#: include/profile_selectors.php:42 -msgid "Widowed" -msgstr "Овдовевший" - -#: include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "Неопределенный" - -#: include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "влишком сложно" - -#: include/profile_selectors.php:42 -msgid "Don't care" -msgstr "Не беспокоить" - -#: include/profile_selectors.php:42 -msgid "Ask me" -msgstr "Спросите меня" - -#: include/security.php:61 -msgid "Welcome " -msgstr "Добро пожаловать, " - -#: include/security.php:62 -msgid "Please upload a profile photo." -msgstr "Пожалуйста, загрузите фотографию профиля." - -#: include/security.php:65 -msgid "Welcome back " -msgstr "Добро пожаловать обратно, " - -#: include/security.php:429 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "Ключ формы безопасности неправильный. Вероятно, это произошло потому, что форма была открыта слишком долго (более 3 часов) до её отправки." - #: include/text.php:307 msgid "newer" msgstr "новее" @@ -2801,11 +2943,11 @@ msgstr "Загружаю больше сообщений..." msgid "The end" msgstr "Конец" -#: include/text.php:889 +#: include/text.php:955 msgid "No contacts" msgstr "Нет контактов" -#: include/text.php:914 +#: include/text.php:980 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" @@ -2814,167 +2956,167 @@ msgstr[1] "%d контактов" msgstr[2] "%d контактов" msgstr[3] "%d контактов" -#: include/text.php:927 +#: include/text.php:993 msgid "View Contacts" msgstr "Просмотр контактов" -#: include/text.php:1015 mod/editpost.php:99 mod/filer.php:31 mod/notes.php:62 +#: include/text.php:1081 mod/editpost.php:99 mod/filer.php:31 mod/notes.php:62 msgid "Save" msgstr "Сохранить" -#: include/text.php:1078 +#: include/text.php:1144 msgid "poke" msgstr "poke" -#: include/text.php:1078 +#: include/text.php:1144 msgid "poked" msgstr "ткнут" -#: include/text.php:1079 +#: include/text.php:1145 msgid "ping" msgstr "пинг" -#: include/text.php:1079 +#: include/text.php:1145 msgid "pinged" msgstr "пингуется" -#: include/text.php:1080 +#: include/text.php:1146 msgid "prod" msgstr "толкать" -#: include/text.php:1080 +#: include/text.php:1146 msgid "prodded" msgstr "толкнут" -#: include/text.php:1081 +#: include/text.php:1147 msgid "slap" msgstr "шлепнуть" -#: include/text.php:1081 +#: include/text.php:1147 msgid "slapped" msgstr "шлепнут" -#: include/text.php:1082 +#: include/text.php:1148 msgid "finger" msgstr "" -#: include/text.php:1082 +#: include/text.php:1148 msgid "fingered" msgstr "" -#: include/text.php:1083 +#: include/text.php:1149 msgid "rebuff" msgstr "" -#: include/text.php:1083 +#: include/text.php:1149 msgid "rebuffed" msgstr "" -#: include/text.php:1097 +#: include/text.php:1163 msgid "happy" msgstr "" -#: include/text.php:1098 +#: include/text.php:1164 msgid "sad" msgstr "" -#: include/text.php:1099 +#: include/text.php:1165 msgid "mellow" msgstr "" -#: include/text.php:1100 +#: include/text.php:1166 msgid "tired" msgstr "" -#: include/text.php:1101 +#: include/text.php:1167 msgid "perky" msgstr "" -#: include/text.php:1102 +#: include/text.php:1168 msgid "angry" msgstr "" -#: include/text.php:1103 +#: include/text.php:1169 msgid "stupified" msgstr "" -#: include/text.php:1104 +#: include/text.php:1170 msgid "puzzled" msgstr "" -#: include/text.php:1105 +#: include/text.php:1171 msgid "interested" msgstr "" -#: include/text.php:1106 +#: include/text.php:1172 msgid "bitter" msgstr "" -#: include/text.php:1107 +#: include/text.php:1173 msgid "cheerful" msgstr "" -#: include/text.php:1108 +#: include/text.php:1174 msgid "alive" msgstr "" -#: include/text.php:1109 +#: include/text.php:1175 msgid "annoyed" msgstr "" -#: include/text.php:1110 +#: include/text.php:1176 msgid "anxious" msgstr "" -#: include/text.php:1111 +#: include/text.php:1177 msgid "cranky" msgstr "" -#: include/text.php:1112 +#: include/text.php:1178 msgid "disturbed" msgstr "" -#: include/text.php:1113 +#: include/text.php:1179 msgid "frustrated" msgstr "" -#: include/text.php:1114 +#: include/text.php:1180 msgid "motivated" msgstr "" -#: include/text.php:1115 +#: include/text.php:1181 msgid "relaxed" msgstr "" -#: include/text.php:1116 +#: include/text.php:1182 msgid "surprised" msgstr "" -#: include/text.php:1326 mod/videos.php:384 +#: include/text.php:1392 mod/videos.php:386 msgid "View Video" msgstr "Просмотреть видео" -#: include/text.php:1358 +#: include/text.php:1424 msgid "bytes" msgstr "байт" -#: include/text.php:1390 include/text.php:1402 +#: include/text.php:1456 include/text.php:1468 msgid "Click to open/close" msgstr "Нажмите, чтобы открыть / закрыть" -#: include/text.php:1528 +#: include/text.php:1594 msgid "View on separate page" msgstr "" -#: include/text.php:1529 +#: include/text.php:1595 msgid "view on separate page" msgstr "" -#: include/text.php:1808 +#: include/text.php:1874 msgid "activity" msgstr "активность" -#: include/text.php:1810 mod/content.php:623 object/Item.php:419 +#: include/text.php:1876 mod/content.php:623 object/Item.php:419 #: object/Item.php:431 msgid "comment" msgid_plural "comments" @@ -2983,1576 +3125,14 @@ msgstr[1] "" msgstr[2] "комментарий" msgstr[3] "комментарий" -#: include/text.php:1811 +#: include/text.php:1877 msgid "post" msgstr "сообщение" -#: include/text.php:1979 +#: include/text.php:2045 msgid "Item filed" msgstr "" -#: include/uimport.php:91 -msgid "Error decoding account file" -msgstr "Ошибка расшифровки файла аккаунта" - -#: include/uimport.php:97 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Ошибка! Неправильная версия данных в файле! Это не файл аккаунта Friendica?" - -#: include/uimport.php:113 include/uimport.php:124 -msgid "Error! Cannot check nickname" -msgstr "Ошибка! Невозможно проверить никнейм" - -#: include/uimport.php:117 include/uimport.php:128 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "Пользователь '%s' уже существует на этом сервере!" - -#: include/uimport.php:150 -msgid "User creation error" -msgstr "Ошибка создания пользователя" - -#: include/uimport.php:170 -msgid "User profile creation error" -msgstr "Ошибка создания профиля пользователя" - -#: include/uimport.php:219 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d контакт не импортирован" -msgstr[1] "%d контакты не импортированы" -msgstr[2] "%d контакты не импортированы" -msgstr[3] "%d контакты не импортированы" - -#: include/uimport.php:289 -msgid "Done. You can now login with your username and password" -msgstr "Завершено. Теперь вы можете войти с вашим логином и паролем" - -#: include/user.php:39 mod/settings.php:375 -msgid "Passwords do not match. Password unchanged." -msgstr "Пароли не совпадают. Пароль не изменен." - -#: include/user.php:48 -msgid "An invitation is required." -msgstr "Требуется приглашение." - -#: include/user.php:53 -msgid "Invitation could not be verified." -msgstr "Приглашение не может быть проверено." - -#: include/user.php:61 -msgid "Invalid OpenID url" -msgstr "Неверный URL OpenID" - -#: include/user.php:82 -msgid "Please enter the required information." -msgstr "Пожалуйста, введите необходимую информацию." - -#: include/user.php:96 -msgid "Please use a shorter name." -msgstr "Пожалуйста, используйте более короткое имя." - -#: include/user.php:98 -msgid "Name too short." -msgstr "Имя слишком короткое." - -#: include/user.php:113 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Кажется, что это ваше неполное (Имя Фамилия) имя." - -#: include/user.php:118 -msgid "Your email domain is not among those allowed on this site." -msgstr "Домен вашего адреса электронной почты не относится к числу разрешенных на этом сайте." - -#: include/user.php:121 -msgid "Not a valid email address." -msgstr "Неверный адрес электронной почты." - -#: include/user.php:134 -msgid "Cannot use that email." -msgstr "Нельзя использовать этот Email." - -#: include/user.php:140 -msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." -msgstr "" - -#: include/user.php:147 include/user.php:245 -msgid "Nickname is already registered. Please choose another." -msgstr "Такой ник уже зарегистрирован. Пожалуйста, выберите другой." - -#: include/user.php:157 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "Ник уже зарегистрирован на этом сайте и не может быть изменён. Пожалуйста, выберите другой ник." - -#: include/user.php:173 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "СЕРЬЕЗНАЯ ОШИБКА: генерация ключей безопасности не удалась." - -#: include/user.php:231 -msgid "An error occurred during registration. Please try again." -msgstr "Ошибка при регистрации. Пожалуйста, попробуйте еще раз." - -#: include/user.php:256 view/theme/duepuntozero/config.php:43 -msgid "default" -msgstr "значение по умолчанию" - -#: include/user.php:266 -msgid "An error occurred creating your default profile. Please try again." -msgstr "Ошибка создания вашего профиля. Пожалуйста, попробуйте еще раз." - -#: include/user.php:326 include/user.php:334 include/user.php:342 -#: mod/photos.php:68 mod/photos.php:182 mod/photos.php:768 mod/photos.php:1231 -#: mod/photos.php:1252 mod/photos.php:1839 mod/profile_photo.php:74 -#: mod/profile_photo.php:82 mod/profile_photo.php:90 mod/profile_photo.php:215 -#: mod/profile_photo.php:310 mod/profile_photo.php:320 -msgid "Profile Photos" -msgstr "Фотографии профиля" - -#: include/user.php:417 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" -"\t" -msgstr "" - -#: include/user.php:427 -#, php-format -msgid "Registration at %s" -msgstr "" - -#: include/user.php:437 -#, 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:441 -#, php-format -msgid "" -"\n" -"\t\tThe login details are as follows:\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t%1$s\n" -"\t\t\tPassword:\t%5$s\n" -"\n" -"\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\tin.\n" -"\n" -"\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\tthan that.\n" -"\n" -"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\tIf you are new and do not know anybody here, they may help\n" -"\t\tyou to make some new and interesting friends.\n" -"\n" -"\n" -"\t\tThank you and welcome to %2$s." -msgstr "" - -#: include/user.php:473 mod/admin.php:1223 -#, php-format -msgid "Registration details for %s" -msgstr "Подробности регистрации для %s" - -#: index.php:248 mod/apps.php:7 -msgid "You must be logged in to use addons. " -msgstr "Вы должны войти в систему, чтобы использовать аддоны." - -#: index.php:292 mod/fetch.php:12 mod/fetch.php:39 mod/fetch.php:48 -#: mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52 -msgid "Not Found" -msgstr "Не найдено" - -#: index.php:295 mod/help.php:56 -msgid "Page not found." -msgstr "Страница не найдена." - -#: index.php:406 mod/group.php:76 mod/profperm.php:20 -msgid "Permission denied" -msgstr "Доступ запрещен" - -#: index.php:457 -msgid "toggle mobile" -msgstr "мобильная версия" - -#: mod/admin.php:96 -msgid "Theme settings updated." -msgstr "Настройки темы обновлены." - -#: mod/admin.php:162 mod/admin.php:967 -msgid "Site" -msgstr "Сайт" - -#: mod/admin.php:163 mod/admin.php:901 mod/admin.php:1413 mod/admin.php:1429 -msgid "Users" -msgstr "Пользователи" - -#: mod/admin.php:164 mod/admin.php:1531 mod/admin.php:1594 mod/settings.php:74 -msgid "Plugins" -msgstr "Плагины" - -#: mod/admin.php:165 mod/admin.php:1807 mod/admin.php:1857 -msgid "Themes" -msgstr "Темы" - -#: mod/admin.php:166 mod/settings.php:52 -msgid "Additional features" -msgstr "Дополнительные возможности" - -#: mod/admin.php:167 -msgid "DB updates" -msgstr "Обновление БД" - -#: mod/admin.php:168 mod/admin.php:416 -msgid "Inspect Queue" -msgstr "" - -#: mod/admin.php:169 mod/admin.php:382 -msgid "Federation Statistics" -msgstr "" - -#: mod/admin.php:183 mod/admin.php:194 mod/admin.php:1931 -msgid "Logs" -msgstr "Журналы" - -#: mod/admin.php:184 mod/admin.php:1999 -msgid "View Logs" -msgstr "Просмотр логов" - -#: mod/admin.php:185 -msgid "probe address" -msgstr "" - -#: mod/admin.php:186 -msgid "check webfinger" -msgstr "" - -#: mod/admin.php:193 -msgid "Plugin Features" -msgstr "Возможности плагина" - -#: mod/admin.php:195 -msgid "diagnostics" -msgstr "Диагностика" - -#: mod/admin.php:196 -msgid "User registrations waiting for confirmation" -msgstr "Регистрации пользователей, ожидающие подтверждения" - -#: mod/admin.php:312 -msgid "unknown" -msgstr "" - -#: mod/admin.php:375 -msgid "" -"This page offers you some numbers to the known part of the federated social " -"network your Friendica node is part of. These numbers are not complete but " -"only reflect the part of the network your node is aware of." -msgstr "" - -#: mod/admin.php:376 -msgid "" -"The Auto Discovered Contact Directory feature is not enabled, it " -"will improve the data displayed here." -msgstr "" - -#: mod/admin.php:381 mod/admin.php:415 mod/admin.php:493 mod/admin.php:966 -#: mod/admin.php:1412 mod/admin.php:1530 mod/admin.php:1593 mod/admin.php:1806 -#: mod/admin.php:1856 mod/admin.php:1930 mod/admin.php:1998 -msgid "Administration" -msgstr "Администрация" - -#: mod/admin.php:388 -#, php-format -msgid "Currently this node is aware of %d nodes from the following platforms:" -msgstr "" - -#: mod/admin.php:418 -msgid "ID" -msgstr "" - -#: mod/admin.php:419 -msgid "Recipient Name" -msgstr "" - -#: mod/admin.php:420 -msgid "Recipient Profile" -msgstr "" - -#: mod/admin.php:422 -msgid "Created" -msgstr "" - -#: mod/admin.php:423 -msgid "Last Tried" -msgstr "" - -#: mod/admin.php:424 -msgid "" -"This page lists the content of the queue for outgoing postings. These are " -"postings the initial delivery failed for. They will be resend later and " -"eventually deleted if the delivery fails permanently." -msgstr "" - -#: mod/admin.php:449 -#, php-format -msgid "" -"Your DB still runs with MyISAM tables. You should change the engine type to " -"InnoDB. As Friendica will use InnoDB only features in the future, you should" -" change this! See here for a guide that may be helpful " -"converting the table engines. You may also use the " -"convert_innodb.sql in the /util directory of your " -"Friendica installation.
" -msgstr "" - -#: mod/admin.php:454 -msgid "" -"You are using a MySQL version which does not support all features that " -"Friendica uses. You should consider switching to MariaDB." -msgstr "" - -#: mod/admin.php:458 mod/admin.php:1362 -msgid "Normal Account" -msgstr "Обычный аккаунт" - -#: mod/admin.php:459 mod/admin.php:1363 -msgid "Soapbox Account" -msgstr "Аккаунт Витрина" - -#: mod/admin.php:460 mod/admin.php:1364 -msgid "Community/Celebrity Account" -msgstr "Аккаунт Сообщество / Знаменитость" - -#: mod/admin.php:461 mod/admin.php:1365 -msgid "Automatic Friend Account" -msgstr "\"Автоматический друг\" Аккаунт" - -#: mod/admin.php:462 -msgid "Blog Account" -msgstr "Аккаунт блога" - -#: mod/admin.php:463 -msgid "Private Forum" -msgstr "Личный форум" - -#: mod/admin.php:488 -msgid "Message queues" -msgstr "Очереди сообщений" - -#: mod/admin.php:494 -msgid "Summary" -msgstr "Резюме" - -#: mod/admin.php:496 -msgid "Registered users" -msgstr "Зарегистрированные пользователи" - -#: mod/admin.php:498 -msgid "Pending registrations" -msgstr "Ожидающие регистрации" - -#: mod/admin.php:499 -msgid "Version" -msgstr "Версия" - -#: mod/admin.php:504 -msgid "Active plugins" -msgstr "Активные плагины" - -#: mod/admin.php:529 -msgid "Can not parse base url. Must have at least ://" -msgstr "Невозможно определить базовый URL. Он должен иметь следующий вид - ://" - -#: mod/admin.php:819 -msgid "RINO2 needs mcrypt php extension to work." -msgstr "Для функционирования RINO2 необходим пакет php5-mcrypt" - -#: mod/admin.php:827 -msgid "Site settings updated." -msgstr "Установки сайта обновлены." - -#: mod/admin.php:855 mod/settings.php:943 -msgid "No special theme for mobile devices" -msgstr "Нет специальной темы для мобильных устройств" - -#: mod/admin.php:884 -msgid "No community page" -msgstr "" - -#: mod/admin.php:885 -msgid "Public postings from users of this site" -msgstr "" - -#: mod/admin.php:886 -msgid "Global community page" -msgstr "" - -#: mod/admin.php:891 mod/contacts.php:538 -msgid "Never" -msgstr "Никогда" - -#: mod/admin.php:892 -msgid "At post arrival" -msgstr "" - -#: mod/admin.php:900 mod/contacts.php:565 -msgid "Disabled" -msgstr "Отключенный" - -#: mod/admin.php:902 -msgid "Users, Global Contacts" -msgstr "" - -#: mod/admin.php:903 -msgid "Users, Global Contacts/fallback" -msgstr "" - -#: mod/admin.php:907 -msgid "One month" -msgstr "Один месяц" - -#: mod/admin.php:908 -msgid "Three months" -msgstr "Три месяца" - -#: mod/admin.php:909 -msgid "Half a year" -msgstr "Пол года" - -#: mod/admin.php:910 -msgid "One year" -msgstr "Один год" - -#: mod/admin.php:915 -msgid "Multi user instance" -msgstr "Многопользовательский вид" - -#: mod/admin.php:938 -msgid "Closed" -msgstr "Закрыто" - -#: mod/admin.php:939 -msgid "Requires approval" -msgstr "Требуется подтверждение" - -#: mod/admin.php:940 -msgid "Open" -msgstr "Открыто" - -#: mod/admin.php:944 -msgid "No SSL policy, links will track page SSL state" -msgstr "Нет режима SSL, состояние SSL не будет отслеживаться" - -#: mod/admin.php:945 -msgid "Force all links to use SSL" -msgstr "Заставить все ссылки использовать SSL" - -#: mod/admin.php:946 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Само-подписанный сертификат, использовать SSL только локально (не рекомендуется)" - -#: mod/admin.php:968 mod/admin.php:1595 mod/admin.php:1858 mod/admin.php:1932 -#: mod/admin.php:2085 mod/settings.php:681 mod/settings.php:792 -#: mod/settings.php:841 mod/settings.php:908 mod/settings.php:1005 -#: mod/settings.php:1271 -msgid "Save Settings" -msgstr "Сохранить настройки" - -#: mod/admin.php:969 mod/register.php:272 -msgid "Registration" -msgstr "Регистрация" - -#: mod/admin.php:970 -msgid "File upload" -msgstr "Загрузка файлов" - -#: mod/admin.php:971 -msgid "Policies" -msgstr "Политики" - -#: mod/admin.php:973 -msgid "Auto Discovered Contact Directory" -msgstr "" - -#: mod/admin.php:974 -msgid "Performance" -msgstr "Производительность" - -#: mod/admin.php:975 -msgid "Worker" -msgstr "" - -#: mod/admin.php:976 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "Переместить - ПРЕДУПРЕЖДЕНИЕ: расширеная функция. Может сделать этот сервер недоступным." - -#: mod/admin.php:979 -msgid "Site name" -msgstr "Название сайта" - -#: mod/admin.php:980 -msgid "Host name" -msgstr "Имя хоста" - -#: mod/admin.php:981 -msgid "Sender Email" -msgstr "Системный Email" - -#: mod/admin.php:981 -msgid "" -"The email address your server shall use to send notification emails from." -msgstr "Адрес с которого будут приходить письма пользователям." - -#: mod/admin.php:982 -msgid "Banner/Logo" -msgstr "Баннер/Логотип" - -#: mod/admin.php:983 -msgid "Shortcut icon" -msgstr "" - -#: mod/admin.php:983 -msgid "Link to an icon that will be used for browsers." -msgstr "" - -#: mod/admin.php:984 -msgid "Touch icon" -msgstr "" - -#: mod/admin.php:984 -msgid "Link to an icon that will be used for tablets and mobiles." -msgstr "" - -#: mod/admin.php:985 -msgid "Additional Info" -msgstr "Дополнительная информация" - -#: mod/admin.php:985 -#, php-format -msgid "" -"For public servers: you can add additional information here that will be " -"listed at %s/siteinfo." -msgstr "" - -#: mod/admin.php:986 -msgid "System language" -msgstr "Системный язык" - -#: mod/admin.php:987 -msgid "System theme" -msgstr "Системная тема" - -#: mod/admin.php:987 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Тема системы по умолчанию - может быть переопределена пользователем - изменить настройки темы" - -#: mod/admin.php:988 -msgid "Mobile system theme" -msgstr "Мобильная тема системы" - -#: mod/admin.php:988 -msgid "Theme for mobile devices" -msgstr "Тема для мобильных устройств" - -#: mod/admin.php:989 -msgid "SSL link policy" -msgstr "Политика SSL" - -#: mod/admin.php:989 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Ссылки должны быть вынуждены использовать SSL" - -#: mod/admin.php:990 -msgid "Force SSL" -msgstr "SSL принудительно" - -#: mod/admin.php:990 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" -" to endless loops." -msgstr "" - -#: mod/admin.php:991 -msgid "Hide help entry from navigation menu" -msgstr "Скрыть пункт \"помощь\" в меню навигации" - -#: mod/admin.php:991 -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:992 -msgid "Single user instance" -msgstr "Однопользовательский режим" - -#: mod/admin.php:992 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "Сделать этот экземпляр многопользовательским, или однопользовательским для названного пользователя" - -#: mod/admin.php:993 -msgid "Maximum image size" -msgstr "Максимальный размер изображения" - -#: mod/admin.php:993 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Максимальный размер в байтах для загружаемых изображений. По умолчанию 0, что означает отсутствие ограничений." - -#: mod/admin.php:994 -msgid "Maximum image length" -msgstr "Максимальная длина картинки" - -#: mod/admin.php:994 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "Максимальная длина в пикселях для длинной стороны загруженных изображений. По умолчанию равно -1, что означает отсутствие ограничений." - -#: mod/admin.php:995 -msgid "JPEG image quality" -msgstr "Качество JPEG изображения" - -#: mod/admin.php:995 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "Загруженные изображения JPEG будут сохранены в этом качестве [0-100]. По умолчанию 100, что означает полное качество." - -#: mod/admin.php:997 -msgid "Register policy" -msgstr "Политика регистрация" - -#: mod/admin.php:998 -msgid "Maximum Daily Registrations" -msgstr "Максимальное число регистраций в день" - -#: mod/admin.php:998 -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:999 -msgid "Register text" -msgstr "Текст регистрации" - -#: mod/admin.php:999 -msgid "Will be displayed prominently on the registration page." -msgstr "Будет находиться на видном месте на странице регистрации." - -#: mod/admin.php:1000 -msgid "Accounts abandoned after x days" -msgstr "Аккаунт считается после x дней не воспользованным" - -#: mod/admin.php:1000 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Не будет тратить ресурсы для опроса сайтов для бесхозных контактов. Введите 0 для отключения лимита времени." - -#: mod/admin.php:1001 -msgid "Allowed friend domains" -msgstr "Разрешенные домены друзей" - -#: mod/admin.php:1001 -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:1002 -msgid "Allowed email domains" -msgstr "Разрешенные почтовые домены" - -#: mod/admin.php:1002 -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:1003 -msgid "Block public" -msgstr "Блокировать общественный доступ" - -#: mod/admin.php:1003 -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:1004 -msgid "Force publish" -msgstr "Принудительная публикация" - -#: mod/admin.php:1004 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Отметьте, чтобы принудительно заставить все профили на этом сайте, быть перечислеными в каталоге сайта." - -#: mod/admin.php:1005 -msgid "Global directory URL" -msgstr "" - -#: mod/admin.php:1005 -msgid "" -"URL to the global directory. If this is not set, the global directory is " -"completely unavailable to the application." -msgstr "" - -#: mod/admin.php:1006 -msgid "Allow threaded items" -msgstr "Разрешить темы в обсуждении" - -#: mod/admin.php:1006 -msgid "Allow infinite level threading for items on this site." -msgstr "Разрешить бесконечный уровень для тем на этом сайте." - -#: mod/admin.php:1007 -msgid "Private posts by default for new users" -msgstr "Частные сообщения по умолчанию для новых пользователей" - -#: mod/admin.php:1007 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Установить права на создание постов по умолчанию для всех участников в дефолтной приватной группе, а не для публичных участников." - -#: mod/admin.php:1008 -msgid "Don't include post content in email notifications" -msgstr "Не включать текст сообщения в email-оповещение." - -#: mod/admin.php:1008 -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:1009 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "Запретить публичный доступ к аддонам, перечисленным в меню приложений." - -#: mod/admin.php:1009 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "При установке этого флажка, будут ограничены аддоны, перечисленные в меню приложений, только для участников." - -#: mod/admin.php:1010 -msgid "Don't embed private images in posts" -msgstr "Не вставлять личные картинки в постах" - -#: mod/admin.php:1010 -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:1011 -msgid "Allow Users to set remote_self" -msgstr "Разрешить пользователям установить remote_self" - -#: mod/admin.php:1011 -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:1012 -msgid "Block multiple registrations" -msgstr "Блокировать множественные регистрации" - -#: mod/admin.php:1012 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Запретить пользователям регистрировать дополнительные аккаунты для использования в качестве страниц." - -#: mod/admin.php:1013 -msgid "OpenID support" -msgstr "Поддержка OpenID" - -#: mod/admin.php:1013 -msgid "OpenID support for registration and logins." -msgstr "OpenID поддержка для регистрации и входа в систему." - -#: mod/admin.php:1014 -msgid "Fullname check" -msgstr "Проверка полного имени" - -#: mod/admin.php:1014 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "Принудить пользователей регистрироваться с пробелом между именем и фамилией в строке \"полное имя\". Антиспам мера." - -#: mod/admin.php:1015 -msgid "UTF-8 Regular expressions" -msgstr "UTF-8 регулярные выражения" - -#: mod/admin.php:1015 -msgid "Use PHP UTF8 regular expressions" -msgstr "Используйте PHP UTF-8 для регулярных выражений" - -#: mod/admin.php:1016 -msgid "Community Page Style" -msgstr "" - -#: mod/admin.php:1016 -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:1017 -msgid "Posts per user on community page" -msgstr "" - -#: mod/admin.php:1017 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"'Global Community')" -msgstr "" - -#: mod/admin.php:1018 -msgid "Enable OStatus support" -msgstr "Включить поддержку OStatus" - -#: mod/admin.php:1018 -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:1019 -msgid "OStatus conversation completion interval" -msgstr "" - -#: mod/admin.php:1019 -msgid "" -"How often shall the poller check for new entries in OStatus conversations? " -"This can be a very ressource task." -msgstr "Как часто процессы должны проверять наличие новых записей в OStatus разговорах? Это может быть очень ресурсоёмкой задачей." - -#: mod/admin.php:1020 -msgid "Only import OStatus threads from our contacts" -msgstr "" - -#: mod/admin.php:1020 -msgid "" -"Normally we import every content from our OStatus contacts. With this option" -" we only store threads that are started by a contact that is known on our " -"system." -msgstr "" - -#: mod/admin.php:1021 -msgid "OStatus support can only be enabled if threading is enabled." -msgstr "" - -#: mod/admin.php:1023 -msgid "" -"Diaspora support can't be enabled because Friendica was installed into a sub" -" directory." -msgstr "" - -#: mod/admin.php:1024 -msgid "Enable Diaspora support" -msgstr "Включить поддержку Diaspora" - -#: mod/admin.php:1024 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Обеспечить встроенную поддержку сети Diaspora." - -#: mod/admin.php:1025 -msgid "Only allow Friendica contacts" -msgstr "Позвольть только Friendica контакты" - -#: mod/admin.php:1025 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Все контакты должны использовать только Friendica протоколы. Все другие встроенные коммуникационные протоколы отключены." - -#: mod/admin.php:1026 -msgid "Verify SSL" -msgstr "Проверка SSL" - -#: mod/admin.php:1026 -msgid "" -"If you wish, you can turn on strict certificate checking. This will mean you" -" cannot connect (at all) to self-signed SSL sites." -msgstr "Если хотите, вы можете включить строгую проверку сертификатов. Это будет означать, что вы не сможете соединиться (вообще) с сайтами, имеющими само-подписанный SSL сертификат." - -#: mod/admin.php:1027 -msgid "Proxy user" -msgstr "Прокси пользователь" - -#: mod/admin.php:1028 -msgid "Proxy URL" -msgstr "Прокси URL" - -#: mod/admin.php:1029 -msgid "Network timeout" -msgstr "Тайм-аут сети" - -#: mod/admin.php:1029 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Значение указывается в секундах. Установите 0 для снятия ограничений (не рекомендуется)." - -#: mod/admin.php:1030 -msgid "Maximum Load Average" -msgstr "Средняя максимальная нагрузка" - -#: mod/admin.php:1030 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Максимальная нагрузка на систему перед приостановкой процессов доставки и опросов - по умолчанию 50." - -#: mod/admin.php:1031 -msgid "Maximum Load Average (Frontend)" -msgstr "" - -#: mod/admin.php:1031 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "" - -#: mod/admin.php:1032 -msgid "Maximum table size for optimization" -msgstr "" - -#: mod/admin.php:1032 -msgid "" -"Maximum table size (in MB) for the automatic optimization - default 100 MB. " -"Enter -1 to disable it." -msgstr "" - -#: mod/admin.php:1033 -msgid "Minimum level of fragmentation" -msgstr "" - -#: mod/admin.php:1033 -msgid "" -"Minimum fragmenation level to start the automatic optimization - default " -"value is 30%." -msgstr "" - -#: mod/admin.php:1035 -msgid "Periodical check of global contacts" -msgstr "" - -#: mod/admin.php:1035 -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:1036 -msgid "Days between requery" -msgstr "" - -#: mod/admin.php:1036 -msgid "Number of days after which a server is requeried for his contacts." -msgstr "" - -#: mod/admin.php:1037 -msgid "Discover contacts from other servers" -msgstr "" - -#: mod/admin.php:1037 -msgid "" -"Periodically query other servers for contacts. You can choose between " -"'users': the users on the remote system, 'Global Contacts': active contacts " -"that are known on the system. The fallback is meant for Redmatrix servers " -"and older friendica servers, where global contacts weren't available. The " -"fallback increases the server load, so the recommened setting is 'Users, " -"Global Contacts'." -msgstr "" - -#: mod/admin.php:1038 -msgid "Timeframe for fetching global contacts" -msgstr "" - -#: mod/admin.php:1038 -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:1039 -msgid "Search the local directory" -msgstr "" - -#: mod/admin.php:1039 -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:1041 -msgid "Publish server information" -msgstr "" - -#: mod/admin.php:1041 -msgid "" -"If enabled, general server and usage data will be published. The data " -"contains the name and version of the server, number of users with public " -"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." -msgstr "" - -#: mod/admin.php:1043 -msgid "Use MySQL full text engine" -msgstr "Использовать систему полнотексного поиска MySQL" - -#: mod/admin.php:1043 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "Активизирует систему полнотексного поиска. Ускоряет поиск - но может искать только при указании четырех и более символов." - -#: mod/admin.php:1044 -msgid "Suppress Tags" -msgstr "" - -#: mod/admin.php:1044 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "" - -#: mod/admin.php:1045 -msgid "Path to item cache" -msgstr "Путь к элементам кэша" - -#: mod/admin.php:1045 -msgid "The item caches buffers generated bbcode and external images." -msgstr "" - -#: mod/admin.php:1046 -msgid "Cache duration in seconds" -msgstr "Время жизни кэша в секундах" - -#: mod/admin.php:1046 -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:1047 -msgid "Maximum numbers of comments per post" -msgstr "" - -#: mod/admin.php:1047 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "" - -#: mod/admin.php:1048 -msgid "Temp path" -msgstr "Временная папка" - -#: mod/admin.php:1048 -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:1049 -msgid "Base path to installation" -msgstr "Путь для установки" - -#: mod/admin.php:1049 -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:1050 -msgid "Disable picture proxy" -msgstr "Отключить проксирование картинок" - -#: mod/admin.php:1050 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwith." -msgstr "Прокси картинок увеличивает производительность и приватность. Он не должен использоваться на системах с очень маленькой мощностью." - -#: mod/admin.php:1051 -msgid "Only search in tags" -msgstr "Искать только в тегах" - -#: mod/admin.php:1051 -msgid "On large systems the text search can slow down the system extremely." -msgstr "На больших системах текстовый поиск может сильно замедлить систему." - -#: mod/admin.php:1053 -msgid "New base url" -msgstr "Новый базовый url" - -#: mod/admin.php:1053 -msgid "" -"Change base url for this server. Sends relocate message to all DFRN contacts" -" of all users." -msgstr "Сменить адрес этого сервера. Отсылает сообщение о перемещении всем DFRN контактам всех пользователей." - -#: mod/admin.php:1055 -msgid "RINO Encryption" -msgstr "RINO шифрование" - -#: mod/admin.php:1055 -msgid "Encryption layer between nodes." -msgstr "Слой шифрования между узлами." - -#: mod/admin.php:1056 -msgid "Embedly API key" -msgstr "Ключ API для Embedly" - -#: mod/admin.php:1056 -msgid "" -"Embedly is used to fetch additional data for " -"web pages. This is an optional parameter." -msgstr "" - -#: mod/admin.php:1058 -msgid "Maximum number of parallel workers" -msgstr "Максимальное число параллельно работающих worker'ов" - -#: mod/admin.php:1058 -msgid "" -"On shared hosters set this to 2. On larger systems, values of 10 are great. " -"Default value is 4." -msgstr "Он shared-хостингах установите параметр в 2. На больших системах можно установить 10 или более. По-умолчанию 4." - -#: mod/admin.php:1059 -msgid "Don't use 'proc_open' with the worker" -msgstr "Не использовать 'proc_open' с worker'ом" - -#: mod/admin.php:1059 -msgid "" -"Enable this if your system doesn't allow the use of 'proc_open'. This can " -"happen on shared hosters. If this is enabled you should increase the " -"frequency of poller calls in your crontab." -msgstr "" - -#: mod/admin.php:1060 -msgid "Enable fastlane" -msgstr "Включить fastlane" - -#: mod/admin.php:1060 -msgid "" -"When enabed, the fastlane mechanism starts an additional worker if processes" -" with higher priority are blocked by processes of lower priority." -msgstr "" - -#: mod/admin.php:1061 -msgid "Enable frontend worker" -msgstr "Включить frontend worker" - -#: mod/admin.php:1061 -msgid "" -"When enabled the Worker process is triggered when backend access is " -"performed (e.g. messages being delivered). On smaller sites you might want " -"to call yourdomain.tld/worker on a regular basis via an external cron job. " -"You should only enable this option if you cannot utilize cron/scheduled jobs" -" on your server. The worker background process needs to be activated for " -"this." -msgstr "" - -#: mod/admin.php:1091 -msgid "Update has been marked successful" -msgstr "Обновление было успешно отмечено" - -#: mod/admin.php:1099 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "Обновление базы данных %s успешно применено." - -#: mod/admin.php:1102 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "Выполнение обновления базы данных %s завершено с ошибкой: %s" - -#: mod/admin.php:1116 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "Выполнение %s завершено с ошибкой: %s" - -#: mod/admin.php:1119 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Обновление %s успешно применено." - -#: mod/admin.php:1122 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Процесс обновления %s не вернул статус. Не известно, выполнено, или нет." - -#: mod/admin.php:1125 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "" - -#: mod/admin.php:1145 -msgid "No failed updates." -msgstr "Неудавшихся обновлений нет." - -#: mod/admin.php:1146 -msgid "Check database structure" -msgstr "Проверить структуру базы данных" - -#: mod/admin.php:1151 -msgid "Failed Updates" -msgstr "Неудавшиеся обновления" - -#: mod/admin.php:1152 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "Эта цифра не включает обновления до 1139, которое не возвращает статус." - -#: mod/admin.php:1153 -msgid "Mark success (if update was manually applied)" -msgstr "Отмечено успешно (если обновление было применено вручную)" - -#: mod/admin.php:1154 -msgid "Attempt to execute this update step automatically" -msgstr "Попытаться выполнить этот шаг обновления автоматически" - -#: mod/admin.php:1188 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "" - -#: mod/admin.php:1191 -#, php-format -msgid "" -"\n" -"\t\t\tThe login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%1$s\n" -"\t\t\tLogin Name:\t\t%2$s\n" -"\t\t\tPassword:\t\t%3$s\n" -"\n" -"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\t\tin.\n" -"\n" -"\t\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\t\tthan that.\n" -"\n" -"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\t\tIf you are new and do not know anybody here, they may help\n" -"\t\t\tyou to make some new and interesting friends.\n" -"\n" -"\t\t\tThank you and welcome to %4$s." -msgstr "" - -#: mod/admin.php:1235 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s пользователь заблокирован/разблокирован" -msgstr[1] "%s пользователей заблокировано/разблокировано" -msgstr[2] "%s пользователей заблокировано/разблокировано" -msgstr[3] "%s пользователей заблокировано/разблокировано" - -#: mod/admin.php:1242 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s человек удален" -msgstr[1] "%s чел. удалено" -msgstr[2] "%s чел. удалено" -msgstr[3] "%s чел. удалено" - -#: mod/admin.php:1289 -#, php-format -msgid "User '%s' deleted" -msgstr "Пользователь '%s' удален" - -#: mod/admin.php:1297 -#, php-format -msgid "User '%s' unblocked" -msgstr "Пользователь '%s' разблокирован" - -#: mod/admin.php:1297 -#, php-format -msgid "User '%s' blocked" -msgstr "Пользователь '%s' блокирован" - -#: mod/admin.php:1405 mod/admin.php:1418 mod/admin.php:1431 mod/admin.php:1447 -#: mod/crepair.php:167 mod/settings.php:683 mod/settings.php:709 -msgid "Name" -msgstr "Имя" - -#: mod/admin.php:1405 mod/admin.php:1431 -msgid "Register date" -msgstr "Дата регистрации" - -#: mod/admin.php:1405 mod/admin.php:1431 -msgid "Last login" -msgstr "Последний вход" - -#: mod/admin.php:1405 mod/admin.php:1431 -msgid "Last item" -msgstr "Последний пункт" - -#: mod/admin.php:1405 mod/settings.php:43 -msgid "Account" -msgstr "Аккаунт" - -#: mod/admin.php:1414 -msgid "Add User" -msgstr "Добавить пользователя" - -#: mod/admin.php:1415 -msgid "select all" -msgstr "выбрать все" - -#: mod/admin.php:1416 -msgid "User registrations waiting for confirm" -msgstr "Регистрации пользователей, ожидающие подтверждения" - -#: mod/admin.php:1417 -msgid "User waiting for permanent deletion" -msgstr "Пользователь ожидает окончательного удаления" - -#: mod/admin.php:1418 -msgid "Request date" -msgstr "Запрос даты" - -#: mod/admin.php:1419 -msgid "No registrations." -msgstr "Нет регистраций." - -#: mod/admin.php:1420 -msgid "Note from the user" -msgstr "Сообщение от пользователя" - -#: mod/admin.php:1421 mod/notifications.php:176 mod/notifications.php:255 -msgid "Approve" -msgstr "Одобрить" - -#: mod/admin.php:1422 -msgid "Deny" -msgstr "Отклонить" - -#: mod/admin.php:1424 mod/contacts.php:613 mod/contacts.php:813 -#: mod/contacts.php:991 -msgid "Block" -msgstr "Заблокировать" - -#: mod/admin.php:1425 mod/contacts.php:613 mod/contacts.php:813 -#: mod/contacts.php:991 -msgid "Unblock" -msgstr "Разблокировать" - -#: mod/admin.php:1426 -msgid "Site admin" -msgstr "Админ сайта" - -#: mod/admin.php:1427 -msgid "Account expired" -msgstr "Аккаунт просрочен" - -#: mod/admin.php:1430 -msgid "New User" -msgstr "Новый пользователь" - -#: mod/admin.php:1431 -msgid "Deleted since" -msgstr "Удалён с" - -#: mod/admin.php:1436 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Выбранные пользователи будут удалены!\\n\\nВсе, что эти пользователи написали на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?" - -#: mod/admin.php:1437 -msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Пользователь {0} будет удален!\\n\\nВсе, что этот пользователь написал на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?" - -#: mod/admin.php:1447 -msgid "Name of the new user." -msgstr "Имя нового пользователя." - -#: mod/admin.php:1448 -msgid "Nickname" -msgstr "Ник" - -#: mod/admin.php:1448 -msgid "Nickname of the new user." -msgstr "Ник нового пользователя." - -#: mod/admin.php:1449 -msgid "Email address of the new user." -msgstr "Email адрес нового пользователя." - -#: mod/admin.php:1492 -#, php-format -msgid "Plugin %s disabled." -msgstr "Плагин %s отключен." - -#: mod/admin.php:1496 -#, php-format -msgid "Plugin %s enabled." -msgstr "Плагин %s включен." - -#: mod/admin.php:1507 mod/admin.php:1759 -msgid "Disable" -msgstr "Отключить" - -#: mod/admin.php:1509 mod/admin.php:1761 -msgid "Enable" -msgstr "Включить" - -#: mod/admin.php:1532 mod/admin.php:1808 -msgid "Toggle" -msgstr "Переключить" - -#: mod/admin.php:1540 mod/admin.php:1817 -msgid "Author: " -msgstr "Автор:" - -#: mod/admin.php:1541 mod/admin.php:1818 -msgid "Maintainer: " -msgstr "Программа обслуживания: " - -#: mod/admin.php:1596 -msgid "Reload active plugins" -msgstr "Перезагрузить активные плагины" - -#: mod/admin.php:1601 -#, php-format -msgid "" -"There are currently no plugins available on your node. You can find the " -"official plugin repository at %1$s and might find other interesting plugins " -"in the open plugin registry at %2$s" -msgstr "" - -#: mod/admin.php:1720 -msgid "No themes found." -msgstr "Темы не найдены." - -#: mod/admin.php:1799 -msgid "Screenshot" -msgstr "Скриншот" - -#: mod/admin.php:1859 -msgid "Reload active themes" -msgstr "Перезагрузить активные темы" - -#: mod/admin.php:1864 -#, php-format -msgid "No themes found on the system. They should be paced in %1$s" -msgstr "Не найдено тем. Они должны быть расположены в %1$s" - -#: mod/admin.php:1865 -msgid "[Experimental]" -msgstr "[экспериментально]" - -#: mod/admin.php:1866 -msgid "[Unsupported]" -msgstr "[Неподдерживаемое]" - -#: mod/admin.php:1890 -msgid "Log settings updated." -msgstr "Настройки журнала обновлены." - -#: mod/admin.php:1922 -msgid "PHP log currently enabled." -msgstr "Лог PHP включен." - -#: mod/admin.php:1924 -msgid "PHP log currently disabled." -msgstr "Лог PHP выключен." - -#: mod/admin.php:1933 -msgid "Clear" -msgstr "Очистить" - -#: mod/admin.php:1938 -msgid "Enable Debugging" -msgstr "Включить отладку" - -#: mod/admin.php:1939 -msgid "Log file" -msgstr "Лог-файл" - -#: mod/admin.php:1939 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "Должно быть доступно для записи в веб-сервере. Относительно вашего Friendica каталога верхнего уровня." - -#: mod/admin.php:1940 -msgid "Log level" -msgstr "Уровень лога" - -#: mod/admin.php:1943 -msgid "PHP logging" -msgstr "PHP логирование" - -#: mod/admin.php:1944 -msgid "" -"To enable logging of PHP errors and warnings you can add the following to " -"the .htconfig.php file of your installation. The filename set in the " -"'error_log' line is relative to the friendica top-level directory and must " -"be writeable by the web server. The option '1' for 'log_errors' and " -"'display_errors' is to enable these options, set to '0' to disable them." -msgstr "" - -#: mod/admin.php:2074 mod/admin.php:2075 mod/settings.php:782 -msgid "Off" -msgstr "Выкл." - -#: mod/admin.php:2074 mod/admin.php:2075 mod/settings.php:782 -msgid "On" -msgstr "Вкл." - -#: mod/admin.php:2075 -#, php-format -msgid "Lock feature %s" -msgstr "Заблокировать %s" - -#: mod/admin.php:2083 -msgid "Manage Additional Features" -msgstr "Управление дополнительными возможностями" - #: mod/allfriends.php:46 msgid "No friends to display." msgstr "Нет друзей." @@ -4575,8 +3155,8 @@ msgid "" " and/or create new posts for you?" msgstr "Вы действительно хотите разрешить этому приложению доступ к своим постам и контактам, а также создавать новые записи от вашего имени?" -#: mod/api.php:106 mod/dfrn_request.php:875 mod/follow.php:113 -#: mod/profiles.php:640 mod/profiles.php:644 mod/profiles.php:669 +#: mod/api.php:106 mod/dfrn_request.php:880 mod/follow.php:113 +#: mod/profiles.php:640 mod/profiles.php:644 mod/profiles.php:670 #: mod/register.php:246 mod/settings.php:1171 mod/settings.php:1177 #: mod/settings.php:1184 mod/settings.php:1188 mod/settings.php:1193 #: mod/settings.php:1198 mod/settings.php:1203 mod/settings.php:1208 @@ -4585,6 +3165,10 @@ msgstr "Вы действительно хотите разрешить этом msgid "No" msgstr "Нет" +#: mod/apps.php:7 index.php:254 +msgid "You must be logged in to use addons. " +msgstr "Вы должны войти в систему, чтобы использовать аддоны." + #: mod/apps.php:11 msgid "Applications" msgstr "Приложения" @@ -4601,94 +3185,10 @@ msgstr "Пункт не доступен." msgid "Item was not found." msgstr "Пункт не был найден." -#: mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Код (bbcode):" - -#: mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Код (Diaspora) для конвертации в BBcode:" - -#: mod/babel.php:31 -msgid "Source input: " -msgstr "Ввести код:" - -#: mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (raw HTML): " - -#: mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html: " - -#: mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " - -#: mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md: " - -#: mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html: " - -#: mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " - -#: mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " - -#: mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Ввод кода (формат Diaspora):" - -#: mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " - #: mod/bookmarklet.php:41 msgid "The post was created" msgstr "Пост был создан" -#: mod/cal.php:143 mod/display.php:328 mod/profile.php:154 -msgid "Access to this profile has been restricted." -msgstr "Доступ к этому профилю ограничен." - -#: mod/cal.php:271 mod/events.php:387 -msgid "View" -msgstr "Смотреть" - -#: mod/cal.php:272 mod/events.php:389 -msgid "Previous" -msgstr "Назад" - -#: mod/cal.php:273 mod/events.php:390 mod/install.php:235 -msgid "Next" -msgstr "Далее" - -#: mod/cal.php:282 mod/events.php:399 -msgid "list" -msgstr "список" - -#: mod/cal.php:292 -msgid "User not found" -msgstr "Пользователь не найден" - -#: mod/cal.php:308 -msgid "This calendar format is not supported" -msgstr "Этот формат календарей не поддерживается" - -#: mod/cal.php:310 -msgid "No exportable data found" -msgstr "Нет данных для экспорта" - -#: mod/cal.php:325 -msgid "calendar" -msgstr "календарь" - #: mod/common.php:91 msgid "No contacts in common." msgstr "Нет общих контактов." @@ -4697,20 +3197,6 @@ msgstr "Нет общих контактов." msgid "Common Friends" msgstr "Общие друзья" -#: mod/community.php:22 mod/dfrn_request.php:799 mod/directory.php:37 -#: mod/display.php:200 mod/photos.php:964 mod/search.php:93 mod/search.php:99 -#: mod/videos.php:198 mod/viewcontacts.php:36 -msgid "Public access denied." -msgstr "Свободный доступ закрыт." - -#: mod/community.php:27 -msgid "Not available." -msgstr "Недоступно." - -#: mod/community.php:54 mod/search.php:224 -msgid "No results." -msgstr "Нет результатов." - #: mod/contacts.php:134 #, php-format msgid "%d contact edited." @@ -4732,7 +3218,7 @@ msgstr "Не удалось найти выбранный профиль." msgid "Contact updated." msgstr "Контакт обновлен." -#: mod/contacts.php:218 mod/dfrn_request.php:588 +#: mod/contacts.php:218 mod/dfrn_request.php:593 msgid "Failed to update contact record." msgstr "Не удалось обновить запись контакта." @@ -4785,11 +3271,15 @@ msgstr "Вы делитесь с %s" #: mod/contacts.php:515 #, php-format msgid "%s is sharing with you" -msgstr "%s делитса с Вами" +msgstr "%s делится с Вами" #: mod/contacts.php:535 msgid "Private communications are not available for this contact." -msgstr "Личные коммуникации недоступны для этого контакта." +msgstr "Приватные коммуникации недоступны для этого контакта." + +#: mod/contacts.php:538 mod/admin.php:978 +msgid "Never" +msgstr "Никогда" #: mod/contacts.php:542 msgid "(Update was successful)" @@ -4816,6 +3306,10 @@ msgstr "Связь с контактом утеряна!" msgid "Fetch further information for feeds" msgstr "Получить подробную информацию о фидах" +#: mod/contacts.php:565 mod/admin.php:987 +msgid "Disabled" +msgstr "Отключенный" + #: mod/contacts.php:565 msgid "Fetch information" msgstr "Получить информацию" @@ -4829,12 +3323,12 @@ msgid "Contact" msgstr "Контакт" #: mod/contacts.php:585 mod/content.php:728 mod/crepair.php:156 -#: mod/events.php:513 mod/fsuggest.php:108 mod/install.php:276 -#: mod/install.php:316 mod/invite.php:142 mod/localtime.php:45 -#: mod/manage.php:145 mod/message.php:338 mod/message.php:521 mod/mood.php:138 -#: mod/photos.php:1124 mod/photos.php:1246 mod/photos.php:1562 -#: mod/photos.php:1612 mod/photos.php:1660 mod/photos.php:1746 -#: mod/poke.php:203 mod/profiles.php:680 object/Item.php:705 +#: mod/fsuggest.php:108 mod/invite.php:142 mod/localtime.php:45 +#: mod/mood.php:138 mod/poke.php:203 mod/events.php:505 mod/manage.php:155 +#: mod/message.php:338 mod/message.php:521 mod/photos.php:1141 +#: mod/photos.php:1271 mod/photos.php:1597 mod/photos.php:1646 +#: mod/photos.php:1688 mod/photos.php:1768 mod/profiles.php:681 +#: mod/install.php:242 mod/install.php:282 object/Item.php:705 #: view/theme/duepuntozero/config.php:61 view/theme/frio/config.php:64 #: view/theme/quattro/config.php:67 view/theme/vier/config.php:112 msgid "Submit" @@ -4893,13 +3387,23 @@ msgstr "Обновить публичные сообщения" msgid "Update now" msgstr "Обновить сейчас" +#: mod/contacts.php:613 mod/contacts.php:813 mod/contacts.php:991 +#: mod/admin.php:1510 +msgid "Unblock" +msgstr "Разблокировать" + +#: mod/contacts.php:613 mod/contacts.php:813 mod/contacts.php:991 +#: mod/admin.php:1509 +msgid "Block" +msgstr "Заблокировать" + #: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999 msgid "Unignore" msgstr "Не игнорировать" #: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999 #: mod/notifications.php:60 mod/notifications.php:179 -#: mod/notifications.php:257 +#: mod/notifications.php:263 msgid "Ignore" msgstr "Игнорировать" @@ -4915,7 +3419,7 @@ msgstr "В настоящее время игнорируется" msgid "Currently archived" msgstr "В данный момент архивирован" -#: mod/contacts.php:621 mod/notifications.php:172 mod/notifications.php:245 +#: mod/contacts.php:621 mod/notifications.php:172 mod/notifications.php:251 msgid "Hide this contact from others" msgstr "Скрыть этот контакт от других" @@ -4942,7 +3446,7 @@ msgid "" "when \"Fetch information and keywords\" is selected" msgstr "" -#: mod/contacts.php:632 mod/follow.php:129 mod/notifications.php:249 +#: mod/contacts.php:632 mod/follow.php:129 mod/notifications.php:255 msgid "Profile URL" msgstr "URL профиля" @@ -4962,7 +3466,7 @@ msgstr "Предложения" msgid "Suggest potential friends" msgstr "Предложить потенциального знакомого" -#: mod/contacts.php:700 mod/group.php:202 +#: mod/contacts.php:700 mod/group.php:212 msgid "All Contacts" msgstr "Все контакты" @@ -5014,7 +3518,7 @@ msgstr "Показывать только скрытые контакты" msgid "Search your contacts" msgstr "Поиск ваших контактов" -#: mod/contacts.php:805 mod/network.php:145 mod/search.php:232 +#: mod/contacts.php:805 mod/network.php:151 mod/search.php:227 #, php-format msgid "Results for: %s" msgstr "Результаты для: %s" @@ -5079,15 +3583,15 @@ msgstr "Сменить статус архивации (архивирова/н msgid "Delete contact" msgstr "Удалить контакт" -#: mod/content.php:119 mod/network.php:468 +#: mod/content.php:119 mod/network.php:475 msgid "No such group" msgstr "Нет такой группы" -#: mod/content.php:130 mod/group.php:203 mod/network.php:495 +#: mod/content.php:130 mod/group.php:213 mod/network.php:502 msgid "Group is empty" msgstr "Группа пуста" -#: mod/content.php:135 mod/network.php:499 +#: mod/content.php:135 mod/network.php:506 #, php-format msgid "Group: %s" msgstr "Группа: %s" @@ -5105,11 +3609,11 @@ msgstr[1] "%d комментариев" msgstr[2] "%d комментариев" msgstr[3] "%d комментариев" -#: mod/content.php:638 mod/photos.php:1402 object/Item.php:117 +#: mod/content.php:638 mod/photos.php:1429 object/Item.php:117 msgid "Private Message" msgstr "Личное сообщение" -#: mod/content.php:702 mod/photos.php:1590 object/Item.php:274 +#: mod/content.php:702 mod/photos.php:1625 object/Item.php:274 msgid "I like this (toggle)" msgstr "Нравится" @@ -5117,7 +3621,7 @@ msgstr "Нравится" msgid "like" msgstr "нравится" -#: mod/content.php:703 mod/photos.php:1591 object/Item.php:275 +#: mod/content.php:703 mod/photos.php:1626 object/Item.php:275 msgid "I don't like this (toggle)" msgstr "Не нравится" @@ -5133,13 +3637,13 @@ msgstr "Поделитесь этим" msgid "share" msgstr "поделиться" -#: mod/content.php:725 mod/photos.php:1609 mod/photos.php:1657 -#: mod/photos.php:1743 object/Item.php:702 +#: mod/content.php:725 mod/photos.php:1643 mod/photos.php:1685 +#: mod/photos.php:1765 object/Item.php:702 msgid "This is you" msgstr "Это вы" -#: mod/content.php:727 mod/content.php:950 mod/photos.php:1611 -#: mod/photos.php:1659 mod/photos.php:1745 object/Item.php:392 +#: mod/content.php:727 mod/content.php:950 mod/photos.php:1645 +#: mod/photos.php:1687 mod/photos.php:1767 object/Item.php:392 #: object/Item.php:704 msgid "Comment" msgstr "Оставить комментарий" @@ -5264,8 +3768,8 @@ msgstr "Установки контакта приняты." msgid "Contact update failed." msgstr "Обновление контакта неудачное." -#: mod/crepair.php:116 mod/dfrn_confirm.php:126 mod/fsuggest.php:21 -#: mod/fsuggest.php:93 +#: mod/crepair.php:116 mod/fsuggest.php:21 mod/fsuggest.php:93 +#: mod/dfrn_confirm.php:126 msgid "Contact not found." msgstr "Контакт не найден." @@ -5315,6 +3819,11 @@ msgid "" "entries from this contact." msgstr "Пометить этот контакт как remote_self, что заставит Friendica постить сообщения от этого контакта." +#: mod/crepair.php:167 mod/settings.php:683 mod/settings.php:709 +#: mod/admin.php:1490 mod/admin.php:1503 mod/admin.php:1516 mod/admin.php:1532 +msgid "Name" +msgstr "Имя" + #: mod/crepair.php:168 msgid "Account Nickname" msgstr "Ник аккаунта" @@ -5382,261 +3891,19 @@ msgstr "Добавить" msgid "No entries." msgstr "Нет записей." -#: mod/dfrn_confirm.php:70 mod/profiles.php:19 mod/profiles.php:134 -#: mod/profiles.php:180 mod/profiles.php:619 -msgid "Profile not found." -msgstr "Профиль не найден." - -#: mod/dfrn_confirm.php:127 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Это может иногда происходить, если контакт запрашивали двое людей, и он был уже одобрен." - -#: mod/dfrn_confirm.php:244 -msgid "Response from remote site was not understood." -msgstr "Ответ от удаленного сайта не был понят." - -#: mod/dfrn_confirm.php:253 mod/dfrn_confirm.php:258 -msgid "Unexpected response from remote site: " -msgstr "Неожиданный ответ от удаленного сайта: " - -#: mod/dfrn_confirm.php:267 -msgid "Confirmation completed successfully." -msgstr "Подтверждение успешно завершено." - -#: mod/dfrn_confirm.php:269 mod/dfrn_confirm.php:283 mod/dfrn_confirm.php:290 -msgid "Remote site reported: " -msgstr "Удаленный сайт сообщил: " - -#: mod/dfrn_confirm.php:281 -msgid "Temporary failure. Please wait and try again." -msgstr "Временные неудачи. Подождите и попробуйте еще раз." - -#: mod/dfrn_confirm.php:288 -msgid "Introduction failed or was revoked." -msgstr "Запрос ошибочен или был отозван." - -#: mod/dfrn_confirm.php:418 -msgid "Unable to set contact photo." -msgstr "Не удается установить фото контакта." - -#: mod/dfrn_confirm.php:559 -#, php-format -msgid "No user record found for '%s' " -msgstr "Не найдено записи пользователя для '%s' " - -#: mod/dfrn_confirm.php:569 -msgid "Our site encryption key is apparently messed up." -msgstr "Наш ключ шифрования сайта, по-видимому, перепутался." - -#: mod/dfrn_confirm.php:580 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "Был предоставлен пустой URL сайта ​​или URL не может быть расшифрован нами." - -#: mod/dfrn_confirm.php:601 -msgid "Contact record was not found for you on our site." -msgstr "Запись контакта не найдена для вас на нашем сайте." - -#: mod/dfrn_confirm.php:615 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "Публичный ключ недоступен в записи о контакте по ссылке %s" - -#: mod/dfrn_confirm.php:635 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "ID, предложенный вашей системой, является дубликатом в нашей системе. Он должен работать, если вы повторите попытку." - -#: mod/dfrn_confirm.php:646 -msgid "Unable to set your contact credentials on our system." -msgstr "Не удалось установить ваши учетные данные контакта в нашей системе." - -#: mod/dfrn_confirm.php:708 -msgid "Unable to update your contact profile details on our system" -msgstr "Не удается обновить ваши контактные детали профиля в нашей системе" - -#: mod/dfrn_confirm.php:780 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s присоединился %2$s" - #: mod/dfrn_poll.php:104 mod/dfrn_poll.php:539 #, php-format msgid "%1$s welcomes %2$s" msgstr "%1$s добро пожаловать %2$s" -#: mod/dfrn_request.php:101 -msgid "This introduction has already been accepted." -msgstr "Этот запрос был уже принят." +#: mod/directory.php:37 mod/display.php:200 mod/viewcontacts.php:36 +#: mod/community.php:18 mod/dfrn_request.php:804 mod/photos.php:979 +#: mod/probe.php:9 mod/search.php:93 mod/search.php:99 mod/videos.php:198 +#: mod/webfinger.php:8 +msgid "Public access denied." +msgstr "Свободный доступ закрыт." -#: mod/dfrn_request.php:124 mod/dfrn_request.php:523 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Местоположение профиля является недопустимым или не содержит информацию о профиле." - -#: mod/dfrn_request.php:129 mod/dfrn_request.php:528 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Внимание: местоположение профиля не имеет идентифицируемого имени владельца." - -#: mod/dfrn_request.php:132 mod/dfrn_request.php:531 -msgid "Warning: profile location has no profile photo." -msgstr "Внимание: местоположение профиля не имеет еще фотографии профиля." - -#: mod/dfrn_request.php:136 mod/dfrn_request.php:535 -#, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "%d требуемый параметр не был найден в заданном месте" -msgstr[1] "%d требуемых параметров не были найдены в заданном месте" -msgstr[2] "%d требуемых параметров не были найдены в заданном месте" -msgstr[3] "%d требуемых параметров не были найдены в заданном месте" - -#: mod/dfrn_request.php:180 -msgid "Introduction complete." -msgstr "Запрос создан." - -#: mod/dfrn_request.php:225 -msgid "Unrecoverable protocol error." -msgstr "Неисправимая ошибка протокола." - -#: mod/dfrn_request.php:253 -msgid "Profile unavailable." -msgstr "Профиль недоступен." - -#: mod/dfrn_request.php:280 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "К %s пришло сегодня слишком много запросов на подключение." - -#: mod/dfrn_request.php:281 -msgid "Spam protection measures have been invoked." -msgstr "Были применены меры защиты от спама." - -#: mod/dfrn_request.php:282 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Друзья советуют попробовать еще раз в ближайшие 24 часа." - -#: mod/dfrn_request.php:344 -msgid "Invalid locator" -msgstr "Недопустимый локатор" - -#: mod/dfrn_request.php:353 -msgid "Invalid email address." -msgstr "Неверный адрес электронной почты." - -#: mod/dfrn_request.php:378 -msgid "This account has not been configured for email. Request failed." -msgstr "Этот аккаунт не настроен для электронной почты. Запрос не удался." - -#: mod/dfrn_request.php:481 -msgid "You have already introduced yourself here." -msgstr "Вы уже ввели информацию о себе здесь." - -#: mod/dfrn_request.php:485 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Похоже, что вы уже друзья с %s." - -#: mod/dfrn_request.php:506 -msgid "Invalid profile URL." -msgstr "Неверный URL профиля." - -#: mod/dfrn_request.php:609 -msgid "Your introduction has been sent." -msgstr "Ваш запрос отправлен." - -#: mod/dfrn_request.php:651 -msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." -msgstr "Удаленная подписка не может быть выполнена на вашей сети. Пожалуйста, подпишитесь на вашей системе." - -#: mod/dfrn_request.php:672 -msgid "Please login to confirm introduction." -msgstr "Для подтверждения запроса войдите пожалуйста с паролем." - -#: mod/dfrn_request.php:682 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Неверно идентифицирован вход. Пожалуйста, войдите в этот профиль." - -#: mod/dfrn_request.php:696 mod/dfrn_request.php:713 -msgid "Confirm" -msgstr "Подтвердить" - -#: mod/dfrn_request.php:708 -msgid "Hide this contact" -msgstr "Скрыть этот контакт" - -#: mod/dfrn_request.php:711 -#, php-format -msgid "Welcome home %s." -msgstr "Добро пожаловать домой, %s!" - -#: mod/dfrn_request.php:712 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Пожалуйста, подтвердите краткую информацию / запрос на подключение к %s." - -#: mod/dfrn_request.php:843 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Пожалуйста, введите ваш 'идентификационный адрес' одной из следующих поддерживаемых социальных сетей:" - -#: mod/dfrn_request.php:867 -#, php-format -msgid "" -"If you are not yet a member of the free social web, follow this link to find a public Friendica site and " -"join us today." -msgstr "Если вы еще не являетесь членом свободной социальной сети, перейдите по этой ссылке, чтобы найти публичный сервер Friendica и присоединиться к нам сейчас ." - -#: mod/dfrn_request.php:872 -msgid "Friend/Connection Request" -msgstr "Запрос в друзья / на подключение" - -#: mod/dfrn_request.php:873 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Примеры: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" - -#: mod/dfrn_request.php:874 mod/follow.php:112 -msgid "Please answer the following:" -msgstr "Пожалуйста, ответьте следующее:" - -#: mod/dfrn_request.php:875 mod/follow.php:113 -#, php-format -msgid "Does %s know you?" -msgstr "%s знает вас?" - -#: mod/dfrn_request.php:879 mod/follow.php:114 -msgid "Add a personal note:" -msgstr "Добавить личную заметку:" - -#: mod/dfrn_request.php:882 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet / Federated Social Web" - -#: mod/dfrn_request.php:884 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr "Участники сети Diaspora: пожалуйста, не пользуйтесь этой формой. Вместо этого введите %s в строке поиска Diaspora" - -#: mod/dfrn_request.php:885 mod/follow.php:120 -msgid "Your Identity Address:" -msgstr "Ваш идентификационный адрес:" - -#: mod/dfrn_request.php:888 mod/follow.php:19 -msgid "Submit Request" -msgstr "Отправить запрос" - -#: mod/directory.php:199 view/theme/vier/theme.php:196 +#: mod/directory.php:199 view/theme/vier/theme.php:199 msgid "Global Directory" msgstr "Глобальный каталог" @@ -5656,19 +3923,9 @@ msgstr "Каталог сайта" msgid "No entries (some entries may be hidden)." msgstr "Нет записей (некоторые записи могут быть скрыты)." -#: mod/dirfind.php:37 -#, php-format -msgid "People Search - %s" -msgstr "Поиск по людям - %s" - -#: mod/dirfind.php:48 -#, php-format -msgid "Forum Search - %s" -msgstr "Поиск по форумам - %s" - -#: mod/dirfind.php:245 mod/match.php:109 -msgid "No matches" -msgstr "Нет соответствий" +#: mod/display.php:328 mod/cal.php:143 mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "Доступ к этому профилю ограничен." #: mod/display.php:479 msgid "Item has been removed." @@ -5682,122 +3939,19 @@ msgstr "Элемент не найден" msgid "Edit post" msgstr "Редактировать сообщение" -#: mod/events.php:100 mod/events.php:102 -msgid "Event can not end before it has started." -msgstr "Эвент не может закончится до старта." - -#: mod/events.php:109 mod/events.php:111 -msgid "Event title and start time are required." -msgstr "Название мероприятия и время начала обязательны для заполнения." - -#: mod/events.php:388 -msgid "Create New Event" -msgstr "Создать новое мероприятие" - -#: mod/events.php:489 -msgid "Event details" -msgstr "Сведения о мероприятии" - -#: mod/events.php:490 -msgid "Starting date and Title are required." -msgstr "Необходима дата старта и заголовок." - -#: mod/events.php:491 mod/events.php:492 -msgid "Event Starts:" -msgstr "Начало мероприятия:" - -#: mod/events.php:491 mod/events.php:503 mod/profiles.php:708 -msgid "Required" -msgstr "Требуется" - -#: mod/events.php:493 mod/events.php:509 -msgid "Finish date/time is not known or not relevant" -msgstr "Дата/время окончания не известны, или не указаны" - -#: mod/events.php:495 mod/events.php:496 -msgid "Event Finishes:" -msgstr "Окончание мероприятия:" - -#: mod/events.php:497 mod/events.php:510 -msgid "Adjust for viewer timezone" -msgstr "Настройка часового пояса" - -#: mod/events.php:499 -msgid "Description:" -msgstr "Описание:" - -#: mod/events.php:503 mod/events.php:505 -msgid "Title:" -msgstr "Титул:" - -#: mod/events.php:506 mod/events.php:507 -msgid "Share this event" -msgstr "Поделитесь этим мероприятием" - #: mod/fbrowser.php:132 msgid "Files" msgstr "Файлы" +#: mod/fetch.php:12 mod/fetch.php:39 mod/fetch.php:48 mod/help.php:53 +#: mod/p.php:16 mod/p.php:43 mod/p.php:52 index.php:298 +msgid "Not Found" +msgstr "Не найдено" + #: mod/filer.php:30 msgid "- select -" msgstr "- выбрать -" -#: mod/follow.php:30 -msgid "You already added this contact." -msgstr "Вы уже добавили этот контакт." - -#: mod/follow.php:39 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "Поддержка Diaspora не включена. Контакт не может быть добавлен." - -#: mod/follow.php:46 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "Поддержка OStatus выключена. Контакт не может быть добавлен." - -#: mod/follow.php:53 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "Тип сети не может быть определен. Контакт не может быть добавлен." - -#: mod/follow.php:186 -msgid "Contact added" -msgstr "Контакт добавлен" - -#: mod/friendica.php:72 -msgid "This is Friendica, version" -msgstr "Это Friendica, версия" - -#: mod/friendica.php:73 -msgid "running at web location" -msgstr "работает на веб-узле" - -#: mod/friendica.php:75 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Пожалуйста, посетите сайт Friendica.com, чтобы узнать больше о проекте Friendica." - -#: mod/friendica.php:77 -msgid "Bug reports and issues: please visit" -msgstr "Отчет об ошибках и проблемах: пожалуйста, посетите" - -#: mod/friendica.php:77 -msgid "the bugtracker at github" -msgstr "багтрекер на github" - -#: mod/friendica.php:78 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Предложения, похвала, пожертвования? Пишите на \"info\" на Friendica - точка com" - -#: mod/friendica.php:92 -msgid "Installed plugins/addons/apps:" -msgstr "Установленные плагины / добавки / приложения:" - -#: mod/friendica.php:105 -msgid "No installed plugins/addons/apps" -msgstr "Нет установленных плагинов / добавок / приложений" - #: mod/fsuggest.php:64 msgid "Friend suggestion sent." msgstr "Приглашение в друзья отправлено." @@ -5811,50 +3965,6 @@ msgstr "Предложить друзей" msgid "Suggest a friend for %s" msgstr "Предложить друга для %s." -#: mod/group.php:29 -msgid "Group created." -msgstr "Группа создана." - -#: mod/group.php:35 -msgid "Could not create group." -msgstr "Не удалось создать группу." - -#: mod/group.php:49 mod/group.php:150 -msgid "Group not found." -msgstr "Группа не найдена." - -#: mod/group.php:63 -msgid "Group name changed." -msgstr "Название группы изменено." - -#: mod/group.php:91 -msgid "Save Group" -msgstr "Сохранить группу" - -#: mod/group.php:97 -msgid "Create a group of contacts/friends." -msgstr "Создать группу контактов / друзей." - -#: mod/group.php:122 -msgid "Group removed." -msgstr "Группа удалена." - -#: mod/group.php:124 -msgid "Unable to remove group." -msgstr "Не удается удалить группу." - -#: mod/group.php:187 -msgid "Group Editor" -msgstr "Редактор групп" - -#: mod/group.php:200 -msgid "Members" -msgstr "Участники" - -#: mod/group.php:233 mod/profperm.php:107 -msgid "Click on a contact to add or remove." -msgstr "Нажмите на контакт, чтобы добавить или удалить." - #: mod/hcard.php:11 msgid "No profile" msgstr "Нет профиля" @@ -5863,372 +3973,15 @@ msgstr "Нет профиля" msgid "Help:" msgstr "Помощь:" +#: mod/help.php:56 index.php:301 +msgid "Page not found." +msgstr "Страница не найдена." + #: mod/home.php:39 #, php-format msgid "Welcome to %s" msgstr "Добро пожаловать на %s!" -#: mod/install.php:140 -msgid "Friendica Communications Server - Setup" -msgstr "Коммуникационный сервер Friendica - Доступ" - -#: mod/install.php:146 -msgid "Could not connect to database." -msgstr "Не удалось подключиться к базе данных." - -#: mod/install.php:150 -msgid "Could not create table." -msgstr "Не удалось создать таблицу." - -#: mod/install.php:156 -msgid "Your Friendica site database has been installed." -msgstr "База данных сайта установлена." - -#: mod/install.php:161 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Вам может понадобиться импортировать файл \"database.sql\" вручную с помощью PhpMyAdmin или MySQL." - -#: mod/install.php:162 mod/install.php:234 mod/install.php:609 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Пожалуйста, смотрите файл \"INSTALL.txt\"." - -#: mod/install.php:174 -msgid "Database already in use." -msgstr "База данных уже используется." - -#: mod/install.php:231 -msgid "System check" -msgstr "Проверить систему" - -#: mod/install.php:236 -msgid "Check again" -msgstr "Проверить еще раз" - -#: mod/install.php:255 -msgid "Database connection" -msgstr "Подключение к базе данных" - -#: mod/install.php:256 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Для того, чтобы установить Friendica, мы должны знать, как подключиться к базе данных." - -#: mod/install.php:257 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Пожалуйста, свяжитесь с вашим хостинг-провайдером или администратором сайта, если у вас есть вопросы об этих параметрах." - -#: mod/install.php:258 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Базы данных, указанная ниже, должна уже существовать. Если этого нет, пожалуйста, создайте ее перед продолжением." - -#: mod/install.php:262 -msgid "Database Server Name" -msgstr "Имя сервера базы данных" - -#: mod/install.php:263 -msgid "Database Login Name" -msgstr "Логин базы данных" - -#: mod/install.php:264 -msgid "Database Login Password" -msgstr "Пароль базы данных" - -#: mod/install.php:264 -msgid "For security reasons the password must not be empty" -msgstr "Для безопасности пароль не должен быть пустым" - -#: mod/install.php:265 -msgid "Database Name" -msgstr "Имя базы данных" - -#: mod/install.php:266 mod/install.php:307 -msgid "Site administrator email address" -msgstr "Адрес электронной почты администратора сайта" - -#: mod/install.php:266 mod/install.php:307 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Ваш адрес электронной почты аккаунта должен соответствовать этому, чтобы использовать веб-панель администратора." - -#: mod/install.php:270 mod/install.php:310 -msgid "Please select a default timezone for your website" -msgstr "Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта" - -#: mod/install.php:297 -msgid "Site settings" -msgstr "Настройки сайта" - -#: mod/install.php:311 -msgid "System Language:" -msgstr "Язык системы:" - -#: mod/install.php:311 -msgid "" -"Set the default language for your Friendica installation interface and to " -"send emails." -msgstr "Язык по-умолчанию для интерфейса Friendica и для отправки писем." - -#: mod/install.php:351 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Не удалось найти PATH веб-сервера в установках PHP." - -#: mod/install.php:352 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron. See 'Setup the poller'" -msgstr "У вас не установлена CLI версия PHP, вы не сможете выполнять cron-задания на сервере. Смотрите раздел 'Setup the poller' в документации." - -#: mod/install.php:356 -msgid "PHP executable path" -msgstr "PHP executable path" - -#: mod/install.php:356 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Введите полный путь к исполняемому файлу PHP. Вы можете оставить это поле пустым, чтобы продолжить установку." - -#: mod/install.php:361 -msgid "Command line PHP" -msgstr "Command line PHP" - -#: mod/install.php:370 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "Бинарник PHP не является CLI версией (может быть это cgi-fcgi версия)" - -#: mod/install.php:371 -msgid "Found PHP version: " -msgstr "Найденная PHP версия: " - -#: mod/install.php:373 -msgid "PHP cli binary" -msgstr "PHP cli binary" - -#: mod/install.php:384 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "Не включено \"register_argc_argv\" в установках PHP." - -#: mod/install.php:385 -msgid "This is required for message delivery to work." -msgstr "Это необходимо для работы доставки сообщений." - -#: mod/install.php:387 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: mod/install.php:410 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Ошибка: функция \"openssl_pkey_new\" в этой системе не в состоянии генерировать ключи шифрования" - -#: mod/install.php:411 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Если вы работаете под Windows, см. \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: mod/install.php:413 -msgid "Generate encryption keys" -msgstr "Генерация шифрованых ключей" - -#: mod/install.php:420 -msgid "libCurl PHP module" -msgstr "libCurl PHP модуль" - -#: mod/install.php:421 -msgid "GD graphics PHP module" -msgstr "GD graphics PHP модуль" - -#: mod/install.php:422 -msgid "OpenSSL PHP module" -msgstr "OpenSSL PHP модуль" - -#: mod/install.php:423 -msgid "mysqli PHP module" -msgstr "mysqli PHP модуль" - -#: mod/install.php:424 -msgid "mb_string PHP module" -msgstr "mb_string PHP модуль" - -#: mod/install.php:425 -msgid "mcrypt PHP module" -msgstr "mcrypt PHP модуль" - -#: mod/install.php:426 -msgid "XML PHP module" -msgstr "XML PHP модуль" - -#: mod/install.php:427 -msgid "iconv module" -msgstr "Модуль iconv" - -#: mod/install.php:431 mod/install.php:433 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite module" - -#: mod/install.php:431 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Ошибка: необходим модуль веб-сервера Apache mod-rewrite, но он не установлен." - -#: mod/install.php:439 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Ошибка: необходим libCURL PHP модуль, но он не установлен." - -#: mod/install.php:443 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Ошибка: необходим PHP модуль GD графики с поддержкой JPEG, но он не установлен." - -#: mod/install.php:447 -msgid "Error: openssl PHP module required but not installed." -msgstr "Ошибка: необходим PHP модуль OpenSSL, но он не установлен." - -#: mod/install.php:451 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Ошибка: необходим PHP модуль MySQLi, но он не установлен." - -#: mod/install.php:455 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Ошибка: необходим PHP модуль mb_string, но он не установлен." - -#: mod/install.php:459 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Ошибка: необходим PHP модуль mcrypt, но он не установлен." - -#: mod/install.php:463 -msgid "Error: iconv PHP module required but not installed." -msgstr "Ошибка: необходим PHP модуль iconv, но он не установлен." - -#: mod/install.php:472 -msgid "" -"If you are using php_cli, please make sure that mcrypt module is enabled in " -"its config file" -msgstr "Если вы используете php_cli, то убедитесь, что модуль mcrypt подключен в файле конфигурации" - -#: mod/install.php:475 -msgid "" -"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 " -"encryption layer." -msgstr "Функция mcrypt_create_iv() не объявлена. Она необходима для шифрования RINO2." - -#: mod/install.php:477 -msgid "mcrypt_create_iv() function" -msgstr "Функция mcrypt_create_iv()" - -#: mod/install.php:485 -msgid "Error, XML PHP module required but not installed." -msgstr "Ошибка, необходим PHP модуль XML, но он не установлен" - -#: mod/install.php:500 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "Веб-инсталлятору требуется создать файл с именем \". htconfig.php\" в верхней папке веб-сервера, но он не в состоянии это сделать." - -#: mod/install.php:501 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "Это наиболее частые параметры разрешений, когда веб-сервер не может записать файлы в папке - даже если вы можете." - -#: mod/install.php:502 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "В конце этой процедуры, мы дадим вам текст, для сохранения в файле с именем .htconfig.php в корневой папке, где установлена Friendica." - -#: mod/install.php:503 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "В качестве альтернативы вы можете пропустить эту процедуру и выполнить установку вручную. Пожалуйста, обратитесь к файлу \"INSTALL.txt\" для получения инструкций." - -#: mod/install.php:506 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php is writable" - -#: mod/install.php:516 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Friendica использует механизм шаблонов Smarty3 для генерации веб-страниц. Smarty3 компилирует шаблоны в PHP для увеличения скорости загрузки." - -#: mod/install.php:517 -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory view/smarty3/ under the Friendica top level " -"folder." -msgstr "Для того чтобы хранить эти скомпилированные шаблоны, веб-сервер должен иметь доступ на запись для папки view/smarty3 в директории, где установлена Friendica." - -#: mod/install.php:518 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Пожалуйста, убедитесь, что пользователь, под которым работает ваш веб-сервер (например www-data), имеет доступ на запись в этой папке." - -#: mod/install.php:519 -msgid "" -"Note: as a security measure, you should give the web server write access to " -"view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "Примечание: в качестве меры безопасности, вы должны дать вебсерверу доступ на запись только в view/smarty3 - но не на сами файлы шаблонов (.tpl)., Которые содержатся в этой папке." - -#: mod/install.php:522 -msgid "view/smarty3 is writable" -msgstr "view/smarty3 доступен для записи" - -#: mod/install.php:538 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "Url rewrite в .htaccess не работает. Проверьте конфигурацию вашего сервера.." - -#: mod/install.php:540 -msgid "Url rewrite is working" -msgstr "Url rewrite работает" - -#: mod/install.php:559 -msgid "ImageMagick PHP extension is not installed" -msgstr "Модуль PHP ImageMagick не установлен" - -#: mod/install.php:561 -msgid "ImageMagick PHP extension is installed" -msgstr "Модуль PHP ImageMagick установлен" - -#: mod/install.php:563 -msgid "ImageMagick supports GIF" -msgstr "ImageMagick поддерживает GIF" - -#: mod/install.php:570 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "Файл конфигурации базы данных \".htconfig.php\" не могла быть записан. Пожалуйста, используйте приложенный текст, чтобы создать конфигурационный файл в корневом каталоге веб-сервера." - -#: mod/install.php:607 -msgid "

What next

" -msgstr "

Что далее

" - -#: mod/install.php:608 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "ВАЖНО: Вам нужно будет [вручную] установить запланированное задание для регистратора." - #: mod/invite.php:28 msgid "Total invitation limit exceeded." msgstr "Превышен общий лимит приглашений." @@ -6302,8 +4055,8 @@ msgstr "Отправить приглашения" msgid "Enter email addresses, one per line:" msgstr "Введите адреса электронной почты, по одному в строке:" -#: mod/invite.php:136 mod/message.php:332 mod/message.php:515 -#: mod/wallmessage.php:135 +#: mod/invite.php:136 mod/wallmessage.php:135 mod/message.php:332 +#: mod/message.php:515 msgid "Your message:" msgstr "Ваше сообщение:" @@ -6328,41 +4081,6 @@ msgid "" "important, please visit http://friendica.com" msgstr "Для получения более подробной информации о проекте Friendica, пожалуйста, посетите http://friendica.com" -#: mod/item.php:118 -msgid "Unable to locate original post." -msgstr "Не удалось найти оригинальный пост." - -#: mod/item.php:336 -msgid "Empty post discarded." -msgstr "Пустое сообщение отбрасывается." - -#: mod/item.php:889 -msgid "System error. Post not saved." -msgstr "Системная ошибка. Сообщение не сохранено." - -#: mod/item.php:979 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Это сообщение было отправлено вам %s, участником социальной сети Friendica." - -#: mod/item.php:981 -#, php-format -msgid "You may visit them online at %s" -msgstr "Вы можете посетить их в онлайне на %s" - -#: mod/item.php:982 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Пожалуйста, свяжитесь с отправителем, ответив на это сообщение, если вы не хотите получать эти сообщения." - -#: mod/item.php:986 -#, php-format -msgid "%s posted an update." -msgstr "%s отправил/а/ обновление." - #: mod/localtime.php:24 msgid "Time Conversion" msgstr "История общения" @@ -6452,6 +4170,10 @@ msgid "" "Password reset failed." msgstr "Запрос не может быть проверен. (Вы, возможно, ранее представляли его.) Попытка сброса пароля неудачная." +#: mod/lostpass.php:110 boot.php:1882 +msgid "Password Reset" +msgstr "Сброс пароля" + #: mod/lostpass.php:111 msgid "Your password has been reset as requested." msgstr "Ваш пароль был сброшен по требованию." @@ -6514,6 +4236,10 @@ msgid "" "your email for further instructions." msgstr "Введите адрес электронной почты и подтвердите, что вы хотите сбросить ваш пароль. Затем проверьте свою электронную почту для получения дальнейших инструкций." +#: mod/lostpass.php:161 boot.php:1870 +msgid "Nickname or Email: " +msgstr "Ник или E-mail: " + #: mod/lostpass.php:162 msgid "Reset" msgstr "Сброс" @@ -6522,20 +4248,6 @@ msgstr "Сброс" msgid "System down for maintenance" msgstr "Система закрыта на техническое обслуживание" -#: mod/manage.php:141 -msgid "Manage Identities and/or Pages" -msgstr "Управление идентификацией и / или страницами" - -#: mod/manage.php:142 -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:143 -msgid "Select an identity to manage: " -msgstr "Выберите идентификацию для управления: " - #: mod/match.php:35 msgid "No keywords to match. Please add keywords to your default profile." msgstr "Нет соответствующих ключевых слов. Пожалуйста, добавьте ключевые слова для вашего профиля по умолчанию." @@ -6548,103 +4260,9 @@ msgstr "интересуется:" msgid "Profile Match" msgstr "Похожие профили" -#: mod/message.php:60 mod/wallmessage.php:50 -msgid "No recipient selected." -msgstr "Не выбран получатель." - -#: mod/message.php:64 -msgid "Unable to locate contact information." -msgstr "Не удалось найти контактную информацию." - -#: mod/message.php:67 mod/wallmessage.php:56 -msgid "Message could not be sent." -msgstr "Сообщение не может быть отправлено." - -#: mod/message.php:70 mod/wallmessage.php:59 -msgid "Message collection failure." -msgstr "Неудача коллекции сообщения." - -#: mod/message.php:73 mod/wallmessage.php:62 -msgid "Message sent." -msgstr "Сообщение отправлено." - -#: mod/message.php:204 -msgid "Do you really want to delete this message?" -msgstr "Вы действительно хотите удалить это сообщение?" - -#: mod/message.php:224 -msgid "Message deleted." -msgstr "Сообщение удалено." - -#: mod/message.php:255 -msgid "Conversation removed." -msgstr "Беседа удалена." - -#: mod/message.php:322 mod/wallmessage.php:126 -msgid "Send Private Message" -msgstr "Отправить личное сообщение" - -#: mod/message.php:323 mod/message.php:510 mod/wallmessage.php:128 -msgid "To:" -msgstr "Кому:" - -#: mod/message.php:328 mod/message.php:512 mod/wallmessage.php:129 -msgid "Subject:" -msgstr "Тема:" - -#: mod/message.php:364 -msgid "No messages." -msgstr "Нет сообщений." - -#: mod/message.php:403 -msgid "Message not available." -msgstr "Сообщение не доступно." - -#: mod/message.php:477 -msgid "Delete message" -msgstr "Удалить сообщение" - -#: mod/message.php:503 mod/message.php:583 -msgid "Delete conversation" -msgstr "Удалить историю общения" - -#: mod/message.php:505 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Невозможно защищённое соединение. Вы имеете возможность ответить со страницы профиля отправителя." - -#: mod/message.php:509 -msgid "Send Reply" -msgstr "Отправить ответ" - -#: mod/message.php:553 -#, php-format -msgid "Unknown sender - %s" -msgstr "Неизвестный отправитель - %s" - -#: mod/message.php:555 -#, php-format -msgid "You and %s" -msgstr "Вы и %s" - -#: mod/message.php:557 -#, php-format -msgid "%s and You" -msgstr "%s и Вы" - -#: mod/message.php:586 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: mod/message.php:589 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d сообщение" -msgstr[1] "%d сообщений" -msgstr[2] "%d сообщений" -msgstr[3] "%d сообщений" +#: mod/match.php:109 mod/dirfind.php:245 +msgid "No matches" +msgstr "Нет соответствий" #: mod/mood.php:134 msgid "Mood" @@ -6654,79 +4272,6 @@ msgstr "Настроение" msgid "Set your current mood and tell your friends" msgstr "Напишите о вашем настроении и расскажите своим друзьям" -#: mod/network.php:190 mod/search.php:25 -msgid "Remove term" -msgstr "Удалить элемент" - -#: mod/network.php:397 -#, php-format -msgid "" -"Warning: This group contains %s member from a network that doesn't allow non" -" public messages." -msgid_plural "" -"Warning: This group contains %s members from a network that doesn't allow " -"non public messages." -msgstr[0] "Внимание: в группе %s пользователь из сети, которая не поддерживает непубличные сообщения." -msgstr[1] "Внимание: в группе %s пользователя из сети, которая не поддерживает непубличные сообщения." -msgstr[2] "Внимание: в группе %s пользователей из сети, которая не поддерживает непубличные сообщения." -msgstr[3] "Внимание: в группе %s пользователей из сети, которая не поддерживает непубличные сообщения." - -#: mod/network.php:400 -msgid "Messages in this group won't be send to these receivers." -msgstr "Сообщения в этой группе не будут отправлены следующим получателям." - -#: mod/network.php:528 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Личные сообщения этому человеку находятся под угрозой обнародования." - -#: mod/network.php:533 -msgid "Invalid contact." -msgstr "Недопустимый контакт." - -#: mod/network.php:810 -msgid "Commented Order" -msgstr "Последние комментарии" - -#: mod/network.php:813 -msgid "Sort by Comment Date" -msgstr "Сортировать по дате комментария" - -#: mod/network.php:818 -msgid "Posted Order" -msgstr "Лента записей" - -#: mod/network.php:821 -msgid "Sort by Post Date" -msgstr "Сортировать по дате отправки" - -#: mod/network.php:832 -msgid "Posts that mention or involve you" -msgstr "Посты которые упоминают вас или в которых вы участвуете" - -#: mod/network.php:840 -msgid "New" -msgstr "Новый" - -#: mod/network.php:843 -msgid "Activity Stream - by date" -msgstr "Лента активности - по дате" - -#: mod/network.php:851 -msgid "Shared Links" -msgstr "Ссылки, которыми поделились" - -#: mod/network.php:854 -msgid "Interesting Links" -msgstr "Интересные ссылки" - -#: mod/network.php:862 -msgid "Starred" -msgstr "Помеченный" - -#: mod/network.php:865 -msgid "Favourite Posts" -msgstr "Избранные посты" - #: mod/newmember.php:6 msgid "Welcome to Friendica" msgstr "Добро пожаловать в Friendica" @@ -6777,7 +4322,7 @@ msgid "" "potential friends know exactly how to find you." msgstr "Просмотрите другие установки, в частности, параметры конфиденциальности. Неопубликованные пункты каталога с частными номерами телефона. В общем, вам, вероятно, следует опубликовать свою информацию - если все ваши друзья и потенциальные друзья точно знают, как вас найти." -#: mod/newmember.php:36 mod/profile_photo.php:256 mod/profiles.php:699 +#: mod/newmember.php:36 mod/profile_photo.php:256 mod/profiles.php:700 msgid "Upload Profile Photo" msgstr "Загрузить фото профиля" @@ -6900,139 +4445,18 @@ msgstr "Наши страницы помощи могут пр msgid "Contacts who are not members of a group" msgstr "Контакты, которые не являются членами группы" -#: mod/notifications.php:35 -msgid "Invalid request identifier." -msgstr "Неверный идентификатор запроса." - -#: mod/notifications.php:44 mod/notifications.php:180 -#: mod/notifications.php:258 -msgid "Discard" -msgstr "Отказаться" - -#: mod/notifications.php:105 -msgid "Network Notifications" -msgstr "Уведомления сети" - -#: mod/notifications.php:111 mod/notify.php:69 -msgid "System Notifications" -msgstr "Уведомления системы" - -#: mod/notifications.php:117 -msgid "Personal Notifications" -msgstr "Личные уведомления" - -#: mod/notifications.php:123 -msgid "Home Notifications" -msgstr "Уведомления" - -#: mod/notifications.php:152 -msgid "Show Ignored Requests" -msgstr "Показать проигнорированные запросы" - -#: mod/notifications.php:152 -msgid "Hide Ignored Requests" -msgstr "Скрыть проигнорированные запросы" - -#: mod/notifications.php:164 mod/notifications.php:228 -msgid "Notification type: " -msgstr "Тип уведомления: " - -#: mod/notifications.php:167 -#, php-format -msgid "suggested by %s" -msgstr "предложено юзером %s" - -#: mod/notifications.php:173 mod/notifications.php:246 -msgid "Post a new friend activity" -msgstr "Настроение" - -#: mod/notifications.php:173 mod/notifications.php:246 -msgid "if applicable" -msgstr "если требуется" - -#: mod/notifications.php:195 -msgid "Claims to be known to you: " -msgstr "Утверждения, о которых должно быть вам известно: " - -#: mod/notifications.php:196 -msgid "yes" -msgstr "да" - -#: mod/notifications.php:196 -msgid "no" -msgstr "нет" - -#: mod/notifications.php:197 mod/notifications.php:202 -msgid "Shall your connection be bidirectional or not?" -msgstr "Должно ли ваше соединение быть двухсторонним или нет?" - -#: mod/notifications.php:198 mod/notifications.php:203 -#, php-format -msgid "" -"Accepting %s as a friend allows %s to subscribe to your posts, and you will " -"also receive updates from them in your news feed." -msgstr "Принимая %s как друга вы позволяете %s читать ему свои посты, а также будете получать оные от него." - -#: mod/notifications.php:199 -#, php-format -msgid "" -"Accepting %s as a subscriber allows them to subscribe to your posts, but you" -" will not receive updates from them in your news feed." -msgstr "Принимая %s как подписчика вы позволяете читать ему свои посты, но вы не получите оных от него." - -#: mod/notifications.php:204 -#, php-format -msgid "" -"Accepting %s as a sharer allows them to subscribe to your posts, but you " -"will not receive updates from them in your news feed." -msgstr "Принимая %s как подписчика вы позволяете читать ему свои посты, но вы не получите оных от него." - -#: mod/notifications.php:215 -msgid "Friend" -msgstr "Друг" - -#: mod/notifications.php:216 -msgid "Sharer" -msgstr "Участник" - -#: mod/notifications.php:216 -msgid "Subscriber" -msgstr "Подписант" - -#: mod/notifications.php:266 -msgid "No introductions." -msgstr "Запросов нет." - -#: mod/notifications.php:307 -msgid "Show unread" -msgstr "Показать непрочитанные" - -#: mod/notifications.php:307 -msgid "Show all" -msgstr "Показать все" - -#: mod/notifications.php:313 -#, php-format -msgid "No more %s notifications." -msgstr "Больше нет уведомлений о %s." - #: mod/notify.php:65 msgid "No more system notifications." msgstr "Системных уведомлений больше нет." +#: mod/notify.php:69 mod/notifications.php:111 +msgid "System Notifications" +msgstr "Уведомления системы" + #: mod/oexchange.php:21 msgid "Post successful." msgstr "Успешно добавлено." -#: mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "Ошибка протокола OpenID. Не возвращён ID." - -#: mod/openid.php:60 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Аккаунт не найден и OpenID регистрация не допускается на этом сайте." - #: mod/ostatus_subscribe.php:14 msgid "Subscribing to OStatus contacts" msgstr "Подписка на OStatus-контакты" @@ -7069,218 +4493,6 @@ msgstr "Держать окно открытым до завершения." msgid "Not Extended" msgstr "Не расширенный" -#: mod/photos.php:90 mod/photos.php:1876 -msgid "Recent Photos" -msgstr "Последние фото" - -#: mod/photos.php:93 mod/photos.php:1303 mod/photos.php:1878 -msgid "Upload New Photos" -msgstr "Загрузить новые фото" - -#: mod/photos.php:107 mod/settings.php:36 -msgid "everybody" -msgstr "каждый" - -#: mod/photos.php:171 -msgid "Contact information unavailable" -msgstr "Информация о контакте недоступна" - -#: mod/photos.php:192 -msgid "Album not found." -msgstr "Альбом не найден." - -#: mod/photos.php:225 mod/photos.php:237 mod/photos.php:1247 -msgid "Delete Album" -msgstr "Удалить альбом" - -#: mod/photos.php:235 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Вы действительно хотите удалить этот альбом и все его фотографии?" - -#: mod/photos.php:317 mod/photos.php:328 mod/photos.php:1563 -msgid "Delete Photo" -msgstr "Удалить фото" - -#: mod/photos.php:326 -msgid "Do you really want to delete this photo?" -msgstr "Вы действительно хотите удалить эту фотографию?" - -#: mod/photos.php:705 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s отмечен/а/ в %2$s by %3$s" - -#: mod/photos.php:705 -msgid "a photo" -msgstr "фото" - -#: mod/photos.php:803 mod/profile_photo.php:156 mod/wall_upload.php:151 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "Изображение превышает лимит размера в %s" - -#: mod/photos.php:811 -msgid "Image file is empty." -msgstr "Файл изображения пуст." - -#: mod/photos.php:844 mod/profile_photo.php:165 mod/wall_upload.php:186 -msgid "Unable to process image." -msgstr "Невозможно обработать фото." - -#: mod/photos.php:871 mod/profile_photo.php:315 mod/wall_upload.php:219 -msgid "Image upload failed." -msgstr "Загрузка фото неудачная." - -#: mod/photos.php:974 -msgid "No photos selected" -msgstr "Не выбрано фото." - -#: mod/photos.php:1074 mod/videos.php:309 -msgid "Access to this item is restricted." -msgstr "Доступ к этому пункту ограничен." - -#: mod/photos.php:1134 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Вы использовали %1$.2f мегабайт из %2$.2f возможных для хранения фотографий." - -#: mod/photos.php:1168 -msgid "Upload Photos" -msgstr "Загрузить фото" - -#: mod/photos.php:1172 mod/photos.php:1242 -msgid "New album name: " -msgstr "Название нового альбома: " - -#: mod/photos.php:1173 -msgid "or existing album name: " -msgstr "или название существующего альбома: " - -#: mod/photos.php:1174 -msgid "Do not show a status post for this upload" -msgstr "Не показывать статус-сообщение для этой закачки" - -#: mod/photos.php:1185 mod/photos.php:1567 mod/settings.php:1307 -msgid "Show to Groups" -msgstr "Показать в группах" - -#: mod/photos.php:1186 mod/photos.php:1568 mod/settings.php:1308 -msgid "Show to Contacts" -msgstr "Показывать контактам" - -#: mod/photos.php:1187 -msgid "Private Photo" -msgstr "Личное фото" - -#: mod/photos.php:1188 -msgid "Public Photo" -msgstr "Публичное фото" - -#: mod/photos.php:1254 -msgid "Edit Album" -msgstr "Редактировать альбом" - -#: mod/photos.php:1260 -msgid "Show Newest First" -msgstr "Показать новые первыми" - -#: mod/photos.php:1262 -msgid "Show Oldest First" -msgstr "Показать старые первыми" - -#: mod/photos.php:1289 mod/photos.php:1861 -msgid "View Photo" -msgstr "Просмотр фото" - -#: mod/photos.php:1335 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Нет разрешения. Доступ к этому элементу ограничен." - -#: mod/photos.php:1337 -msgid "Photo not available" -msgstr "Фото недоступно" - -#: mod/photos.php:1395 -msgid "View photo" -msgstr "Просмотр фото" - -#: mod/photos.php:1395 -msgid "Edit photo" -msgstr "Редактировать фото" - -#: mod/photos.php:1396 -msgid "Use as profile photo" -msgstr "Использовать как фото профиля" - -#: mod/photos.php:1421 -msgid "View Full Size" -msgstr "Просмотреть полный размер" - -#: mod/photos.php:1507 -msgid "Tags: " -msgstr "Ключевые слова: " - -#: mod/photos.php:1510 -msgid "[Remove any tag]" -msgstr "[Удалить любое ключевое слово]" - -#: mod/photos.php:1549 -msgid "New album name" -msgstr "Название нового альбома" - -#: mod/photos.php:1550 -msgid "Caption" -msgstr "Подпись" - -#: mod/photos.php:1551 -msgid "Add a Tag" -msgstr "Добавить ключевое слово (тег)" - -#: mod/photos.php:1551 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Пример: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: mod/photos.php:1552 -msgid "Do not rotate" -msgstr "Не поворачивать" - -#: mod/photos.php:1553 -msgid "Rotate CW (right)" -msgstr "Поворот по часовой стрелке (направо)" - -#: mod/photos.php:1554 -msgid "Rotate CCW (left)" -msgstr "Поворот против часовой стрелки (налево)" - -#: mod/photos.php:1569 -msgid "Private photo" -msgstr "Личное фото" - -#: mod/photos.php:1570 -msgid "Public photo" -msgstr "Публичное фото" - -#: mod/photos.php:1792 -msgid "Map" -msgstr "Карта" - -#: mod/photos.php:1867 mod/videos.php:391 -msgid "View Album" -msgstr "Просмотреть альбом" - -#: mod/ping.php:270 -msgid "{0} wants to be your friend" -msgstr "{0} хочет стать Вашим другом" - -#: mod/ping.php:285 -msgid "{0} sent you a message" -msgstr "{0} отправил Вам сообщение" - -#: mod/ping.php:300 -msgid "{0} requested registration" -msgstr "{0} требуемая регистрация" - #: mod/poke.php:196 msgid "Poke/Prod" msgstr "Потыкать/Потолкать" @@ -7301,10 +4513,6 @@ msgstr "Выберите действия для получателя" msgid "Make this post private" msgstr "Сделать эту запись личной" -#: mod/profile.php:174 -msgid "Tips for New Members" -msgstr "Советы для новых участников" - #: mod/profile_photo.php:44 msgid "Image uploaded but image cropping failed." msgstr "Изображение загружено, но обрезка изображения не удалась." @@ -7325,6 +4533,15 @@ msgstr "Перезагрузите страницу с зажатой клави msgid "Unable to process image" msgstr "Не удается обработать изображение" +#: mod/profile_photo.php:156 mod/photos.php:813 mod/wall_upload.php:181 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "Изображение превышает лимит размера в %s" + +#: mod/profile_photo.php:165 mod/photos.php:854 mod/wall_upload.php:218 +msgid "Unable to process image." +msgstr "Невозможно обработать фото." + #: mod/profile_photo.php:254 msgid "Upload File:" msgstr "Загрузить файл:" @@ -7365,15 +4582,1122 @@ msgstr "Редактирование выполнено" msgid "Image uploaded successfully." msgstr "Изображение загружено успешно." +#: mod/profile_photo.php:315 mod/photos.php:883 mod/wall_upload.php:257 +msgid "Image upload failed." +msgstr "Загрузка фото неудачная." + +#: mod/profperm.php:20 mod/group.php:76 index.php:406 +msgid "Permission denied" +msgstr "Доступ запрещен" + +#: mod/profperm.php:26 mod/profperm.php:57 +msgid "Invalid profile identifier." +msgstr "Недопустимый идентификатор профиля." + +#: mod/profperm.php:103 +msgid "Profile Visibility Editor" +msgstr "Редактор видимости профиля" + +#: mod/profperm.php:107 mod/group.php:262 +msgid "Click on a contact to add or remove." +msgstr "Нажмите на контакт, чтобы добавить или удалить." + +#: mod/profperm.php:116 +msgid "Visible To" +msgstr "Видимый для" + +#: mod/profperm.php:132 +msgid "All Contacts (with secure profile access)" +msgstr "Все контакты (с безопасным доступом к профилю)" + +#: mod/regmod.php:58 +msgid "Account approved." +msgstr "Аккаунт утвержден." + +#: mod/regmod.php:95 +#, php-format +msgid "Registration revoked for %s" +msgstr "Регистрация отменена для %s" + +#: mod/regmod.php:107 +msgid "Please login." +msgstr "Пожалуйста, войдите с паролем." + +#: mod/removeme.php:52 mod/removeme.php:55 +msgid "Remove My Account" +msgstr "Удалить мой аккаунт" + +#: mod/removeme.php:53 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, аккаунт восстановлению не подлежит." + +#: mod/removeme.php:54 +msgid "Please enter your password for verification:" +msgstr "Пожалуйста, введите свой пароль для проверки:" + +#: mod/repair_ostatus.php:14 +msgid "Resubscribing to OStatus contacts" +msgstr "Переподписаться на OStatus-контакты." + +#: mod/repair_ostatus.php:30 +msgid "Error" +msgstr "Ошибка" + +#: mod/subthread.php:104 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s подписан %2$s's %3$s" + +#: mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Вы действительно хотите удалить это предложение?" + +#: mod/suggest.php:71 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Нет предложений. Если это новый сайт, пожалуйста, попробуйте снова через 24 часа." + +#: mod/suggest.php:84 mod/suggest.php:104 +msgid "Ignore/Hide" +msgstr "Проигнорировать/Скрыть" + +#: mod/tagrm.php:43 +msgid "Tag removed" +msgstr "Ключевое слово удалено" + +#: mod/tagrm.php:82 +msgid "Remove Item Tag" +msgstr "Удалить ключевое слово" + +#: mod/tagrm.php:84 +msgid "Select a tag to remove: " +msgstr "Выберите ключевое слово для удаления: " + +#: mod/uimport.php:51 mod/register.php:198 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Этот сайт превысил допустимое количество ежедневных регистраций. Пожалуйста, повторите попытку завтра." + +#: mod/uimport.php:66 mod/register.php:295 +msgid "Import" +msgstr "Импорт" + +#: mod/uimport.php:68 +msgid "Move account" +msgstr "Удалить аккаунт" + +#: mod/uimport.php:69 +msgid "You can import an account from another Friendica server." +msgstr "Вы можете импортировать учетную запись с другого сервера Friendica." + +#: mod/uimport.php:70 +msgid "" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also" +" to inform your friends that you moved here." +msgstr "Вам нужно экспортировать свой ​​аккаунт со старого сервера и загрузить его сюда. Мы восстановим ваш ​​старый аккаунт здесь со всеми вашими контактами. Мы постараемся также сообщить друзьям, что вы переехали сюда." + +#: mod/uimport.php:71 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "Это экспериментальная функция. Мы не можем импортировать контакты из сети OStatus (GNU Social/ StatusNet) или из Diaspora" + +#: mod/uimport.php:72 +msgid "Account file" +msgstr "Файл аккаунта" + +#: mod/uimport.php:72 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "Для экспорта аккаунта, перейдите в \"Настройки->Экспортировать ваши данные\" и выберите \"Экспорт аккаунта\"" + +#: mod/update_community.php:19 mod/update_display.php:23 +#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35 +msgid "[Embedded content - reload page to view]" +msgstr "[Встроенное содержание - перезагрузите страницу для просмотра]" + +#: mod/viewcontacts.php:75 +msgid "No contacts." +msgstr "Нет контактов." + +#: mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Доступ запрещен." + +#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76 +#: mod/wall_upload.php:36 mod/wall_upload.php:52 mod/wall_upload.php:110 +#: mod/wall_upload.php:150 mod/wall_upload.php:153 +msgid "Invalid request." +msgstr "Неверный запрос." + +#: mod/wall_attach.php:94 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Извините, похоже что загружаемый файл превышает лимиты, разрешенные конфигурацией PHP" + +#: mod/wall_attach.php:94 +msgid "Or - did you try to upload an empty file?" +msgstr "Или вы пытались загрузить пустой файл?" + +#: mod/wall_attach.php:105 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "Файл превышает лимит размера в %s" + +#: mod/wall_attach.php:158 mod/wall_attach.php:174 +msgid "File upload failed." +msgstr "Загрузка файла не удалась." + +#: mod/wallmessage.php:42 mod/wallmessage.php:106 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Количество ежедневных сообщений на стене %s превышено. Сообщение отменено.." + +#: mod/wallmessage.php:50 mod/message.php:60 +msgid "No recipient selected." +msgstr "Не выбран получатель." + +#: mod/wallmessage.php:53 +msgid "Unable to check your home location." +msgstr "Невозможно проверить местоположение." + +#: mod/wallmessage.php:56 mod/message.php:67 +msgid "Message could not be sent." +msgstr "Сообщение не может быть отправлено." + +#: mod/wallmessage.php:59 mod/message.php:70 +msgid "Message collection failure." +msgstr "Неудача коллекции сообщения." + +#: mod/wallmessage.php:62 mod/message.php:73 +msgid "Message sent." +msgstr "Сообщение отправлено." + +#: mod/wallmessage.php:80 mod/wallmessage.php:89 +msgid "No recipient." +msgstr "Без адресата." + +#: mod/wallmessage.php:126 mod/message.php:322 +msgid "Send Private Message" +msgstr "Отправить личное сообщение" + +#: mod/wallmessage.php:127 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "Если Вы хотите ответить %s, пожалуйста, проверьте, позволяют ли настройки конфиденциальности на Вашем сайте принимать личные сообщения от неизвестных отправителей." + +#: mod/wallmessage.php:128 mod/message.php:323 mod/message.php:510 +msgid "To:" +msgstr "Кому:" + +#: mod/wallmessage.php:129 mod/message.php:328 mod/message.php:512 +msgid "Subject:" +msgstr "Тема:" + +#: mod/babel.php:16 +msgid "Source (bbcode) text:" +msgstr "Код (bbcode):" + +#: mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Код (Diaspora) для конвертации в BBcode:" + +#: mod/babel.php:31 +msgid "Source input: " +msgstr "Ввести код:" + +#: mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (raw HTML): " + +#: mod/babel.php:39 +msgid "bb2html: " +msgstr "bb2html: " + +#: mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " + +#: mod/babel.php:47 +msgid "bb2md: " +msgstr "bb2md: " + +#: mod/babel.php:51 +msgid "bb2md2html: " +msgstr "bb2md2html: " + +#: mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " + +#: mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " + +#: mod/babel.php:65 +msgid "Source input (Diaspora format): " +msgstr "Ввод кода (формат Diaspora):" + +#: mod/babel.php:69 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: mod/cal.php:271 mod/events.php:375 +msgid "View" +msgstr "Смотреть" + +#: mod/cal.php:272 mod/events.php:377 +msgid "Previous" +msgstr "Назад" + +#: mod/cal.php:273 mod/events.php:378 mod/install.php:201 +msgid "Next" +msgstr "Далее" + +#: mod/cal.php:282 mod/events.php:387 +msgid "list" +msgstr "список" + +#: mod/cal.php:292 +msgid "User not found" +msgstr "Пользователь не найден" + +#: mod/cal.php:308 +msgid "This calendar format is not supported" +msgstr "Этот формат календарей не поддерживается" + +#: mod/cal.php:310 +msgid "No exportable data found" +msgstr "Нет данных для экспорта" + +#: mod/cal.php:325 +msgid "calendar" +msgstr "календарь" + +#: mod/community.php:23 +msgid "Not available." +msgstr "Недоступно." + +#: mod/community.php:50 mod/search.php:219 +msgid "No results." +msgstr "Нет результатов." + +#: mod/dfrn_confirm.php:70 mod/profiles.php:19 mod/profiles.php:135 +#: mod/profiles.php:182 mod/profiles.php:619 +msgid "Profile not found." +msgstr "Профиль не найден." + +#: mod/dfrn_confirm.php:127 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Это может иногда происходить, если контакт запрашивали двое людей, и он был уже одобрен." + +#: mod/dfrn_confirm.php:244 +msgid "Response from remote site was not understood." +msgstr "Ответ от удаленного сайта не был понят." + +#: mod/dfrn_confirm.php:253 mod/dfrn_confirm.php:258 +msgid "Unexpected response from remote site: " +msgstr "Неожиданный ответ от удаленного сайта: " + +#: mod/dfrn_confirm.php:267 +msgid "Confirmation completed successfully." +msgstr "Подтверждение успешно завершено." + +#: mod/dfrn_confirm.php:269 mod/dfrn_confirm.php:283 mod/dfrn_confirm.php:290 +msgid "Remote site reported: " +msgstr "Удаленный сайт сообщил: " + +#: mod/dfrn_confirm.php:281 +msgid "Temporary failure. Please wait and try again." +msgstr "Временные неудачи. Подождите и попробуйте еще раз." + +#: mod/dfrn_confirm.php:288 +msgid "Introduction failed or was revoked." +msgstr "Запрос ошибочен или был отозван." + +#: mod/dfrn_confirm.php:418 +msgid "Unable to set contact photo." +msgstr "Не удается установить фото контакта." + +#: mod/dfrn_confirm.php:559 +#, php-format +msgid "No user record found for '%s' " +msgstr "Не найдено записи пользователя для '%s' " + +#: mod/dfrn_confirm.php:569 +msgid "Our site encryption key is apparently messed up." +msgstr "Наш ключ шифрования сайта, по-видимому, перепутался." + +#: mod/dfrn_confirm.php:580 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "Был предоставлен пустой URL сайта ​​или URL не может быть расшифрован нами." + +#: mod/dfrn_confirm.php:602 +msgid "Contact record was not found for you on our site." +msgstr "Запись контакта не найдена для вас на нашем сайте." + +#: mod/dfrn_confirm.php:616 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "Публичный ключ недоступен в записи о контакте по ссылке %s" + +#: mod/dfrn_confirm.php:636 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "ID, предложенный вашей системой, является дубликатом в нашей системе. Он должен работать, если вы повторите попытку." + +#: mod/dfrn_confirm.php:647 +msgid "Unable to set your contact credentials on our system." +msgstr "Не удалось установить ваши учетные данные контакта в нашей системе." + +#: mod/dfrn_confirm.php:709 +msgid "Unable to update your contact profile details on our system" +msgstr "Не удается обновить ваши контактные детали профиля в нашей системе" + +#: mod/dfrn_confirm.php:781 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s присоединился %2$s" + +#: mod/dfrn_request.php:101 +msgid "This introduction has already been accepted." +msgstr "Этот запрос был уже принят." + +#: mod/dfrn_request.php:124 mod/dfrn_request.php:528 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Местоположение профиля является недопустимым или не содержит информацию о профиле." + +#: mod/dfrn_request.php:129 mod/dfrn_request.php:533 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Внимание: местоположение профиля не имеет идентифицируемого имени владельца." + +#: mod/dfrn_request.php:132 mod/dfrn_request.php:536 +msgid "Warning: profile location has no profile photo." +msgstr "Внимание: местоположение профиля не имеет еще фотографии профиля." + +#: mod/dfrn_request.php:136 mod/dfrn_request.php:540 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d требуемый параметр не был найден в заданном месте" +msgstr[1] "%d требуемых параметров не были найдены в заданном месте" +msgstr[2] "%d требуемых параметров не были найдены в заданном месте" +msgstr[3] "%d требуемых параметров не были найдены в заданном месте" + +#: mod/dfrn_request.php:180 +msgid "Introduction complete." +msgstr "Запрос создан." + +#: mod/dfrn_request.php:225 +msgid "Unrecoverable protocol error." +msgstr "Неисправимая ошибка протокола." + +#: mod/dfrn_request.php:253 +msgid "Profile unavailable." +msgstr "Профиль недоступен." + +#: mod/dfrn_request.php:280 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "К %s пришло сегодня слишком много запросов на подключение." + +#: mod/dfrn_request.php:281 +msgid "Spam protection measures have been invoked." +msgstr "Были применены меры защиты от спама." + +#: mod/dfrn_request.php:282 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Друзья советуют попробовать еще раз в ближайшие 24 часа." + +#: mod/dfrn_request.php:344 +msgid "Invalid locator" +msgstr "Недопустимый локатор" + +#: mod/dfrn_request.php:353 +msgid "Invalid email address." +msgstr "Неверный адрес электронной почты." + +#: mod/dfrn_request.php:378 +msgid "This account has not been configured for email. Request failed." +msgstr "Этот аккаунт не настроен для электронной почты. Запрос не удался." + +#: mod/dfrn_request.php:481 +msgid "You have already introduced yourself here." +msgstr "Вы уже ввели информацию о себе здесь." + +#: mod/dfrn_request.php:485 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Похоже, что вы уже друзья с %s." + +#: mod/dfrn_request.php:506 +msgid "Invalid profile URL." +msgstr "Неверный URL профиля." + +#: mod/dfrn_request.php:614 +msgid "Your introduction has been sent." +msgstr "Ваш запрос отправлен." + +#: mod/dfrn_request.php:656 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "Удаленная подписка не может быть выполнена на вашей сети. Пожалуйста, подпишитесь на вашей системе." + +#: mod/dfrn_request.php:677 +msgid "Please login to confirm introduction." +msgstr "Для подтверждения запроса войдите пожалуйста с паролем." + +#: mod/dfrn_request.php:687 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Неверно идентифицирован вход. Пожалуйста, войдите в этот профиль." + +#: mod/dfrn_request.php:701 mod/dfrn_request.php:718 +msgid "Confirm" +msgstr "Подтвердить" + +#: mod/dfrn_request.php:713 +msgid "Hide this contact" +msgstr "Скрыть этот контакт" + +#: mod/dfrn_request.php:716 +#, php-format +msgid "Welcome home %s." +msgstr "Добро пожаловать домой, %s!" + +#: mod/dfrn_request.php:717 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Пожалуйста, подтвердите краткую информацию / запрос на подключение к %s." + +#: mod/dfrn_request.php:848 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Пожалуйста, введите ваш 'идентификационный адрес' одной из следующих поддерживаемых социальных сетей:" + +#: mod/dfrn_request.php:872 +#, 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 "Если вы еще не являетесь членом свободной социальной сети, перейдите по этой ссылке, чтобы найти публичный сервер Friendica и присоединиться к нам сейчас ." + +#: mod/dfrn_request.php:877 +msgid "Friend/Connection Request" +msgstr "Запрос в друзья / на подключение" + +#: mod/dfrn_request.php:878 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Примеры: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" + +#: mod/dfrn_request.php:879 mod/follow.php:112 +msgid "Please answer the following:" +msgstr "Пожалуйста, ответьте следующее:" + +#: mod/dfrn_request.php:880 mod/follow.php:113 +#, php-format +msgid "Does %s know you?" +msgstr "%s знает вас?" + +#: mod/dfrn_request.php:884 mod/follow.php:114 +msgid "Add a personal note:" +msgstr "Добавить личную заметку:" + +#: mod/dfrn_request.php:887 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet / Federated Social Web" + +#: mod/dfrn_request.php:889 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr "Участники сети Diaspora: пожалуйста, не пользуйтесь этой формой. Вместо этого введите %s в строке поиска Diaspora" + +#: mod/dfrn_request.php:890 mod/follow.php:120 +msgid "Your Identity Address:" +msgstr "Ваш идентификационный адрес:" + +#: mod/dfrn_request.php:893 mod/follow.php:19 +msgid "Submit Request" +msgstr "Отправить запрос" + +#: mod/dirfind.php:37 +#, php-format +msgid "People Search - %s" +msgstr "Поиск по людям - %s" + +#: mod/dirfind.php:48 +#, php-format +msgid "Forum Search - %s" +msgstr "Поиск по форумам - %s" + +#: mod/events.php:93 mod/events.php:95 +msgid "Event can not end before it has started." +msgstr "Эвент не может закончится до старта." + +#: mod/events.php:102 mod/events.php:104 +msgid "Event title and start time are required." +msgstr "Название мероприятия и время начала обязательны для заполнения." + +#: mod/events.php:376 +msgid "Create New Event" +msgstr "Создать новое мероприятие" + +#: mod/events.php:481 +msgid "Event details" +msgstr "Сведения о мероприятии" + +#: mod/events.php:482 +msgid "Starting date and Title are required." +msgstr "Необходима дата старта и заголовок." + +#: mod/events.php:483 mod/events.php:484 +msgid "Event Starts:" +msgstr "Начало мероприятия:" + +#: mod/events.php:483 mod/events.php:495 mod/profiles.php:709 +msgid "Required" +msgstr "Требуется" + +#: mod/events.php:485 mod/events.php:501 +msgid "Finish date/time is not known or not relevant" +msgstr "Дата/время окончания не известны, или не указаны" + +#: mod/events.php:487 mod/events.php:488 +msgid "Event Finishes:" +msgstr "Окончание мероприятия:" + +#: mod/events.php:489 mod/events.php:502 +msgid "Adjust for viewer timezone" +msgstr "Настройка часового пояса" + +#: mod/events.php:491 +msgid "Description:" +msgstr "Описание:" + +#: mod/events.php:495 mod/events.php:497 +msgid "Title:" +msgstr "Титул:" + +#: mod/events.php:498 mod/events.php:499 +msgid "Share this event" +msgstr "Поделитесь этим мероприятием" + +#: mod/events.php:528 +msgid "Failed to remove event" +msgstr "" + +#: mod/events.php:530 +msgid "Event removed" +msgstr "" + +#: mod/follow.php:30 +msgid "You already added this contact." +msgstr "Вы уже добавили этот контакт." + +#: mod/follow.php:39 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "Поддержка Diaspora не включена. Контакт не может быть добавлен." + +#: mod/follow.php:46 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "Поддержка OStatus выключена. Контакт не может быть добавлен." + +#: mod/follow.php:53 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "Тип сети не может быть определен. Контакт не может быть добавлен." + +#: mod/follow.php:186 +msgid "Contact added" +msgstr "Контакт добавлен" + +#: mod/friendica.php:68 +msgid "This is Friendica, version" +msgstr "Это Friendica, версия" + +#: mod/friendica.php:69 +msgid "running at web location" +msgstr "работает на веб-узле" + +#: mod/friendica.php:73 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Пожалуйста, посетите сайт Friendica.com, чтобы узнать больше о проекте Friendica." + +#: mod/friendica.php:77 +msgid "Bug reports and issues: please visit" +msgstr "Отчет об ошибках и проблемах: пожалуйста, посетите" + +#: mod/friendica.php:77 +msgid "the bugtracker at github" +msgstr "багтрекер на github" + +#: mod/friendica.php:80 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Предложения, похвала, пожертвования? Пишите на \"info\" на Friendica - точка com" + +#: mod/friendica.php:94 +msgid "Installed plugins/addons/apps:" +msgstr "Установленные плагины / добавки / приложения:" + +#: mod/friendica.php:108 +msgid "No installed plugins/addons/apps" +msgstr "Нет установленных плагинов / добавок / приложений" + +#: mod/friendica.php:113 +msgid "On this server the following remote servers are blocked." +msgstr "" + +#: mod/friendica.php:114 mod/admin.php:280 mod/admin.php:298 +msgid "Reason for the block" +msgstr "" + +#: mod/group.php:29 +msgid "Group created." +msgstr "Группа создана." + +#: mod/group.php:35 +msgid "Could not create group." +msgstr "Не удалось создать группу." + +#: mod/group.php:49 mod/group.php:154 +msgid "Group not found." +msgstr "Группа не найдена." + +#: mod/group.php:63 +msgid "Group name changed." +msgstr "Название группы изменено." + +#: mod/group.php:93 +msgid "Save Group" +msgstr "Сохранить группу" + +#: mod/group.php:98 +msgid "Create a group of contacts/friends." +msgstr "Создать группу контактов / друзей." + +#: mod/group.php:123 +msgid "Group removed." +msgstr "Группа удалена." + +#: mod/group.php:125 +msgid "Unable to remove group." +msgstr "Не удается удалить группу." + +#: mod/group.php:189 +msgid "Delete Group" +msgstr "" + +#: mod/group.php:195 +msgid "Group Editor" +msgstr "Редактор групп" + +#: mod/group.php:200 +msgid "Edit Group Name" +msgstr "" + +#: mod/group.php:210 +msgid "Members" +msgstr "Участники" + +#: mod/group.php:226 +msgid "Remove Contact" +msgstr "" + +#: mod/group.php:250 +msgid "Add Contact" +msgstr "" + +#: mod/manage.php:151 +msgid "Manage Identities and/or Pages" +msgstr "Управление идентификацией и / или страницами" + +#: mod/manage.php:152 +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:153 +msgid "Select an identity to manage: " +msgstr "Выберите идентификацию для управления: " + +#: mod/message.php:64 +msgid "Unable to locate contact information." +msgstr "Не удалось найти контактную информацию." + +#: mod/message.php:204 +msgid "Do you really want to delete this message?" +msgstr "Вы действительно хотите удалить это сообщение?" + +#: mod/message.php:224 +msgid "Message deleted." +msgstr "Сообщение удалено." + +#: mod/message.php:255 +msgid "Conversation removed." +msgstr "Беседа удалена." + +#: mod/message.php:364 +msgid "No messages." +msgstr "Нет сообщений." + +#: mod/message.php:403 +msgid "Message not available." +msgstr "Сообщение не доступно." + +#: mod/message.php:477 +msgid "Delete message" +msgstr "Удалить сообщение" + +#: mod/message.php:503 mod/message.php:591 +msgid "Delete conversation" +msgstr "Удалить историю общения" + +#: mod/message.php:505 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Невозможно защищённое соединение. Вы имеете возможность ответить со страницы профиля отправителя." + +#: mod/message.php:509 +msgid "Send Reply" +msgstr "Отправить ответ" + +#: mod/message.php:561 +#, php-format +msgid "Unknown sender - %s" +msgstr "Неизвестный отправитель - %s" + +#: mod/message.php:563 +#, php-format +msgid "You and %s" +msgstr "Вы и %s" + +#: mod/message.php:565 +#, php-format +msgid "%s and You" +msgstr "%s и Вы" + +#: mod/message.php:594 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" + +#: mod/message.php:597 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d сообщение" +msgstr[1] "%d сообщений" +msgstr[2] "%d сообщений" +msgstr[3] "%d сообщений" + +#: mod/network.php:197 mod/search.php:25 +msgid "Remove term" +msgstr "Удалить элемент" + +#: mod/network.php:404 +#, php-format +msgid "" +"Warning: This group contains %s member from a network that doesn't allow non" +" public messages." +msgid_plural "" +"Warning: This group contains %s members from a network that doesn't allow " +"non public messages." +msgstr[0] "Внимание: в группе %s пользователь из сети, которая не поддерживает непубличные сообщения." +msgstr[1] "Внимание: в группе %s пользователя из сети, которая не поддерживает непубличные сообщения." +msgstr[2] "Внимание: в группе %s пользователей из сети, которая не поддерживает непубличные сообщения." +msgstr[3] "Внимание: в группе %s пользователей из сети, которая не поддерживает непубличные сообщения." + +#: mod/network.php:407 +msgid "Messages in this group won't be send to these receivers." +msgstr "Сообщения в этой группе не будут отправлены следующим получателям." + +#: mod/network.php:535 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Личные сообщения этому человеку находятся под угрозой обнародования." + +#: mod/network.php:540 +msgid "Invalid contact." +msgstr "Недопустимый контакт." + +#: mod/network.php:813 +msgid "Commented Order" +msgstr "Последние комментарии" + +#: mod/network.php:816 +msgid "Sort by Comment Date" +msgstr "Сортировать по дате комментария" + +#: mod/network.php:821 +msgid "Posted Order" +msgstr "Лента записей" + +#: mod/network.php:824 +msgid "Sort by Post Date" +msgstr "Сортировать по дате отправки" + +#: mod/network.php:835 +msgid "Posts that mention or involve you" +msgstr "Посты которые упоминают вас или в которых вы участвуете" + +#: mod/network.php:843 +msgid "New" +msgstr "Новое" + +#: mod/network.php:846 +msgid "Activity Stream - by date" +msgstr "Лента активности - по дате" + +#: mod/network.php:854 +msgid "Shared Links" +msgstr "Ссылки, которыми поделились" + +#: mod/network.php:857 +msgid "Interesting Links" +msgstr "Интересные ссылки" + +#: mod/network.php:865 +msgid "Starred" +msgstr "Избранное" + +#: mod/network.php:868 +msgid "Favourite Posts" +msgstr "Избранные посты" + +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Ошибка протокола OpenID. Не возвращён ID." + +#: mod/openid.php:60 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "Аккаунт не найден и OpenID регистрация не допускается на этом сайте." + +#: mod/photos.php:94 mod/photos.php:1900 +msgid "Recent Photos" +msgstr "Последние фото" + +#: mod/photos.php:97 mod/photos.php:1328 mod/photos.php:1902 +msgid "Upload New Photos" +msgstr "Загрузить новые фото" + +#: mod/photos.php:112 mod/settings.php:36 +msgid "everybody" +msgstr "каждый" + +#: mod/photos.php:176 +msgid "Contact information unavailable" +msgstr "Информация о контакте недоступна" + +#: mod/photos.php:197 +msgid "Album not found." +msgstr "Альбом не найден." + +#: mod/photos.php:230 mod/photos.php:242 mod/photos.php:1272 +msgid "Delete Album" +msgstr "Удалить альбом" + +#: mod/photos.php:240 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Вы действительно хотите удалить этот альбом и все его фотографии?" + +#: mod/photos.php:323 mod/photos.php:334 mod/photos.php:1598 +msgid "Delete Photo" +msgstr "Удалить фото" + +#: mod/photos.php:332 +msgid "Do you really want to delete this photo?" +msgstr "Вы действительно хотите удалить эту фотографию?" + +#: mod/photos.php:713 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s отмечен/а/ в %2$s by %3$s" + +#: mod/photos.php:713 +msgid "a photo" +msgstr "фото" + +#: mod/photos.php:821 +msgid "Image file is empty." +msgstr "Файл изображения пуст." + +#: mod/photos.php:988 +msgid "No photos selected" +msgstr "Не выбрано фото." + +#: mod/photos.php:1091 mod/videos.php:309 +msgid "Access to this item is restricted." +msgstr "Доступ к этому пункту ограничен." + +#: mod/photos.php:1151 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Вы использовали %1$.2f мегабайт из %2$.2f возможных для хранения фотографий." + +#: mod/photos.php:1188 +msgid "Upload Photos" +msgstr "Загрузить фото" + +#: mod/photos.php:1192 mod/photos.php:1267 +msgid "New album name: " +msgstr "Название нового альбома: " + +#: mod/photos.php:1193 +msgid "or existing album name: " +msgstr "или название существующего альбома: " + +#: mod/photos.php:1194 +msgid "Do not show a status post for this upload" +msgstr "Не показывать статус-сообщение для этой закачки" + +#: mod/photos.php:1205 mod/photos.php:1602 mod/settings.php:1307 +msgid "Show to Groups" +msgstr "Показать в группах" + +#: mod/photos.php:1206 mod/photos.php:1603 mod/settings.php:1308 +msgid "Show to Contacts" +msgstr "Показывать контактам" + +#: mod/photos.php:1207 +msgid "Private Photo" +msgstr "Личное фото" + +#: mod/photos.php:1208 +msgid "Public Photo" +msgstr "Публичное фото" + +#: mod/photos.php:1278 +msgid "Edit Album" +msgstr "Редактировать альбом" + +#: mod/photos.php:1283 +msgid "Show Newest First" +msgstr "Показать новые первыми" + +#: mod/photos.php:1285 +msgid "Show Oldest First" +msgstr "Показать старые первыми" + +#: mod/photos.php:1314 mod/photos.php:1885 +msgid "View Photo" +msgstr "Просмотр фото" + +#: mod/photos.php:1359 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Нет разрешения. Доступ к этому элементу ограничен." + +#: mod/photos.php:1361 +msgid "Photo not available" +msgstr "Фото недоступно" + +#: mod/photos.php:1422 +msgid "View photo" +msgstr "Просмотр фото" + +#: mod/photos.php:1422 +msgid "Edit photo" +msgstr "Редактировать фото" + +#: mod/photos.php:1423 +msgid "Use as profile photo" +msgstr "Использовать как фото профиля" + +#: mod/photos.php:1448 +msgid "View Full Size" +msgstr "Просмотреть полный размер" + +#: mod/photos.php:1538 +msgid "Tags: " +msgstr "Ключевые слова: " + +#: mod/photos.php:1541 +msgid "[Remove any tag]" +msgstr "[Удалить любое ключевое слово]" + +#: mod/photos.php:1584 +msgid "New album name" +msgstr "Название нового альбома" + +#: mod/photos.php:1585 +msgid "Caption" +msgstr "Подпись" + +#: mod/photos.php:1586 +msgid "Add a Tag" +msgstr "Добавить ключевое слово (тег)" + +#: mod/photos.php:1586 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Пример: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: mod/photos.php:1587 +msgid "Do not rotate" +msgstr "Не поворачивать" + +#: mod/photos.php:1588 +msgid "Rotate CW (right)" +msgstr "Поворот по часовой стрелке (направо)" + +#: mod/photos.php:1589 +msgid "Rotate CCW (left)" +msgstr "Поворот против часовой стрелки (налево)" + +#: mod/photos.php:1604 +msgid "Private photo" +msgstr "Личное фото" + +#: mod/photos.php:1605 +msgid "Public photo" +msgstr "Публичное фото" + +#: mod/photos.php:1814 +msgid "Map" +msgstr "Карта" + +#: mod/photos.php:1891 mod/videos.php:393 +msgid "View Album" +msgstr "Просмотреть альбом" + +#: mod/probe.php:10 mod/webfinger.php:9 +msgid "Only logged in users are permitted to perform a probing." +msgstr "" + +#: mod/profile.php:175 +msgid "Tips for New Members" +msgstr "Советы для новых участников" + #: mod/profiles.php:38 msgid "Profile deleted." msgstr "Профиль удален." -#: mod/profiles.php:56 mod/profiles.php:90 +#: mod/profiles.php:54 mod/profiles.php:90 msgid "Profile-" msgstr "Профиль-" -#: mod/profiles.php:75 mod/profiles.php:118 +#: mod/profiles.php:73 mod/profiles.php:118 msgid "New profile created." msgstr "Новый профиль создан." @@ -7381,63 +5705,63 @@ msgstr "Новый профиль создан." msgid "Profile unavailable to clone." msgstr "Профиль недоступен для клонирования." -#: mod/profiles.php:190 +#: mod/profiles.php:192 msgid "Profile Name is required." msgstr "Необходимо имя профиля." -#: mod/profiles.php:338 +#: mod/profiles.php:332 msgid "Marital Status" msgstr "Семейное положение" -#: mod/profiles.php:342 +#: mod/profiles.php:336 msgid "Romantic Partner" msgstr "Любимый человек" -#: mod/profiles.php:354 +#: mod/profiles.php:348 msgid "Work/Employment" msgstr "Работа/Занятость" -#: mod/profiles.php:357 +#: mod/profiles.php:351 msgid "Religion" msgstr "Религия" -#: mod/profiles.php:361 +#: mod/profiles.php:355 msgid "Political Views" msgstr "Политические взгляды" -#: mod/profiles.php:365 +#: mod/profiles.php:359 msgid "Gender" msgstr "Пол" -#: mod/profiles.php:369 +#: mod/profiles.php:363 msgid "Sexual Preference" msgstr "Сексуальные предпочтения" -#: mod/profiles.php:373 +#: mod/profiles.php:367 msgid "XMPP" msgstr "XMPP" -#: mod/profiles.php:377 +#: mod/profiles.php:371 msgid "Homepage" msgstr "Домашняя страница" -#: mod/profiles.php:381 mod/profiles.php:694 +#: mod/profiles.php:375 mod/profiles.php:695 msgid "Interests" msgstr "Хобби / Интересы" -#: mod/profiles.php:385 +#: mod/profiles.php:379 msgid "Address" msgstr "Адрес" -#: mod/profiles.php:392 mod/profiles.php:690 +#: mod/profiles.php:386 mod/profiles.php:691 msgid "Location" msgstr "Местонахождение" -#: mod/profiles.php:477 +#: mod/profiles.php:471 msgid "Profile updated." msgstr "Профиль обновлен." -#: mod/profiles.php:565 +#: mod/profiles.php:564 msgid " and " msgstr "и" @@ -7455,7 +5779,7 @@ msgstr "%1$s изменились с %2$s на “%3$s”" msgid " - Visit %1$s's %2$s" msgstr " - Посетить профиль %1$s [%2$s]" -#: mod/profiles.php:580 +#: mod/profiles.php:579 #, php-format msgid "%1$s has an updated %2$s, changing %3$s." msgstr "%1$s обновил %2$s, изменив %3$s." @@ -7468,218 +5792,202 @@ msgstr "Скрыть контакты и друзей:" msgid "Hide your contact/friend list from viewers of this profile?" msgstr "Скрывать ваш список контактов / друзей от посетителей этого профиля?" -#: mod/profiles.php:666 +#: mod/profiles.php:667 msgid "Show more profile fields:" msgstr "Показать больше полей в профиле:" -#: mod/profiles.php:678 +#: mod/profiles.php:679 msgid "Profile Actions" msgstr "Действия профиля" -#: mod/profiles.php:679 +#: mod/profiles.php:680 msgid "Edit Profile Details" msgstr "Редактировать детали профиля" -#: mod/profiles.php:681 +#: mod/profiles.php:682 msgid "Change Profile Photo" msgstr "Изменить фото профиля" -#: mod/profiles.php:682 +#: mod/profiles.php:683 msgid "View this profile" msgstr "Просмотреть этот профиль" -#: mod/profiles.php:684 +#: mod/profiles.php:685 msgid "Create a new profile using these settings" msgstr "Создать новый профиль, используя эти настройки" -#: mod/profiles.php:685 +#: mod/profiles.php:686 msgid "Clone this profile" msgstr "Клонировать этот профиль" -#: mod/profiles.php:686 +#: mod/profiles.php:687 msgid "Delete this profile" msgstr "Удалить этот профиль" -#: mod/profiles.php:688 +#: mod/profiles.php:689 msgid "Basic information" msgstr "Основная информация" -#: mod/profiles.php:689 +#: mod/profiles.php:690 msgid "Profile picture" msgstr "Картинка профиля" -#: mod/profiles.php:691 +#: mod/profiles.php:692 msgid "Preferences" msgstr "Настройки" -#: mod/profiles.php:692 +#: mod/profiles.php:693 msgid "Status information" msgstr "Статус" -#: mod/profiles.php:693 +#: mod/profiles.php:694 msgid "Additional information" msgstr "Дополнительная информация" -#: mod/profiles.php:696 +#: mod/profiles.php:697 msgid "Relation" msgstr "Отношения" -#: mod/profiles.php:700 +#: mod/profiles.php:701 msgid "Your Gender:" msgstr "Ваш пол:" -#: mod/profiles.php:701 +#: mod/profiles.php:702 msgid " Marital Status:" msgstr " Семейное положение:" -#: mod/profiles.php:703 +#: mod/profiles.php:704 msgid "Example: fishing photography software" msgstr "Пример: рыбалка фотографии программное обеспечение" -#: mod/profiles.php:708 +#: mod/profiles.php:709 msgid "Profile Name:" msgstr "Имя профиля:" -#: mod/profiles.php:710 +#: mod/profiles.php:711 msgid "" "This is your public profile.
It may " "be visible to anybody using the internet." msgstr "Это ваш публичный профиль.
Он может быть виден каждому через Интернет." -#: mod/profiles.php:711 +#: mod/profiles.php:712 msgid "Your Full Name:" msgstr "Ваше полное имя:" -#: mod/profiles.php:712 +#: mod/profiles.php:713 msgid "Title/Description:" msgstr "Заголовок / Описание:" -#: mod/profiles.php:715 +#: mod/profiles.php:716 msgid "Street Address:" msgstr "Адрес:" -#: mod/profiles.php:716 +#: mod/profiles.php:717 msgid "Locality/City:" msgstr "Город / Населенный пункт:" -#: mod/profiles.php:717 +#: mod/profiles.php:718 msgid "Region/State:" msgstr "Район / Область:" -#: mod/profiles.php:718 +#: mod/profiles.php:719 msgid "Postal/Zip Code:" msgstr "Почтовый индекс:" -#: mod/profiles.php:719 +#: mod/profiles.php:720 msgid "Country:" msgstr "Страна:" -#: mod/profiles.php:723 +#: mod/profiles.php:724 msgid "Who: (if applicable)" msgstr "Кто: (если требуется)" -#: mod/profiles.php:723 +#: mod/profiles.php:724 msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "Примеры: cathy123, Кэти Уильямс, cathy@example.com" -#: mod/profiles.php:724 +#: mod/profiles.php:725 msgid "Since [date]:" msgstr "С какого времени [дата]:" -#: mod/profiles.php:726 +#: mod/profiles.php:727 msgid "Tell us about yourself..." msgstr "Расскажите нам о себе ..." -#: mod/profiles.php:727 +#: mod/profiles.php:728 msgid "XMPP (Jabber) address:" msgstr "Адрес XMPP (Jabber):" -#: mod/profiles.php:727 +#: mod/profiles.php:728 msgid "" "The XMPP address will be propagated to your contacts so that they can follow" " you." msgstr "Адрес XMPP будет отправлен контактам, чтобы они могли вас добавить." -#: mod/profiles.php:728 +#: mod/profiles.php:729 msgid "Homepage URL:" msgstr "Адрес домашней странички:" -#: mod/profiles.php:731 +#: mod/profiles.php:732 msgid "Religious Views:" msgstr "Религиозные взгляды:" -#: mod/profiles.php:732 +#: mod/profiles.php:733 msgid "Public Keywords:" msgstr "Общественные ключевые слова:" -#: mod/profiles.php:732 +#: mod/profiles.php:733 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Используется для предложения потенциальным друзьям, могут увидеть другие)" -#: mod/profiles.php:733 +#: mod/profiles.php:734 msgid "Private Keywords:" msgstr "Личные ключевые слова:" -#: mod/profiles.php:733 +#: mod/profiles.php:734 msgid "(Used for searching profiles, never shown to others)" msgstr "(Используется для поиска профилей, никогда не показывается другим)" -#: mod/profiles.php:736 +#: mod/profiles.php:737 msgid "Musical interests" msgstr "Музыкальные интересы" -#: mod/profiles.php:737 +#: mod/profiles.php:738 msgid "Books, literature" msgstr "Книги, литература" -#: mod/profiles.php:738 +#: mod/profiles.php:739 msgid "Television" msgstr "Телевидение" -#: mod/profiles.php:739 +#: mod/profiles.php:740 msgid "Film/dance/culture/entertainment" msgstr "Кино / танцы / культура / развлечения" -#: mod/profiles.php:740 +#: mod/profiles.php:741 msgid "Hobbies/Interests" msgstr "Хобби / Интересы" -#: mod/profiles.php:741 +#: mod/profiles.php:742 msgid "Love/romance" msgstr "Любовь / романтика" -#: mod/profiles.php:742 +#: mod/profiles.php:743 msgid "Work/employment" msgstr "Работа / занятость" -#: mod/profiles.php:743 +#: mod/profiles.php:744 msgid "School/education" msgstr "Школа / образование" -#: mod/profiles.php:744 +#: mod/profiles.php:745 msgid "Contact information and Social Networks" msgstr "Контактная информация и социальные сети" -#: mod/profiles.php:788 +#: mod/profiles.php:786 msgid "Edit/Manage Profiles" msgstr "Редактировать профиль" -#: mod/profperm.php:26 mod/profperm.php:57 -msgid "Invalid profile identifier." -msgstr "Недопустимый идентификатор профиля." - -#: mod/profperm.php:103 -msgid "Profile Visibility Editor" -msgstr "Редактор видимости профиля" - -#: mod/profperm.php:116 -msgid "Visible To" -msgstr "Видимый для" - -#: mod/profperm.php:132 -msgid "All Contacts (with secure profile access)" -msgstr "Все контакты (с безопасным доступом к профилю)" - #: mod/register.php:93 msgid "" "Registration successful. Please check your email for further instructions." @@ -7704,12 +6012,6 @@ msgstr "Ваша регистрация не может быть обработ msgid "Your registration is pending approval by the site owner." msgstr "Ваша регистрация в ожидании одобрения владельцем сайта." -#: mod/register.php:198 mod/uimport.php:51 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Этот сайт превысил допустимое количество ежедневных регистраций. Пожалуйста, повторите попытку завтра." - #: mod/register.php:226 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " @@ -7746,6 +6048,10 @@ msgstr "Членство на сайте только по приглашени msgid "Your invitation ID: " msgstr "ID вашего приглашения:" +#: mod/register.php:272 mod/admin.php:1056 +msgid "Registration" +msgstr "Регистрация" + #: mod/register.php:280 msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " msgstr "Ваше полное имя (например, Иван Иванов):" @@ -7777,49 +6083,10 @@ msgstr "Выбор псевдонима профиля. Он должен нач msgid "Choose a nickname: " msgstr "Выберите псевдоним: " -#: mod/register.php:295 mod/uimport.php:66 -msgid "Import" -msgstr "Импорт" - #: mod/register.php:296 msgid "Import your profile to this friendica instance" msgstr "Импорт своего профиля в этот экземпляр friendica" -#: mod/regmod.php:58 -msgid "Account approved." -msgstr "Аккаунт утвержден." - -#: mod/regmod.php:95 -#, php-format -msgid "Registration revoked for %s" -msgstr "Регистрация отменена для %s" - -#: mod/regmod.php:107 -msgid "Please login." -msgstr "Пожалуйста, войдите с паролем." - -#: mod/removeme.php:52 mod/removeme.php:55 -msgid "Remove My Account" -msgstr "Удалить мой аккаунт" - -#: mod/removeme.php:53 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, аккаунт восстановлению не подлежит." - -#: mod/removeme.php:54 -msgid "Please enter your password for verification:" -msgstr "Пожалуйста, введите свой пароль для проверки:" - -#: mod/repair_ostatus.php:14 -msgid "Resubscribing to OStatus contacts" -msgstr "Переподписаться на OStatus-контакты." - -#: mod/repair_ostatus.php:30 -msgid "Error" -msgstr "Ошибка" - #: mod/search.php:100 msgid "Only logged in users are permitted to perform a search." msgstr "Только зарегистрированные пользователи могут использовать поиск." @@ -7832,11 +6099,19 @@ msgstr "Слишком много запросов" msgid "Only one search per minute is permitted for not logged in users." msgstr "Незарегистрированные пользователи могут выполнять поиск раз в минуту." -#: mod/search.php:230 +#: mod/search.php:225 #, php-format msgid "Items tagged with: %s" msgstr "Элементы с тегами: %s" +#: mod/settings.php:43 mod/admin.php:1490 +msgid "Account" +msgstr "Аккаунт" + +#: mod/settings.php:52 mod/admin.php:169 +msgid "Additional features" +msgstr "Дополнительные возможности" + #: mod/settings.php:60 msgid "Display" msgstr "Внешний вид" @@ -7845,6 +6120,10 @@ msgstr "Внешний вид" msgid "Social Networks" msgstr "Социальные сети" +#: mod/settings.php:74 mod/admin.php:167 mod/admin.php:1616 mod/admin.php:1679 +msgid "Plugins" +msgstr "Плагины" + #: mod/settings.php:88 msgid "Connected apps" msgstr "Подключенные приложения" @@ -7929,6 +6208,13 @@ msgstr "Настройки обновлены." msgid "Add application" msgstr "Добавить приложения" +#: mod/settings.php:681 mod/settings.php:792 mod/settings.php:841 +#: mod/settings.php:908 mod/settings.php:1005 mod/settings.php:1271 +#: mod/admin.php:1055 mod/admin.php:1680 mod/admin.php:1943 mod/admin.php:2017 +#: mod/admin.php:2170 +msgid "Save Settings" +msgstr "Сохранить настройки" + #: mod/settings.php:684 mod/settings.php:710 msgid "Consumer Key" msgstr "Consumer Key" @@ -7973,6 +6259,14 @@ msgstr "Нет сконфигурированных настроек плаги msgid "Plugin Settings" msgstr "Настройки плагина" +#: mod/settings.php:782 mod/admin.php:2159 mod/admin.php:2160 +msgid "Off" +msgstr "Выкл." + +#: mod/settings.php:782 mod/admin.php:2159 mod/admin.php:2160 +msgid "On" +msgstr "Вкл." + #: mod/settings.php:790 msgid "Additional Features" msgstr "Дополнительные возможности" @@ -8101,6 +6395,10 @@ msgstr "Переместить в папку" msgid "Move to folder:" msgstr "Переместить в папку:" +#: mod/settings.php:943 mod/admin.php:942 +msgid "No special theme for mobile devices" +msgstr "Нет специальной темы для мобильных устройств" + #: mod/settings.php:1003 msgid "Display Settings" msgstr "Параметры дисплея" @@ -8292,6 +6590,10 @@ msgstr "(Необязательно) Разрешить этому OpenID вхо msgid "Publish your default profile in your local site directory?" msgstr "Публиковать ваш профиль по умолчанию в вашем локальном каталоге на сайте?" +#: mod/settings.php:1171 +msgid "Your profile may be visible in public." +msgstr "" + #: mod/settings.php:1177 msgid "Publish your default profile in the global social directory?" msgstr "Публиковать ваш профиль по умолчанию в глобальном социальном каталоге?" @@ -8551,37 +6853,6 @@ msgstr "Если вы переместили эту анкету с другог msgid "Resend relocate message to contacts" msgstr "Отправить перемещённые сообщения контактам" -#: mod/subthread.php:104 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s подписан %2$s's %3$s" - -#: mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Вы действительно хотите удалить это предложение?" - -#: mod/suggest.php:71 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Нет предложений. Если это новый сайт, пожалуйста, попробуйте снова через 24 часа." - -#: mod/suggest.php:84 mod/suggest.php:104 -msgid "Ignore/Hide" -msgstr "Проигнорировать/Скрыть" - -#: mod/tagrm.php:43 -msgid "Tag removed" -msgstr "Ключевое слово удалено" - -#: mod/tagrm.php:82 -msgid "Remove Item Tag" -msgstr "Удалить ключевое слово" - -#: mod/tagrm.php:84 -msgid "Select a tag to remove: " -msgstr "Выберите ключевое слово для удаления: " - #: mod/uexport.php:37 msgid "Export account" msgstr "Экспорт аккаунта" @@ -8603,42 +6874,6 @@ msgid "" "of your account (photos are not exported)" msgstr "Экспорт информации вашего аккаунта, контактов и всех ваших пунктов, как JSON. Может получиться очень большой файл и это может занять много времени. Используйте, чтобы создать полную резервную копию вашего аккаунта (фото не экспортируются)" -#: mod/uimport.php:68 -msgid "Move account" -msgstr "Удалить аккаунт" - -#: mod/uimport.php:69 -msgid "You can import an account from another Friendica server." -msgstr "Вы можете импортировать учетную запись с другого сервера Friendica." - -#: mod/uimport.php:70 -msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also" -" to inform your friends that you moved here." -msgstr "Вам нужно экспортировать свой ​​аккаунт со старого сервера и загрузить его сюда. Мы восстановим ваш ​​старый аккаунт здесь со всеми вашими контактами. Мы постараемся также сообщить друзьям, что вы переехали сюда." - -#: mod/uimport.php:71 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (GNU Social/Statusnet) or from Diaspora" -msgstr "Это экспериментальная функция. Мы не можем импортировать контакты из сети OStatus (GNU Social/ StatusNet) или из Diaspora" - -#: mod/uimport.php:72 -msgid "Account file" -msgstr "Файл аккаунта" - -#: mod/uimport.php:72 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "Для экспорта аккаунта, перейдите в \"Настройки->Экспортировать ваши данные\" и выберите \"Экспорт аккаунта\"" - -#: mod/update_community.php:19 mod/update_display.php:23 -#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35 -msgid "[Embedded content - reload page to view]" -msgstr "[Встроенное содержание - перезагрузите страницу для просмотра]" - #: mod/videos.php:124 msgid "Do you really want to delete this video?" msgstr "Вы действительно хотите удалить видео?" @@ -8651,64 +6886,1877 @@ msgstr "Удалить видео" msgid "No videos selected" msgstr "Видео не выбрано" -#: mod/videos.php:400 +#: mod/videos.php:402 msgid "Recent Videos" msgstr "Последние видео" -#: mod/videos.php:402 +#: mod/videos.php:404 msgid "Upload New Videos" msgstr "Загрузить новые видео" -#: mod/viewcontacts.php:75 -msgid "No contacts." -msgstr "Нет контактов." +#: mod/install.php:106 +msgid "Friendica Communications Server - Setup" +msgstr "Коммуникационный сервер Friendica - Доступ" -#: mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Доступ запрещен." +#: mod/install.php:112 +msgid "Could not connect to database." +msgstr "Не удалось подключиться к базе данных." -#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76 -#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86 -#: mod/wall_upload.php:122 mod/wall_upload.php:125 -msgid "Invalid request." -msgstr "Неверный запрос." +#: mod/install.php:116 +msgid "Could not create table." +msgstr "Не удалось создать таблицу." -#: mod/wall_attach.php:94 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Извините, похоже что загружаемый файл превышает лимиты, разрешенные конфигурацией PHP" +#: mod/install.php:122 +msgid "Your Friendica site database has been installed." +msgstr "База данных сайта установлена." -#: mod/wall_attach.php:94 -msgid "Or - did you try to upload an empty file?" -msgstr "Или вы пытались загрузить пустой файл?" +#: mod/install.php:127 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Вам может понадобиться импортировать файл \"database.sql\" вручную с помощью PhpMyAdmin или MySQL." -#: mod/wall_attach.php:105 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "Файл превышает лимит размера в %s" +#: mod/install.php:128 mod/install.php:200 mod/install.php:547 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Пожалуйста, смотрите файл \"INSTALL.txt\"." -#: mod/wall_attach.php:158 mod/wall_attach.php:174 -msgid "File upload failed." -msgstr "Загрузка файла не удалась." +#: mod/install.php:140 +msgid "Database already in use." +msgstr "База данных уже используется." -#: mod/wallmessage.php:42 mod/wallmessage.php:106 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Количество ежедневных сообщений на стене %s превышено. Сообщение отменено.." +#: mod/install.php:197 +msgid "System check" +msgstr "Проверить систему" -#: mod/wallmessage.php:53 -msgid "Unable to check your home location." -msgstr "Невозможно проверить местоположение." +#: mod/install.php:202 +msgid "Check again" +msgstr "Проверить еще раз" -#: mod/wallmessage.php:80 mod/wallmessage.php:89 -msgid "No recipient." -msgstr "Без адресата." +#: mod/install.php:221 +msgid "Database connection" +msgstr "Подключение к базе данных" -#: mod/wallmessage.php:127 +#: mod/install.php:222 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Для того, чтобы установить Friendica, мы должны знать, как подключиться к базе данных." + +#: mod/install.php:223 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Пожалуйста, свяжитесь с вашим хостинг-провайдером или администратором сайта, если у вас есть вопросы об этих параметрах." + +#: mod/install.php:224 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Базы данных, указанная ниже, должна уже существовать. Если этого нет, пожалуйста, создайте ее перед продолжением." + +#: mod/install.php:228 +msgid "Database Server Name" +msgstr "Имя сервера базы данных" + +#: mod/install.php:229 +msgid "Database Login Name" +msgstr "Логин базы данных" + +#: mod/install.php:230 +msgid "Database Login Password" +msgstr "Пароль базы данных" + +#: mod/install.php:230 +msgid "For security reasons the password must not be empty" +msgstr "Для безопасности пароль не должен быть пустым" + +#: mod/install.php:231 +msgid "Database Name" +msgstr "Имя базы данных" + +#: mod/install.php:232 mod/install.php:273 +msgid "Site administrator email address" +msgstr "Адрес электронной почты администратора сайта" + +#: mod/install.php:232 mod/install.php:273 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Ваш адрес электронной почты аккаунта должен соответствовать этому, чтобы использовать веб-панель администратора." + +#: mod/install.php:236 mod/install.php:276 +msgid "Please select a default timezone for your website" +msgstr "Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта" + +#: mod/install.php:263 +msgid "Site settings" +msgstr "Настройки сайта" + +#: mod/install.php:277 +msgid "System Language:" +msgstr "Язык системы:" + +#: mod/install.php:277 +msgid "" +"Set the default language for your Friendica installation interface and to " +"send emails." +msgstr "Язык по-умолчанию для интерфейса Friendica и для отправки писем." + +#: mod/install.php:317 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Не удалось найти PATH веб-сервера в установках PHP." + +#: mod/install.php:318 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run the background processing. See 'Setup the poller'" +msgstr "" + +#: mod/install.php:322 +msgid "PHP executable path" +msgstr "PHP executable path" + +#: mod/install.php:322 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Введите полный путь к исполняемому файлу PHP. Вы можете оставить это поле пустым, чтобы продолжить установку." + +#: mod/install.php:327 +msgid "Command line PHP" +msgstr "Command line PHP" + +#: mod/install.php:336 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "Бинарник PHP не является CLI версией (может быть это cgi-fcgi версия)" + +#: mod/install.php:337 +msgid "Found PHP version: " +msgstr "Найденная PHP версия: " + +#: mod/install.php:339 +msgid "PHP cli binary" +msgstr "PHP cli binary" + +#: mod/install.php:350 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "Не включено \"register_argc_argv\" в установках PHP." + +#: mod/install.php:351 +msgid "This is required for message delivery to work." +msgstr "Это необходимо для работы доставки сообщений." + +#: mod/install.php:353 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: mod/install.php:376 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Ошибка: функция \"openssl_pkey_new\" в этой системе не в состоянии генерировать ключи шифрования" + +#: mod/install.php:377 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Если вы работаете под Windows, см. \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: mod/install.php:379 +msgid "Generate encryption keys" +msgstr "Генерация шифрованых ключей" + +#: mod/install.php:386 +msgid "libCurl PHP module" +msgstr "libCurl PHP модуль" + +#: mod/install.php:387 +msgid "GD graphics PHP module" +msgstr "GD graphics PHP модуль" + +#: mod/install.php:388 +msgid "OpenSSL PHP module" +msgstr "OpenSSL PHP модуль" + +#: mod/install.php:389 +msgid "PDO or MySQLi PHP module" +msgstr "" + +#: mod/install.php:390 +msgid "mb_string PHP module" +msgstr "mb_string PHP модуль" + +#: mod/install.php:391 +msgid "XML PHP module" +msgstr "XML PHP модуль" + +#: mod/install.php:392 +msgid "iconv module" +msgstr "Модуль iconv" + +#: mod/install.php:396 mod/install.php:398 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite module" + +#: mod/install.php:396 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Ошибка: необходим модуль веб-сервера Apache mod-rewrite, но он не установлен." + +#: mod/install.php:404 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Ошибка: необходим libCURL PHP модуль, но он не установлен." + +#: mod/install.php:408 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Ошибка: необходим PHP модуль GD графики с поддержкой JPEG, но он не установлен." + +#: mod/install.php:412 +msgid "Error: openssl PHP module required but not installed." +msgstr "Ошибка: необходим PHP модуль OpenSSL, но он не установлен." + +#: mod/install.php:416 +msgid "Error: PDO or MySQLi PHP module required but not installed." +msgstr "" + +#: mod/install.php:420 +msgid "Error: The MySQL driver for PDO is not installed." +msgstr "" + +#: mod/install.php:424 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Ошибка: необходим PHP модуль mb_string, но он не установлен." + +#: mod/install.php:428 +msgid "Error: iconv PHP module required but not installed." +msgstr "Ошибка: необходим PHP модуль iconv, но он не установлен." + +#: mod/install.php:438 +msgid "Error, XML PHP module required but not installed." +msgstr "Ошибка, необходим PHP модуль XML, но он не установлен" + +#: mod/install.php:450 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "Веб-инсталлятору требуется создать файл с именем \". htconfig.php\" в верхней папке веб-сервера, но он не в состоянии это сделать." + +#: mod/install.php:451 +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:452 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "В конце этой процедуры, мы дадим вам текст, для сохранения в файле с именем .htconfig.php в корневой папке, где установлена Friendica." + +#: mod/install.php:453 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "В качестве альтернативы вы можете пропустить эту процедуру и выполнить установку вручную. Пожалуйста, обратитесь к файлу \"INSTALL.txt\" для получения инструкций." + +#: mod/install.php:456 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php is writable" + +#: mod/install.php:466 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Friendica использует механизм шаблонов Smarty3 для генерации веб-страниц. Smarty3 компилирует шаблоны в PHP для увеличения скорости загрузки." + +#: mod/install.php:467 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." +msgstr "Для того чтобы хранить эти скомпилированные шаблоны, веб-сервер должен иметь доступ на запись для папки view/smarty3 в директории, где установлена Friendica." + +#: mod/install.php:468 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Пожалуйста, убедитесь, что пользователь, под которым работает ваш веб-сервер (например www-data), имеет доступ на запись в этой папке." + +#: mod/install.php:469 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "Примечание: в качестве меры безопасности, вы должны дать вебсерверу доступ на запись только в view/smarty3 - но не на сами файлы шаблонов (.tpl)., Которые содержатся в этой папке." + +#: mod/install.php:472 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 доступен для записи" + +#: mod/install.php:488 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "Url rewrite в .htaccess не работает. Проверьте конфигурацию вашего сервера.." + +#: mod/install.php:490 +msgid "Url rewrite is working" +msgstr "Url rewrite работает" + +#: mod/install.php:509 +msgid "ImageMagick PHP extension is not installed" +msgstr "Модуль PHP ImageMagick не установлен" + +#: mod/install.php:511 +msgid "ImageMagick PHP extension is installed" +msgstr "Модуль PHP ImageMagick установлен" + +#: mod/install.php:513 +msgid "ImageMagick supports GIF" +msgstr "ImageMagick поддерживает GIF" + +#: mod/install.php:520 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "Файл конфигурации базы данных \".htconfig.php\" не могла быть записан. Пожалуйста, используйте приложенный текст, чтобы создать конфигурационный файл в корневом каталоге веб-сервера." + +#: mod/install.php:545 +msgid "

What next

" +msgstr "

Что далее

" + +#: mod/install.php:546 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "ВАЖНО: Вам нужно будет [вручную] установить запланированное задание для регистратора." + +#: mod/item.php:116 +msgid "Unable to locate original post." +msgstr "Не удалось найти оригинальный пост." + +#: mod/item.php:344 +msgid "Empty post discarded." +msgstr "Пустое сообщение отбрасывается." + +#: mod/item.php:904 +msgid "System error. Post not saved." +msgstr "Системная ошибка. Сообщение не сохранено." + +#: mod/item.php:995 #, php-format msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "Если Вы хотите ответить %s, пожалуйста, проверьте, позволяют ли настройки конфиденциальности на Вашем сайте принимать персональную почту от неизвестных отправителей." +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Это сообщение было отправлено вам %s, участником социальной сети Friendica." + +#: mod/item.php:997 +#, php-format +msgid "You may visit them online at %s" +msgstr "Вы можете посетить их в онлайне на %s" + +#: mod/item.php:998 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Пожалуйста, свяжитесь с отправителем, ответив на это сообщение, если вы не хотите получать эти сообщения." + +#: mod/item.php:1002 +#, php-format +msgid "%s posted an update." +msgstr "%s отправил/а/ обновление." + +#: mod/notifications.php:35 +msgid "Invalid request identifier." +msgstr "Неверный идентификатор запроса." + +#: mod/notifications.php:44 mod/notifications.php:180 +#: mod/notifications.php:227 +msgid "Discard" +msgstr "Отказаться" + +#: mod/notifications.php:105 +msgid "Network Notifications" +msgstr "Уведомления сети" + +#: mod/notifications.php:117 +msgid "Personal Notifications" +msgstr "Личные уведомления" + +#: mod/notifications.php:123 +msgid "Home Notifications" +msgstr "Уведомления" + +#: mod/notifications.php:152 +msgid "Show Ignored Requests" +msgstr "Показать проигнорированные запросы" + +#: mod/notifications.php:152 +msgid "Hide Ignored Requests" +msgstr "Скрыть проигнорированные запросы" + +#: mod/notifications.php:164 mod/notifications.php:234 +msgid "Notification type: " +msgstr "Тип уведомления: " + +#: mod/notifications.php:167 +#, php-format +msgid "suggested by %s" +msgstr "предложено юзером %s" + +#: mod/notifications.php:173 mod/notifications.php:252 +msgid "Post a new friend activity" +msgstr "Настроение" + +#: mod/notifications.php:173 mod/notifications.php:252 +msgid "if applicable" +msgstr "если требуется" + +#: mod/notifications.php:176 mod/notifications.php:261 mod/admin.php:1506 +msgid "Approve" +msgstr "Одобрить" + +#: mod/notifications.php:195 +msgid "Claims to be known to you: " +msgstr "Утверждения, о которых должно быть вам известно: " + +#: mod/notifications.php:196 +msgid "yes" +msgstr "да" + +#: mod/notifications.php:196 +msgid "no" +msgstr "нет" + +#: mod/notifications.php:197 mod/notifications.php:202 +msgid "Shall your connection be bidirectional or not?" +msgstr "Должно ли ваше соединение быть двухсторонним или нет?" + +#: mod/notifications.php:198 mod/notifications.php:203 +#, php-format +msgid "" +"Accepting %s as a friend allows %s to subscribe to your posts, and you will " +"also receive updates from them in your news feed." +msgstr "Принимая %s как друга вы позволяете %s читать ему свои посты, а также будете получать оные от него." + +#: mod/notifications.php:199 +#, php-format +msgid "" +"Accepting %s as a subscriber allows them to subscribe to your posts, but you" +" will not receive updates from them in your news feed." +msgstr "Принимая %s как подписчика вы позволяете читать ему свои посты, но вы не получите оных от него." + +#: mod/notifications.php:204 +#, php-format +msgid "" +"Accepting %s as a sharer allows them to subscribe to your posts, but you " +"will not receive updates from them in your news feed." +msgstr "Принимая %s как подписчика вы позволяете читать ему свои посты, но вы не получите оных от него." + +#: mod/notifications.php:215 +msgid "Friend" +msgstr "Друг" + +#: mod/notifications.php:216 +msgid "Sharer" +msgstr "Участник" + +#: mod/notifications.php:216 +msgid "Subscriber" +msgstr "Подписант" + +#: mod/notifications.php:272 +msgid "No introductions." +msgstr "Запросов нет." + +#: mod/notifications.php:313 +msgid "Show unread" +msgstr "Показать непрочитанные" + +#: mod/notifications.php:313 +msgid "Show all" +msgstr "Показать все" + +#: mod/notifications.php:319 +#, php-format +msgid "No more %s notifications." +msgstr "Больше нет уведомлений о %s." + +#: mod/ping.php:270 +msgid "{0} wants to be your friend" +msgstr "{0} хочет стать Вашим другом" + +#: mod/ping.php:285 +msgid "{0} sent you a message" +msgstr "{0} отправил Вам сообщение" + +#: mod/ping.php:300 +msgid "{0} requested registration" +msgstr "{0} требуемая регистрация" + +#: mod/admin.php:96 +msgid "Theme settings updated." +msgstr "Настройки темы обновлены." + +#: mod/admin.php:165 mod/admin.php:1054 +msgid "Site" +msgstr "Сайт" + +#: mod/admin.php:166 mod/admin.php:988 mod/admin.php:1498 mod/admin.php:1514 +msgid "Users" +msgstr "Пользователи" + +#: mod/admin.php:168 mod/admin.php:1892 mod/admin.php:1942 +msgid "Themes" +msgstr "Темы" + +#: mod/admin.php:170 +msgid "DB updates" +msgstr "Обновление БД" + +#: mod/admin.php:171 mod/admin.php:512 +msgid "Inspect Queue" +msgstr "" + +#: mod/admin.php:172 mod/admin.php:288 +msgid "Server Blocklist" +msgstr "" + +#: mod/admin.php:173 mod/admin.php:478 +msgid "Federation Statistics" +msgstr "" + +#: mod/admin.php:187 mod/admin.php:198 mod/admin.php:2016 +msgid "Logs" +msgstr "Журналы" + +#: mod/admin.php:188 mod/admin.php:2084 +msgid "View Logs" +msgstr "Просмотр логов" + +#: mod/admin.php:189 +msgid "probe address" +msgstr "" + +#: mod/admin.php:190 +msgid "check webfinger" +msgstr "" + +#: mod/admin.php:197 +msgid "Plugin Features" +msgstr "Возможности плагина" + +#: mod/admin.php:199 +msgid "diagnostics" +msgstr "Диагностика" + +#: mod/admin.php:200 +msgid "User registrations waiting for confirmation" +msgstr "Регистрации пользователей, ожидающие подтверждения" + +#: mod/admin.php:279 +msgid "The blocked domain" +msgstr "" + +#: mod/admin.php:280 mod/admin.php:293 +msgid "The reason why you blocked this domain." +msgstr "" + +#: mod/admin.php:281 +msgid "Delete domain" +msgstr "" + +#: mod/admin.php:281 +msgid "Check to delete this entry from the blocklist" +msgstr "" + +#: mod/admin.php:287 mod/admin.php:477 mod/admin.php:511 mod/admin.php:586 +#: mod/admin.php:1053 mod/admin.php:1497 mod/admin.php:1615 mod/admin.php:1678 +#: mod/admin.php:1891 mod/admin.php:1941 mod/admin.php:2015 mod/admin.php:2083 +msgid "Administration" +msgstr "Администрация" + +#: mod/admin.php:289 +msgid "" +"This page can be used to define a black list of servers from the federated " +"network that are not allowed to interact with your node. For all entered " +"domains you should also give a reason why you have blocked the remote " +"server." +msgstr "" + +#: mod/admin.php:290 +msgid "" +"The list of blocked servers will be made publically available on the " +"/friendica page so that your users and people investigating communication " +"problems can find the reason easily." +msgstr "" + +#: mod/admin.php:291 +msgid "Add new entry to block list" +msgstr "" + +#: mod/admin.php:292 +msgid "Server Domain" +msgstr "" + +#: mod/admin.php:292 +msgid "" +"The domain of the new server to add to the block list. Do not include the " +"protocol." +msgstr "" + +#: mod/admin.php:293 +msgid "Block reason" +msgstr "" + +#: mod/admin.php:294 +msgid "Add Entry" +msgstr "" + +#: mod/admin.php:295 +msgid "Save changes to the blocklist" +msgstr "" + +#: mod/admin.php:296 +msgid "Current Entries in the Blocklist" +msgstr "" + +#: mod/admin.php:299 +msgid "Delete entry from blocklist" +msgstr "" + +#: mod/admin.php:302 +msgid "Delete entry from blocklist?" +msgstr "" + +#: mod/admin.php:327 +msgid "Server added to blocklist." +msgstr "" + +#: mod/admin.php:343 +msgid "Site blocklist updated." +msgstr "" + +#: mod/admin.php:408 +msgid "unknown" +msgstr "" + +#: mod/admin.php:471 +msgid "" +"This page offers you some numbers to the known part of the federated social " +"network your Friendica node is part of. These numbers are not complete but " +"only reflect the part of the network your node is aware of." +msgstr "" + +#: mod/admin.php:472 +msgid "" +"The Auto Discovered Contact Directory feature is not enabled, it " +"will improve the data displayed here." +msgstr "" + +#: mod/admin.php:484 +#, php-format +msgid "Currently this node is aware of %d nodes from the following platforms:" +msgstr "" + +#: mod/admin.php:514 +msgid "ID" +msgstr "" + +#: mod/admin.php:515 +msgid "Recipient Name" +msgstr "" + +#: mod/admin.php:516 +msgid "Recipient Profile" +msgstr "" + +#: mod/admin.php:518 +msgid "Created" +msgstr "" + +#: mod/admin.php:519 +msgid "Last Tried" +msgstr "" + +#: mod/admin.php:520 +msgid "" +"This page lists the content of the queue for outgoing postings. These are " +"postings the initial delivery failed for. They will be resend later and " +"eventually deleted if the delivery fails permanently." +msgstr "" + +#: mod/admin.php:545 +#, php-format +msgid "" +"Your DB still runs with MyISAM tables. You should change the engine type to " +"InnoDB. As Friendica will use InnoDB only features in the future, you should" +" change this! See here for a guide that may be helpful " +"converting the table engines. You may also use the command php " +"include/dbstructure.php toinnodb of your Friendica installation for an " +"automatic conversion.
" +msgstr "" + +#: mod/admin.php:550 +msgid "" +"You are using a MySQL version which does not support all features that " +"Friendica uses. You should consider switching to MariaDB." +msgstr "" + +#: mod/admin.php:554 mod/admin.php:1447 +msgid "Normal Account" +msgstr "Обычный аккаунт" + +#: mod/admin.php:555 mod/admin.php:1448 +msgid "Soapbox Account" +msgstr "Аккаунт Витрина" + +#: mod/admin.php:556 mod/admin.php:1449 +msgid "Community/Celebrity Account" +msgstr "Аккаунт Сообщество / Знаменитость" + +#: mod/admin.php:557 mod/admin.php:1450 +msgid "Automatic Friend Account" +msgstr "\"Автоматический друг\" Аккаунт" + +#: mod/admin.php:558 +msgid "Blog Account" +msgstr "Аккаунт блога" + +#: mod/admin.php:559 +msgid "Private Forum" +msgstr "Личный форум" + +#: mod/admin.php:581 +msgid "Message queues" +msgstr "Очереди сообщений" + +#: mod/admin.php:587 +msgid "Summary" +msgstr "Резюме" + +#: mod/admin.php:589 +msgid "Registered users" +msgstr "Зарегистрированные пользователи" + +#: mod/admin.php:591 +msgid "Pending registrations" +msgstr "Ожидающие регистрации" + +#: mod/admin.php:592 +msgid "Version" +msgstr "Версия" + +#: mod/admin.php:597 +msgid "Active plugins" +msgstr "Активные плагины" + +#: mod/admin.php:622 +msgid "Can not parse base url. Must have at least ://" +msgstr "Невозможно определить базовый URL. Он должен иметь следующий вид - ://" + +#: mod/admin.php:914 +msgid "Site settings updated." +msgstr "Установки сайта обновлены." + +#: mod/admin.php:971 +msgid "No community page" +msgstr "" + +#: mod/admin.php:972 +msgid "Public postings from users of this site" +msgstr "" + +#: mod/admin.php:973 +msgid "Global community page" +msgstr "" + +#: mod/admin.php:979 +msgid "At post arrival" +msgstr "" + +#: mod/admin.php:989 +msgid "Users, Global Contacts" +msgstr "" + +#: mod/admin.php:990 +msgid "Users, Global Contacts/fallback" +msgstr "" + +#: mod/admin.php:994 +msgid "One month" +msgstr "Один месяц" + +#: mod/admin.php:995 +msgid "Three months" +msgstr "Три месяца" + +#: mod/admin.php:996 +msgid "Half a year" +msgstr "Пол года" + +#: mod/admin.php:997 +msgid "One year" +msgstr "Один год" + +#: mod/admin.php:1002 +msgid "Multi user instance" +msgstr "Многопользовательский вид" + +#: mod/admin.php:1025 +msgid "Closed" +msgstr "Закрыто" + +#: mod/admin.php:1026 +msgid "Requires approval" +msgstr "Требуется подтверждение" + +#: mod/admin.php:1027 +msgid "Open" +msgstr "Открыто" + +#: mod/admin.php:1031 +msgid "No SSL policy, links will track page SSL state" +msgstr "Нет режима SSL, состояние SSL не будет отслеживаться" + +#: mod/admin.php:1032 +msgid "Force all links to use SSL" +msgstr "Заставить все ссылки использовать SSL" + +#: mod/admin.php:1033 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Само-подписанный сертификат, использовать SSL только локально (не рекомендуется)" + +#: mod/admin.php:1057 +msgid "File upload" +msgstr "Загрузка файлов" + +#: mod/admin.php:1058 +msgid "Policies" +msgstr "Политики" + +#: mod/admin.php:1060 +msgid "Auto Discovered Contact Directory" +msgstr "" + +#: mod/admin.php:1061 +msgid "Performance" +msgstr "Производительность" + +#: mod/admin.php:1062 +msgid "Worker" +msgstr "" + +#: mod/admin.php:1063 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "Переместить - ПРЕДУПРЕЖДЕНИЕ: расширеная функция. Может сделать этот сервер недоступным." + +#: mod/admin.php:1066 +msgid "Site name" +msgstr "Название сайта" + +#: mod/admin.php:1067 +msgid "Host name" +msgstr "Имя хоста" + +#: mod/admin.php:1068 +msgid "Sender Email" +msgstr "Системный Email" + +#: mod/admin.php:1068 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "Адрес с которого будут приходить письма пользователям." + +#: mod/admin.php:1069 +msgid "Banner/Logo" +msgstr "Баннер/Логотип" + +#: mod/admin.php:1070 +msgid "Shortcut icon" +msgstr "" + +#: mod/admin.php:1070 +msgid "Link to an icon that will be used for browsers." +msgstr "" + +#: mod/admin.php:1071 +msgid "Touch icon" +msgstr "" + +#: mod/admin.php:1071 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "" + +#: mod/admin.php:1072 +msgid "Additional Info" +msgstr "Дополнительная информация" + +#: mod/admin.php:1072 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/siteinfo." +msgstr "" + +#: mod/admin.php:1073 +msgid "System language" +msgstr "Системный язык" + +#: mod/admin.php:1074 +msgid "System theme" +msgstr "Системная тема" + +#: mod/admin.php:1074 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Тема системы по умолчанию - может быть переопределена пользователем - изменить настройки темы" + +#: mod/admin.php:1075 +msgid "Mobile system theme" +msgstr "Мобильная тема системы" + +#: mod/admin.php:1075 +msgid "Theme for mobile devices" +msgstr "Тема для мобильных устройств" + +#: mod/admin.php:1076 +msgid "SSL link policy" +msgstr "Политика SSL" + +#: mod/admin.php:1076 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Ссылки должны быть вынуждены использовать SSL" + +#: mod/admin.php:1077 +msgid "Force SSL" +msgstr "SSL принудительно" + +#: mod/admin.php:1077 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "" + +#: mod/admin.php:1078 +msgid "Hide help entry from navigation menu" +msgstr "Скрыть пункт \"помощь\" в меню навигации" + +#: mod/admin.php:1078 +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:1079 +msgid "Single user instance" +msgstr "Однопользовательский режим" + +#: mod/admin.php:1079 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Сделать этот экземпляр многопользовательским, или однопользовательским для названного пользователя" + +#: mod/admin.php:1080 +msgid "Maximum image size" +msgstr "Максимальный размер изображения" + +#: mod/admin.php:1080 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Максимальный размер в байтах для загружаемых изображений. По умолчанию 0, что означает отсутствие ограничений." + +#: mod/admin.php:1081 +msgid "Maximum image length" +msgstr "Максимальная длина картинки" + +#: mod/admin.php:1081 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Максимальная длина в пикселях для длинной стороны загруженных изображений. По умолчанию равно -1, что означает отсутствие ограничений." + +#: mod/admin.php:1082 +msgid "JPEG image quality" +msgstr "Качество JPEG изображения" + +#: mod/admin.php:1082 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Загруженные изображения JPEG будут сохранены в этом качестве [0-100]. По умолчанию 100, что означает полное качество." + +#: mod/admin.php:1084 +msgid "Register policy" +msgstr "Политика регистрация" + +#: mod/admin.php:1085 +msgid "Maximum Daily Registrations" +msgstr "Максимальное число регистраций в день" + +#: mod/admin.php:1085 +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:1086 +msgid "Register text" +msgstr "Текст регистрации" + +#: mod/admin.php:1086 +msgid "Will be displayed prominently on the registration page." +msgstr "Будет находиться на видном месте на странице регистрации." + +#: mod/admin.php:1087 +msgid "Accounts abandoned after x days" +msgstr "Аккаунт считается после x дней не воспользованным" + +#: mod/admin.php:1087 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Не будет тратить ресурсы для опроса сайтов для бесхозных контактов. Введите 0 для отключения лимита времени." + +#: mod/admin.php:1088 +msgid "Allowed friend domains" +msgstr "Разрешенные домены друзей" + +#: mod/admin.php:1088 +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:1089 +msgid "Allowed email domains" +msgstr "Разрешенные почтовые домены" + +#: mod/admin.php:1089 +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:1090 +msgid "Block public" +msgstr "Блокировать общественный доступ" + +#: mod/admin.php:1090 +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:1091 +msgid "Force publish" +msgstr "Принудительная публикация" + +#: mod/admin.php:1091 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Отметьте, чтобы принудительно заставить все профили на этом сайте, быть перечислеными в каталоге сайта." + +#: mod/admin.php:1092 +msgid "Global directory URL" +msgstr "" + +#: mod/admin.php:1092 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "" + +#: mod/admin.php:1093 +msgid "Allow threaded items" +msgstr "Разрешить темы в обсуждении" + +#: mod/admin.php:1093 +msgid "Allow infinite level threading for items on this site." +msgstr "Разрешить бесконечный уровень для тем на этом сайте." + +#: mod/admin.php:1094 +msgid "Private posts by default for new users" +msgstr "Частные сообщения по умолчанию для новых пользователей" + +#: mod/admin.php:1094 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "Установить права на создание постов по умолчанию для всех участников в дефолтной приватной группе, а не для публичных участников." + +#: mod/admin.php:1095 +msgid "Don't include post content in email notifications" +msgstr "Не включать текст сообщения в email-оповещение." + +#: mod/admin.php:1095 +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:1096 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Запретить публичный доступ к аддонам, перечисленным в меню приложений." + +#: mod/admin.php:1096 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "При установке этого флажка, будут ограничены аддоны, перечисленные в меню приложений, только для участников." + +#: mod/admin.php:1097 +msgid "Don't embed private images in posts" +msgstr "Не вставлять личные картинки в постах" + +#: mod/admin.php:1097 +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:1098 +msgid "Allow Users to set remote_self" +msgstr "Разрешить пользователям установить remote_self" + +#: mod/admin.php:1098 +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:1099 +msgid "Block multiple registrations" +msgstr "Блокировать множественные регистрации" + +#: mod/admin.php:1099 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Запретить пользователям регистрировать дополнительные аккаунты для использования в качестве страниц." + +#: mod/admin.php:1100 +msgid "OpenID support" +msgstr "Поддержка OpenID" + +#: mod/admin.php:1100 +msgid "OpenID support for registration and logins." +msgstr "OpenID поддержка для регистрации и входа в систему." + +#: mod/admin.php:1101 +msgid "Fullname check" +msgstr "Проверка полного имени" + +#: mod/admin.php:1101 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "Принудить пользователей регистрироваться с пробелом между именем и фамилией в строке \"полное имя\". Антиспам мера." + +#: mod/admin.php:1102 +msgid "Community Page Style" +msgstr "" + +#: mod/admin.php:1102 +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:1103 +msgid "Posts per user on community page" +msgstr "" + +#: mod/admin.php:1103 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"'Global Community')" +msgstr "" + +#: mod/admin.php:1104 +msgid "Enable OStatus support" +msgstr "Включить поддержку OStatus" + +#: mod/admin.php:1104 +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:1105 +msgid "OStatus conversation completion interval" +msgstr "" + +#: mod/admin.php:1105 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "Как часто процессы должны проверять наличие новых записей в OStatus разговорах? Это может быть очень ресурсоёмкой задачей." + +#: mod/admin.php:1106 +msgid "Only import OStatus threads from our contacts" +msgstr "" + +#: mod/admin.php:1106 +msgid "" +"Normally we import every content from our OStatus contacts. With this option" +" we only store threads that are started by a contact that is known on our " +"system." +msgstr "" + +#: mod/admin.php:1107 +msgid "OStatus support can only be enabled if threading is enabled." +msgstr "" + +#: mod/admin.php:1109 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "" + +#: mod/admin.php:1110 +msgid "Enable Diaspora support" +msgstr "Включить поддержку Diaspora" + +#: mod/admin.php:1110 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Обеспечить встроенную поддержку сети Diaspora." + +#: mod/admin.php:1111 +msgid "Only allow Friendica contacts" +msgstr "Позвольть только Friendica контакты" + +#: mod/admin.php:1111 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "Все контакты должны использовать только Friendica протоколы. Все другие встроенные коммуникационные протоколы отключены." + +#: mod/admin.php:1112 +msgid "Verify SSL" +msgstr "Проверка SSL" + +#: mod/admin.php:1112 +msgid "" +"If you wish, you can turn on strict certificate checking. This will mean you" +" cannot connect (at all) to self-signed SSL sites." +msgstr "Если хотите, вы можете включить строгую проверку сертификатов. Это будет означать, что вы не сможете соединиться (вообще) с сайтами, имеющими само-подписанный SSL сертификат." + +#: mod/admin.php:1113 +msgid "Proxy user" +msgstr "Прокси пользователь" + +#: mod/admin.php:1114 +msgid "Proxy URL" +msgstr "Прокси URL" + +#: mod/admin.php:1115 +msgid "Network timeout" +msgstr "Тайм-аут сети" + +#: mod/admin.php:1115 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Значение указывается в секундах. Установите 0 для снятия ограничений (не рекомендуется)." + +#: mod/admin.php:1116 +msgid "Maximum Load Average" +msgstr "Средняя максимальная нагрузка" + +#: mod/admin.php:1116 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Максимальная нагрузка на систему перед приостановкой процессов доставки и опросов - по умолчанию 50." + +#: mod/admin.php:1117 +msgid "Maximum Load Average (Frontend)" +msgstr "" + +#: mod/admin.php:1117 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "" + +#: mod/admin.php:1118 +msgid "Minimal Memory" +msgstr "" + +#: mod/admin.php:1118 +msgid "" +"Minimal free memory in MB for the poller. Needs access to /proc/meminfo - " +"default 0 (deactivated)." +msgstr "" + +#: mod/admin.php:1119 +msgid "Maximum table size for optimization" +msgstr "" + +#: mod/admin.php:1119 +msgid "" +"Maximum table size (in MB) for the automatic optimization - default 100 MB. " +"Enter -1 to disable it." +msgstr "" + +#: mod/admin.php:1120 +msgid "Minimum level of fragmentation" +msgstr "" + +#: mod/admin.php:1120 +msgid "" +"Minimum fragmenation level to start the automatic optimization - default " +"value is 30%." +msgstr "" + +#: mod/admin.php:1122 +msgid "Periodical check of global contacts" +msgstr "" + +#: mod/admin.php:1122 +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:1123 +msgid "Days between requery" +msgstr "" + +#: mod/admin.php:1123 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "" + +#: mod/admin.php:1124 +msgid "Discover contacts from other servers" +msgstr "" + +#: mod/admin.php:1124 +msgid "" +"Periodically query other servers for contacts. You can choose between " +"'users': the users on the remote system, 'Global Contacts': active contacts " +"that are known on the system. The fallback is meant for Redmatrix servers " +"and older friendica servers, where global contacts weren't available. The " +"fallback increases the server load, so the recommened setting is 'Users, " +"Global Contacts'." +msgstr "" + +#: mod/admin.php:1125 +msgid "Timeframe for fetching global contacts" +msgstr "" + +#: mod/admin.php:1125 +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:1126 +msgid "Search the local directory" +msgstr "" + +#: mod/admin.php:1126 +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:1128 +msgid "Publish server information" +msgstr "" + +#: mod/admin.php:1128 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "" + +#: mod/admin.php:1130 +msgid "Suppress Tags" +msgstr "" + +#: mod/admin.php:1130 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "" + +#: mod/admin.php:1131 +msgid "Path to item cache" +msgstr "Путь к элементам кэша" + +#: mod/admin.php:1131 +msgid "The item caches buffers generated bbcode and external images." +msgstr "" + +#: mod/admin.php:1132 +msgid "Cache duration in seconds" +msgstr "Время жизни кэша в секундах" + +#: mod/admin.php:1132 +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:1133 +msgid "Maximum numbers of comments per post" +msgstr "" + +#: mod/admin.php:1133 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "" + +#: mod/admin.php:1134 +msgid "Temp path" +msgstr "Временная папка" + +#: mod/admin.php:1134 +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:1135 +msgid "Base path to installation" +msgstr "Путь для установки" + +#: mod/admin.php:1135 +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:1136 +msgid "Disable picture proxy" +msgstr "Отключить проксирование картинок" + +#: mod/admin.php:1136 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwith." +msgstr "Прокси картинок увеличивает производительность и приватность. Он не должен использоваться на системах с очень маленькой мощностью." + +#: mod/admin.php:1137 +msgid "Only search in tags" +msgstr "Искать только в тегах" + +#: mod/admin.php:1137 +msgid "On large systems the text search can slow down the system extremely." +msgstr "На больших системах текстовый поиск может сильно замедлить систему." + +#: mod/admin.php:1139 +msgid "New base url" +msgstr "Новый базовый url" + +#: mod/admin.php:1139 +msgid "" +"Change base url for this server. Sends relocate message to all DFRN contacts" +" of all users." +msgstr "Сменить адрес этого сервера. Отсылает сообщение о перемещении всем DFRN контактам всех пользователей." + +#: mod/admin.php:1141 +msgid "RINO Encryption" +msgstr "RINO шифрование" + +#: mod/admin.php:1141 +msgid "Encryption layer between nodes." +msgstr "Слой шифрования между узлами." + +#: mod/admin.php:1143 +msgid "Maximum number of parallel workers" +msgstr "Максимальное число параллельно работающих worker'ов" + +#: mod/admin.php:1143 +msgid "" +"On shared hosters set this to 2. On larger systems, values of 10 are great. " +"Default value is 4." +msgstr "Он shared-хостингах установите параметр в 2. На больших системах можно установить 10 или более. По-умолчанию 4." + +#: mod/admin.php:1144 +msgid "Don't use 'proc_open' with the worker" +msgstr "Не использовать 'proc_open' с worker'ом" + +#: mod/admin.php:1144 +msgid "" +"Enable this if your system doesn't allow the use of 'proc_open'. This can " +"happen on shared hosters. If this is enabled you should increase the " +"frequency of poller calls in your crontab." +msgstr "" + +#: mod/admin.php:1145 +msgid "Enable fastlane" +msgstr "Включить fastlane" + +#: mod/admin.php:1145 +msgid "" +"When enabed, the fastlane mechanism starts an additional worker if processes" +" with higher priority are blocked by processes of lower priority." +msgstr "" + +#: mod/admin.php:1146 +msgid "Enable frontend worker" +msgstr "Включить frontend worker" + +#: mod/admin.php:1146 +msgid "" +"When enabled the Worker process is triggered when backend access is " +"performed (e.g. messages being delivered). On smaller sites you might want " +"to call yourdomain.tld/worker on a regular basis via an external cron job. " +"You should only enable this option if you cannot utilize cron/scheduled jobs" +" on your server. The worker background process needs to be activated for " +"this." +msgstr "" + +#: mod/admin.php:1176 +msgid "Update has been marked successful" +msgstr "Обновление было успешно отмечено" + +#: mod/admin.php:1184 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "Обновление базы данных %s успешно применено." + +#: mod/admin.php:1187 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "Выполнение обновления базы данных %s завершено с ошибкой: %s" + +#: mod/admin.php:1201 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "Выполнение %s завершено с ошибкой: %s" + +#: mod/admin.php:1204 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Обновление %s успешно применено." + +#: mod/admin.php:1207 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Процесс обновления %s не вернул статус. Не известно, выполнено, или нет." + +#: mod/admin.php:1210 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "" + +#: mod/admin.php:1230 +msgid "No failed updates." +msgstr "Неудавшихся обновлений нет." + +#: mod/admin.php:1231 +msgid "Check database structure" +msgstr "Проверить структуру базы данных" + +#: mod/admin.php:1236 +msgid "Failed Updates" +msgstr "Неудавшиеся обновления" + +#: mod/admin.php:1237 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "Эта цифра не включает обновления до 1139, которое не возвращает статус." + +#: mod/admin.php:1238 +msgid "Mark success (if update was manually applied)" +msgstr "Отмечено успешно (если обновление было применено вручную)" + +#: mod/admin.php:1239 +msgid "Attempt to execute this update step automatically" +msgstr "Попытаться выполнить этот шаг обновления автоматически" + +#: mod/admin.php:1273 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "" + +#: mod/admin.php:1276 +#, php-format +msgid "" +"\n" +"\t\t\tThe login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%1$s\n" +"\t\t\tLogin Name:\t\t%2$s\n" +"\t\t\tPassword:\t\t%3$s\n" +"\n" +"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\t\tin.\n" +"\n" +"\t\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\t\tthan that.\n" +"\n" +"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\t\tIf you are new and do not know anybody here, they may help\n" +"\t\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\t\tThank you and welcome to %4$s." +msgstr "" + +#: mod/admin.php:1320 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s пользователь заблокирован/разблокирован" +msgstr[1] "%s пользователей заблокировано/разблокировано" +msgstr[2] "%s пользователей заблокировано/разблокировано" +msgstr[3] "%s пользователей заблокировано/разблокировано" + +#: mod/admin.php:1327 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s человек удален" +msgstr[1] "%s чел. удалено" +msgstr[2] "%s чел. удалено" +msgstr[3] "%s чел. удалено" + +#: mod/admin.php:1374 +#, php-format +msgid "User '%s' deleted" +msgstr "Пользователь '%s' удален" + +#: mod/admin.php:1382 +#, php-format +msgid "User '%s' unblocked" +msgstr "Пользователь '%s' разблокирован" + +#: mod/admin.php:1382 +#, php-format +msgid "User '%s' blocked" +msgstr "Пользователь '%s' блокирован" + +#: mod/admin.php:1490 mod/admin.php:1516 +msgid "Register date" +msgstr "Дата регистрации" + +#: mod/admin.php:1490 mod/admin.php:1516 +msgid "Last login" +msgstr "Последний вход" + +#: mod/admin.php:1490 mod/admin.php:1516 +msgid "Last item" +msgstr "Последний пункт" + +#: mod/admin.php:1499 +msgid "Add User" +msgstr "Добавить пользователя" + +#: mod/admin.php:1500 +msgid "select all" +msgstr "выбрать все" + +#: mod/admin.php:1501 +msgid "User registrations waiting for confirm" +msgstr "Регистрации пользователей, ожидающие подтверждения" + +#: mod/admin.php:1502 +msgid "User waiting for permanent deletion" +msgstr "Пользователь ожидает окончательного удаления" + +#: mod/admin.php:1503 +msgid "Request date" +msgstr "Запрос даты" + +#: mod/admin.php:1504 +msgid "No registrations." +msgstr "Нет регистраций." + +#: mod/admin.php:1505 +msgid "Note from the user" +msgstr "Сообщение от пользователя" + +#: mod/admin.php:1507 +msgid "Deny" +msgstr "Отклонить" + +#: mod/admin.php:1511 +msgid "Site admin" +msgstr "Админ сайта" + +#: mod/admin.php:1512 +msgid "Account expired" +msgstr "Аккаунт просрочен" + +#: mod/admin.php:1515 +msgid "New User" +msgstr "Новый пользователь" + +#: mod/admin.php:1516 +msgid "Deleted since" +msgstr "Удалён с" + +#: mod/admin.php:1521 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Выбранные пользователи будут удалены!\\n\\nВсе, что эти пользователи написали на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?" + +#: mod/admin.php:1522 +msgid "" +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Пользователь {0} будет удален!\\n\\nВсе, что этот пользователь написал на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?" + +#: mod/admin.php:1532 +msgid "Name of the new user." +msgstr "Имя нового пользователя." + +#: mod/admin.php:1533 +msgid "Nickname" +msgstr "Ник" + +#: mod/admin.php:1533 +msgid "Nickname of the new user." +msgstr "Ник нового пользователя." + +#: mod/admin.php:1534 +msgid "Email address of the new user." +msgstr "Email адрес нового пользователя." + +#: mod/admin.php:1577 +#, php-format +msgid "Plugin %s disabled." +msgstr "Плагин %s отключен." + +#: mod/admin.php:1581 +#, php-format +msgid "Plugin %s enabled." +msgstr "Плагин %s включен." + +#: mod/admin.php:1592 mod/admin.php:1844 +msgid "Disable" +msgstr "Отключить" + +#: mod/admin.php:1594 mod/admin.php:1846 +msgid "Enable" +msgstr "Включить" + +#: mod/admin.php:1617 mod/admin.php:1893 +msgid "Toggle" +msgstr "Переключить" + +#: mod/admin.php:1625 mod/admin.php:1902 +msgid "Author: " +msgstr "Автор:" + +#: mod/admin.php:1626 mod/admin.php:1903 +msgid "Maintainer: " +msgstr "Программа обслуживания: " + +#: mod/admin.php:1681 +msgid "Reload active plugins" +msgstr "Перезагрузить активные плагины" + +#: mod/admin.php:1686 +#, php-format +msgid "" +"There are currently no plugins available on your node. You can find the " +"official plugin repository at %1$s and might find other interesting plugins " +"in the open plugin registry at %2$s" +msgstr "" + +#: mod/admin.php:1805 +msgid "No themes found." +msgstr "Темы не найдены." + +#: mod/admin.php:1884 +msgid "Screenshot" +msgstr "Скриншот" + +#: mod/admin.php:1944 +msgid "Reload active themes" +msgstr "Перезагрузить активные темы" + +#: mod/admin.php:1949 +#, php-format +msgid "No themes found on the system. They should be paced in %1$s" +msgstr "Не найдено тем. Они должны быть расположены в %1$s" + +#: mod/admin.php:1950 +msgid "[Experimental]" +msgstr "[экспериментально]" + +#: mod/admin.php:1951 +msgid "[Unsupported]" +msgstr "[Неподдерживаемое]" + +#: mod/admin.php:1975 +msgid "Log settings updated." +msgstr "Настройки журнала обновлены." + +#: mod/admin.php:2007 +msgid "PHP log currently enabled." +msgstr "Лог PHP включен." + +#: mod/admin.php:2009 +msgid "PHP log currently disabled." +msgstr "Лог PHP выключен." + +#: mod/admin.php:2018 +msgid "Clear" +msgstr "Очистить" + +#: mod/admin.php:2023 +msgid "Enable Debugging" +msgstr "Включить отладку" + +#: mod/admin.php:2024 +msgid "Log file" +msgstr "Лог-файл" + +#: mod/admin.php:2024 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Должно быть доступно для записи в веб-сервере. Относительно вашего Friendica каталога верхнего уровня." + +#: mod/admin.php:2025 +msgid "Log level" +msgstr "Уровень лога" + +#: mod/admin.php:2028 +msgid "PHP logging" +msgstr "PHP логирование" + +#: mod/admin.php:2029 +msgid "" +"To enable logging of PHP errors and warnings you can add the following to " +"the .htconfig.php file of your installation. The filename set in the " +"'error_log' line is relative to the friendica top-level directory and must " +"be writeable by the web server. The option '1' for 'log_errors' and " +"'display_errors' is to enable these options, set to '0' to disable them." +msgstr "" + +#: mod/admin.php:2160 +#, php-format +msgid "Lock feature %s" +msgstr "Заблокировать %s" + +#: mod/admin.php:2168 +msgid "Manage Additional Features" +msgstr "Управление дополнительными возможностями" #: object/Item.php:359 msgid "via" @@ -8858,7 +8906,7 @@ msgstr "Установить стиль" msgid "Community Pages" msgstr "Страницы сообщества" -#: view/theme/vier/config.php:117 view/theme/vier/theme.php:146 +#: view/theme/vier/config.php:117 view/theme/vier/theme.php:149 msgid "Community Profiles" msgstr "Профили сообщества" @@ -8866,22 +8914,75 @@ msgstr "Профили сообщества" msgid "Help or @NewHere ?" msgstr "Помощь" -#: view/theme/vier/config.php:119 view/theme/vier/theme.php:385 +#: view/theme/vier/config.php:119 view/theme/vier/theme.php:390 msgid "Connect Services" msgstr "Подключить службы" -#: view/theme/vier/config.php:120 view/theme/vier/theme.php:194 +#: view/theme/vier/config.php:120 view/theme/vier/theme.php:197 msgid "Find Friends" msgstr "Найти друзей" -#: view/theme/vier/config.php:121 view/theme/vier/theme.php:176 +#: view/theme/vier/config.php:121 view/theme/vier/theme.php:179 msgid "Last users" msgstr "Последние пользователи" -#: view/theme/vier/theme.php:195 +#: view/theme/vier/theme.php:198 msgid "Local Directory" msgstr "Локальный каталог" -#: view/theme/vier/theme.php:286 +#: view/theme/vier/theme.php:290 msgid "Quick Start" msgstr "Быстрый запуск" + +#: index.php:433 +msgid "toggle mobile" +msgstr "мобильная версия" + +#: boot.php:999 +msgid "Delete this item?" +msgstr "Удалить этот элемент?" + +#: boot.php:1001 +msgid "show fewer" +msgstr "показать меньше" + +#: boot.php:1729 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Обновление %s не удалось. Смотрите журнал ошибок." + +#: boot.php:1843 +msgid "Create a New Account" +msgstr "Создать новый аккаунт" + +#: boot.php:1871 +msgid "Password: " +msgstr "Пароль: " + +#: boot.php:1872 +msgid "Remember me" +msgstr "Запомнить" + +#: boot.php:1875 +msgid "Or login using OpenID: " +msgstr "Или зайти с OpenID: " + +#: boot.php:1881 +msgid "Forgot your password?" +msgstr "Забыли пароль?" + +#: boot.php:1884 +msgid "Website Terms of Service" +msgstr "Правила сайта" + +#: boot.php:1885 +msgid "terms of service" +msgstr "правила" + +#: boot.php:1887 +msgid "Website Privacy Policy" +msgstr "Политика конфиденциальности сервера" + +#: boot.php:1888 +msgid "privacy policy" +msgstr "политика конфиденциальности" diff --git a/view/lang/ru/strings.php b/view/lang/ru/strings.php index db635783de..de415430d7 100644 --- a/view/lang/ru/strings.php +++ b/view/lang/ru/strings.php @@ -5,41 +5,12 @@ function string_plural_select_ru($n){ return ($n%10==1 && $n%100!=11 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<12 || $n%100>14) ? 1 : $n%10==0 || ($n%10>=5 && $n%10<=9) || ($n%100>=11 && $n%100<=14)? 2 : 3);; }} ; -$a->strings["Delete this item?"] = "Удалить этот элемент?"; -$a->strings["show more"] = "показать больше"; -$a->strings["show fewer"] = "показать меньше"; -$a->strings["Update %s failed. See error logs."] = "Обновление %s не удалось. Смотрите журнал ошибок."; -$a->strings["Create a New Account"] = "Создать новый аккаунт"; -$a->strings["Register"] = "Регистрация"; -$a->strings["Logout"] = "Выход"; -$a->strings["Login"] = "Вход"; -$a->strings["Nickname or Email: "] = "Ник или E-mail: "; -$a->strings["Password: "] = "Пароль: "; -$a->strings["Remember me"] = "Запомнить"; -$a->strings["Or login using OpenID: "] = "Или зайти с OpenID: "; -$a->strings["Forgot your password?"] = "Забыли пароль?"; -$a->strings["Password Reset"] = "Сброс пароля"; -$a->strings["Website Terms of Service"] = "Правила сайта"; -$a->strings["terms of service"] = "правила"; -$a->strings["Website Privacy Policy"] = "Политика конфиденциальности сервера"; -$a->strings["privacy policy"] = "политика конфиденциальности"; -$a->strings["View Profile"] = "Просмотреть профиль"; -$a->strings["Connect/Follow"] = "Подключиться/Следовать"; -$a->strings["View Status"] = "Просмотреть статус"; -$a->strings["View Photos"] = "Просмотреть фото"; -$a->strings["Network Posts"] = "Посты сети"; -$a->strings["View Contact"] = "Просмотреть контакт"; -$a->strings["Drop Contact"] = "Удалить контакт"; -$a->strings["Send PM"] = "Отправить ЛС"; -$a->strings["Poke"] = "потыкать"; -$a->strings["Organisation"] = "Организация"; -$a->strings["News"] = "Новости"; -$a->strings["Forum"] = "Форум"; $a->strings["Forums"] = "Форумы"; $a->strings["External link to forum"] = "Внешняя ссылка на форум"; +$a->strings["show more"] = "показать больше"; $a->strings["System"] = "Система"; $a->strings["Network"] = "Новости"; -$a->strings["Personal"] = "Персонал"; +$a->strings["Personal"] = "Личные"; $a->strings["Home"] = "Мой профиль"; $a->strings["Introductions"] = "Запросы"; $a->strings["%s commented on %s's post"] = "%s прокомментировал %s сообщение"; @@ -54,6 +25,177 @@ $a->strings["Friend Suggestion"] = "Предложение в друзья"; $a->strings["Friend/Connect Request"] = "Запрос в друзья / на подключение"; $a->strings["New Follower"] = "Новый фолловер"; $a->strings["Wall Photos"] = "Фото стены"; +$a->strings["(no subject)"] = "(без темы)"; +$a->strings["noreply"] = "без ответа"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s нравится %3\$s от %2\$s "; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s не нравится %3\$s от %2\$s "; +$a->strings["%1\$s is attending %2\$s's %3\$s"] = ""; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = ""; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = ""; +$a->strings["photo"] = "фото"; +$a->strings["status"] = "статус"; +$a->strings["event"] = "мероприятие"; +$a->strings["[no subject]"] = "[без темы]"; +$a->strings["Nothing new here"] = "Ничего нового здесь"; +$a->strings["Clear notifications"] = "Стереть уведомления"; +$a->strings["@name, !forum, #tags, content"] = "@имя, !форум, #тег, контент"; +$a->strings["Logout"] = "Выход"; +$a->strings["End this session"] = "Завершить эту сессию"; +$a->strings["Status"] = "Посты"; +$a->strings["Your posts and conversations"] = "Данные вашей учётной записи"; +$a->strings["Profile"] = "Информация"; +$a->strings["Your profile page"] = "Информация о вас"; +$a->strings["Photos"] = "Фото"; +$a->strings["Your photos"] = "Ваши фотографии"; +$a->strings["Videos"] = "Видео"; +$a->strings["Your videos"] = "Ваши видео"; +$a->strings["Events"] = "Мероприятия"; +$a->strings["Your events"] = "Ваши события"; +$a->strings["Personal notes"] = "Личные заметки"; +$a->strings["Your personal notes"] = "Ваши личные заметки"; +$a->strings["Login"] = "Вход"; +$a->strings["Sign in"] = "Вход"; +$a->strings["Home Page"] = "Главная страница"; +$a->strings["Register"] = "Регистрация"; +$a->strings["Create an account"] = "Создать аккаунт"; +$a->strings["Help"] = "Помощь"; +$a->strings["Help and documentation"] = "Помощь и документация"; +$a->strings["Apps"] = "Приложения"; +$a->strings["Addon applications, utilities, games"] = "Дополнительные приложения, утилиты, игры"; +$a->strings["Search"] = "Поиск"; +$a->strings["Search site content"] = "Поиск по сайту"; +$a->strings["Full Text"] = "Контент"; +$a->strings["Tags"] = "Тэги"; +$a->strings["Contacts"] = "Контакты"; +$a->strings["Community"] = "Сообщество"; +$a->strings["Conversations on this site"] = "Беседы на этом сайте"; +$a->strings["Conversations on the network"] = "Беседы в сети"; +$a->strings["Events and Calendar"] = "Календарь и события"; +$a->strings["Directory"] = "Каталог"; +$a->strings["People directory"] = "Каталог участников"; +$a->strings["Information"] = "Информация"; +$a->strings["Information about this friendica instance"] = "Информация об этом экземпляре Friendica"; +$a->strings["Conversations from your friends"] = "Сообщения ваших друзей"; +$a->strings["Network Reset"] = "Перезагрузка сети"; +$a->strings["Load Network page with no filters"] = "Загрузить страницу сети без фильтров"; +$a->strings["Friend Requests"] = "Запросы на добавление в список друзей"; +$a->strings["Notifications"] = "Уведомления"; +$a->strings["See all notifications"] = "Посмотреть все уведомления"; +$a->strings["Mark as seen"] = "Отметить, как прочитанное"; +$a->strings["Mark all system notifications seen"] = "Отметить все системные уведомления, как прочитанные"; +$a->strings["Messages"] = "Сообщения"; +$a->strings["Private mail"] = "Личная почта"; +$a->strings["Inbox"] = "Входящие"; +$a->strings["Outbox"] = "Исходящие"; +$a->strings["New Message"] = "Новое сообщение"; +$a->strings["Manage"] = "Управлять"; +$a->strings["Manage other pages"] = "Управление другими страницами"; +$a->strings["Delegations"] = "Делегирование"; +$a->strings["Delegate Page Management"] = "Делегировать управление страницей"; +$a->strings["Settings"] = "Настройки"; +$a->strings["Account settings"] = "Настройки аккаунта"; +$a->strings["Profiles"] = "Профили"; +$a->strings["Manage/Edit Profiles"] = "Управление/редактирование профилей"; +$a->strings["Manage/edit friends and contacts"] = "Управление / редактирование друзей и контактов"; +$a->strings["Admin"] = "Администратор"; +$a->strings["Site setup and configuration"] = "Конфигурация сайта"; +$a->strings["Navigation"] = "Навигация"; +$a->strings["Site map"] = "Карта сайта"; +$a->strings["Click here to upgrade."] = "Нажмите для обновления."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Это действие превышает лимиты, установленные вашим тарифным планом."; +$a->strings["This action is not available under your subscription plan."] = "Это действие не доступно в соответствии с вашим планом подписки."; +$a->strings["Male"] = "Мужчина"; +$a->strings["Female"] = "Женщина"; +$a->strings["Currently Male"] = "В данный момент мужчина"; +$a->strings["Currently Female"] = "В настоящее время женщина"; +$a->strings["Mostly Male"] = "В основном мужчина"; +$a->strings["Mostly Female"] = "В основном женщина"; +$a->strings["Transgender"] = "Транссексуал"; +$a->strings["Intersex"] = "Интерсексуал"; +$a->strings["Transsexual"] = "Транссексуал"; +$a->strings["Hermaphrodite"] = "Гермафродит"; +$a->strings["Neuter"] = "Средний род"; +$a->strings["Non-specific"] = "Не определен"; +$a->strings["Other"] = "Другой"; +$a->strings["Undecided"] = array( + 0 => "", + 1 => "", + 2 => "", + 3 => "", +); +$a->strings["Males"] = "Мужчины"; +$a->strings["Females"] = "Женщины"; +$a->strings["Gay"] = "Гей"; +$a->strings["Lesbian"] = "Лесбиянка"; +$a->strings["No Preference"] = "Без предпочтений"; +$a->strings["Bisexual"] = "Бисексуал"; +$a->strings["Autosexual"] = "Автосексуал"; +$a->strings["Abstinent"] = "Воздержанный"; +$a->strings["Virgin"] = "Девственница"; +$a->strings["Deviant"] = "Deviant"; +$a->strings["Fetish"] = "Фетиш"; +$a->strings["Oodles"] = "Групповой"; +$a->strings["Nonsexual"] = "Нет интереса к сексу"; +$a->strings["Single"] = "Без пары"; +$a->strings["Lonely"] = "Пока никого нет"; +$a->strings["Available"] = "Доступный"; +$a->strings["Unavailable"] = "Не ищу никого"; +$a->strings["Has crush"] = "Имеет ошибку"; +$a->strings["Infatuated"] = "Влюблён"; +$a->strings["Dating"] = "Свидания"; +$a->strings["Unfaithful"] = "Изменяю супругу"; +$a->strings["Sex Addict"] = "Люблю секс"; +$a->strings["Friends"] = "Друзья"; +$a->strings["Friends/Benefits"] = "Друзья / Предпочтения"; +$a->strings["Casual"] = "Обычный"; +$a->strings["Engaged"] = "Занят"; +$a->strings["Married"] = "Женат / Замужем"; +$a->strings["Imaginarily married"] = "Воображаемо женат (замужем)"; +$a->strings["Partners"] = "Партнеры"; +$a->strings["Cohabiting"] = "Партнерство"; +$a->strings["Common law"] = ""; +$a->strings["Happy"] = "Счастлив/а/"; +$a->strings["Not looking"] = "Не в поиске"; +$a->strings["Swinger"] = "Свинг"; +$a->strings["Betrayed"] = "Преданный"; +$a->strings["Separated"] = "Разделенный"; +$a->strings["Unstable"] = "Нестабильный"; +$a->strings["Divorced"] = "Разведен(а)"; +$a->strings["Imaginarily divorced"] = "Воображаемо разведен(а)"; +$a->strings["Widowed"] = "Овдовевший"; +$a->strings["Uncertain"] = "Неопределенный"; +$a->strings["It's complicated"] = "влишком сложно"; +$a->strings["Don't care"] = "Не беспокоить"; +$a->strings["Ask me"] = "Спросите меня"; +$a->strings["Welcome "] = "Добро пожаловать, "; +$a->strings["Please upload a profile photo."] = "Пожалуйста, загрузите фотографию профиля."; +$a->strings["Welcome back "] = "Добро пожаловать обратно, "; +$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Ключ формы безопасности неправильный. Вероятно, это произошло потому, что форма была открыта слишком долго (более 3 часов) до её отправки."; +$a->strings["Error decoding account file"] = "Ошибка расшифровки файла аккаунта"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Ошибка! Неправильная версия данных в файле! Это не файл аккаунта Friendica?"; +$a->strings["Error! Cannot check nickname"] = "Ошибка! Невозможно проверить никнейм"; +$a->strings["User '%s' already exists on this server!"] = "Пользователь '%s' уже существует на этом сервере!"; +$a->strings["User creation error"] = "Ошибка создания пользователя"; +$a->strings["User profile creation error"] = "Ошибка создания профиля пользователя"; +$a->strings["%d contact not imported"] = array( + 0 => "%d контакт не импортирован", + 1 => "%d контакты не импортированы", + 2 => "%d контакты не импортированы", + 3 => "%d контакты не импортированы", +); +$a->strings["Done. You can now login with your username and password"] = "Завершено. Теперь вы можете войти с вашим логином и паролем"; +$a->strings["View Profile"] = "Просмотреть профиль"; +$a->strings["Connect/Follow"] = "Подключиться/Следовать"; +$a->strings["View Status"] = "Просмотреть статус"; +$a->strings["View Photos"] = "Просмотреть фото"; +$a->strings["Network Posts"] = "Посты сети"; +$a->strings["View Contact"] = "Просмотреть контакт"; +$a->strings["Drop Contact"] = "Удалить контакт"; +$a->strings["Send PM"] = "Отправить ЛС"; +$a->strings["Poke"] = "потыкать"; +$a->strings["Organisation"] = "Организация"; +$a->strings["News"] = "Новости"; +$a->strings["Forum"] = "Форум"; $a->strings["Post to Email"] = "Отправить на Email"; $a->strings["Connectors disabled, since \"%s\" is enabled."] = "Коннекторы отключены так как \"%s\" включен."; $a->strings["Hide your profile details from unknown viewers?"] = "Скрыть данные профиля из неизвестных зрителей?"; @@ -107,10 +249,9 @@ $a->strings["Google+"] = "Google+"; $a->strings["pump.io"] = "pump.io"; $a->strings["Twitter"] = "Twitter"; $a->strings["Diaspora Connector"] = "Коннектор Diaspora"; -$a->strings["GNU Social"] = "GNU Social"; +$a->strings["GNU Social Connector"] = ""; $a->strings["pnut"] = "pnut"; $a->strings["App.net"] = "App.net"; -$a->strings["Hubzilla/Redmatrix"] = "Hubzilla/Redmatrix"; $a->strings["Add New Contact"] = "Добавить контакт"; $a->strings["Enter address or web location"] = "Введите адрес или веб-местонахождение"; $a->strings["Example: bob@example.com, http://example.com/barbara"] = "Пример: bob@example.com, http://example.com/barbara"; @@ -140,11 +281,6 @@ $a->strings["%d contact in common"] = array( 2 => "%d Контактов", 3 => "%d Контактов", ); -$a->strings["event"] = "мероприятие"; -$a->strings["status"] = "статус"; -$a->strings["photo"] = "фото"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s нравится %3\$s от %2\$s "; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s не нравится %3\$s от %2\$s "; $a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s уделил внимание %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"] = ""; @@ -246,12 +382,6 @@ $a->strings["Not Attending"] = array( 2 => "", 3 => "", ); -$a->strings["Undecided"] = array( - 0 => "", - 1 => "", - 2 => "", - 3 => "", -); $a->strings["Miscellaneous"] = "Разное"; $a->strings["Birthday:"] = "День рождения:"; $a->strings["Age: "] = "Возраст: "; @@ -276,15 +406,6 @@ $a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s назад"; $a->strings["%s's birthday"] = "день рождения %s"; $a->strings["Happy Birthday %s"] = "С днём рождения %s"; $a->strings["Cannot locate DNS info for database server '%s'"] = "Не могу найти информацию для DNS-сервера базы данных '%s'"; -$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = ""; -$a->strings["The error message is\n[pre]%s[/pre]"] = "Сообщение об ошибке:\n[pre]%s[/pre]"; -$a->strings["Errors encountered creating database tables."] = "Обнаружены ошибки при создании таблиц базы данных."; -$a->strings["Errors encountered performing database changes."] = "Обнаружены ошибки при изменении базы данных."; -$a->strings["(no subject)"] = "(без темы)"; -$a->strings["noreply"] = "без ответа"; -$a->strings["%s\\'s birthday"] = "День рождения %s"; -$a->strings["Sharing notification from Diaspora network"] = "Уведомление о шаре из сети Diaspora"; -$a->strings["Attachments:"] = "Вложения:"; $a->strings["Friendica Notification"] = "Уведомления Friendica"; $a->strings["Thank You,"] = "Спасибо,"; $a->strings["%s Administrator"] = "%s администратор"; @@ -306,7 +427,7 @@ $a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s написа $a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s написал на [url=%2\$s]вашей стене[/url]"; $a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s отметил вас"; $a->strings["%1\$s tagged you at %2\$s"] = "%1\$s отметил вас в %2\$s"; -$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]поставил тег[/url]."; +$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]отметил вас[/url]."; $a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s поделился новым постом"; $a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s поделился новым постом на %2\$s"; $a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]поделился постом[/url]."; @@ -344,6 +465,7 @@ $a->strings["You've received a registration request from '%1\$s' at %2\$s"] = " $a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Вы получили [url=%1\$s]запрос регистрации[/url] от %2\$s."; $a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Полное имя:⇥%1\$s\\nСайт:⇥%2\$s\\nЛогин:⇥%3\$s (%4\$s)"; $a->strings["Please visit %s to approve or reject the request."] = "Пожалуйста, посетите %s чтобы подтвердить или отвергнуть запрос."; +$a->strings["all-day"] = ""; $a->strings["Sun"] = "Вс"; $a->strings["Mon"] = "Пн"; $a->strings["Tue"] = "Вт"; @@ -382,10 +504,10 @@ $a->strings["October"] = "Октябрь"; $a->strings["November"] = "Ноябрь"; $a->strings["December"] = "Декабрь"; $a->strings["today"] = "сегодня"; -$a->strings["all-day"] = ""; $a->strings["No events to display"] = "Нет событий для показа"; $a->strings["l, F j"] = "l, j F"; $a->strings["Edit event"] = "Редактировать мероприятие"; +$a->strings["Delete event"] = ""; $a->strings["link to source"] = "ссылка на сообщение"; $a->strings["Export"] = "Экспорт"; $a->strings["Export calendar as ical"] = "Экспортировать календарь в формат ical"; @@ -439,6 +561,7 @@ $a->strings["Ability to mute notifications for a thread"] = "Возможнос $a->strings["Advanced Profile Settings"] = "Расширенные настройки профиля"; $a->strings["Show visitors public community forums at the Advanced Profile Page"] = ""; $a->strings["Disallowed profile URL."] = "Запрещенный URL профиля."; +$a->strings["Blocked domain"] = ""; $a->strings["Connect URL missing."] = "Connect-URL отсутствует."; $a->strings["This site is not configured to allow communications with other networks."] = "Данный сайт не настроен так, чтобы держать связь с другими сетями."; $a->strings["No compatible communication protocols or feeds were discovered."] = "Обнаружены несовместимые протоколы связи или каналы."; @@ -465,7 +588,6 @@ $a->strings["Requested account is not available."] = "Запрашиваемый $a->strings["Requested profile is not available."] = "Запрашиваемый профиль недоступен."; $a->strings["Edit profile"] = "Редактировать профиль"; $a->strings["Atom feed"] = "Фид Atom"; -$a->strings["Profiles"] = "Профили"; $a->strings["Manage/edit profiles"] = "Управление / редактирование профилей"; $a->strings["Change profile photo"] = "Изменить фото профиля"; $a->strings["Create New Profile"] = "Создать новый профиль"; @@ -486,7 +608,6 @@ $a->strings["Birthdays this week:"] = "Дни рождения на этой н $a->strings["[No description]"] = "[без описания]"; $a->strings["Event Reminders"] = "Напоминания о мероприятиях"; $a->strings["Events this week:"] = "Мероприятия на этой неделе:"; -$a->strings["Profile"] = "Информация"; $a->strings["Full Name:"] = "Полное имя:"; $a->strings["j F, Y"] = "j F, Y"; $a->strings["j F"] = "j F"; @@ -511,153 +632,59 @@ $a->strings["School/education:"] = "Школа / Образование:"; $a->strings["Forums:"] = "Форумы:"; $a->strings["Basic"] = "Базовый"; $a->strings["Advanced"] = "Расширенный"; -$a->strings["Status"] = "Посты"; $a->strings["Status Messages and Posts"] = "Ваши посты"; $a->strings["Profile Details"] = "Информация о вас"; -$a->strings["Photos"] = "Фото"; $a->strings["Photo Albums"] = "Фотоальбомы"; -$a->strings["Videos"] = "Видео"; -$a->strings["Events"] = "Мероприятия"; -$a->strings["Events and Calendar"] = "Календарь и события"; $a->strings["Personal Notes"] = "Личные заметки"; $a->strings["Only You Can See This"] = "Только вы можете это видеть"; -$a->strings["Contacts"] = "Контакты"; +$a->strings["view full size"] = "посмотреть в полный размер"; +$a->strings["Embedded content"] = "Встроенное содержание"; +$a->strings["Embedding disabled"] = "Встраивание отключено"; +$a->strings["Contact Photos"] = "Фотографии контакта"; +$a->strings["Passwords do not match. Password unchanged."] = "Пароли не совпадают. Пароль не изменен."; +$a->strings["An invitation is required."] = "Требуется приглашение."; +$a->strings["Invitation could not be verified."] = "Приглашение не может быть проверено."; +$a->strings["Invalid OpenID url"] = "Неверный URL OpenID"; +$a->strings["Please enter the required information."] = "Пожалуйста, введите необходимую информацию."; +$a->strings["Please use a shorter name."] = "Пожалуйста, используйте более короткое имя."; +$a->strings["Name too short."] = "Имя слишком короткое."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Кажется, что это ваше неполное (Имя Фамилия) имя."; +$a->strings["Your email domain is not among those allowed on this site."] = "Домен вашего адреса электронной почты не относится к числу разрешенных на этом сайте."; +$a->strings["Not a valid email address."] = "Неверный адрес электронной почты."; +$a->strings["Cannot use that email."] = "Нельзя использовать этот Email."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = ""; +$a->strings["Nickname is already registered. Please choose another."] = "Такой ник уже зарегистрирован. Пожалуйста, выберите другой."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Ник уже зарегистрирован на этом сайте и не может быть изменён. Пожалуйста, выберите другой ник."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "СЕРЬЕЗНАЯ ОШИБКА: генерация ключей безопасности не удалась."; +$a->strings["An error occurred during registration. Please try again."] = "Ошибка при регистрации. Пожалуйста, попробуйте еще раз."; +$a->strings["default"] = "значение по умолчанию"; +$a->strings["An error occurred creating your default profile. Please try again."] = "Ошибка создания вашего профиля. Пожалуйста, попробуйте еще раз."; +$a->strings["Profile Photos"] = "Фотографии профиля"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = ""; +$a->strings["Registration at %s"] = ""; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = ""; +$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = ""; +$a->strings["Registration details for %s"] = "Подробности регистрации для %s"; +$a->strings["There are no tables on MyISAM."] = ""; +$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = ""; +$a->strings["The error message is\n[pre]%s[/pre]"] = "Сообщение об ошибке:\n[pre]%s[/pre]"; +$a->strings["\nError %d occurred during database update:\n%s\n"] = ""; +$a->strings["Errors encountered performing database changes: "] = ""; +$a->strings[": Database update"] = ""; +$a->strings["%s: updating %s table."] = ""; +$a->strings["%s\\'s birthday"] = "День рождения %s"; +$a->strings["Sharing notification from Diaspora network"] = "Уведомление о шаре из сети Diaspora"; +$a->strings["Attachments:"] = "Вложения:"; $a->strings["[Name Withheld]"] = "[Имя не разглашается]"; $a->strings["Item not found."] = "Пункт не найден."; $a->strings["Do you really want to delete this item?"] = "Вы действительно хотите удалить этот элемент?"; $a->strings["Yes"] = "Да"; $a->strings["Permission denied."] = "Нет разрешения."; $a->strings["Archives"] = "Архивы"; -$a->strings["%1\$s is attending %2\$s's %3\$s"] = ""; -$a->strings["%1\$s is not attending %2\$s's %3\$s"] = ""; -$a->strings["%1\$s may attend %2\$s's %3\$s"] = ""; -$a->strings["[no subject]"] = "[без темы]"; -$a->strings["Nothing new here"] = "Ничего нового здесь"; -$a->strings["Clear notifications"] = "Стереть уведомления"; -$a->strings["@name, !forum, #tags, content"] = "@имя, !форум, #тег, контент"; -$a->strings["End this session"] = "Завершить эту сессию"; -$a->strings["Your posts and conversations"] = "Данные вашей учётной записи"; -$a->strings["Your profile page"] = "Информация о вас"; -$a->strings["Your photos"] = "Ваши фотографии"; -$a->strings["Your videos"] = "Ваши видео"; -$a->strings["Your events"] = "Ваши события"; -$a->strings["Personal notes"] = "Личные заметки"; -$a->strings["Your personal notes"] = "Ваши личные заметки"; -$a->strings["Sign in"] = "Вход"; -$a->strings["Home Page"] = "Главная страница"; -$a->strings["Create an account"] = "Создать аккаунт"; -$a->strings["Help"] = "Помощь"; -$a->strings["Help and documentation"] = "Помощь и документация"; -$a->strings["Apps"] = "Приложения"; -$a->strings["Addon applications, utilities, games"] = "Дополнительные приложения, утилиты, игры"; -$a->strings["Search"] = "Поиск"; -$a->strings["Search site content"] = "Поиск по сайту"; -$a->strings["Full Text"] = "Контент"; -$a->strings["Tags"] = "Тэги"; -$a->strings["Community"] = "Сообщество"; -$a->strings["Conversations on this site"] = "Беседы на этом сайте"; -$a->strings["Conversations on the network"] = "Беседы в сети"; -$a->strings["Directory"] = "Каталог"; -$a->strings["People directory"] = "Каталог участников"; -$a->strings["Information"] = "Информация"; -$a->strings["Information about this friendica instance"] = "Информация об этом экземпляре Friendica"; -$a->strings["Conversations from your friends"] = "Посты ваших друзей"; -$a->strings["Network Reset"] = "Перезагрузка сети"; -$a->strings["Load Network page with no filters"] = "Загрузить страницу сети без фильтров"; -$a->strings["Friend Requests"] = "Запросы на добавление в список друзей"; -$a->strings["Notifications"] = "Уведомления"; -$a->strings["See all notifications"] = "Посмотреть все уведомления"; -$a->strings["Mark as seen"] = "Отметить, как прочитанное"; -$a->strings["Mark all system notifications seen"] = "Отметить все системные уведомления, как прочитанные"; -$a->strings["Messages"] = "Сообщения"; -$a->strings["Private mail"] = "Личная почта"; -$a->strings["Inbox"] = "Входящие"; -$a->strings["Outbox"] = "Исходящие"; -$a->strings["New Message"] = "Новое сообщение"; -$a->strings["Manage"] = "Управлять"; -$a->strings["Manage other pages"] = "Управление другими страницами"; -$a->strings["Delegations"] = "Делегирование"; -$a->strings["Delegate Page Management"] = "Делегировать управление страницей"; -$a->strings["Settings"] = "Настройки"; -$a->strings["Account settings"] = "Настройки аккаунта"; -$a->strings["Manage/Edit Profiles"] = "Управление/редактирование профилей"; -$a->strings["Manage/edit friends and contacts"] = "Управление / редактирование друзей и контактов"; -$a->strings["Admin"] = "Администратор"; -$a->strings["Site setup and configuration"] = "Конфигурация сайта"; -$a->strings["Navigation"] = "Навигация"; -$a->strings["Site map"] = "Карта сайта"; -$a->strings["view full size"] = "посмотреть в полный размер"; -$a->strings["Embedded content"] = "Встроенное содержание"; -$a->strings["Embedding disabled"] = "Встраивание отключено"; $a->strings["%s is now following %s."] = "%s теперь подписан на %s."; $a->strings["following"] = "следует"; $a->strings["%s stopped following %s."] = "%s отписался от %s."; $a->strings["stopped following"] = "остановлено следование"; -$a->strings["Contact Photos"] = "Фотографии контакта"; -$a->strings["Click here to upgrade."] = "Нажмите для обновления."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Это действие превышает лимиты, установленные вашим тарифным планом."; -$a->strings["This action is not available under your subscription plan."] = "Это действие не доступно в соответствии с вашим планом подписки."; -$a->strings["Male"] = "Мужчина"; -$a->strings["Female"] = "Женщина"; -$a->strings["Currently Male"] = "В данный момент мужчина"; -$a->strings["Currently Female"] = "В настоящее время женщина"; -$a->strings["Mostly Male"] = "В основном мужчина"; -$a->strings["Mostly Female"] = "В основном женщина"; -$a->strings["Transgender"] = "Транссексуал"; -$a->strings["Intersex"] = "Интерсексуал"; -$a->strings["Transsexual"] = "Транссексуал"; -$a->strings["Hermaphrodite"] = "Гермафродит"; -$a->strings["Neuter"] = "Средний род"; -$a->strings["Non-specific"] = "Не определен"; -$a->strings["Other"] = "Другой"; -$a->strings["Males"] = "Мужчины"; -$a->strings["Females"] = "Женщины"; -$a->strings["Gay"] = "Гей"; -$a->strings["Lesbian"] = "Лесбиянка"; -$a->strings["No Preference"] = "Без предпочтений"; -$a->strings["Bisexual"] = "Бисексуал"; -$a->strings["Autosexual"] = "Автосексуал"; -$a->strings["Abstinent"] = "Воздержанный"; -$a->strings["Virgin"] = "Девственница"; -$a->strings["Deviant"] = "Deviant"; -$a->strings["Fetish"] = "Фетиш"; -$a->strings["Oodles"] = "Групповой"; -$a->strings["Nonsexual"] = "Нет интереса к сексу"; -$a->strings["Single"] = "Без пары"; -$a->strings["Lonely"] = "Пока никого нет"; -$a->strings["Available"] = "Доступный"; -$a->strings["Unavailable"] = "Не ищу никого"; -$a->strings["Has crush"] = "Имеет ошибку"; -$a->strings["Infatuated"] = "Влюблён"; -$a->strings["Dating"] = "Свидания"; -$a->strings["Unfaithful"] = "Изменяю супругу"; -$a->strings["Sex Addict"] = "Люблю секс"; -$a->strings["Friends"] = "Друзья"; -$a->strings["Friends/Benefits"] = "Друзья / Предпочтения"; -$a->strings["Casual"] = "Обычный"; -$a->strings["Engaged"] = "Занят"; -$a->strings["Married"] = "Женат / Замужем"; -$a->strings["Imaginarily married"] = "Воображаемо женат (замужем)"; -$a->strings["Partners"] = "Партнеры"; -$a->strings["Cohabiting"] = "Партнерство"; -$a->strings["Common law"] = ""; -$a->strings["Happy"] = "Счастлив/а/"; -$a->strings["Not looking"] = "Не в поиске"; -$a->strings["Swinger"] = "Свинг"; -$a->strings["Betrayed"] = "Преданный"; -$a->strings["Separated"] = "Разделенный"; -$a->strings["Unstable"] = "Нестабильный"; -$a->strings["Divorced"] = "Разведен(а)"; -$a->strings["Imaginarily divorced"] = "Воображаемо разведен(а)"; -$a->strings["Widowed"] = "Овдовевший"; -$a->strings["Uncertain"] = "Неопределенный"; -$a->strings["It's complicated"] = "влишком сложно"; -$a->strings["Don't care"] = "Не беспокоить"; -$a->strings["Ask me"] = "Спросите меня"; -$a->strings["Welcome "] = "Добро пожаловать, "; -$a->strings["Please upload a profile photo."] = "Пожалуйста, загрузите фотографию профиля."; -$a->strings["Welcome back "] = "Добро пожаловать обратно, "; -$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Ключ формы безопасности неправильный. Вероятно, это произошло потому, что форма была открыта слишком долго (более 3 часов) до её отправки."; $a->strings["newer"] = "новее"; $a->strings["older"] = "старее"; $a->strings["first"] = "первый"; @@ -721,383 +748,20 @@ $a->strings["comment"] = array( ); $a->strings["post"] = "сообщение"; $a->strings["Item filed"] = ""; -$a->strings["Error decoding account file"] = "Ошибка расшифровки файла аккаунта"; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Ошибка! Неправильная версия данных в файле! Это не файл аккаунта Friendica?"; -$a->strings["Error! Cannot check nickname"] = "Ошибка! Невозможно проверить никнейм"; -$a->strings["User '%s' already exists on this server!"] = "Пользователь '%s' уже существует на этом сервере!"; -$a->strings["User creation error"] = "Ошибка создания пользователя"; -$a->strings["User profile creation error"] = "Ошибка создания профиля пользователя"; -$a->strings["%d contact not imported"] = array( - 0 => "%d контакт не импортирован", - 1 => "%d контакты не импортированы", - 2 => "%d контакты не импортированы", - 3 => "%d контакты не импортированы", -); -$a->strings["Done. You can now login with your username and password"] = "Завершено. Теперь вы можете войти с вашим логином и паролем"; -$a->strings["Passwords do not match. Password unchanged."] = "Пароли не совпадают. Пароль не изменен."; -$a->strings["An invitation is required."] = "Требуется приглашение."; -$a->strings["Invitation could not be verified."] = "Приглашение не может быть проверено."; -$a->strings["Invalid OpenID url"] = "Неверный URL OpenID"; -$a->strings["Please enter the required information."] = "Пожалуйста, введите необходимую информацию."; -$a->strings["Please use a shorter name."] = "Пожалуйста, используйте более короткое имя."; -$a->strings["Name too short."] = "Имя слишком короткое."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Кажется, что это ваше неполное (Имя Фамилия) имя."; -$a->strings["Your email domain is not among those allowed on this site."] = "Домен вашего адреса электронной почты не относится к числу разрешенных на этом сайте."; -$a->strings["Not a valid email address."] = "Неверный адрес электронной почты."; -$a->strings["Cannot use that email."] = "Нельзя использовать этот Email."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = ""; -$a->strings["Nickname is already registered. Please choose another."] = "Такой ник уже зарегистрирован. Пожалуйста, выберите другой."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Ник уже зарегистрирован на этом сайте и не может быть изменён. Пожалуйста, выберите другой ник."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "СЕРЬЕЗНАЯ ОШИБКА: генерация ключей безопасности не удалась."; -$a->strings["An error occurred during registration. Please try again."] = "Ошибка при регистрации. Пожалуйста, попробуйте еще раз."; -$a->strings["default"] = "значение по умолчанию"; -$a->strings["An error occurred creating your default profile. Please try again."] = "Ошибка создания вашего профиля. Пожалуйста, попробуйте еще раз."; -$a->strings["Profile Photos"] = "Фотографии профиля"; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = ""; -$a->strings["Registration at %s"] = ""; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = ""; -$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = ""; -$a->strings["Registration details for %s"] = "Подробности регистрации для %s"; -$a->strings["You must be logged in to use addons. "] = "Вы должны войти в систему, чтобы использовать аддоны."; -$a->strings["Not Found"] = "Не найдено"; -$a->strings["Page not found."] = "Страница не найдена."; -$a->strings["Permission denied"] = "Доступ запрещен"; -$a->strings["toggle mobile"] = "мобильная версия"; -$a->strings["Theme settings updated."] = "Настройки темы обновлены."; -$a->strings["Site"] = "Сайт"; -$a->strings["Users"] = "Пользователи"; -$a->strings["Plugins"] = "Плагины"; -$a->strings["Themes"] = "Темы"; -$a->strings["Additional features"] = "Дополнительные возможности"; -$a->strings["DB updates"] = "Обновление БД"; -$a->strings["Inspect Queue"] = ""; -$a->strings["Federation Statistics"] = ""; -$a->strings["Logs"] = "Журналы"; -$a->strings["View Logs"] = "Просмотр логов"; -$a->strings["probe address"] = ""; -$a->strings["check webfinger"] = ""; -$a->strings["Plugin Features"] = "Возможности плагина"; -$a->strings["diagnostics"] = "Диагностика"; -$a->strings["User registrations waiting for confirmation"] = "Регистрации пользователей, ожидающие подтверждения"; -$a->strings["unknown"] = ""; -$a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = ""; -$a->strings["The Auto Discovered Contact Directory feature is not enabled, it will improve the data displayed here."] = ""; -$a->strings["Administration"] = "Администрация"; -$a->strings["Currently this node is aware of %d nodes from the following platforms:"] = ""; -$a->strings["ID"] = ""; -$a->strings["Recipient Name"] = ""; -$a->strings["Recipient Profile"] = ""; -$a->strings["Created"] = ""; -$a->strings["Last Tried"] = ""; -$a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = ""; -$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the convert_innodb.sql in the /util directory of your Friendica installation.
"] = ""; -$a->strings["You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB."] = ""; -$a->strings["Normal Account"] = "Обычный аккаунт"; -$a->strings["Soapbox Account"] = "Аккаунт Витрина"; -$a->strings["Community/Celebrity Account"] = "Аккаунт Сообщество / Знаменитость"; -$a->strings["Automatic Friend Account"] = "\"Автоматический друг\" Аккаунт"; -$a->strings["Blog Account"] = "Аккаунт блога"; -$a->strings["Private Forum"] = "Личный форум"; -$a->strings["Message queues"] = "Очереди сообщений"; -$a->strings["Summary"] = "Резюме"; -$a->strings["Registered users"] = "Зарегистрированные пользователи"; -$a->strings["Pending registrations"] = "Ожидающие регистрации"; -$a->strings["Version"] = "Версия"; -$a->strings["Active plugins"] = "Активные плагины"; -$a->strings["Can not parse base url. Must have at least ://"] = "Невозможно определить базовый URL. Он должен иметь следующий вид - ://"; -$a->strings["RINO2 needs mcrypt php extension to work."] = "Для функционирования RINO2 необходим пакет php5-mcrypt"; -$a->strings["Site settings updated."] = "Установки сайта обновлены."; -$a->strings["No special theme for mobile devices"] = "Нет специальной темы для мобильных устройств"; -$a->strings["No community page"] = ""; -$a->strings["Public postings from users of this site"] = ""; -$a->strings["Global community page"] = ""; -$a->strings["Never"] = "Никогда"; -$a->strings["At post arrival"] = ""; -$a->strings["Disabled"] = "Отключенный"; -$a->strings["Users, Global Contacts"] = ""; -$a->strings["Users, Global Contacts/fallback"] = ""; -$a->strings["One month"] = "Один месяц"; -$a->strings["Three months"] = "Три месяца"; -$a->strings["Half a year"] = "Пол года"; -$a->strings["One year"] = "Один год"; -$a->strings["Multi user instance"] = "Многопользовательский вид"; -$a->strings["Closed"] = "Закрыто"; -$a->strings["Requires approval"] = "Требуется подтверждение"; -$a->strings["Open"] = "Открыто"; -$a->strings["No SSL policy, links will track page SSL state"] = "Нет режима SSL, состояние SSL не будет отслеживаться"; -$a->strings["Force all links to use SSL"] = "Заставить все ссылки использовать SSL"; -$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Само-подписанный сертификат, использовать SSL только локально (не рекомендуется)"; -$a->strings["Save Settings"] = "Сохранить настройки"; -$a->strings["Registration"] = "Регистрация"; -$a->strings["File upload"] = "Загрузка файлов"; -$a->strings["Policies"] = "Политики"; -$a->strings["Auto Discovered Contact Directory"] = ""; -$a->strings["Performance"] = "Производительность"; -$a->strings["Worker"] = ""; -$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Переместить - ПРЕДУПРЕЖДЕНИЕ: расширеная функция. Может сделать этот сервер недоступным."; -$a->strings["Site name"] = "Название сайта"; -$a->strings["Host name"] = "Имя хоста"; -$a->strings["Sender Email"] = "Системный Email"; -$a->strings["The email address your server shall use to send notification emails from."] = "Адрес с которого будут приходить письма пользователям."; -$a->strings["Banner/Logo"] = "Баннер/Логотип"; -$a->strings["Shortcut icon"] = ""; -$a->strings["Link to an icon that will be used for browsers."] = ""; -$a->strings["Touch icon"] = ""; -$a->strings["Link to an icon that will be used for tablets and mobiles."] = ""; -$a->strings["Additional Info"] = "Дополнительная информация"; -$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = ""; -$a->strings["System language"] = "Системный язык"; -$a->strings["System theme"] = "Системная тема"; -$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Тема системы по умолчанию - может быть переопределена пользователем - изменить настройки темы"; -$a->strings["Mobile system theme"] = "Мобильная тема системы"; -$a->strings["Theme for mobile devices"] = "Тема для мобильных устройств"; -$a->strings["SSL link policy"] = "Политика SSL"; -$a->strings["Determines whether generated links should be forced to use SSL"] = "Ссылки должны быть вынуждены использовать SSL"; -$a->strings["Force SSL"] = "SSL принудительно"; -$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = ""; -$a->strings["Hide help entry from navigation menu"] = "Скрыть пункт \"помощь\" в меню навигации"; -$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Скрывает элемент меню для страницы справки из меню навигации. Вы все еще можете получить доступ к нему через вызов/помощь напрямую."; -$a->strings["Single user instance"] = "Однопользовательский режим"; -$a->strings["Make this instance multi-user or single-user for the named user"] = "Сделать этот экземпляр многопользовательским, или однопользовательским для названного пользователя"; -$a->strings["Maximum image size"] = "Максимальный размер изображения"; -$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Максимальный размер в байтах для загружаемых изображений. По умолчанию 0, что означает отсутствие ограничений."; -$a->strings["Maximum image length"] = "Максимальная длина картинки"; -$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Максимальная длина в пикселях для длинной стороны загруженных изображений. По умолчанию равно -1, что означает отсутствие ограничений."; -$a->strings["JPEG image quality"] = "Качество JPEG изображения"; -$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Загруженные изображения JPEG будут сохранены в этом качестве [0-100]. По умолчанию 100, что означает полное качество."; -$a->strings["Register policy"] = "Политика регистрация"; -$a->strings["Maximum Daily Registrations"] = "Максимальное число регистраций в день"; -$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."] = "Если регистрация разрешена, этот параметр устанавливает максимальное количество новых регистраций пользователей в день. Если регистрация закрыта, эта опция не имеет никакого эффекта."; -$a->strings["Register text"] = "Текст регистрации"; -$a->strings["Will be displayed prominently on the registration page."] = "Будет находиться на видном месте на странице регистрации."; -$a->strings["Accounts abandoned after x days"] = "Аккаунт считается после x дней не воспользованным"; -$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Не будет тратить ресурсы для опроса сайтов для бесхозных контактов. Введите 0 для отключения лимита времени."; -$a->strings["Allowed friend domains"] = "Разрешенные домены друзей"; -$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Разделенный запятыми список доменов, которые разрешены для установления связей. Групповые символы принимаются. Оставьте пустым для разрешения связи со всеми доменами."; -$a->strings["Allowed email domains"] = "Разрешенные почтовые домены"; -$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Разделенный запятыми список доменов, которые разрешены для установления связей. Групповые символы принимаются. Оставьте пустым для разрешения связи со всеми доменами."; -$a->strings["Block public"] = "Блокировать общественный доступ"; -$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Отметьте, чтобы заблокировать публичный доступ ко всем иным публичным персональным страницам на этом сайте, если вы не вошли на сайт."; -$a->strings["Force publish"] = "Принудительная публикация"; -$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Отметьте, чтобы принудительно заставить все профили на этом сайте, быть перечислеными в каталоге сайта."; -$a->strings["Global directory URL"] = ""; -$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = ""; -$a->strings["Allow threaded items"] = "Разрешить темы в обсуждении"; -$a->strings["Allow infinite level threading for items on this site."] = "Разрешить бесконечный уровень для тем на этом сайте."; -$a->strings["Private posts by default for new users"] = "Частные сообщения по умолчанию для новых пользователей"; -$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Установить права на создание постов по умолчанию для всех участников в дефолтной приватной группе, а не для публичных участников."; -$a->strings["Don't include post content in email notifications"] = "Не включать текст сообщения в email-оповещение."; -$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "Не включать содержание сообщения/комментария/личного сообщения и т.д.. в уведомления электронной почты, отправленных с сайта, в качестве меры конфиденциальности."; -$a->strings["Disallow public access to addons listed in the apps menu."] = "Запретить публичный доступ к аддонам, перечисленным в меню приложений."; -$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "При установке этого флажка, будут ограничены аддоны, перечисленные в меню приложений, только для участников."; -$a->strings["Don't embed private images in posts"] = "Не вставлять личные картинки в постах"; -$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = "Не заменяйте локально расположенные фотографии в постах на внедрённые копии изображений. Это означает, что контакты, которые получают сообщения, содержащие личные фотографии, будут вынуждены идентефицироваться и грузить каждое изображение, что может занять некоторое время."; -$a->strings["Allow Users to set remote_self"] = "Разрешить пользователям установить remote_self"; -$a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = ""; -$a->strings["Block multiple registrations"] = "Блокировать множественные регистрации"; -$a->strings["Disallow users to register additional accounts for use as pages."] = "Запретить пользователям регистрировать дополнительные аккаунты для использования в качестве страниц."; -$a->strings["OpenID support"] = "Поддержка OpenID"; -$a->strings["OpenID support for registration and logins."] = "OpenID поддержка для регистрации и входа в систему."; -$a->strings["Fullname check"] = "Проверка полного имени"; -$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Принудить пользователей регистрироваться с пробелом между именем и фамилией в строке \"полное имя\". Антиспам мера."; -$a->strings["UTF-8 Regular expressions"] = "UTF-8 регулярные выражения"; -$a->strings["Use PHP UTF8 regular expressions"] = "Используйте PHP UTF-8 для регулярных выражений"; -$a->strings["Community Page Style"] = ""; -$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = ""; -$a->strings["Posts per user on community page"] = ""; -$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = ""; -$a->strings["Enable OStatus support"] = "Включить поддержку OStatus"; -$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = ""; -$a->strings["OStatus conversation completion interval"] = ""; -$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "Как часто процессы должны проверять наличие новых записей в OStatus разговорах? Это может быть очень ресурсоёмкой задачей."; -$a->strings["Only import OStatus threads from our contacts"] = ""; -$a->strings["Normally we import every content from our OStatus contacts. With this option we only store threads that are started by a contact that is known on our system."] = ""; -$a->strings["OStatus support can only be enabled if threading is enabled."] = ""; -$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = ""; -$a->strings["Enable Diaspora support"] = "Включить поддержку Diaspora"; -$a->strings["Provide built-in Diaspora network compatibility."] = "Обеспечить встроенную поддержку сети Diaspora."; -$a->strings["Only allow Friendica contacts"] = "Позвольть только Friendica контакты"; -$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Все контакты должны использовать только Friendica протоколы. Все другие встроенные коммуникационные протоколы отключены."; -$a->strings["Verify SSL"] = "Проверка SSL"; -$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Если хотите, вы можете включить строгую проверку сертификатов. Это будет означать, что вы не сможете соединиться (вообще) с сайтами, имеющими само-подписанный SSL сертификат."; -$a->strings["Proxy user"] = "Прокси пользователь"; -$a->strings["Proxy URL"] = "Прокси URL"; -$a->strings["Network timeout"] = "Тайм-аут сети"; -$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Значение указывается в секундах. Установите 0 для снятия ограничений (не рекомендуется)."; -$a->strings["Maximum Load Average"] = "Средняя максимальная нагрузка"; -$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Максимальная нагрузка на систему перед приостановкой процессов доставки и опросов - по умолчанию 50."; -$a->strings["Maximum Load Average (Frontend)"] = ""; -$a->strings["Maximum system load before the frontend quits service - default 50."] = ""; -$a->strings["Maximum table size for optimization"] = ""; -$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = ""; -$a->strings["Minimum level of fragmentation"] = ""; -$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = ""; -$a->strings["Periodical check of global contacts"] = ""; -$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = ""; -$a->strings["Days between requery"] = ""; -$a->strings["Number of days after which a server is requeried for his contacts."] = ""; -$a->strings["Discover contacts from other servers"] = ""; -$a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = ""; -$a->strings["Timeframe for fetching global contacts"] = ""; -$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = ""; -$a->strings["Search the local directory"] = ""; -$a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = ""; -$a->strings["Publish server information"] = ""; -$a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details."] = ""; -$a->strings["Use MySQL full text engine"] = "Использовать систему полнотексного поиска MySQL"; -$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Активизирует систему полнотексного поиска. Ускоряет поиск - но может искать только при указании четырех и более символов."; -$a->strings["Suppress Tags"] = ""; -$a->strings["Suppress showing a list of hashtags at the end of the posting."] = ""; -$a->strings["Path to item cache"] = "Путь к элементам кэша"; -$a->strings["The item caches buffers generated bbcode and external images."] = ""; -$a->strings["Cache duration in seconds"] = "Время жизни кэша в секундах"; -$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = ""; -$a->strings["Maximum numbers of comments per post"] = ""; -$a->strings["How much comments should be shown for each post? Default value is 100."] = ""; -$a->strings["Temp path"] = "Временная папка"; -$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = ""; -$a->strings["Base path to installation"] = "Путь для установки"; -$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = ""; -$a->strings["Disable picture proxy"] = "Отключить проксирование картинок"; -$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "Прокси картинок увеличивает производительность и приватность. Он не должен использоваться на системах с очень маленькой мощностью."; -$a->strings["Only search in tags"] = "Искать только в тегах"; -$a->strings["On large systems the text search can slow down the system extremely."] = "На больших системах текстовый поиск может сильно замедлить систему."; -$a->strings["New base url"] = "Новый базовый url"; -$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = "Сменить адрес этого сервера. Отсылает сообщение о перемещении всем DFRN контактам всех пользователей."; -$a->strings["RINO Encryption"] = "RINO шифрование"; -$a->strings["Encryption layer between nodes."] = "Слой шифрования между узлами."; -$a->strings["Embedly API key"] = "Ключ API для Embedly"; -$a->strings["Embedly is used to fetch additional data for web pages. This is an optional parameter."] = ""; -$a->strings["Maximum number of parallel workers"] = "Максимальное число параллельно работающих worker'ов"; -$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = "Он shared-хостингах установите параметр в 2. На больших системах можно установить 10 или более. По-умолчанию 4."; -$a->strings["Don't use 'proc_open' with the worker"] = "Не использовать 'proc_open' с worker'ом"; -$a->strings["Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosters. If this is enabled you should increase the frequency of poller calls in your crontab."] = ""; -$a->strings["Enable fastlane"] = "Включить fastlane"; -$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = ""; -$a->strings["Enable frontend worker"] = "Включить frontend worker"; -$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = ""; -$a->strings["Update has been marked successful"] = "Обновление было успешно отмечено"; -$a->strings["Database structure update %s was successfully applied."] = "Обновление базы данных %s успешно применено."; -$a->strings["Executing of database structure update %s failed with error: %s"] = "Выполнение обновления базы данных %s завершено с ошибкой: %s"; -$a->strings["Executing %s failed with error: %s"] = "Выполнение %s завершено с ошибкой: %s"; -$a->strings["Update %s was successfully applied."] = "Обновление %s успешно применено."; -$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Процесс обновления %s не вернул статус. Не известно, выполнено, или нет."; -$a->strings["There was no additional update function %s that needed to be called."] = ""; -$a->strings["No failed updates."] = "Неудавшихся обновлений нет."; -$a->strings["Check database structure"] = "Проверить структуру базы данных"; -$a->strings["Failed Updates"] = "Неудавшиеся обновления"; -$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Эта цифра не включает обновления до 1139, которое не возвращает статус."; -$a->strings["Mark success (if update was manually applied)"] = "Отмечено успешно (если обновление было применено вручную)"; -$a->strings["Attempt to execute this update step automatically"] = "Попытаться выполнить этот шаг обновления автоматически"; -$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = ""; -$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = ""; -$a->strings["%s user blocked/unblocked"] = array( - 0 => "%s пользователь заблокирован/разблокирован", - 1 => "%s пользователей заблокировано/разблокировано", - 2 => "%s пользователей заблокировано/разблокировано", - 3 => "%s пользователей заблокировано/разблокировано", -); -$a->strings["%s user deleted"] = array( - 0 => "%s человек удален", - 1 => "%s чел. удалено", - 2 => "%s чел. удалено", - 3 => "%s чел. удалено", -); -$a->strings["User '%s' deleted"] = "Пользователь '%s' удален"; -$a->strings["User '%s' unblocked"] = "Пользователь '%s' разблокирован"; -$a->strings["User '%s' blocked"] = "Пользователь '%s' блокирован"; -$a->strings["Name"] = "Имя"; -$a->strings["Register date"] = "Дата регистрации"; -$a->strings["Last login"] = "Последний вход"; -$a->strings["Last item"] = "Последний пункт"; -$a->strings["Account"] = "Аккаунт"; -$a->strings["Add User"] = "Добавить пользователя"; -$a->strings["select all"] = "выбрать все"; -$a->strings["User registrations waiting for confirm"] = "Регистрации пользователей, ожидающие подтверждения"; -$a->strings["User waiting for permanent deletion"] = "Пользователь ожидает окончательного удаления"; -$a->strings["Request date"] = "Запрос даты"; -$a->strings["No registrations."] = "Нет регистраций."; -$a->strings["Note from the user"] = "Сообщение от пользователя"; -$a->strings["Approve"] = "Одобрить"; -$a->strings["Deny"] = "Отклонить"; -$a->strings["Block"] = "Заблокировать"; -$a->strings["Unblock"] = "Разблокировать"; -$a->strings["Site admin"] = "Админ сайта"; -$a->strings["Account expired"] = "Аккаунт просрочен"; -$a->strings["New User"] = "Новый пользователь"; -$a->strings["Deleted since"] = "Удалён с"; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Выбранные пользователи будут удалены!\\n\\nВсе, что эти пользователи написали на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?"; -$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Пользователь {0} будет удален!\\n\\nВсе, что этот пользователь написал на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?"; -$a->strings["Name of the new user."] = "Имя нового пользователя."; -$a->strings["Nickname"] = "Ник"; -$a->strings["Nickname of the new user."] = "Ник нового пользователя."; -$a->strings["Email address of the new user."] = "Email адрес нового пользователя."; -$a->strings["Plugin %s disabled."] = "Плагин %s отключен."; -$a->strings["Plugin %s enabled."] = "Плагин %s включен."; -$a->strings["Disable"] = "Отключить"; -$a->strings["Enable"] = "Включить"; -$a->strings["Toggle"] = "Переключить"; -$a->strings["Author: "] = "Автор:"; -$a->strings["Maintainer: "] = "Программа обслуживания: "; -$a->strings["Reload active plugins"] = "Перезагрузить активные плагины"; -$a->strings["There are currently no plugins available on your node. You can find the official plugin repository at %1\$s and might find other interesting plugins in the open plugin registry at %2\$s"] = ""; -$a->strings["No themes found."] = "Темы не найдены."; -$a->strings["Screenshot"] = "Скриншот"; -$a->strings["Reload active themes"] = "Перезагрузить активные темы"; -$a->strings["No themes found on the system. They should be paced in %1\$s"] = "Не найдено тем. Они должны быть расположены в %1\$s"; -$a->strings["[Experimental]"] = "[экспериментально]"; -$a->strings["[Unsupported]"] = "[Неподдерживаемое]"; -$a->strings["Log settings updated."] = "Настройки журнала обновлены."; -$a->strings["PHP log currently enabled."] = "Лог PHP включен."; -$a->strings["PHP log currently disabled."] = "Лог PHP выключен."; -$a->strings["Clear"] = "Очистить"; -$a->strings["Enable Debugging"] = "Включить отладку"; -$a->strings["Log file"] = "Лог-файл"; -$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Должно быть доступно для записи в веб-сервере. Относительно вашего Friendica каталога верхнего уровня."; -$a->strings["Log level"] = "Уровень лога"; -$a->strings["PHP logging"] = "PHP логирование"; -$a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = ""; -$a->strings["Off"] = "Выкл."; -$a->strings["On"] = "Вкл."; -$a->strings["Lock feature %s"] = "Заблокировать %s"; -$a->strings["Manage Additional Features"] = "Управление дополнительными возможностями"; $a->strings["No friends to display."] = "Нет друзей."; $a->strings["Authorize application connection"] = "Разрешить связь с приложением"; $a->strings["Return to your app and insert this Securty Code:"] = "Вернитесь в ваше приложение и задайте этот код:"; $a->strings["Please login to continue."] = "Пожалуйста, войдите для продолжения."; $a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Вы действительно хотите разрешить этому приложению доступ к своим постам и контактам, а также создавать новые записи от вашего имени?"; $a->strings["No"] = "Нет"; +$a->strings["You must be logged in to use addons. "] = "Вы должны войти в систему, чтобы использовать аддоны."; $a->strings["Applications"] = "Приложения"; $a->strings["No installed applications."] = "Нет установленных приложений."; $a->strings["Item not available."] = "Пункт не доступен."; $a->strings["Item was not found."] = "Пункт не был найден."; -$a->strings["Source (bbcode) text:"] = "Код (bbcode):"; -$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Код (Diaspora) для конвертации в BBcode:"; -$a->strings["Source input: "] = "Ввести код:"; -$a->strings["bb2html (raw HTML): "] = "bb2html (raw HTML): "; -$a->strings["bb2html: "] = "bb2html: "; -$a->strings["bb2html2bb: "] = "bb2html2bb: "; -$a->strings["bb2md: "] = "bb2md: "; -$a->strings["bb2md2html: "] = "bb2md2html: "; -$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; -$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; -$a->strings["Source input (Diaspora format): "] = "Ввод кода (формат Diaspora):"; -$a->strings["diaspora2bb: "] = "diaspora2bb: "; $a->strings["The post was created"] = "Пост был создан"; -$a->strings["Access to this profile has been restricted."] = "Доступ к этому профилю ограничен."; -$a->strings["View"] = "Смотреть"; -$a->strings["Previous"] = "Назад"; -$a->strings["Next"] = "Далее"; -$a->strings["list"] = "список"; -$a->strings["User not found"] = "Пользователь не найден"; -$a->strings["This calendar format is not supported"] = "Этот формат календарей не поддерживается"; -$a->strings["No exportable data found"] = "Нет данных для экспорта"; -$a->strings["calendar"] = "календарь"; $a->strings["No contacts in common."] = "Нет общих контактов."; $a->strings["Common Friends"] = "Общие друзья"; -$a->strings["Public access denied."] = "Свободный доступ закрыт."; -$a->strings["Not available."] = "Недоступно."; -$a->strings["No results."] = "Нет результатов."; $a->strings["%d contact edited."] = array( 0 => "", 1 => "", @@ -1119,14 +783,16 @@ $a->strings["Do you really want to delete this contact?"] = "Вы действи $a->strings["Contact has been removed."] = "Контакт удален."; $a->strings["You are mutual friends with %s"] = "У Вас взаимная дружба с %s"; $a->strings["You are sharing with %s"] = "Вы делитесь с %s"; -$a->strings["%s is sharing with you"] = "%s делитса с Вами"; -$a->strings["Private communications are not available for this contact."] = "Личные коммуникации недоступны для этого контакта."; +$a->strings["%s is sharing with you"] = "%s делится с Вами"; +$a->strings["Private communications are not available for this contact."] = "Приватные коммуникации недоступны для этого контакта."; +$a->strings["Never"] = "Никогда"; $a->strings["(Update was successful)"] = "(Обновление было успешно)"; $a->strings["(Update was not successful)"] = "(Обновление не удалось)"; $a->strings["Suggest friends"] = "Предложить друзей"; $a->strings["Network type: %s"] = "Сеть: %s"; $a->strings["Communications lost with this contact!"] = "Связь с контактом утеряна!"; $a->strings["Fetch further information for feeds"] = "Получить подробную информацию о фидах"; +$a->strings["Disabled"] = "Отключенный"; $a->strings["Fetch information"] = "Получить информацию"; $a->strings["Fetch information and keywords"] = "Получить информацию и ключевые слова"; $a->strings["Contact"] = "Контакт"; @@ -1143,6 +809,8 @@ $a->strings["View conversations"] = "Просмотр бесед"; $a->strings["Last update:"] = "Последнее обновление: "; $a->strings["Update public posts"] = "Обновить публичные сообщения"; $a->strings["Update now"] = "Обновить сейчас"; +$a->strings["Unblock"] = "Разблокировать"; +$a->strings["Block"] = "Заблокировать"; $a->strings["Unignore"] = "Не игнорировать"; $a->strings["Ignore"] = "Игнорировать"; $a->strings["Currently blocked"] = "В настоящее время заблокирован"; @@ -1247,6 +915,7 @@ $a->strings["Refetch contact data"] = "Обновить данные конта $a->strings["Remote Self"] = "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."] = "Пометить этот контакт как remote_self, что заставит Friendica постить сообщения от этого контакта."; +$a->strings["Name"] = "Имя"; $a->strings["Account Nickname"] = "Ник аккаунта"; $a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - перезаписывает Имя/Ник"; $a->strings["Account URL"] = "URL аккаунта"; @@ -1263,6 +932,220 @@ $a->strings["Potential Delegates"] = "Возможные доверенные л $a->strings["Remove"] = "Удалить"; $a->strings["Add"] = "Добавить"; $a->strings["No entries."] = "Нет записей."; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s добро пожаловать %2\$s"; +$a->strings["Public access denied."] = "Свободный доступ закрыт."; +$a->strings["Global Directory"] = "Глобальный каталог"; +$a->strings["Find on this site"] = "Найти на этом сайте"; +$a->strings["Results for:"] = "Результаты для:"; +$a->strings["Site Directory"] = "Каталог сайта"; +$a->strings["No entries (some entries may be hidden)."] = "Нет записей (некоторые записи могут быть скрыты)."; +$a->strings["Access to this profile has been restricted."] = "Доступ к этому профилю ограничен."; +$a->strings["Item has been removed."] = "Пункт был удален."; +$a->strings["Item not found"] = "Элемент не найден"; +$a->strings["Edit post"] = "Редактировать сообщение"; +$a->strings["Files"] = "Файлы"; +$a->strings["Not Found"] = "Не найдено"; +$a->strings["- select -"] = "- выбрать -"; +$a->strings["Friend suggestion sent."] = "Приглашение в друзья отправлено."; +$a->strings["Suggest Friends"] = "Предложить друзей"; +$a->strings["Suggest a friend for %s"] = "Предложить друга для %s."; +$a->strings["No profile"] = "Нет профиля"; +$a->strings["Help:"] = "Помощь:"; +$a->strings["Page not found."] = "Страница не найдена."; +$a->strings["Welcome to %s"] = "Добро пожаловать на %s!"; +$a->strings["Total invitation limit exceeded."] = "Превышен общий лимит приглашений."; +$a->strings["%s : Not a valid email address."] = "%s: Неверный адрес электронной почты."; +$a->strings["Please join us on Friendica"] = "Пожалуйста, присоединяйтесь к нам на Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Лимит приглашений превышен. Пожалуйста, свяжитесь с администратором сайта."; +$a->strings["%s : Message delivery failed."] = "%s: Доставка сообщения не удалась."; +$a->strings["%d message sent."] = array( + 0 => "%d сообщение отправлено.", + 1 => "%d сообщений отправлено.", + 2 => "%d сообщений отправлено.", + 3 => "%d сообщений отправлено.", +); +$a->strings["You have no more invitations available"] = "У вас нет больше приглашений"; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Посетите %s со списком общедоступных сайтов, к которым вы можете присоединиться. Все участники Friendica на других сайтах могут соединиться друг с другом, а также с участниками многих других социальных сетей."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Для одобрения этого приглашения, пожалуйста, посетите и зарегистрируйтесь на %s ,или любом другом публичном сервере Friendica"; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Сайты Friendica, подключившись между собой, могут создать сеть с повышенной безопасностью, которая принадлежит и управляется её членами. Они также могут подключаться ко многим традиционным социальным сетям. См. %s со списком альтернативных сайтов Friendica, к которым вы можете присоединиться."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Извините. Эта система в настоящее время не сконфигурирована для соединения с другими общественными сайтами и для приглашения участников."; +$a->strings["Send invitations"] = "Отправить приглашения"; +$a->strings["Enter email addresses, one per line:"] = "Введите адреса электронной почты, по одному в строке:"; +$a->strings["Your message:"] = "Ваше сообщение:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Приглашаем Вас присоединиться ко мне и другим близким друзьям на Friendica - помочь нам создать лучшую социальную сеть."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Вам нужно будет предоставить этот код приглашения: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "После того как вы зарегистрировались, пожалуйста, свяжитесь со мной через мою страницу профиля по адресу:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Для получения более подробной информации о проекте Friendica, пожалуйста, посетите http://friendica.com"; +$a->strings["Time Conversion"] = "История общения"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica предоставляет этот сервис для обмена событиями с другими сетями и друзьями, находящимися в неопределённых часовых поясах."; +$a->strings["UTC time: %s"] = "UTC время: %s"; +$a->strings["Current timezone: %s"] = "Ваш часовой пояс: %s"; +$a->strings["Converted localtime: %s"] = "Ваше изменённое время: %s"; +$a->strings["Please select your timezone:"] = "Выберите пожалуйста ваш часовой пояс:"; +$a->strings["Remote privacy information not available."] = "Личная информация удаленно недоступна."; +$a->strings["Visible to:"] = "Кто может видеть:"; +$a->strings["No valid account found."] = "Не найдено действительного аккаунта."; +$a->strings["Password reset request issued. Check your email."] = "Запрос на сброс пароля принят. Проверьте вашу электронную почту."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = ""; +$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = ""; +$a->strings["Password reset requested at %s"] = "Запрос на сброс пароля получен %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Запрос не может быть проверен. (Вы, возможно, ранее представляли его.) Попытка сброса пароля неудачная."; +$a->strings["Password Reset"] = "Сброс пароля"; +$a->strings["Your password has been reset as requested."] = "Ваш пароль был сброшен по требованию."; +$a->strings["Your new password is"] = "Ваш новый пароль"; +$a->strings["Save or copy your new password - and then"] = "Сохраните или скопируйте новый пароль - и затем"; +$a->strings["click here to login"] = "нажмите здесь для входа"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Ваш пароль может быть изменен на странице Настройки после успешного входа."; +$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = ""; +$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = ""; +$a->strings["Your password has been changed at %s"] = "Ваш пароль был изменен %s"; +$a->strings["Forgot your Password?"] = "Забыли пароль?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Введите адрес электронной почты и подтвердите, что вы хотите сбросить ваш пароль. Затем проверьте свою электронную почту для получения дальнейших инструкций."; +$a->strings["Nickname or Email: "] = "Ник или E-mail: "; +$a->strings["Reset"] = "Сброс"; +$a->strings["System down for maintenance"] = "Система закрыта на техническое обслуживание"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Нет соответствующих ключевых слов. Пожалуйста, добавьте ключевые слова для вашего профиля по умолчанию."; +$a->strings["is interested in:"] = "интересуется:"; +$a->strings["Profile Match"] = "Похожие профили"; +$a->strings["No matches"] = "Нет соответствий"; +$a->strings["Mood"] = "Настроение"; +$a->strings["Set your current mood and tell your friends"] = "Напишите о вашем настроении и расскажите своим друзьям"; +$a->strings["Welcome to Friendica"] = "Добро пожаловать в Friendica"; +$a->strings["New Member Checklist"] = "Новый контрольный список участников"; +$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Мы хотели бы предложить некоторые советы и ссылки, помогающие сделать вашу работу приятнее. Нажмите на любой элемент, чтобы посетить соответствующую страницу. Ссылка на эту страницу будет видна на вашей домашней странице в течение двух недель после первоначальной регистрации, а затем она исчезнет."; +$a->strings["Getting Started"] = "Начало работы"; +$a->strings["Friendica Walk-Through"] = "Friendica тур"; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "На вашей странице Быстрый старт - можно найти краткое введение в ваш профиль и сетевые закладки, создать новые связи, и найти группы, чтобы присоединиться к ним."; +$a->strings["Go to Your Settings"] = "Перейти к вашим настройкам"; +$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "На вашей странице Настройки - вы можете изменить свой первоначальный пароль. Также обратите внимание на ваш личный адрес. Он выглядит так же, как адрес электронной почты - и будет полезен для поиска друзей в свободной социальной сети."; +$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Просмотрите другие установки, в частности, параметры конфиденциальности. Неопубликованные пункты каталога с частными номерами телефона. В общем, вам, вероятно, следует опубликовать свою информацию - если все ваши друзья и потенциальные друзья точно знают, как вас найти."; +$a->strings["Upload Profile Photo"] = "Загрузить фото профиля"; +$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Загрузите фотографию профиля, если вы еще не сделали это. Исследования показали, что люди с реальными фотографиями имеют в десять раз больше шансов подружиться, чем люди, которые этого не делают."; +$a->strings["Edit Your Profile"] = "Редактировать профиль"; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Отредактируйте профиль по умолчанию на свой ​​вкус. Просмотрите установки для сокрытия вашего списка друзей и сокрытия профиля от неизвестных посетителей."; +$a->strings["Profile Keywords"] = "Ключевые слова профиля"; +$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Установите некоторые публичные ключевые слова для вашего профиля по умолчанию, которые описывают ваши интересы. Мы можем быть в состоянии найти других людей со схожими интересами и предложить дружбу."; +$a->strings["Connecting"] = "Подключение"; +$a->strings["Importing Emails"] = "Импортирование Email-ов"; +$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Введите информацию о доступе к вашему email на странице настроек вашего коннектора, если вы хотите импортировать, и общаться с друзьями или получать рассылки на ваш ящик электронной почты"; +$a->strings["Go to Your Contacts Page"] = "Перейти на страницу ваших контактов"; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "Ваша страница контактов - это ваш шлюз к управлению дружбой и общением с друзьями в других сетях. Обычно вы вводите свой ​​адрес или адрес сайта в диалог Добавить новый контакт."; +$a->strings["Go to Your Site's Directory"] = "Перейти в каталог вашего сайта"; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "На странице каталога вы можете найти других людей в этой сети или на других похожих сайтах. Ищите ссылки Подключить или Следовать на страницах их профилей. Укажите свой собственный адрес идентификации, если требуется."; +$a->strings["Finding New People"] = "Поиск людей"; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "На боковой панели страницы Контакты есть несколько инструментов, чтобы найти новых друзей. Мы можем искать по соответствию интересам, посмотреть людей по имени или интересам, и внести предложения на основе сетевых отношений. На новом сайте, предложения дружбы, как правило, начинают заполняться в течение 24 часов."; +$a->strings["Group Your Contacts"] = "Группа \"ваши контакты\""; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "После того, как вы найдете несколько друзей, организуйте их в группы частных бесед в боковой панели на странице Контакты, а затем вы можете взаимодействовать с каждой группой приватно или на вашей странице Сеть."; +$a->strings["Why Aren't My Posts Public?"] = "Почему мои посты не публичные?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica уважает вашу приватность. По умолчанию, ваши сообщения будут показываться только для людей, которых вы добавили в список друзей. Для получения дополнительной информации см. раздел справки по ссылке выше."; +$a->strings["Getting Help"] = "Получить помощь"; +$a->strings["Go to the Help Section"] = "Перейти в раздел справки"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Наши страницы помощи могут проконсультировать о подробностях и возможностях программы и ресурса."; +$a->strings["Contacts who are not members of a group"] = "Контакты, которые не являются членами группы"; +$a->strings["No more system notifications."] = "Системных уведомлений больше нет."; +$a->strings["System Notifications"] = "Уведомления системы"; +$a->strings["Post successful."] = "Успешно добавлено."; +$a->strings["Subscribing to OStatus contacts"] = "Подписка на OStatus-контакты"; +$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["Keep this window open until done."] = "Держать окно открытым до завершения."; +$a->strings["Not Extended"] = "Не расширенный"; +$a->strings["Poke/Prod"] = "Потыкать/Потолкать"; +$a->strings["poke, prod or do other things to somebody"] = "Потыкать, потолкать или сделать что-то еще с кем-то"; +$a->strings["Recipient"] = "Получатель"; +$a->strings["Choose what you wish to do to recipient"] = "Выберите действия для получателя"; +$a->strings["Make this post private"] = "Сделать эту запись личной"; +$a->strings["Image uploaded but image cropping failed."] = "Изображение загружено, но обрезка изображения не удалась."; +$a->strings["Image size reduction [%s] failed."] = "Уменьшение размера изображения [%s] не удалось."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Перезагрузите страницу с зажатой клавишей \"Shift\" для того, чтобы увидеть свое новое фото немедленно."; +$a->strings["Unable to process image"] = "Не удается обработать изображение"; +$a->strings["Image exceeds size limit of %s"] = "Изображение превышает лимит размера в %s"; +$a->strings["Unable to process image."] = "Невозможно обработать фото."; +$a->strings["Upload File:"] = "Загрузить файл:"; +$a->strings["Select a profile:"] = "Выбрать этот профиль:"; +$a->strings["Upload"] = "Загрузить"; +$a->strings["or"] = "или"; +$a->strings["skip this step"] = "пропустить этот шаг"; +$a->strings["select a photo from your photo albums"] = "выберите фото из ваших фотоальбомов"; +$a->strings["Crop Image"] = "Обрезать изображение"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Пожалуйста, настройте обрезку изображения для оптимального просмотра."; +$a->strings["Done Editing"] = "Редактирование выполнено"; +$a->strings["Image uploaded successfully."] = "Изображение загружено успешно."; +$a->strings["Image upload failed."] = "Загрузка фото неудачная."; +$a->strings["Permission denied"] = "Доступ запрещен"; +$a->strings["Invalid profile identifier."] = "Недопустимый идентификатор профиля."; +$a->strings["Profile Visibility Editor"] = "Редактор видимости профиля"; +$a->strings["Click on a contact to add or remove."] = "Нажмите на контакт, чтобы добавить или удалить."; +$a->strings["Visible To"] = "Видимый для"; +$a->strings["All Contacts (with secure profile access)"] = "Все контакты (с безопасным доступом к профилю)"; +$a->strings["Account approved."] = "Аккаунт утвержден."; +$a->strings["Registration revoked for %s"] = "Регистрация отменена для %s"; +$a->strings["Please login."] = "Пожалуйста, войдите с паролем."; +$a->strings["Remove My Account"] = "Удалить мой аккаунт"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, аккаунт восстановлению не подлежит."; +$a->strings["Please enter your password for verification:"] = "Пожалуйста, введите свой пароль для проверки:"; +$a->strings["Resubscribing to OStatus contacts"] = "Переподписаться на OStatus-контакты."; +$a->strings["Error"] = "Ошибка"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s подписан %2\$s's %3\$s"; +$a->strings["Do you really want to delete this suggestion?"] = "Вы действительно хотите удалить это предложение?"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Нет предложений. Если это новый сайт, пожалуйста, попробуйте снова через 24 часа."; +$a->strings["Ignore/Hide"] = "Проигнорировать/Скрыть"; +$a->strings["Tag removed"] = "Ключевое слово удалено"; +$a->strings["Remove Item Tag"] = "Удалить ключевое слово"; +$a->strings["Select a tag to remove: "] = "Выберите ключевое слово для удаления: "; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Этот сайт превысил допустимое количество ежедневных регистраций. Пожалуйста, повторите попытку завтра."; +$a->strings["Import"] = "Импорт"; +$a->strings["Move account"] = "Удалить аккаунт"; +$a->strings["You can import an account from another Friendica server."] = "Вы можете импортировать учетную запись с другого сервера Friendica."; +$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Вам нужно экспортировать свой ​​аккаунт со старого сервера и загрузить его сюда. Мы восстановим ваш ​​старый аккаунт здесь со всеми вашими контактами. Мы постараемся также сообщить друзьям, что вы переехали сюда."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Это экспериментальная функция. Мы не можем импортировать контакты из сети OStatus (GNU Social/ StatusNet) или из Diaspora"; +$a->strings["Account file"] = "Файл аккаунта"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Для экспорта аккаунта, перейдите в \"Настройки->Экспортировать ваши данные\" и выберите \"Экспорт аккаунта\""; +$a->strings["[Embedded content - reload page to view]"] = "[Встроенное содержание - перезагрузите страницу для просмотра]"; +$a->strings["No contacts."] = "Нет контактов."; +$a->strings["Access denied."] = "Доступ запрещен."; +$a->strings["Invalid request."] = "Неверный запрос."; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Извините, похоже что загружаемый файл превышает лимиты, разрешенные конфигурацией PHP"; +$a->strings["Or - did you try to upload an empty file?"] = "Или вы пытались загрузить пустой файл?"; +$a->strings["File exceeds size limit of %s"] = "Файл превышает лимит размера в %s"; +$a->strings["File upload failed."] = "Загрузка файла не удалась."; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Количество ежедневных сообщений на стене %s превышено. Сообщение отменено.."; +$a->strings["No recipient selected."] = "Не выбран получатель."; +$a->strings["Unable to check your home location."] = "Невозможно проверить местоположение."; +$a->strings["Message could not be sent."] = "Сообщение не может быть отправлено."; +$a->strings["Message collection failure."] = "Неудача коллекции сообщения."; +$a->strings["Message sent."] = "Сообщение отправлено."; +$a->strings["No recipient."] = "Без адресата."; +$a->strings["Send Private Message"] = "Отправить личное сообщение"; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Если Вы хотите ответить %s, пожалуйста, проверьте, позволяют ли настройки конфиденциальности на Вашем сайте принимать личные сообщения от неизвестных отправителей."; +$a->strings["To:"] = "Кому:"; +$a->strings["Subject:"] = "Тема:"; +$a->strings["Source (bbcode) text:"] = "Код (bbcode):"; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Код (Diaspora) для конвертации в BBcode:"; +$a->strings["Source input: "] = "Ввести код:"; +$a->strings["bb2html (raw HTML): "] = "bb2html (raw HTML): "; +$a->strings["bb2html: "] = "bb2html: "; +$a->strings["bb2html2bb: "] = "bb2html2bb: "; +$a->strings["bb2md: "] = "bb2md: "; +$a->strings["bb2md2html: "] = "bb2md2html: "; +$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; +$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; +$a->strings["Source input (Diaspora format): "] = "Ввод кода (формат Diaspora):"; +$a->strings["diaspora2bb: "] = "diaspora2bb: "; +$a->strings["View"] = "Смотреть"; +$a->strings["Previous"] = "Назад"; +$a->strings["Next"] = "Далее"; +$a->strings["list"] = "список"; +$a->strings["User not found"] = "Пользователь не найден"; +$a->strings["This calendar format is not supported"] = "Этот формат календарей не поддерживается"; +$a->strings["No exportable data found"] = "Нет данных для экспорта"; +$a->strings["calendar"] = "календарь"; +$a->strings["Not available."] = "Недоступно."; +$a->strings["No results."] = "Нет результатов."; $a->strings["Profile not found."] = "Профиль не найден."; $a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Это может иногда происходить, если контакт запрашивали двое людей, и он был уже одобрен."; $a->strings["Response from remote site was not understood."] = "Ответ от удаленного сайта не был понят."; @@ -1281,7 +1164,6 @@ $a->strings["The ID provided by your system is a duplicate on our system. It sho $a->strings["Unable to set your contact credentials on our system."] = "Не удалось установить ваши учетные данные контакта в нашей системе."; $a->strings["Unable to update your contact profile details on our system"] = "Не удается обновить ваши контактные детали профиля в нашей системе"; $a->strings["%1\$s has joined %2\$s"] = "%1\$s присоединился %2\$s"; -$a->strings["%1\$s welcomes %2\$s"] = "%1\$s добро пожаловать %2\$s"; $a->strings["This introduction has already been accepted."] = "Этот запрос был уже принят."; $a->strings["Profile location is not valid or does not contain profile information."] = "Местоположение профиля является недопустимым или не содержит информацию о профиле."; $a->strings["Warning: profile location has no identifiable owner name."] = "Внимание: местоположение профиля не имеет идентифицируемого имени владельца."; @@ -1323,17 +1205,8 @@ $a->strings["StatusNet/Federated Social Web"] = "StatusNet / Federated Social We $a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "Участники сети Diaspora: пожалуйста, не пользуйтесь этой формой. Вместо этого введите %s в строке поиска Diaspora"; $a->strings["Your Identity Address:"] = "Ваш идентификационный адрес:"; $a->strings["Submit Request"] = "Отправить запрос"; -$a->strings["Global Directory"] = "Глобальный каталог"; -$a->strings["Find on this site"] = "Найти на этом сайте"; -$a->strings["Results for:"] = "Результаты для:"; -$a->strings["Site Directory"] = "Каталог сайта"; -$a->strings["No entries (some entries may be hidden)."] = "Нет записей (некоторые записи могут быть скрыты)."; $a->strings["People Search - %s"] = "Поиск по людям - %s"; $a->strings["Forum Search - %s"] = "Поиск по форумам - %s"; -$a->strings["No matches"] = "Нет соответствий"; -$a->strings["Item has been removed."] = "Пункт был удален."; -$a->strings["Item not found"] = "Элемент не найден"; -$a->strings["Edit post"] = "Редактировать сообщение"; $a->strings["Event can not end before it has started."] = "Эвент не может закончится до старта."; $a->strings["Event title and start time are required."] = "Название мероприятия и время начала обязательны для заполнения."; $a->strings["Create New Event"] = "Создать новое мероприятие"; @@ -1347,8 +1220,8 @@ $a->strings["Adjust for viewer timezone"] = "Настройка часового $a->strings["Description:"] = "Описание:"; $a->strings["Title:"] = "Титул:"; $a->strings["Share this event"] = "Поделитесь этим мероприятием"; -$a->strings["Files"] = "Файлы"; -$a->strings["- select -"] = "- выбрать -"; +$a->strings["Failed to remove event"] = ""; +$a->strings["Event removed"] = ""; $a->strings["You already added this contact."] = "Вы уже добавили этот контакт."; $a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Поддержка Diaspora не включена. Контакт не может быть добавлен."; $a->strings["OStatus support is disabled. Contact can't be added."] = "Поддержка OStatus выключена. Контакт не может быть добавлен."; @@ -1362,9 +1235,8 @@ $a->strings["the bugtracker at github"] = "багтрекер на github"; $a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Предложения, похвала, пожертвования? Пишите на \"info\" на Friendica - точка com"; $a->strings["Installed plugins/addons/apps:"] = "Установленные плагины / добавки / приложения:"; $a->strings["No installed plugins/addons/apps"] = "Нет установленных плагинов / добавок / приложений"; -$a->strings["Friend suggestion sent."] = "Приглашение в друзья отправлено."; -$a->strings["Suggest Friends"] = "Предложить друзей"; -$a->strings["Suggest a friend for %s"] = "Предложить друга для %s."; +$a->strings["On this server the following remote servers are blocked."] = ""; +$a->strings["Reason for the block"] = ""; $a->strings["Group created."] = "Группа создана."; $a->strings["Could not create group."] = "Не удалось создать группу."; $a->strings["Group not found."] = "Группа не найдена."; @@ -1373,162 +1245,19 @@ $a->strings["Save Group"] = "Сохранить группу"; $a->strings["Create a group of contacts/friends."] = "Создать группу контактов / друзей."; $a->strings["Group removed."] = "Группа удалена."; $a->strings["Unable to remove group."] = "Не удается удалить группу."; +$a->strings["Delete Group"] = ""; $a->strings["Group Editor"] = "Редактор групп"; +$a->strings["Edit Group Name"] = ""; $a->strings["Members"] = "Участники"; -$a->strings["Click on a contact to add or remove."] = "Нажмите на контакт, чтобы добавить или удалить."; -$a->strings["No profile"] = "Нет профиля"; -$a->strings["Help:"] = "Помощь:"; -$a->strings["Welcome to %s"] = "Добро пожаловать на %s!"; -$a->strings["Friendica Communications Server - Setup"] = "Коммуникационный сервер Friendica - Доступ"; -$a->strings["Could not connect to database."] = "Не удалось подключиться к базе данных."; -$a->strings["Could not create table."] = "Не удалось создать таблицу."; -$a->strings["Your Friendica site database has been installed."] = "База данных сайта установлена."; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Вам может понадобиться импортировать файл \"database.sql\" вручную с помощью PhpMyAdmin или MySQL."; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Пожалуйста, смотрите файл \"INSTALL.txt\"."; -$a->strings["Database already in use."] = "База данных уже используется."; -$a->strings["System check"] = "Проверить систему"; -$a->strings["Check again"] = "Проверить еще раз"; -$a->strings["Database connection"] = "Подключение к базе данных"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Для того, чтобы установить Friendica, мы должны знать, как подключиться к базе данных."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Пожалуйста, свяжитесь с вашим хостинг-провайдером или администратором сайта, если у вас есть вопросы об этих параметрах."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Базы данных, указанная ниже, должна уже существовать. Если этого нет, пожалуйста, создайте ее перед продолжением."; -$a->strings["Database Server Name"] = "Имя сервера базы данных"; -$a->strings["Database Login Name"] = "Логин базы данных"; -$a->strings["Database Login Password"] = "Пароль базы данных"; -$a->strings["For security reasons the password must not be empty"] = "Для безопасности пароль не должен быть пустым"; -$a->strings["Database Name"] = "Имя базы данных"; -$a->strings["Site administrator email address"] = "Адрес электронной почты администратора сайта"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Ваш адрес электронной почты аккаунта должен соответствовать этому, чтобы использовать веб-панель администратора."; -$a->strings["Please select a default timezone for your website"] = "Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта"; -$a->strings["Site settings"] = "Настройки сайта"; -$a->strings["System Language:"] = "Язык системы:"; -$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Язык по-умолчанию для интерфейса Friendica и для отправки писем."; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Не удалось найти PATH веб-сервера в установках PHP."; -$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Setup the poller'"] = "У вас не установлена CLI версия PHP, вы не сможете выполнять cron-задания на сервере. Смотрите раздел 'Setup the poller' в документации."; -$a->strings["PHP executable path"] = "PHP executable path"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Введите полный путь к исполняемому файлу PHP. Вы можете оставить это поле пустым, чтобы продолжить установку."; -$a->strings["Command line PHP"] = "Command line PHP"; -$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Бинарник PHP не является CLI версией (может быть это cgi-fcgi версия)"; -$a->strings["Found PHP version: "] = "Найденная PHP версия: "; -$a->strings["PHP cli binary"] = "PHP cli binary"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Не включено \"register_argc_argv\" в установках PHP."; -$a->strings["This is required for message delivery to work."] = "Это необходимо для работы доставки сообщений."; -$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Ошибка: функция \"openssl_pkey_new\" в этой системе не в состоянии генерировать ключи шифрования"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Если вы работаете под Windows, см. \"http://www.php.net/manual/en/openssl.installation.php\"."; -$a->strings["Generate encryption keys"] = "Генерация шифрованых ключей"; -$a->strings["libCurl PHP module"] = "libCurl PHP модуль"; -$a->strings["GD graphics PHP module"] = "GD graphics PHP модуль"; -$a->strings["OpenSSL PHP module"] = "OpenSSL PHP модуль"; -$a->strings["mysqli PHP module"] = "mysqli PHP модуль"; -$a->strings["mb_string PHP module"] = "mb_string PHP модуль"; -$a->strings["mcrypt PHP module"] = "mcrypt PHP модуль"; -$a->strings["XML PHP module"] = "XML PHP модуль"; -$a->strings["iconv module"] = "Модуль iconv"; -$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Ошибка: необходим модуль веб-сервера Apache mod-rewrite, но он не установлен."; -$a->strings["Error: libCURL PHP module required but not installed."] = "Ошибка: необходим libCURL PHP модуль, но он не установлен."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Ошибка: необходим PHP модуль GD графики с поддержкой JPEG, но он не установлен."; -$a->strings["Error: openssl PHP module required but not installed."] = "Ошибка: необходим PHP модуль OpenSSL, но он не установлен."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Ошибка: необходим PHP модуль MySQLi, но он не установлен."; -$a->strings["Error: mb_string PHP module required but not installed."] = "Ошибка: необходим PHP модуль mb_string, но он не установлен."; -$a->strings["Error: mcrypt PHP module required but not installed."] = "Ошибка: необходим PHP модуль mcrypt, но он не установлен."; -$a->strings["Error: iconv PHP module required but not installed."] = "Ошибка: необходим PHP модуль iconv, но он не установлен."; -$a->strings["If you are using php_cli, please make sure that mcrypt module is enabled in its config file"] = "Если вы используете php_cli, то убедитесь, что модуль mcrypt подключен в файле конфигурации"; -$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = "Функция mcrypt_create_iv() не объявлена. Она необходима для шифрования RINO2."; -$a->strings["mcrypt_create_iv() function"] = "Функция mcrypt_create_iv()"; -$a->strings["Error, XML PHP module required but not installed."] = "Ошибка, необходим PHP модуль XML, но он не установлен"; -$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Веб-инсталлятору требуется создать файл с именем \". htconfig.php\" в верхней папке веб-сервера, но он не в состоянии это сделать."; -$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Это наиболее частые параметры разрешений, когда веб-сервер не может записать файлы в папке - даже если вы можете."; -$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "В конце этой процедуры, мы дадим вам текст, для сохранения в файле с именем .htconfig.php в корневой папке, где установлена Friendica."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "В качестве альтернативы вы можете пропустить эту процедуру и выполнить установку вручную. Пожалуйста, обратитесь к файлу \"INSTALL.txt\" для получения инструкций."; -$a->strings[".htconfig.php is writable"] = ".htconfig.php is writable"; -$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica использует механизм шаблонов Smarty3 для генерации веб-страниц. Smarty3 компилирует шаблоны в PHP для увеличения скорости загрузки."; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Для того чтобы хранить эти скомпилированные шаблоны, веб-сервер должен иметь доступ на запись для папки view/smarty3 в директории, где установлена Friendica."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Пожалуйста, убедитесь, что пользователь, под которым работает ваш веб-сервер (например www-data), имеет доступ на запись в этой папке."; -$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Примечание: в качестве меры безопасности, вы должны дать вебсерверу доступ на запись только в view/smarty3 - но не на сами файлы шаблонов (.tpl)., Которые содержатся в этой папке."; -$a->strings["view/smarty3 is writable"] = "view/smarty3 доступен для записи"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Url rewrite в .htaccess не работает. Проверьте конфигурацию вашего сервера.."; -$a->strings["Url rewrite is working"] = "Url rewrite работает"; -$a->strings["ImageMagick PHP extension is not installed"] = "Модуль PHP ImageMagick не установлен"; -$a->strings["ImageMagick PHP extension is installed"] = "Модуль PHP ImageMagick установлен"; -$a->strings["ImageMagick supports GIF"] = "ImageMagick поддерживает GIF"; -$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Файл конфигурации базы данных \".htconfig.php\" не могла быть записан. Пожалуйста, используйте приложенный текст, чтобы создать конфигурационный файл в корневом каталоге веб-сервера."; -$a->strings["

What next

"] = "

Что далее

"; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "ВАЖНО: Вам нужно будет [вручную] установить запланированное задание для регистратора."; -$a->strings["Total invitation limit exceeded."] = "Превышен общий лимит приглашений."; -$a->strings["%s : Not a valid email address."] = "%s: Неверный адрес электронной почты."; -$a->strings["Please join us on Friendica"] = "Пожалуйста, присоединяйтесь к нам на Friendica"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Лимит приглашений превышен. Пожалуйста, свяжитесь с администратором сайта."; -$a->strings["%s : Message delivery failed."] = "%s: Доставка сообщения не удалась."; -$a->strings["%d message sent."] = array( - 0 => "%d сообщение отправлено.", - 1 => "%d сообщений отправлено.", - 2 => "%d сообщений отправлено.", - 3 => "%d сообщений отправлено.", -); -$a->strings["You have no more invitations available"] = "У вас нет больше приглашений"; -$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Посетите %s со списком общедоступных сайтов, к которым вы можете присоединиться. Все участники Friendica на других сайтах могут соединиться друг с другом, а также с участниками многих других социальных сетей."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Для одобрения этого приглашения, пожалуйста, посетите и зарегистрируйтесь на %s ,или любом другом публичном сервере Friendica"; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Сайты Friendica, подключившись между собой, могут создать сеть с повышенной безопасностью, которая принадлежит и управляется её членами. Они также могут подключаться ко многим традиционным социальным сетям. См. %s со списком альтернативных сайтов Friendica, к которым вы можете присоединиться."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Извините. Эта система в настоящее время не сконфигурирована для соединения с другими общественными сайтами и для приглашения участников."; -$a->strings["Send invitations"] = "Отправить приглашения"; -$a->strings["Enter email addresses, one per line:"] = "Введите адреса электронной почты, по одному в строке:"; -$a->strings["Your message:"] = "Ваше сообщение:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Приглашаем Вас присоединиться ко мне и другим близким друзьям на Friendica - помочь нам создать лучшую социальную сеть."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Вам нужно будет предоставить этот код приглашения: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "После того как вы зарегистрировались, пожалуйста, свяжитесь со мной через мою страницу профиля по адресу:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Для получения более подробной информации о проекте Friendica, пожалуйста, посетите http://friendica.com"; -$a->strings["Unable to locate original post."] = "Не удалось найти оригинальный пост."; -$a->strings["Empty post discarded."] = "Пустое сообщение отбрасывается."; -$a->strings["System error. Post not saved."] = "Системная ошибка. Сообщение не сохранено."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Это сообщение было отправлено вам %s, участником социальной сети Friendica."; -$a->strings["You may visit them online at %s"] = "Вы можете посетить их в онлайне на %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Пожалуйста, свяжитесь с отправителем, ответив на это сообщение, если вы не хотите получать эти сообщения."; -$a->strings["%s posted an update."] = "%s отправил/а/ обновление."; -$a->strings["Time Conversion"] = "История общения"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica предоставляет этот сервис для обмена событиями с другими сетями и друзьями, находящимися в неопределённых часовых поясах."; -$a->strings["UTC time: %s"] = "UTC время: %s"; -$a->strings["Current timezone: %s"] = "Ваш часовой пояс: %s"; -$a->strings["Converted localtime: %s"] = "Ваше изменённое время: %s"; -$a->strings["Please select your timezone:"] = "Выберите пожалуйста ваш часовой пояс:"; -$a->strings["Remote privacy information not available."] = "Личная информация удаленно недоступна."; -$a->strings["Visible to:"] = "Кто может видеть:"; -$a->strings["No valid account found."] = "Не найдено действительного аккаунта."; -$a->strings["Password reset request issued. Check your email."] = "Запрос на сброс пароля принят. Проверьте вашу электронную почту."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = ""; -$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = ""; -$a->strings["Password reset requested at %s"] = "Запрос на сброс пароля получен %s"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Запрос не может быть проверен. (Вы, возможно, ранее представляли его.) Попытка сброса пароля неудачная."; -$a->strings["Your password has been reset as requested."] = "Ваш пароль был сброшен по требованию."; -$a->strings["Your new password is"] = "Ваш новый пароль"; -$a->strings["Save or copy your new password - and then"] = "Сохраните или скопируйте новый пароль - и затем"; -$a->strings["click here to login"] = "нажмите здесь для входа"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Ваш пароль может быть изменен на странице Настройки после успешного входа."; -$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = ""; -$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = ""; -$a->strings["Your password has been changed at %s"] = "Ваш пароль был изменен %s"; -$a->strings["Forgot your Password?"] = "Забыли пароль?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Введите адрес электронной почты и подтвердите, что вы хотите сбросить ваш пароль. Затем проверьте свою электронную почту для получения дальнейших инструкций."; -$a->strings["Reset"] = "Сброс"; -$a->strings["System down for maintenance"] = "Система закрыта на техническое обслуживание"; +$a->strings["Remove Contact"] = ""; +$a->strings["Add Contact"] = ""; $a->strings["Manage Identities and/or Pages"] = "Управление идентификацией и / или страницами"; $a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = ""; $a->strings["Select an identity to manage: "] = "Выберите идентификацию для управления: "; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Нет соответствующих ключевых слов. Пожалуйста, добавьте ключевые слова для вашего профиля по умолчанию."; -$a->strings["is interested in:"] = "интересуется:"; -$a->strings["Profile Match"] = "Похожие профили"; -$a->strings["No recipient selected."] = "Не выбран получатель."; $a->strings["Unable to locate contact information."] = "Не удалось найти контактную информацию."; -$a->strings["Message could not be sent."] = "Сообщение не может быть отправлено."; -$a->strings["Message collection failure."] = "Неудача коллекции сообщения."; -$a->strings["Message sent."] = "Сообщение отправлено."; $a->strings["Do you really want to delete this message?"] = "Вы действительно хотите удалить это сообщение?"; $a->strings["Message deleted."] = "Сообщение удалено."; $a->strings["Conversation removed."] = "Беседа удалена."; -$a->strings["Send Private Message"] = "Отправить личное сообщение"; -$a->strings["To:"] = "Кому:"; -$a->strings["Subject:"] = "Тема:"; $a->strings["No messages."] = "Нет сообщений."; $a->strings["Message not available."] = "Сообщение не доступно."; $a->strings["Delete message"] = "Удалить сообщение"; @@ -1545,8 +1274,6 @@ $a->strings["%d message"] = array( 2 => "%d сообщений", 3 => "%d сообщений", ); -$a->strings["Mood"] = "Настроение"; -$a->strings["Set your current mood and tell your friends"] = "Напишите о вашем настроении и расскажите своим друзьям"; $a->strings["Remove term"] = "Удалить элемент"; $a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array( 0 => "Внимание: в группе %s пользователь из сети, которая не поддерживает непубличные сообщения.", @@ -1562,83 +1289,14 @@ $a->strings["Sort by Comment Date"] = "Сортировать по дате ко $a->strings["Posted Order"] = "Лента записей"; $a->strings["Sort by Post Date"] = "Сортировать по дате отправки"; $a->strings["Posts that mention or involve you"] = "Посты которые упоминают вас или в которых вы участвуете"; -$a->strings["New"] = "Новый"; +$a->strings["New"] = "Новое"; $a->strings["Activity Stream - by date"] = "Лента активности - по дате"; $a->strings["Shared Links"] = "Ссылки, которыми поделились"; $a->strings["Interesting Links"] = "Интересные ссылки"; -$a->strings["Starred"] = "Помеченный"; +$a->strings["Starred"] = "Избранное"; $a->strings["Favourite Posts"] = "Избранные посты"; -$a->strings["Welcome to Friendica"] = "Добро пожаловать в Friendica"; -$a->strings["New Member Checklist"] = "Новый контрольный список участников"; -$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Мы хотели бы предложить некоторые советы и ссылки, помогающие сделать вашу работу приятнее. Нажмите на любой элемент, чтобы посетить соответствующую страницу. Ссылка на эту страницу будет видна на вашей домашней странице в течение двух недель после первоначальной регистрации, а затем она исчезнет."; -$a->strings["Getting Started"] = "Начало работы"; -$a->strings["Friendica Walk-Through"] = "Friendica тур"; -$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "На вашей странице Быстрый старт - можно найти краткое введение в ваш профиль и сетевые закладки, создать новые связи, и найти группы, чтобы присоединиться к ним."; -$a->strings["Go to Your Settings"] = "Перейти к вашим настройкам"; -$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "На вашей странице Настройки - вы можете изменить свой первоначальный пароль. Также обратите внимание на ваш личный адрес. Он выглядит так же, как адрес электронной почты - и будет полезен для поиска друзей в свободной социальной сети."; -$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Просмотрите другие установки, в частности, параметры конфиденциальности. Неопубликованные пункты каталога с частными номерами телефона. В общем, вам, вероятно, следует опубликовать свою информацию - если все ваши друзья и потенциальные друзья точно знают, как вас найти."; -$a->strings["Upload Profile Photo"] = "Загрузить фото профиля"; -$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Загрузите фотографию профиля, если вы еще не сделали это. Исследования показали, что люди с реальными фотографиями имеют в десять раз больше шансов подружиться, чем люди, которые этого не делают."; -$a->strings["Edit Your Profile"] = "Редактировать профиль"; -$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Отредактируйте профиль по умолчанию на свой ​​вкус. Просмотрите установки для сокрытия вашего списка друзей и сокрытия профиля от неизвестных посетителей."; -$a->strings["Profile Keywords"] = "Ключевые слова профиля"; -$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Установите некоторые публичные ключевые слова для вашего профиля по умолчанию, которые описывают ваши интересы. Мы можем быть в состоянии найти других людей со схожими интересами и предложить дружбу."; -$a->strings["Connecting"] = "Подключение"; -$a->strings["Importing Emails"] = "Импортирование Email-ов"; -$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Введите информацию о доступе к вашему email на странице настроек вашего коннектора, если вы хотите импортировать, и общаться с друзьями или получать рассылки на ваш ящик электронной почты"; -$a->strings["Go to Your Contacts Page"] = "Перейти на страницу ваших контактов"; -$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "Ваша страница контактов - это ваш шлюз к управлению дружбой и общением с друзьями в других сетях. Обычно вы вводите свой ​​адрес или адрес сайта в диалог Добавить новый контакт."; -$a->strings["Go to Your Site's Directory"] = "Перейти в каталог вашего сайта"; -$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "На странице каталога вы можете найти других людей в этой сети или на других похожих сайтах. Ищите ссылки Подключить или Следовать на страницах их профилей. Укажите свой собственный адрес идентификации, если требуется."; -$a->strings["Finding New People"] = "Поиск людей"; -$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "На боковой панели страницы Контакты есть несколько инструментов, чтобы найти новых друзей. Мы можем искать по соответствию интересам, посмотреть людей по имени или интересам, и внести предложения на основе сетевых отношений. На новом сайте, предложения дружбы, как правило, начинают заполняться в течение 24 часов."; -$a->strings["Group Your Contacts"] = "Группа \"ваши контакты\""; -$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "После того, как вы найдете несколько друзей, организуйте их в группы частных бесед в боковой панели на странице Контакты, а затем вы можете взаимодействовать с каждой группой приватно или на вашей странице Сеть."; -$a->strings["Why Aren't My Posts Public?"] = "Почему мои посты не публичные?"; -$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica уважает вашу приватность. По умолчанию, ваши сообщения будут показываться только для людей, которых вы добавили в список друзей. Для получения дополнительной информации см. раздел справки по ссылке выше."; -$a->strings["Getting Help"] = "Получить помощь"; -$a->strings["Go to the Help Section"] = "Перейти в раздел справки"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Наши страницы помощи могут проконсультировать о подробностях и возможностях программы и ресурса."; -$a->strings["Contacts who are not members of a group"] = "Контакты, которые не являются членами группы"; -$a->strings["Invalid request identifier."] = "Неверный идентификатор запроса."; -$a->strings["Discard"] = "Отказаться"; -$a->strings["Network Notifications"] = "Уведомления сети"; -$a->strings["System Notifications"] = "Уведомления системы"; -$a->strings["Personal Notifications"] = "Личные уведомления"; -$a->strings["Home Notifications"] = "Уведомления"; -$a->strings["Show Ignored Requests"] = "Показать проигнорированные запросы"; -$a->strings["Hide Ignored Requests"] = "Скрыть проигнорированные запросы"; -$a->strings["Notification type: "] = "Тип уведомления: "; -$a->strings["suggested by %s"] = "предложено юзером %s"; -$a->strings["Post a new friend activity"] = "Настроение"; -$a->strings["if applicable"] = "если требуется"; -$a->strings["Claims to be known to you: "] = "Утверждения, о которых должно быть вам известно: "; -$a->strings["yes"] = "да"; -$a->strings["no"] = "нет"; -$a->strings["Shall your connection be bidirectional or not?"] = "Должно ли ваше соединение быть двухсторонним или нет?"; -$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "Принимая %s как друга вы позволяете %s читать ему свои посты, а также будете получать оные от него."; -$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Принимая %s как подписчика вы позволяете читать ему свои посты, но вы не получите оных от него."; -$a->strings["Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Принимая %s как подписчика вы позволяете читать ему свои посты, но вы не получите оных от него."; -$a->strings["Friend"] = "Друг"; -$a->strings["Sharer"] = "Участник"; -$a->strings["Subscriber"] = "Подписант"; -$a->strings["No introductions."] = "Запросов нет."; -$a->strings["Show unread"] = "Показать непрочитанные"; -$a->strings["Show all"] = "Показать все"; -$a->strings["No more %s notifications."] = "Больше нет уведомлений о %s."; -$a->strings["No more system notifications."] = "Системных уведомлений больше нет."; -$a->strings["Post successful."] = "Успешно добавлено."; $a->strings["OpenID protocol error. No ID returned."] = "Ошибка протокола OpenID. Не возвращён ID."; $a->strings["Account not found and OpenID registration is not permitted on this site."] = "Аккаунт не найден и OpenID регистрация не допускается на этом сайте."; -$a->strings["Subscribing to OStatus contacts"] = "Подписка на OStatus-контакты"; -$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["Keep this window open until done."] = "Держать окно открытым до завершения."; -$a->strings["Not Extended"] = "Не расширенный"; $a->strings["Recent Photos"] = "Последние фото"; $a->strings["Upload New Photos"] = "Загрузить новые фото"; $a->strings["everybody"] = "каждый"; @@ -1650,10 +1308,7 @@ $a->strings["Delete Photo"] = "Удалить фото"; $a->strings["Do you really want to delete this photo?"] = "Вы действительно хотите удалить эту фотографию?"; $a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s отмечен/а/ в %2\$s by %3\$s"; $a->strings["a photo"] = "фото"; -$a->strings["Image exceeds size limit of %s"] = "Изображение превышает лимит размера в %s"; $a->strings["Image file is empty."] = "Файл изображения пуст."; -$a->strings["Unable to process image."] = "Невозможно обработать фото."; -$a->strings["Image upload failed."] = "Загрузка фото неудачная."; $a->strings["No photos selected"] = "Не выбрано фото."; $a->strings["Access to this item is restricted."] = "Доступ к этому пункту ограничен."; $a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Вы использовали %1$.2f мегабайт из %2$.2f возможных для хранения фотографий."; @@ -1688,29 +1343,8 @@ $a->strings["Private photo"] = "Личное фото"; $a->strings["Public photo"] = "Публичное фото"; $a->strings["Map"] = "Карта"; $a->strings["View Album"] = "Просмотреть альбом"; -$a->strings["{0} wants to be your friend"] = "{0} хочет стать Вашим другом"; -$a->strings["{0} sent you a message"] = "{0} отправил Вам сообщение"; -$a->strings["{0} requested registration"] = "{0} требуемая регистрация"; -$a->strings["Poke/Prod"] = "Потыкать/Потолкать"; -$a->strings["poke, prod or do other things to somebody"] = "Потыкать, потолкать или сделать что-то еще с кем-то"; -$a->strings["Recipient"] = "Получатель"; -$a->strings["Choose what you wish to do to recipient"] = "Выберите действия для получателя"; -$a->strings["Make this post private"] = "Сделать эту запись личной"; +$a->strings["Only logged in users are permitted to perform a probing."] = ""; $a->strings["Tips for New Members"] = "Советы для новых участников"; -$a->strings["Image uploaded but image cropping failed."] = "Изображение загружено, но обрезка изображения не удалась."; -$a->strings["Image size reduction [%s] failed."] = "Уменьшение размера изображения [%s] не удалось."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Перезагрузите страницу с зажатой клавишей \"Shift\" для того, чтобы увидеть свое новое фото немедленно."; -$a->strings["Unable to process image"] = "Не удается обработать изображение"; -$a->strings["Upload File:"] = "Загрузить файл:"; -$a->strings["Select a profile:"] = "Выбрать этот профиль:"; -$a->strings["Upload"] = "Загрузить"; -$a->strings["or"] = "или"; -$a->strings["skip this step"] = "пропустить этот шаг"; -$a->strings["select a photo from your photo albums"] = "выберите фото из ваших фотоальбомов"; -$a->strings["Crop Image"] = "Обрезать изображение"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Пожалуйста, настройте обрезку изображения для оптимального просмотра."; -$a->strings["Done Editing"] = "Редактирование выполнено"; -$a->strings["Image uploaded successfully."] = "Изображение загружено успешно."; $a->strings["Profile deleted."] = "Профиль удален."; $a->strings["Profile-"] = "Профиль-"; $a->strings["New profile created."] = "Новый профиль создан."; @@ -1784,16 +1418,11 @@ $a->strings["Work/employment"] = "Работа / занятость"; $a->strings["School/education"] = "Школа / образование"; $a->strings["Contact information and Social Networks"] = "Контактная информация и социальные сети"; $a->strings["Edit/Manage Profiles"] = "Редактировать профиль"; -$a->strings["Invalid profile identifier."] = "Недопустимый идентификатор профиля."; -$a->strings["Profile Visibility Editor"] = "Редактор видимости профиля"; -$a->strings["Visible To"] = "Видимый для"; -$a->strings["All Contacts (with secure profile access)"] = "Все контакты (с безопасным доступом к профилю)"; $a->strings["Registration successful. Please check your email for further instructions."] = "Регистрация успешна. Пожалуйста, проверьте свою электронную почту для получения дальнейших инструкций."; $a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Ошибка отправки письма. Вот ваши учетные данные:
логин: %s
пароль: %s

Вы сможете изменить пароль после входа."; $a->strings["Registration successful."] = "Регистрация успешна."; $a->strings["Your registration can not be processed."] = "Ваша регистрация не может быть обработана."; $a->strings["Your registration is pending approval by the site owner."] = "Ваша регистрация в ожидании одобрения владельцем сайта."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Этот сайт превысил допустимое количество ежедневных регистраций. Пожалуйста, повторите попытку завтра."; $a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Вы можете (по желанию), заполнить эту форму с помощью OpenID, поддерживая ваш OpenID и нажав клавишу \"Регистрация\"."; $a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Если вы не знакомы с OpenID, пожалуйста, оставьте это поле пустым и заполните остальные элементы."; $a->strings["Your OpenID (optional): "] = "Ваш OpenID (необязательно):"; @@ -1802,6 +1431,7 @@ $a->strings["Note for the admin"] = "Сообщение для админист $a->strings["Leave a message for the admin, why you want to join this node"] = "Сообщения для администратора сайта на тему \"почему я хочу присоединиться к вам\""; $a->strings["Membership on this site is by invitation only."] = "Членство на сайте только по приглашению."; $a->strings["Your invitation ID: "] = "ID вашего приглашения:"; +$a->strings["Registration"] = "Регистрация"; $a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Ваше полное имя (например, Иван Иванов):"; $a->strings["Your Email Address: "] = "Ваш адрес электронной почты: "; $a->strings["New Password:"] = "Новый пароль:"; @@ -1809,22 +1439,16 @@ $a->strings["Leave empty for an auto generated password."] = "Оставьте $a->strings["Confirm:"] = "Подтвердите:"; $a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Выбор псевдонима профиля. Он должен начинаться с буквы. Адрес вашего профиля на данном сайте будет в этом случае 'nickname@\$sitename'."; $a->strings["Choose a nickname: "] = "Выберите псевдоним: "; -$a->strings["Import"] = "Импорт"; $a->strings["Import your profile to this friendica instance"] = "Импорт своего профиля в этот экземпляр friendica"; -$a->strings["Account approved."] = "Аккаунт утвержден."; -$a->strings["Registration revoked for %s"] = "Регистрация отменена для %s"; -$a->strings["Please login."] = "Пожалуйста, войдите с паролем."; -$a->strings["Remove My Account"] = "Удалить мой аккаунт"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, аккаунт восстановлению не подлежит."; -$a->strings["Please enter your password for verification:"] = "Пожалуйста, введите свой пароль для проверки:"; -$a->strings["Resubscribing to OStatus contacts"] = "Переподписаться на OStatus-контакты."; -$a->strings["Error"] = "Ошибка"; $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["Items tagged with: %s"] = "Элементы с тегами: %s"; +$a->strings["Account"] = "Аккаунт"; +$a->strings["Additional features"] = "Дополнительные возможности"; $a->strings["Display"] = "Внешний вид"; $a->strings["Social Networks"] = "Социальные сети"; +$a->strings["Plugins"] = "Плагины"; $a->strings["Connected apps"] = "Подключенные приложения"; $a->strings["Export personal data"] = "Экспорт личных данных"; $a->strings["Remove account"] = "Удалить аккаунт"; @@ -1846,6 +1470,7 @@ $a->strings["Private forum has no privacy permissions. Using default privacy gro $a->strings["Private forum has no privacy permissions and no default privacy group."] = "Частный форум не имеет настроек приватности и не имеет групп приватности по умолчанию."; $a->strings["Settings updated."] = "Настройки обновлены."; $a->strings["Add application"] = "Добавить приложения"; +$a->strings["Save Settings"] = "Сохранить настройки"; $a->strings["Consumer Key"] = "Consumer Key"; $a->strings["Consumer Secret"] = "Consumer Secret"; $a->strings["Redirect"] = "Перенаправление"; @@ -1857,6 +1482,8 @@ $a->strings["No name"] = "Нет имени"; $a->strings["Remove authorization"] = "Удалить авторизацию"; $a->strings["No Plugin settings configured"] = "Нет сконфигурированных настроек плагина"; $a->strings["Plugin Settings"] = "Настройки плагина"; +$a->strings["Off"] = "Выкл."; +$a->strings["On"] = "Вкл."; $a->strings["Additional Features"] = "Дополнительные возможности"; $a->strings["General Social Media Settings"] = "Общие настройки социальных медиа"; $a->strings["Disable intelligent shortening"] = "Отключить умное сокращение"; @@ -1886,6 +1513,7 @@ $a->strings["Send public posts to all email contacts:"] = "Отправлять $a->strings["Action after import:"] = "Действие после импорта:"; $a->strings["Move to folder"] = "Переместить в папку"; $a->strings["Move to folder:"] = "Переместить в папку:"; +$a->strings["No special theme for mobile devices"] = "Нет специальной темы для мобильных устройств"; $a->strings["Display Settings"] = "Параметры дисплея"; $a->strings["Display Theme:"] = "Показать тему:"; $a->strings["Mobile Theme:"] = "Мобильная тема:"; @@ -1932,6 +1560,7 @@ $a->strings["Private forum - approved members only"] = "Приватный фо $a->strings["OpenID:"] = "OpenID:"; $a->strings["(Optional) Allow this OpenID to login to this account."] = "(Необязательно) Разрешить этому OpenID входить в этот аккаунт"; $a->strings["Publish your default profile in your local site directory?"] = "Публиковать ваш профиль по умолчанию в вашем локальном каталоге на сайте?"; +$a->strings["Your profile may be visible in public."] = ""; $a->strings["Publish your default profile in the global social directory?"] = "Публиковать ваш профиль по умолчанию в глобальном социальном каталоге?"; $a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Скрывать ваш список контактов/друзей от посетителей вашего профиля по умолчанию?"; $a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Если включено, то мы не сможем отправлять публичные сообщения в Diaspora или другую сеть."; @@ -1995,40 +1624,421 @@ $a->strings["Change the behaviour of this account for special situations"] = "И $a->strings["Relocate"] = "Перемещение"; $a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Если вы переместили эту анкету с другого сервера, и некоторые из ваших контактов не получили ваши обновления, попробуйте нажать эту кнопку."; $a->strings["Resend relocate message to contacts"] = "Отправить перемещённые сообщения контактам"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s подписан %2\$s's %3\$s"; -$a->strings["Do you really want to delete this suggestion?"] = "Вы действительно хотите удалить это предложение?"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Нет предложений. Если это новый сайт, пожалуйста, попробуйте снова через 24 часа."; -$a->strings["Ignore/Hide"] = "Проигнорировать/Скрыть"; -$a->strings["Tag removed"] = "Ключевое слово удалено"; -$a->strings["Remove Item Tag"] = "Удалить ключевое слово"; -$a->strings["Select a tag to remove: "] = "Выберите ключевое слово для удаления: "; $a->strings["Export account"] = "Экспорт аккаунта"; $a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Экспорт ваших регистрационных данные и контактов. Используйте, чтобы создать резервную копию вашего аккаунта и/или переместить его на другой сервер."; $a->strings["Export all"] = "Экспорт всего"; $a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Экспорт информации вашего аккаунта, контактов и всех ваших пунктов, как JSON. Может получиться очень большой файл и это может занять много времени. Используйте, чтобы создать полную резервную копию вашего аккаунта (фото не экспортируются)"; -$a->strings["Move account"] = "Удалить аккаунт"; -$a->strings["You can import an account from another Friendica server."] = "Вы можете импортировать учетную запись с другого сервера Friendica."; -$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Вам нужно экспортировать свой ​​аккаунт со старого сервера и загрузить его сюда. Мы восстановим ваш ​​старый аккаунт здесь со всеми вашими контактами. Мы постараемся также сообщить друзьям, что вы переехали сюда."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Это экспериментальная функция. Мы не можем импортировать контакты из сети OStatus (GNU Social/ StatusNet) или из Diaspora"; -$a->strings["Account file"] = "Файл аккаунта"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Для экспорта аккаунта, перейдите в \"Настройки->Экспортировать ваши данные\" и выберите \"Экспорт аккаунта\""; -$a->strings["[Embedded content - reload page to view]"] = "[Встроенное содержание - перезагрузите страницу для просмотра]"; $a->strings["Do you really want to delete this video?"] = "Вы действительно хотите удалить видео?"; $a->strings["Delete Video"] = "Удалить видео"; $a->strings["No videos selected"] = "Видео не выбрано"; $a->strings["Recent Videos"] = "Последние видео"; $a->strings["Upload New Videos"] = "Загрузить новые видео"; -$a->strings["No contacts."] = "Нет контактов."; -$a->strings["Access denied."] = "Доступ запрещен."; -$a->strings["Invalid request."] = "Неверный запрос."; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Извините, похоже что загружаемый файл превышает лимиты, разрешенные конфигурацией PHP"; -$a->strings["Or - did you try to upload an empty file?"] = "Или вы пытались загрузить пустой файл?"; -$a->strings["File exceeds size limit of %s"] = "Файл превышает лимит размера в %s"; -$a->strings["File upload failed."] = "Загрузка файла не удалась."; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Количество ежедневных сообщений на стене %s превышено. Сообщение отменено.."; -$a->strings["Unable to check your home location."] = "Невозможно проверить местоположение."; -$a->strings["No recipient."] = "Без адресата."; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Если Вы хотите ответить %s, пожалуйста, проверьте, позволяют ли настройки конфиденциальности на Вашем сайте принимать персональную почту от неизвестных отправителей."; +$a->strings["Friendica Communications Server - Setup"] = "Коммуникационный сервер Friendica - Доступ"; +$a->strings["Could not connect to database."] = "Не удалось подключиться к базе данных."; +$a->strings["Could not create table."] = "Не удалось создать таблицу."; +$a->strings["Your Friendica site database has been installed."] = "База данных сайта установлена."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Вам может понадобиться импортировать файл \"database.sql\" вручную с помощью PhpMyAdmin или MySQL."; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Пожалуйста, смотрите файл \"INSTALL.txt\"."; +$a->strings["Database already in use."] = "База данных уже используется."; +$a->strings["System check"] = "Проверить систему"; +$a->strings["Check again"] = "Проверить еще раз"; +$a->strings["Database connection"] = "Подключение к базе данных"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Для того, чтобы установить Friendica, мы должны знать, как подключиться к базе данных."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Пожалуйста, свяжитесь с вашим хостинг-провайдером или администратором сайта, если у вас есть вопросы об этих параметрах."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Базы данных, указанная ниже, должна уже существовать. Если этого нет, пожалуйста, создайте ее перед продолжением."; +$a->strings["Database Server Name"] = "Имя сервера базы данных"; +$a->strings["Database Login Name"] = "Логин базы данных"; +$a->strings["Database Login Password"] = "Пароль базы данных"; +$a->strings["For security reasons the password must not be empty"] = "Для безопасности пароль не должен быть пустым"; +$a->strings["Database Name"] = "Имя базы данных"; +$a->strings["Site administrator email address"] = "Адрес электронной почты администратора сайта"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Ваш адрес электронной почты аккаунта должен соответствовать этому, чтобы использовать веб-панель администратора."; +$a->strings["Please select a default timezone for your website"] = "Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта"; +$a->strings["Site settings"] = "Настройки сайта"; +$a->strings["System Language:"] = "Язык системы:"; +$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Язык по-умолчанию для интерфейса Friendica и для отправки писем."; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Не удалось найти PATH веб-сервера в установках PHP."; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run the background processing. See 'Setup the poller'"] = ""; +$a->strings["PHP executable path"] = "PHP executable path"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Введите полный путь к исполняемому файлу PHP. Вы можете оставить это поле пустым, чтобы продолжить установку."; +$a->strings["Command line PHP"] = "Command line PHP"; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Бинарник PHP не является CLI версией (может быть это cgi-fcgi версия)"; +$a->strings["Found PHP version: "] = "Найденная PHP версия: "; +$a->strings["PHP cli binary"] = "PHP cli binary"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Не включено \"register_argc_argv\" в установках PHP."; +$a->strings["This is required for message delivery to work."] = "Это необходимо для работы доставки сообщений."; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Ошибка: функция \"openssl_pkey_new\" в этой системе не в состоянии генерировать ключи шифрования"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Если вы работаете под Windows, см. \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Генерация шифрованых ключей"; +$a->strings["libCurl PHP module"] = "libCurl PHP модуль"; +$a->strings["GD graphics PHP module"] = "GD graphics PHP модуль"; +$a->strings["OpenSSL PHP module"] = "OpenSSL PHP модуль"; +$a->strings["PDO or MySQLi PHP module"] = ""; +$a->strings["mb_string PHP module"] = "mb_string PHP модуль"; +$a->strings["XML PHP module"] = "XML PHP модуль"; +$a->strings["iconv module"] = "Модуль iconv"; +$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Ошибка: необходим модуль веб-сервера Apache mod-rewrite, но он не установлен."; +$a->strings["Error: libCURL PHP module required but not installed."] = "Ошибка: необходим libCURL PHP модуль, но он не установлен."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Ошибка: необходим PHP модуль GD графики с поддержкой JPEG, но он не установлен."; +$a->strings["Error: openssl PHP module required but not installed."] = "Ошибка: необходим PHP модуль OpenSSL, но он не установлен."; +$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = ""; +$a->strings["Error: The MySQL driver for PDO is not installed."] = ""; +$a->strings["Error: mb_string PHP module required but not installed."] = "Ошибка: необходим PHP модуль mb_string, но он не установлен."; +$a->strings["Error: iconv PHP module required but not installed."] = "Ошибка: необходим PHP модуль iconv, но он не установлен."; +$a->strings["Error, XML PHP module required but not installed."] = "Ошибка, необходим PHP модуль XML, но он не установлен"; +$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Веб-инсталлятору требуется создать файл с именем \". htconfig.php\" в верхней папке веб-сервера, но он не в состоянии это сделать."; +$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Это наиболее частые параметры разрешений, когда веб-сервер не может записать файлы в папке - даже если вы можете."; +$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "В конце этой процедуры, мы дадим вам текст, для сохранения в файле с именем .htconfig.php в корневой папке, где установлена Friendica."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "В качестве альтернативы вы можете пропустить эту процедуру и выполнить установку вручную. Пожалуйста, обратитесь к файлу \"INSTALL.txt\" для получения инструкций."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php is writable"; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica использует механизм шаблонов Smarty3 для генерации веб-страниц. Smarty3 компилирует шаблоны в PHP для увеличения скорости загрузки."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Для того чтобы хранить эти скомпилированные шаблоны, веб-сервер должен иметь доступ на запись для папки view/smarty3 в директории, где установлена Friendica."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Пожалуйста, убедитесь, что пользователь, под которым работает ваш веб-сервер (например www-data), имеет доступ на запись в этой папке."; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Примечание: в качестве меры безопасности, вы должны дать вебсерверу доступ на запись только в view/smarty3 - но не на сами файлы шаблонов (.tpl)., Которые содержатся в этой папке."; +$a->strings["view/smarty3 is writable"] = "view/smarty3 доступен для записи"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Url rewrite в .htaccess не работает. Проверьте конфигурацию вашего сервера.."; +$a->strings["Url rewrite is working"] = "Url rewrite работает"; +$a->strings["ImageMagick PHP extension is not installed"] = "Модуль PHP ImageMagick не установлен"; +$a->strings["ImageMagick PHP extension is installed"] = "Модуль PHP ImageMagick установлен"; +$a->strings["ImageMagick supports GIF"] = "ImageMagick поддерживает GIF"; +$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Файл конфигурации базы данных \".htconfig.php\" не могла быть записан. Пожалуйста, используйте приложенный текст, чтобы создать конфигурационный файл в корневом каталоге веб-сервера."; +$a->strings["

What next

"] = "

Что далее

"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "ВАЖНО: Вам нужно будет [вручную] установить запланированное задание для регистратора."; +$a->strings["Unable to locate original post."] = "Не удалось найти оригинальный пост."; +$a->strings["Empty post discarded."] = "Пустое сообщение отбрасывается."; +$a->strings["System error. Post not saved."] = "Системная ошибка. Сообщение не сохранено."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Это сообщение было отправлено вам %s, участником социальной сети Friendica."; +$a->strings["You may visit them online at %s"] = "Вы можете посетить их в онлайне на %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Пожалуйста, свяжитесь с отправителем, ответив на это сообщение, если вы не хотите получать эти сообщения."; +$a->strings["%s posted an update."] = "%s отправил/а/ обновление."; +$a->strings["Invalid request identifier."] = "Неверный идентификатор запроса."; +$a->strings["Discard"] = "Отказаться"; +$a->strings["Network Notifications"] = "Уведомления сети"; +$a->strings["Personal Notifications"] = "Личные уведомления"; +$a->strings["Home Notifications"] = "Уведомления"; +$a->strings["Show Ignored Requests"] = "Показать проигнорированные запросы"; +$a->strings["Hide Ignored Requests"] = "Скрыть проигнорированные запросы"; +$a->strings["Notification type: "] = "Тип уведомления: "; +$a->strings["suggested by %s"] = "предложено юзером %s"; +$a->strings["Post a new friend activity"] = "Настроение"; +$a->strings["if applicable"] = "если требуется"; +$a->strings["Approve"] = "Одобрить"; +$a->strings["Claims to be known to you: "] = "Утверждения, о которых должно быть вам известно: "; +$a->strings["yes"] = "да"; +$a->strings["no"] = "нет"; +$a->strings["Shall your connection be bidirectional or not?"] = "Должно ли ваше соединение быть двухсторонним или нет?"; +$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "Принимая %s как друга вы позволяете %s читать ему свои посты, а также будете получать оные от него."; +$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Принимая %s как подписчика вы позволяете читать ему свои посты, но вы не получите оных от него."; +$a->strings["Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Принимая %s как подписчика вы позволяете читать ему свои посты, но вы не получите оных от него."; +$a->strings["Friend"] = "Друг"; +$a->strings["Sharer"] = "Участник"; +$a->strings["Subscriber"] = "Подписант"; +$a->strings["No introductions."] = "Запросов нет."; +$a->strings["Show unread"] = "Показать непрочитанные"; +$a->strings["Show all"] = "Показать все"; +$a->strings["No more %s notifications."] = "Больше нет уведомлений о %s."; +$a->strings["{0} wants to be your friend"] = "{0} хочет стать Вашим другом"; +$a->strings["{0} sent you a message"] = "{0} отправил Вам сообщение"; +$a->strings["{0} requested registration"] = "{0} требуемая регистрация"; +$a->strings["Theme settings updated."] = "Настройки темы обновлены."; +$a->strings["Site"] = "Сайт"; +$a->strings["Users"] = "Пользователи"; +$a->strings["Themes"] = "Темы"; +$a->strings["DB updates"] = "Обновление БД"; +$a->strings["Inspect Queue"] = ""; +$a->strings["Server Blocklist"] = ""; +$a->strings["Federation Statistics"] = ""; +$a->strings["Logs"] = "Журналы"; +$a->strings["View Logs"] = "Просмотр логов"; +$a->strings["probe address"] = ""; +$a->strings["check webfinger"] = ""; +$a->strings["Plugin Features"] = "Возможности плагина"; +$a->strings["diagnostics"] = "Диагностика"; +$a->strings["User registrations waiting for confirmation"] = "Регистрации пользователей, ожидающие подтверждения"; +$a->strings["The blocked domain"] = ""; +$a->strings["The reason why you blocked this domain."] = ""; +$a->strings["Delete domain"] = ""; +$a->strings["Check to delete this entry from the blocklist"] = ""; +$a->strings["Administration"] = "Администрация"; +$a->strings["This page can be used to define a black list of servers from the federated network that are not allowed to interact with your node. For all entered domains you should also give a reason why you have blocked the remote server."] = ""; +$a->strings["The list of blocked servers will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily."] = ""; +$a->strings["Add new entry to block list"] = ""; +$a->strings["Server Domain"] = ""; +$a->strings["The domain of the new server to add to the block list. Do not include the protocol."] = ""; +$a->strings["Block reason"] = ""; +$a->strings["Add Entry"] = ""; +$a->strings["Save changes to the blocklist"] = ""; +$a->strings["Current Entries in the Blocklist"] = ""; +$a->strings["Delete entry from blocklist"] = ""; +$a->strings["Delete entry from blocklist?"] = ""; +$a->strings["Server added to blocklist."] = ""; +$a->strings["Site blocklist updated."] = ""; +$a->strings["unknown"] = ""; +$a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = ""; +$a->strings["The Auto Discovered Contact Directory feature is not enabled, it will improve the data displayed here."] = ""; +$a->strings["Currently this node is aware of %d nodes from the following platforms:"] = ""; +$a->strings["ID"] = ""; +$a->strings["Recipient Name"] = ""; +$a->strings["Recipient Profile"] = ""; +$a->strings["Created"] = ""; +$a->strings["Last Tried"] = ""; +$a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = ""; +$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the command php include/dbstructure.php toinnodb of your Friendica installation for an automatic conversion.
"] = ""; +$a->strings["You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB."] = ""; +$a->strings["Normal Account"] = "Обычный аккаунт"; +$a->strings["Soapbox Account"] = "Аккаунт Витрина"; +$a->strings["Community/Celebrity Account"] = "Аккаунт Сообщество / Знаменитость"; +$a->strings["Automatic Friend Account"] = "\"Автоматический друг\" Аккаунт"; +$a->strings["Blog Account"] = "Аккаунт блога"; +$a->strings["Private Forum"] = "Личный форум"; +$a->strings["Message queues"] = "Очереди сообщений"; +$a->strings["Summary"] = "Резюме"; +$a->strings["Registered users"] = "Зарегистрированные пользователи"; +$a->strings["Pending registrations"] = "Ожидающие регистрации"; +$a->strings["Version"] = "Версия"; +$a->strings["Active plugins"] = "Активные плагины"; +$a->strings["Can not parse base url. Must have at least ://"] = "Невозможно определить базовый URL. Он должен иметь следующий вид - ://"; +$a->strings["Site settings updated."] = "Установки сайта обновлены."; +$a->strings["No community page"] = ""; +$a->strings["Public postings from users of this site"] = ""; +$a->strings["Global community page"] = ""; +$a->strings["At post arrival"] = ""; +$a->strings["Users, Global Contacts"] = ""; +$a->strings["Users, Global Contacts/fallback"] = ""; +$a->strings["One month"] = "Один месяц"; +$a->strings["Three months"] = "Три месяца"; +$a->strings["Half a year"] = "Пол года"; +$a->strings["One year"] = "Один год"; +$a->strings["Multi user instance"] = "Многопользовательский вид"; +$a->strings["Closed"] = "Закрыто"; +$a->strings["Requires approval"] = "Требуется подтверждение"; +$a->strings["Open"] = "Открыто"; +$a->strings["No SSL policy, links will track page SSL state"] = "Нет режима SSL, состояние SSL не будет отслеживаться"; +$a->strings["Force all links to use SSL"] = "Заставить все ссылки использовать SSL"; +$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Само-подписанный сертификат, использовать SSL только локально (не рекомендуется)"; +$a->strings["File upload"] = "Загрузка файлов"; +$a->strings["Policies"] = "Политики"; +$a->strings["Auto Discovered Contact Directory"] = ""; +$a->strings["Performance"] = "Производительность"; +$a->strings["Worker"] = ""; +$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Переместить - ПРЕДУПРЕЖДЕНИЕ: расширеная функция. Может сделать этот сервер недоступным."; +$a->strings["Site name"] = "Название сайта"; +$a->strings["Host name"] = "Имя хоста"; +$a->strings["Sender Email"] = "Системный Email"; +$a->strings["The email address your server shall use to send notification emails from."] = "Адрес с которого будут приходить письма пользователям."; +$a->strings["Banner/Logo"] = "Баннер/Логотип"; +$a->strings["Shortcut icon"] = ""; +$a->strings["Link to an icon that will be used for browsers."] = ""; +$a->strings["Touch icon"] = ""; +$a->strings["Link to an icon that will be used for tablets and mobiles."] = ""; +$a->strings["Additional Info"] = "Дополнительная информация"; +$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = ""; +$a->strings["System language"] = "Системный язык"; +$a->strings["System theme"] = "Системная тема"; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Тема системы по умолчанию - может быть переопределена пользователем - изменить настройки темы"; +$a->strings["Mobile system theme"] = "Мобильная тема системы"; +$a->strings["Theme for mobile devices"] = "Тема для мобильных устройств"; +$a->strings["SSL link policy"] = "Политика SSL"; +$a->strings["Determines whether generated links should be forced to use SSL"] = "Ссылки должны быть вынуждены использовать SSL"; +$a->strings["Force SSL"] = "SSL принудительно"; +$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = ""; +$a->strings["Hide help entry from navigation menu"] = "Скрыть пункт \"помощь\" в меню навигации"; +$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Скрывает элемент меню для страницы справки из меню навигации. Вы все еще можете получить доступ к нему через вызов/помощь напрямую."; +$a->strings["Single user instance"] = "Однопользовательский режим"; +$a->strings["Make this instance multi-user or single-user for the named user"] = "Сделать этот экземпляр многопользовательским, или однопользовательским для названного пользователя"; +$a->strings["Maximum image size"] = "Максимальный размер изображения"; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Максимальный размер в байтах для загружаемых изображений. По умолчанию 0, что означает отсутствие ограничений."; +$a->strings["Maximum image length"] = "Максимальная длина картинки"; +$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Максимальная длина в пикселях для длинной стороны загруженных изображений. По умолчанию равно -1, что означает отсутствие ограничений."; +$a->strings["JPEG image quality"] = "Качество JPEG изображения"; +$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Загруженные изображения JPEG будут сохранены в этом качестве [0-100]. По умолчанию 100, что означает полное качество."; +$a->strings["Register policy"] = "Политика регистрация"; +$a->strings["Maximum Daily Registrations"] = "Максимальное число регистраций в день"; +$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."] = "Если регистрация разрешена, этот параметр устанавливает максимальное количество новых регистраций пользователей в день. Если регистрация закрыта, эта опция не имеет никакого эффекта."; +$a->strings["Register text"] = "Текст регистрации"; +$a->strings["Will be displayed prominently on the registration page."] = "Будет находиться на видном месте на странице регистрации."; +$a->strings["Accounts abandoned after x days"] = "Аккаунт считается после x дней не воспользованным"; +$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Не будет тратить ресурсы для опроса сайтов для бесхозных контактов. Введите 0 для отключения лимита времени."; +$a->strings["Allowed friend domains"] = "Разрешенные домены друзей"; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Разделенный запятыми список доменов, которые разрешены для установления связей. Групповые символы принимаются. Оставьте пустым для разрешения связи со всеми доменами."; +$a->strings["Allowed email domains"] = "Разрешенные почтовые домены"; +$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Разделенный запятыми список доменов, которые разрешены для установления связей. Групповые символы принимаются. Оставьте пустым для разрешения связи со всеми доменами."; +$a->strings["Block public"] = "Блокировать общественный доступ"; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Отметьте, чтобы заблокировать публичный доступ ко всем иным публичным личным страницам на этом сайте, если вы не вошли на сайт."; +$a->strings["Force publish"] = "Принудительная публикация"; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Отметьте, чтобы принудительно заставить все профили на этом сайте, быть перечислеными в каталоге сайта."; +$a->strings["Global directory URL"] = ""; +$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = ""; +$a->strings["Allow threaded items"] = "Разрешить темы в обсуждении"; +$a->strings["Allow infinite level threading for items on this site."] = "Разрешить бесконечный уровень для тем на этом сайте."; +$a->strings["Private posts by default for new users"] = "Частные сообщения по умолчанию для новых пользователей"; +$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Установить права на создание постов по умолчанию для всех участников в дефолтной приватной группе, а не для публичных участников."; +$a->strings["Don't include post content in email notifications"] = "Не включать текст сообщения в email-оповещение."; +$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "Не включать содержание сообщения/комментария/личного сообщения и т.д.. в уведомления электронной почты, отправленных с сайта, в качестве меры конфиденциальности."; +$a->strings["Disallow public access to addons listed in the apps menu."] = "Запретить публичный доступ к аддонам, перечисленным в меню приложений."; +$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "При установке этого флажка, будут ограничены аддоны, перечисленные в меню приложений, только для участников."; +$a->strings["Don't embed private images in posts"] = "Не вставлять личные картинки в постах"; +$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = "Не заменяйте локально расположенные фотографии в постах на внедрённые копии изображений. Это означает, что контакты, которые получают сообщения, содержащие личные фотографии, будут вынуждены идентефицироваться и грузить каждое изображение, что может занять некоторое время."; +$a->strings["Allow Users to set remote_self"] = "Разрешить пользователям установить remote_self"; +$a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = ""; +$a->strings["Block multiple registrations"] = "Блокировать множественные регистрации"; +$a->strings["Disallow users to register additional accounts for use as pages."] = "Запретить пользователям регистрировать дополнительные аккаунты для использования в качестве страниц."; +$a->strings["OpenID support"] = "Поддержка OpenID"; +$a->strings["OpenID support for registration and logins."] = "OpenID поддержка для регистрации и входа в систему."; +$a->strings["Fullname check"] = "Проверка полного имени"; +$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Принудить пользователей регистрироваться с пробелом между именем и фамилией в строке \"полное имя\". Антиспам мера."; +$a->strings["Community Page Style"] = ""; +$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = ""; +$a->strings["Posts per user on community page"] = ""; +$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = ""; +$a->strings["Enable OStatus support"] = "Включить поддержку OStatus"; +$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = ""; +$a->strings["OStatus conversation completion interval"] = ""; +$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "Как часто процессы должны проверять наличие новых записей в OStatus разговорах? Это может быть очень ресурсоёмкой задачей."; +$a->strings["Only import OStatus threads from our contacts"] = ""; +$a->strings["Normally we import every content from our OStatus contacts. With this option we only store threads that are started by a contact that is known on our system."] = ""; +$a->strings["OStatus support can only be enabled if threading is enabled."] = ""; +$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = ""; +$a->strings["Enable Diaspora support"] = "Включить поддержку Diaspora"; +$a->strings["Provide built-in Diaspora network compatibility."] = "Обеспечить встроенную поддержку сети Diaspora."; +$a->strings["Only allow Friendica contacts"] = "Позвольть только Friendica контакты"; +$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Все контакты должны использовать только Friendica протоколы. Все другие встроенные коммуникационные протоколы отключены."; +$a->strings["Verify SSL"] = "Проверка SSL"; +$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Если хотите, вы можете включить строгую проверку сертификатов. Это будет означать, что вы не сможете соединиться (вообще) с сайтами, имеющими само-подписанный SSL сертификат."; +$a->strings["Proxy user"] = "Прокси пользователь"; +$a->strings["Proxy URL"] = "Прокси URL"; +$a->strings["Network timeout"] = "Тайм-аут сети"; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Значение указывается в секундах. Установите 0 для снятия ограничений (не рекомендуется)."; +$a->strings["Maximum Load Average"] = "Средняя максимальная нагрузка"; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Максимальная нагрузка на систему перед приостановкой процессов доставки и опросов - по умолчанию 50."; +$a->strings["Maximum Load Average (Frontend)"] = ""; +$a->strings["Maximum system load before the frontend quits service - default 50."] = ""; +$a->strings["Minimal Memory"] = ""; +$a->strings["Minimal free memory in MB for the poller. Needs access to /proc/meminfo - default 0 (deactivated)."] = ""; +$a->strings["Maximum table size for optimization"] = ""; +$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = ""; +$a->strings["Minimum level of fragmentation"] = ""; +$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = ""; +$a->strings["Periodical check of global contacts"] = ""; +$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = ""; +$a->strings["Days between requery"] = ""; +$a->strings["Number of days after which a server is requeried for his contacts."] = ""; +$a->strings["Discover contacts from other servers"] = ""; +$a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = ""; +$a->strings["Timeframe for fetching global contacts"] = ""; +$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = ""; +$a->strings["Search the local directory"] = ""; +$a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = ""; +$a->strings["Publish server information"] = ""; +$a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details."] = ""; +$a->strings["Suppress Tags"] = ""; +$a->strings["Suppress showing a list of hashtags at the end of the posting."] = ""; +$a->strings["Path to item cache"] = "Путь к элементам кэша"; +$a->strings["The item caches buffers generated bbcode and external images."] = ""; +$a->strings["Cache duration in seconds"] = "Время жизни кэша в секундах"; +$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = ""; +$a->strings["Maximum numbers of comments per post"] = ""; +$a->strings["How much comments should be shown for each post? Default value is 100."] = ""; +$a->strings["Temp path"] = "Временная папка"; +$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = ""; +$a->strings["Base path to installation"] = "Путь для установки"; +$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = ""; +$a->strings["Disable picture proxy"] = "Отключить проксирование картинок"; +$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "Прокси картинок увеличивает производительность и приватность. Он не должен использоваться на системах с очень маленькой мощностью."; +$a->strings["Only search in tags"] = "Искать только в тегах"; +$a->strings["On large systems the text search can slow down the system extremely."] = "На больших системах текстовый поиск может сильно замедлить систему."; +$a->strings["New base url"] = "Новый базовый url"; +$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = "Сменить адрес этого сервера. Отсылает сообщение о перемещении всем DFRN контактам всех пользователей."; +$a->strings["RINO Encryption"] = "RINO шифрование"; +$a->strings["Encryption layer between nodes."] = "Слой шифрования между узлами."; +$a->strings["Maximum number of parallel workers"] = "Максимальное число параллельно работающих worker'ов"; +$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = "Он shared-хостингах установите параметр в 2. На больших системах можно установить 10 или более. По-умолчанию 4."; +$a->strings["Don't use 'proc_open' with the worker"] = "Не использовать 'proc_open' с worker'ом"; +$a->strings["Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosters. If this is enabled you should increase the frequency of poller calls in your crontab."] = ""; +$a->strings["Enable fastlane"] = "Включить fastlane"; +$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = ""; +$a->strings["Enable frontend worker"] = "Включить frontend worker"; +$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = ""; +$a->strings["Update has been marked successful"] = "Обновление было успешно отмечено"; +$a->strings["Database structure update %s was successfully applied."] = "Обновление базы данных %s успешно применено."; +$a->strings["Executing of database structure update %s failed with error: %s"] = "Выполнение обновления базы данных %s завершено с ошибкой: %s"; +$a->strings["Executing %s failed with error: %s"] = "Выполнение %s завершено с ошибкой: %s"; +$a->strings["Update %s was successfully applied."] = "Обновление %s успешно применено."; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Процесс обновления %s не вернул статус. Не известно, выполнено, или нет."; +$a->strings["There was no additional update function %s that needed to be called."] = ""; +$a->strings["No failed updates."] = "Неудавшихся обновлений нет."; +$a->strings["Check database structure"] = "Проверить структуру базы данных"; +$a->strings["Failed Updates"] = "Неудавшиеся обновления"; +$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Эта цифра не включает обновления до 1139, которое не возвращает статус."; +$a->strings["Mark success (if update was manually applied)"] = "Отмечено успешно (если обновление было применено вручную)"; +$a->strings["Attempt to execute this update step automatically"] = "Попытаться выполнить этот шаг обновления автоматически"; +$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = ""; +$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = ""; +$a->strings["%s user blocked/unblocked"] = array( + 0 => "%s пользователь заблокирован/разблокирован", + 1 => "%s пользователей заблокировано/разблокировано", + 2 => "%s пользователей заблокировано/разблокировано", + 3 => "%s пользователей заблокировано/разблокировано", +); +$a->strings["%s user deleted"] = array( + 0 => "%s человек удален", + 1 => "%s чел. удалено", + 2 => "%s чел. удалено", + 3 => "%s чел. удалено", +); +$a->strings["User '%s' deleted"] = "Пользователь '%s' удален"; +$a->strings["User '%s' unblocked"] = "Пользователь '%s' разблокирован"; +$a->strings["User '%s' blocked"] = "Пользователь '%s' блокирован"; +$a->strings["Register date"] = "Дата регистрации"; +$a->strings["Last login"] = "Последний вход"; +$a->strings["Last item"] = "Последний пункт"; +$a->strings["Add User"] = "Добавить пользователя"; +$a->strings["select all"] = "выбрать все"; +$a->strings["User registrations waiting for confirm"] = "Регистрации пользователей, ожидающие подтверждения"; +$a->strings["User waiting for permanent deletion"] = "Пользователь ожидает окончательного удаления"; +$a->strings["Request date"] = "Запрос даты"; +$a->strings["No registrations."] = "Нет регистраций."; +$a->strings["Note from the user"] = "Сообщение от пользователя"; +$a->strings["Deny"] = "Отклонить"; +$a->strings["Site admin"] = "Админ сайта"; +$a->strings["Account expired"] = "Аккаунт просрочен"; +$a->strings["New User"] = "Новый пользователь"; +$a->strings["Deleted since"] = "Удалён с"; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Выбранные пользователи будут удалены!\\n\\nВсе, что эти пользователи написали на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?"; +$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Пользователь {0} будет удален!\\n\\nВсе, что этот пользователь написал на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?"; +$a->strings["Name of the new user."] = "Имя нового пользователя."; +$a->strings["Nickname"] = "Ник"; +$a->strings["Nickname of the new user."] = "Ник нового пользователя."; +$a->strings["Email address of the new user."] = "Email адрес нового пользователя."; +$a->strings["Plugin %s disabled."] = "Плагин %s отключен."; +$a->strings["Plugin %s enabled."] = "Плагин %s включен."; +$a->strings["Disable"] = "Отключить"; +$a->strings["Enable"] = "Включить"; +$a->strings["Toggle"] = "Переключить"; +$a->strings["Author: "] = "Автор:"; +$a->strings["Maintainer: "] = "Программа обслуживания: "; +$a->strings["Reload active plugins"] = "Перезагрузить активные плагины"; +$a->strings["There are currently no plugins available on your node. You can find the official plugin repository at %1\$s and might find other interesting plugins in the open plugin registry at %2\$s"] = ""; +$a->strings["No themes found."] = "Темы не найдены."; +$a->strings["Screenshot"] = "Скриншот"; +$a->strings["Reload active themes"] = "Перезагрузить активные темы"; +$a->strings["No themes found on the system. They should be paced in %1\$s"] = "Не найдено тем. Они должны быть расположены в %1\$s"; +$a->strings["[Experimental]"] = "[экспериментально]"; +$a->strings["[Unsupported]"] = "[Неподдерживаемое]"; +$a->strings["Log settings updated."] = "Настройки журнала обновлены."; +$a->strings["PHP log currently enabled."] = "Лог PHP включен."; +$a->strings["PHP log currently disabled."] = "Лог PHP выключен."; +$a->strings["Clear"] = "Очистить"; +$a->strings["Enable Debugging"] = "Включить отладку"; +$a->strings["Log file"] = "Лог-файл"; +$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Должно быть доступно для записи в веб-сервере. Относительно вашего Friendica каталога верхнего уровня."; +$a->strings["Log level"] = "Уровень лога"; +$a->strings["PHP logging"] = "PHP логирование"; +$a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = ""; +$a->strings["Lock feature %s"] = "Заблокировать %s"; +$a->strings["Manage Additional Features"] = "Управление дополнительными возможностями"; $a->strings["via"] = "через"; $a->strings["greenzero"] = "greenzero"; $a->strings["purplezero"] = "purplezero"; @@ -2073,3 +2083,16 @@ $a->strings["Find Friends"] = "Найти друзей"; $a->strings["Last users"] = "Последние пользователи"; $a->strings["Local Directory"] = "Локальный каталог"; $a->strings["Quick Start"] = "Быстрый запуск"; +$a->strings["toggle mobile"] = "мобильная версия"; +$a->strings["Delete this item?"] = "Удалить этот элемент?"; +$a->strings["show fewer"] = "показать меньше"; +$a->strings["Update %s failed. See error logs."] = "Обновление %s не удалось. Смотрите журнал ошибок."; +$a->strings["Create a New Account"] = "Создать новый аккаунт"; +$a->strings["Password: "] = "Пароль: "; +$a->strings["Remember me"] = "Запомнить"; +$a->strings["Or login using OpenID: "] = "Или зайти с OpenID: "; +$a->strings["Forgot your password?"] = "Забыли пароль?"; +$a->strings["Website Terms of Service"] = "Правила сайта"; +$a->strings["terms of service"] = "правила"; +$a->strings["Website Privacy Policy"] = "Политика конфиденциальности сервера"; +$a->strings["privacy policy"] = "политика конфиденциальности"; From c74f144f1508d93c695eddd1468df1532930298f Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sat, 27 May 2017 09:35:23 +0200 Subject: [PATCH 047/125] =?UTF-8?q?RU=20translations=20THX=20Frederico=20G?= =?UTF-8?q?on=C3=A7alves=20Guimar=C3=A3es?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- view/lang/pt-br/messages.po | 12053 +++++++++++++++++----------------- view/lang/pt-br/strings.php | 2764 ++++---- 2 files changed, 7486 insertions(+), 7331 deletions(-) diff --git a/view/lang/pt-br/messages.po b/view/lang/pt-br/messages.po index 2dfb52fc92..828cb58d7f 100644 --- a/view/lang/pt-br/messages.po +++ b/view/lang/pt-br/messages.po @@ -12,7 +12,7 @@ # Calango Jr , 2014 # Frederico Gonçalves Guimarães , 2011-2013 # Frederico Gonçalves Guimarães , 2011 -# Frederico Gonçalves Guimarães , 2011-2013 +# Frederico Gonçalves Guimarães , 2011-2013,2017 # Frederico Gonçalves Guimarães , 2012 # Frederico Gonçalves Guimarães , 2011 # FULL NAME , 2011 @@ -24,9 +24,9 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-08-09 18:10+0200\n" -"PO-Revision-Date: 2016-09-18 20:53+0000\n" -"Last-Translator: André Alves \n" +"POT-Creation-Date: 2017-05-03 07:08+0200\n" +"PO-Revision-Date: 2017-05-19 17:42+0000\n" +"Last-Translator: Frederico Gonçalves Guimarães \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/Friendica/friendica/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -34,103 +34,1018 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:698 -msgid "Miscellaneous" -msgstr "Miscelânea" +#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1093 +#: view/theme/vier/theme.php:254 +msgid "Forums" +msgstr "Fóruns" -#: include/datetime.php:183 include/identity.php:627 -msgid "Birthday:" -msgstr "Aniversário:" +#: include/ForumManager.php:116 view/theme/vier/theme.php:256 +msgid "External link to forum" +msgstr "Link externo para fórum" -#: include/datetime.php:185 mod/profiles.php:721 -msgid "Age: " -msgstr "Idade: " +#: include/ForumManager.php:119 include/contact_widgets.php:269 +#: include/items.php:2450 mod/content.php:624 object/Item.php:420 +#: view/theme/vier/theme.php:259 boot.php:1000 +msgid "show more" +msgstr "exibir mais" -#: include/datetime.php:187 -msgid "YYYY-MM-DD or MM-DD" -msgstr "AAAA-MM-DD ou MM-DD" +#: include/NotificationsManager.php:153 +msgid "System" +msgstr "Sistema" -#: include/datetime.php:341 -msgid "never" -msgstr "nunca" +#: include/NotificationsManager.php:160 include/nav.php:158 mod/admin.php:517 +#: view/theme/frio/theme.php:253 +msgid "Network" +msgstr "Rede" -#: include/datetime.php:347 -msgid "less than a second ago" -msgstr "menos de um segundo atrás" +#: include/NotificationsManager.php:167 mod/network.php:832 +#: mod/profiles.php:696 +msgid "Personal" +msgstr "Pessoal" -#: include/datetime.php:357 -msgid "year" -msgstr "ano" +#: include/NotificationsManager.php:174 include/nav.php:105 +#: include/nav.php:161 +msgid "Home" +msgstr "Pessoal" -#: include/datetime.php:357 -msgid "years" -msgstr "anos" +#: include/NotificationsManager.php:181 include/nav.php:166 +msgid "Introductions" +msgstr "Apresentações" -#: include/datetime.php:358 include/event.php:480 mod/cal.php:287 -#: mod/events.php:389 -msgid "month" -msgstr "mês" - -#: include/datetime.php:358 -msgid "months" -msgstr "meses" - -#: include/datetime.php:359 include/event.php:481 mod/cal.php:288 -#: mod/events.php:390 -msgid "week" -msgstr "semana" - -#: include/datetime.php:359 -msgid "weeks" -msgstr "semanas" - -#: include/datetime.php:360 include/event.php:482 mod/cal.php:289 -#: mod/events.php:391 -msgid "day" -msgstr "dia" - -#: include/datetime.php:360 -msgid "days" -msgstr "dias" - -#: include/datetime.php:361 -msgid "hour" -msgstr "hora" - -#: include/datetime.php:361 -msgid "hours" -msgstr "horas" - -#: include/datetime.php:362 -msgid "minute" -msgstr "minuto" - -#: include/datetime.php:362 -msgid "minutes" -msgstr "minutos" - -#: include/datetime.php:363 -msgid "second" -msgstr "segundo" - -#: include/datetime.php:363 -msgid "seconds" -msgstr "segundos" - -#: include/datetime.php:372 +#: include/NotificationsManager.php:239 include/NotificationsManager.php:251 #, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s atrás" +msgid "%s commented on %s's post" +msgstr "%s comentou a publicação de %s" -#: include/datetime.php:578 +#: include/NotificationsManager.php:250 #, php-format -msgid "%s's birthday" -msgstr "aniversário de %s" +msgid "%s created a new post" +msgstr "%s criou uma nova publicação" -#: include/datetime.php:579 include/dfrn.php:1111 +#: include/NotificationsManager.php:265 #, php-format -msgid "Happy Birthday %s" -msgstr "Feliz aniversário, %s" +msgid "%s liked %s's post" +msgstr "%s gostou da publicação de %s" + +#: include/NotificationsManager.php:278 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s desgostou da publicação de %s" + +#: include/NotificationsManager.php:291 +#, php-format +msgid "%s is attending %s's event" +msgstr "%s comparecerá ao evento de %s" + +#: include/NotificationsManager.php:304 +#, php-format +msgid "%s is not attending %s's event" +msgstr "%s não comparecerá ao evento de %s" + +#: include/NotificationsManager.php:317 +#, php-format +msgid "%s may attend %s's event" +msgstr "%s talvez compareça ao evento de %s" + +#: include/NotificationsManager.php:334 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s agora é amigo de %s" + +#: include/NotificationsManager.php:770 +msgid "Friend Suggestion" +msgstr "Sugestão de amizade" + +#: include/NotificationsManager.php:803 +msgid "Friend/Connect Request" +msgstr "Solicitação de amizade/conexão" + +#: include/NotificationsManager.php:803 +msgid "New Follower" +msgstr "Novo acompanhante" + +#: include/Photo.php:1038 include/Photo.php:1054 include/Photo.php:1062 +#: include/Photo.php:1087 include/message.php:146 mod/wall_upload.php:249 +#: mod/item.php:467 +msgid "Wall Photos" +msgstr "Fotos do mural" + +#: include/delivery.php:427 +msgid "(no subject)" +msgstr "(sem assunto)" + +#: include/delivery.php:439 include/enotify.php:43 +msgid "noreply" +msgstr "naoresponda" + +#: include/like.php:27 include/conversation.php:153 include/diaspora.php:1576 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s gosta de %3$s de %2$s" + +#: include/like.php:31 include/like.php:36 include/conversation.php:156 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s não gosta de %3$s de %2$s" + +#: include/like.php:41 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%1$s vai a %3$s de %2$s" + +#: include/like.php:46 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%1$s não vai a %3$s de %2$s" + +#: include/like.php:51 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%1$s está pensando em ir a %3$s de %2$s" + +#: include/like.php:178 include/conversation.php:141 +#: include/conversation.php:293 include/text.php:1872 mod/subthread.php:88 +#: mod/tagger.php:62 +msgid "photo" +msgstr "foto" + +#: include/like.php:178 include/conversation.php:136 +#: include/conversation.php:146 include/conversation.php:288 +#: include/conversation.php:297 include/diaspora.php:1580 mod/subthread.php:88 +#: mod/tagger.php:62 +msgid "status" +msgstr "status" + +#: include/like.php:180 include/conversation.php:133 +#: include/conversation.php:285 include/text.php:1870 +msgid "event" +msgstr "evento" + +#: include/message.php:15 include/message.php:169 +msgid "[no subject]" +msgstr "[sem assunto]" + +#: include/nav.php:35 mod/navigation.php:19 +msgid "Nothing new here" +msgstr "Nada de novo aqui" + +#: include/nav.php:39 mod/navigation.php:23 +msgid "Clear notifications" +msgstr "Descartar notificações" + +#: include/nav.php:40 include/text.php:1083 +msgid "@name, !forum, #tags, content" +msgstr "" + +#: include/nav.php:78 view/theme/frio/theme.php:243 boot.php:1867 +msgid "Logout" +msgstr "Sair" + +#: include/nav.php:78 view/theme/frio/theme.php:243 +msgid "End this session" +msgstr "Terminar esta sessão" + +#: include/nav.php:81 include/identity.php:769 mod/contacts.php:645 +#: mod/contacts.php:841 view/theme/frio/theme.php:246 +msgid "Status" +msgstr "Status" + +#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:246 +msgid "Your posts and conversations" +msgstr "Suas publicações e conversas" + +#: include/nav.php:82 include/identity.php:622 include/identity.php:744 +#: include/identity.php:777 mod/contacts.php:647 mod/contacts.php:849 +#: mod/newmember.php:32 mod/profperm.php:105 view/theme/frio/theme.php:247 +msgid "Profile" +msgstr "Perfil " + +#: include/nav.php:82 view/theme/frio/theme.php:247 +msgid "Your profile page" +msgstr "Sua página de perfil" + +#: include/nav.php:83 include/identity.php:785 mod/fbrowser.php:31 +#: view/theme/frio/theme.php:248 +msgid "Photos" +msgstr "Fotos" + +#: include/nav.php:83 view/theme/frio/theme.php:248 +msgid "Your photos" +msgstr "Suas fotos" + +#: include/nav.php:84 include/identity.php:793 include/identity.php:796 +#: view/theme/frio/theme.php:249 +msgid "Videos" +msgstr "Vídeos" + +#: include/nav.php:84 view/theme/frio/theme.php:249 +msgid "Your videos" +msgstr "Seus vídeos" + +#: include/nav.php:85 include/nav.php:149 include/identity.php:805 +#: include/identity.php:816 mod/cal.php:270 mod/events.php:374 +#: view/theme/frio/theme.php:250 view/theme/frio/theme.php:254 +msgid "Events" +msgstr "Eventos" + +#: include/nav.php:85 view/theme/frio/theme.php:250 +msgid "Your events" +msgstr "Seus eventos" + +#: include/nav.php:86 +msgid "Personal notes" +msgstr "Suas anotações pessoais" + +#: include/nav.php:86 +msgid "Your personal notes" +msgstr "Suas anotações pessoais" + +#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1868 +msgid "Login" +msgstr "Entrar" + +#: include/nav.php:95 +msgid "Sign in" +msgstr "Entrar" + +#: include/nav.php:105 +msgid "Home Page" +msgstr "Página pessoal" + +#: include/nav.php:109 mod/register.php:289 boot.php:1844 +msgid "Register" +msgstr "Registrar" + +#: include/nav.php:109 +msgid "Create an account" +msgstr "Criar uma conta" + +#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:297 +msgid "Help" +msgstr "Ajuda" + +#: include/nav.php:115 +msgid "Help and documentation" +msgstr "Ajuda e documentação" + +#: include/nav.php:119 +msgid "Apps" +msgstr "Aplicativos" + +#: include/nav.php:119 +msgid "Addon applications, utilities, games" +msgstr "Complementos, utilitários, jogos" + +#: include/nav.php:123 include/text.php:1080 mod/search.php:149 +msgid "Search" +msgstr "Pesquisar" + +#: include/nav.php:123 +msgid "Search site content" +msgstr "Pesquisar conteúdo no site" + +#: include/nav.php:126 include/text.php:1088 +msgid "Full Text" +msgstr "" + +#: include/nav.php:127 include/text.php:1089 +msgid "Tags" +msgstr "" + +#: include/nav.php:128 include/nav.php:192 include/identity.php:838 +#: include/identity.php:841 include/text.php:1090 mod/contacts.php:800 +#: mod/contacts.php:861 mod/viewcontacts.php:121 view/theme/frio/theme.php:257 +msgid "Contacts" +msgstr "Contatos" + +#: include/nav.php:143 include/nav.php:145 mod/community.php:32 +msgid "Community" +msgstr "Comunidade" + +#: include/nav.php:143 +msgid "Conversations on this site" +msgstr "Conversas neste site" + +#: include/nav.php:145 +msgid "Conversations on the network" +msgstr "Conversas na rede" + +#: include/nav.php:149 include/identity.php:808 include/identity.php:819 +#: view/theme/frio/theme.php:254 +msgid "Events and Calendar" +msgstr "Eventos e Agenda" + +#: include/nav.php:152 +msgid "Directory" +msgstr "Diretório" + +#: include/nav.php:152 +msgid "People directory" +msgstr "Diretório de pessoas" + +#: include/nav.php:154 +msgid "Information" +msgstr "Informação" + +#: include/nav.php:154 +msgid "Information about this friendica instance" +msgstr "Informação sobre esta instância do friendica" + +#: include/nav.php:158 view/theme/frio/theme.php:253 +msgid "Conversations from your friends" +msgstr "Conversas dos seus amigos" + +#: include/nav.php:159 +msgid "Network Reset" +msgstr "Reiniciar Rede" + +#: include/nav.php:159 +msgid "Load Network page with no filters" +msgstr "Carregar página Rede sem filtros" + +#: include/nav.php:166 +msgid "Friend Requests" +msgstr "Requisições de Amizade" + +#: include/nav.php:169 mod/notifications.php:96 +msgid "Notifications" +msgstr "Notificações" + +#: include/nav.php:170 +msgid "See all notifications" +msgstr "Ver todas notificações" + +#: include/nav.php:171 mod/settings.php:906 +msgid "Mark as seen" +msgstr "Marcar como visto" + +#: include/nav.php:171 +msgid "Mark all system notifications seen" +msgstr "Marcar todas as notificações de sistema como vistas" + +#: include/nav.php:175 mod/message.php:179 view/theme/frio/theme.php:255 +msgid "Messages" +msgstr "Mensagens" + +#: include/nav.php:175 view/theme/frio/theme.php:255 +msgid "Private mail" +msgstr "Mensagem privada" + +#: include/nav.php:176 +msgid "Inbox" +msgstr "Recebidas" + +#: include/nav.php:177 +msgid "Outbox" +msgstr "Enviadas" + +#: include/nav.php:178 mod/message.php:16 +msgid "New Message" +msgstr "Nova mensagem" + +#: include/nav.php:181 +msgid "Manage" +msgstr "Gerenciar" + +#: include/nav.php:181 +msgid "Manage other pages" +msgstr "Gerenciar outras páginas" + +#: include/nav.php:184 mod/settings.php:81 +msgid "Delegations" +msgstr "Delegações" + +#: include/nav.php:184 mod/delegate.php:130 +msgid "Delegate Page Management" +msgstr "Delegar Administração de Página" + +#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111 +#: mod/admin.php:1618 mod/admin.php:1894 view/theme/frio/theme.php:256 +msgid "Settings" +msgstr "Configurações" + +#: include/nav.php:186 view/theme/frio/theme.php:256 +msgid "Account settings" +msgstr "Configurações da conta" + +#: include/nav.php:189 include/identity.php:290 +msgid "Profiles" +msgstr "Perfis" + +#: include/nav.php:189 +msgid "Manage/Edit Profiles" +msgstr "Administrar/Editar Perfis" + +#: include/nav.php:192 view/theme/frio/theme.php:257 +msgid "Manage/edit friends and contacts" +msgstr "Gerenciar/editar amigos e contatos" + +#: include/nav.php:197 mod/admin.php:196 +msgid "Admin" +msgstr "Admin" + +#: include/nav.php:197 +msgid "Site setup and configuration" +msgstr "Configurações do site" + +#: include/nav.php:200 +msgid "Navigation" +msgstr "Navegação" + +#: include/nav.php:200 +msgid "Site map" +msgstr "Mapa do Site" + +#: include/plugin.php:530 include/plugin.php:532 +msgid "Click here to upgrade." +msgstr "Clique aqui para atualização (upgrade)." + +#: include/plugin.php:538 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Essa ação excede o limite definido para o seu plano de assinatura." + +#: include/plugin.php:543 +msgid "This action is not available under your subscription plan." +msgstr "Essa ação não está disponível em seu plano de assinatura." + +#: include/profile_selectors.php:6 +msgid "Male" +msgstr "Masculino" + +#: include/profile_selectors.php:6 +msgid "Female" +msgstr "Feminino" + +#: include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Atualmente masculino" + +#: include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Atualmente feminino" + +#: include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Masculino a maior parte do tempo" + +#: include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Feminino a maior parte do tempo" + +#: include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgênero" + +#: include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Intersexual" + +#: include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transexual" + +#: include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Hermafrodita" + +#: include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Neutro" + +#: include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Não específico" + +#: include/profile_selectors.php:6 +msgid "Other" +msgstr "Outro" + +#: include/profile_selectors.php:6 include/conversation.php:1547 +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "" +msgstr[1] "" + +#: include/profile_selectors.php:23 +msgid "Males" +msgstr "Homens" + +#: include/profile_selectors.php:23 +msgid "Females" +msgstr "Mulheres" + +#: include/profile_selectors.php:23 +msgid "Gay" +msgstr "Gays" + +#: include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "Lésbicas" + +#: include/profile_selectors.php:23 +msgid "No Preference" +msgstr "Sem preferência" + +#: include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "Bissexuais" + +#: include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "Autossexuais" + +#: include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "Abstêmios" + +#: include/profile_selectors.php:23 +msgid "Virgin" +msgstr "Virgens" + +#: include/profile_selectors.php:23 +msgid "Deviant" +msgstr "Desviantes" + +#: include/profile_selectors.php:23 +msgid "Fetish" +msgstr "Fetiches" + +#: include/profile_selectors.php:23 +msgid "Oodles" +msgstr "Insaciável" + +#: include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "Não sexual" + +#: include/profile_selectors.php:42 +msgid "Single" +msgstr "Solteiro(a)" + +#: include/profile_selectors.php:42 +msgid "Lonely" +msgstr "Solitário(a)" + +#: include/profile_selectors.php:42 +msgid "Available" +msgstr "Disponível" + +#: include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "Não disponível" + +#: include/profile_selectors.php:42 +msgid "Has crush" +msgstr "Tem uma paixão" + +#: include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "Apaixonado" + +#: include/profile_selectors.php:42 +msgid "Dating" +msgstr "Saindo com alguém" + +#: include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "Infiel" + +#: include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "Viciado(a) em sexo" + +#: include/profile_selectors.php:42 include/user.php:263 include/user.php:267 +msgid "Friends" +msgstr "Amigos" + +#: include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "Amigos/Benefícios" + +#: include/profile_selectors.php:42 +msgid "Casual" +msgstr "Casual" + +#: include/profile_selectors.php:42 +msgid "Engaged" +msgstr "Envolvido(a)" + +#: include/profile_selectors.php:42 +msgid "Married" +msgstr "Casado(a)" + +#: include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "Casado imaginariamente" + +#: include/profile_selectors.php:42 +msgid "Partners" +msgstr "Parceiros" + +#: include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "Coabitando" + +#: include/profile_selectors.php:42 +msgid "Common law" +msgstr "Direito comum" + +#: include/profile_selectors.php:42 +msgid "Happy" +msgstr "Feliz" + +#: include/profile_selectors.php:42 +msgid "Not looking" +msgstr "Não estou procurando" + +#: include/profile_selectors.php:42 +msgid "Swinger" +msgstr "Swinger" + +#: include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "Traído(a)" + +#: include/profile_selectors.php:42 +msgid "Separated" +msgstr "Separado(a)" + +#: include/profile_selectors.php:42 +msgid "Unstable" +msgstr "Instável" + +#: include/profile_selectors.php:42 +msgid "Divorced" +msgstr "Divorciado(a)" + +#: include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "Divorciado imaginariamente" + +#: include/profile_selectors.php:42 +msgid "Widowed" +msgstr "Viúvo(a)" + +#: include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "Incerto(a)" + +#: include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "É complicado" + +#: include/profile_selectors.php:42 +msgid "Don't care" +msgstr "Não importa" + +#: include/profile_selectors.php:42 +msgid "Ask me" +msgstr "Pergunte-me" + +#: include/security.php:61 +msgid "Welcome " +msgstr "Bem-vindo(a) " + +#: include/security.php:62 +msgid "Please upload a profile photo." +msgstr "Por favor, envie uma foto para o perfil." + +#: include/security.php:65 +msgid "Welcome back " +msgstr "Bem-vindo(a) de volta " + +#: include/security.php:429 +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 "O token de segurança do formulário não estava correto. Isso provavelmente aconteceu porque o formulário ficou aberto por muito tempo (>3 horas) antes da sua submissão." + +#: include/uimport.php:91 +msgid "Error decoding account file" +msgstr "Erro ao decodificar arquivo de conta" + +#: include/uimport.php:97 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Erro! Nenhum arquivo de dados de versão! Esse não é um arquivo de conta do Friendica?" + +#: include/uimport.php:113 include/uimport.php:124 +msgid "Error! Cannot check nickname" +msgstr "Erro! Não consigo conferir o apelido (nickname)" + +#: include/uimport.php:117 include/uimport.php:128 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "User '%s' já existe nesse servidor!" + +#: include/uimport.php:150 +msgid "User creation error" +msgstr "Erro na criação do usuário" + +#: include/uimport.php:170 +msgid "User profile creation error" +msgstr "Erro na criação do perfil do Usuário" + +#: include/uimport.php:219 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d contato não foi importado" +msgstr[1] "%d contatos não foram importados" + +#: include/uimport.php:289 +msgid "Done. You can now login with your username and password" +msgstr "Feito. Você agora pode entrar com seu nome de usuário e senha." + +#: include/Contact.php:395 include/Contact.php:408 include/Contact.php:453 +#: include/conversation.php:1004 include/conversation.php:1020 +#: mod/allfriends.php:68 mod/directory.php:157 mod/match.php:73 +#: mod/suggest.php:82 mod/dirfind.php:209 +msgid "View Profile" +msgstr "Ver Perfil" + +#: include/Contact.php:409 include/contact_widgets.php:32 +#: include/conversation.php:1017 mod/allfriends.php:69 mod/contacts.php:610 +#: mod/match.php:74 mod/suggest.php:83 mod/dirfind.php:210 mod/follow.php:106 +msgid "Connect/Follow" +msgstr "Conectar-se/acompanhar" + +#: include/Contact.php:452 include/conversation.php:1003 +msgid "View Status" +msgstr "Ver Status" + +#: include/Contact.php:454 include/conversation.php:1005 +msgid "View Photos" +msgstr "Ver Fotos" + +#: include/Contact.php:455 include/conversation.php:1006 +msgid "Network Posts" +msgstr "Publicações da Rede" + +#: include/Contact.php:456 include/conversation.php:1007 +msgid "View Contact" +msgstr "" + +#: include/Contact.php:457 +msgid "Drop Contact" +msgstr "Excluir o contato" + +#: include/Contact.php:458 include/conversation.php:1008 +msgid "Send PM" +msgstr "Enviar MP" + +#: include/Contact.php:459 include/conversation.php:1012 +msgid "Poke" +msgstr "Cutucar" + +#: include/Contact.php:840 +msgid "Organisation" +msgstr "" + +#: include/Contact.php:843 +msgid "News" +msgstr "" + +#: include/Contact.php:846 +msgid "Forum" +msgstr "Fórum" + +#: include/acl_selectors.php:353 +msgid "Post to Email" +msgstr "Enviar por e-mail" + +#: include/acl_selectors.php:358 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Conectores desabilitados, desde \"%s\" está habilitado." + +#: include/acl_selectors.php:359 mod/settings.php:1188 +msgid "Hide your profile details from unknown viewers?" +msgstr "Ocultar os detalhes do seu perfil para pessoas desconhecidas?" + +#: include/acl_selectors.php:365 +msgid "Visible to everybody" +msgstr "Visível para todos" + +#: include/acl_selectors.php:366 view/theme/vier/config.php:108 +msgid "show" +msgstr "exibir" + +#: include/acl_selectors.php:367 view/theme/vier/config.php:108 +msgid "don't show" +msgstr "não exibir" + +#: include/acl_selectors.php:373 mod/editpost.php:123 +msgid "CC: email addresses" +msgstr "CC: endereço de e-mail" + +#: include/acl_selectors.php:374 mod/editpost.php:130 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Por exemplo: joao@exemplo.com, maria@exemplo.com" + +#: include/acl_selectors.php:376 mod/events.php:508 mod/photos.php:1196 +#: mod/photos.php:1593 +msgid "Permissions" +msgstr "Permissões" + +#: include/acl_selectors.php:377 +msgid "Close" +msgstr "Fechar" + +#: include/api.php:1089 +#, php-format +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "O limite diário de postagem de %d mensagens foi atingido. O post foi rejeitado." + +#: include/api.php:1110 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." +msgstr "O limite de postagem semanal de %d mensagens foi atingido. O post foi rejeitado." + +#: include/api.php:1131 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "O limite de postagem mensal de %d mensagens foi atingido. O post foi rejeitado." + +#: include/auth.php:51 +msgid "Logged out." +msgstr "Saiu." + +#: include/auth.php:122 include/auth.php:184 mod/openid.php:110 +msgid "Login failed." +msgstr "Não foi possível autenticar." + +#: include/auth.php:138 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 "Foi encontrado um erro ao tentar conectar usando o OpenID que você forneceu. Por favor, verifique se sua ID está escrita corretamente." + +#: include/auth.php:138 include/user.php:75 +msgid "The error message was:" +msgstr "A mensagem de erro foi:" + +#: include/bb2diaspora.php:230 include/event.php:17 mod/localtime.php:12 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ H:i" + +#: include/bb2diaspora.php:236 include/event.php:34 include/event.php:54 +#: include/event.php:525 +msgid "Starts:" +msgstr "Início:" + +#: include/bb2diaspora.php:244 include/event.php:37 include/event.php:60 +#: include/event.php:526 +msgid "Finishes:" +msgstr "Término:" + +#: include/bb2diaspora.php:253 include/event.php:41 include/event.php:67 +#: include/event.php:527 include/identity.php:336 mod/contacts.php:636 +#: mod/directory.php:139 mod/events.php:493 mod/notifications.php:244 +msgid "Location:" +msgstr "Localização:" + +#: include/bbcode.php:380 include/bbcode.php:1132 include/bbcode.php:1133 +msgid "Image/photo" +msgstr "Imagem/foto" + +#: include/bbcode.php:497 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" + +#: include/bbcode.php:1089 include/bbcode.php:1111 +msgid "$1 wrote:" +msgstr "$1 escreveu:" + +#: include/bbcode.php:1141 include/bbcode.php:1142 +msgid "Encrypted content" +msgstr "Conteúdo criptografado" + +#: include/bbcode.php:1257 +msgid "Invalid source protocol" +msgstr "" + +#: include/bbcode.php:1267 +msgid "Invalid link protocol" +msgstr "" + +#: include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Desconhecido | Não categorizado" + +#: include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Bloquear imediatamente" + +#: include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Dissimulado, spammer, propagandista" + +#: include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Eu conheço, mas não possuo nenhuma opinião acerca" + +#: include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "Ok, provavelmente inofensivo" + +#: include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Boa reputação, tem minha confiança" + +#: include/contact_selectors.php:56 mod/admin.php:980 +msgid "Frequently" +msgstr "Frequentemente" + +#: include/contact_selectors.php:57 mod/admin.php:981 +msgid "Hourly" +msgstr "De hora em hora" + +#: include/contact_selectors.php:58 mod/admin.php:982 +msgid "Twice daily" +msgstr "Duas vezes ao dia" + +#: include/contact_selectors.php:59 mod/admin.php:983 +msgid "Daily" +msgstr "Diariamente" + +#: include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Semanalmente" + +#: include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Mensalmente" + +#: include/contact_selectors.php:76 mod/dfrn_request.php:886 +msgid "Friendica" +msgstr "Friendica" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: include/contact_selectors.php:79 include/contact_selectors.php:86 +#: mod/admin.php:1490 mod/admin.php:1503 mod/admin.php:1516 mod/admin.php:1534 +msgid "Email" +msgstr "E-mail" + +#: include/contact_selectors.php:80 mod/dfrn_request.php:888 +#: mod/settings.php:848 +msgid "Diaspora" +msgstr "Diaspora" + +#: include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" + +#: include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" + +#: include/contact_selectors.php:88 +msgid "pump.io" +msgstr "pump.io" + +#: include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" + +#: include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Conector do Diáspora" + +#: include/contact_selectors.php:91 +msgid "GNU Social Connector" +msgstr "" + +#: include/contact_selectors.php:92 +msgid "pnut" +msgstr "" + +#: include/contact_selectors.php:93 +msgid "App.net" +msgstr "App.net" #: include/contact_widgets.php:6 msgid "Add New Contact" @@ -144,8 +1059,9 @@ msgstr "Forneça endereço ou localização web" msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Por exemplo: joao@exemplo.com, http://exemplo.com/maria" -#: include/contact_widgets.php:10 include/identity.php:212 mod/match.php:87 -#: mod/allfriends.php:82 mod/suggest.php:101 mod/dirfind.php:201 +#: include/contact_widgets.php:10 include/identity.php:224 +#: mod/allfriends.php:85 mod/match.php:89 mod/suggest.php:101 +#: mod/dirfind.php:207 msgid "Connect" msgstr "Conectar" @@ -164,28 +1080,20 @@ msgstr "Pesquisar por pessoas" msgid "Enter name or interest" msgstr "Fornecer nome ou interesse" -#: include/contact_widgets.php:32 include/conversation.php:978 -#: include/Contact.php:324 mod/match.php:72 mod/allfriends.php:66 -#: mod/follow.php:103 mod/suggest.php:83 mod/contacts.php:602 -#: mod/dirfind.php:204 -msgid "Connect/Follow" -msgstr "Conectar-se/acompanhar" - #: include/contact_widgets.php:33 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Examplos: Robert Morgenstein, Fishing" -#: include/contact_widgets.php:34 mod/directory.php:212 mod/contacts.php:796 +#: include/contact_widgets.php:34 mod/contacts.php:806 mod/directory.php:206 msgid "Find" msgstr "Pesquisar" #: include/contact_widgets.php:35 mod/suggest.php:114 -#: view/theme/vier/theme.php:203 view/theme/diabook/theme.php:527 +#: view/theme/vier/theme.php:201 msgid "Friend Suggestions" msgstr "Sugestões de amigos" -#: include/contact_widgets.php:36 view/theme/vier/theme.php:202 -#: view/theme/diabook/theme.php:526 +#: include/contact_widgets.php:36 view/theme/vier/theme.php:200 msgid "Similar Interests" msgstr "Interesses Parecidos" @@ -193,43 +1101,520 @@ msgstr "Interesses Parecidos" msgid "Random Profile" msgstr "Perfil Randômico" -#: include/contact_widgets.php:38 view/theme/vier/theme.php:204 -#: view/theme/diabook/theme.php:528 +#: include/contact_widgets.php:38 view/theme/vier/theme.php:202 msgid "Invite Friends" msgstr "Convidar amigos" -#: include/contact_widgets.php:108 +#: include/contact_widgets.php:125 msgid "Networks" msgstr "Redes" -#: include/contact_widgets.php:111 +#: include/contact_widgets.php:128 msgid "All Networks" msgstr "Todas as redes" -#: include/contact_widgets.php:141 include/features.php:103 +#: include/contact_widgets.php:160 include/features.php:104 msgid "Saved Folders" msgstr "Pastas salvas" -#: include/contact_widgets.php:144 include/contact_widgets.php:176 +#: include/contact_widgets.php:163 include/contact_widgets.php:198 msgid "Everything" msgstr "Tudo" -#: include/contact_widgets.php:173 +#: include/contact_widgets.php:195 msgid "Categories" msgstr "Categorias" -#: include/contact_widgets.php:237 +#: include/contact_widgets.php:264 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d contato em comum" msgstr[1] "%d contatos em comum" -#: include/contact_widgets.php:242 include/ForumManager.php:119 -#: include/items.php:2122 mod/content.php:624 object/Item.php:432 -#: view/theme/vier/theme.php:260 boot.php:903 -msgid "show more" -msgstr "exibir mais" +#: include/conversation.php:159 +#, php-format +msgid "%1$s attends %2$s's %3$s" +msgstr "" + +#: include/conversation.php:162 +#, php-format +msgid "%1$s doesn't attend %2$s's %3$s" +msgstr "" + +#: include/conversation.php:165 +#, php-format +msgid "%1$s attends maybe %2$s's %3$s" +msgstr "" + +#: include/conversation.php:198 mod/dfrn_confirm.php:478 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s agora é amigo de %2$s" + +#: include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s cutucou %2$s" + +#: include/conversation.php:260 mod/mood.php:63 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s atualmente está %2$s" + +#: include/conversation.php:307 mod/tagger.php:95 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s etiquetou %3$s de %2$s com %4$s" + +#: include/conversation.php:334 +msgid "post/item" +msgstr "postagem/item" + +#: include/conversation.php:335 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s marcou %3$s de %2$s como favorito" + +#: include/conversation.php:614 mod/content.php:372 mod/photos.php:1662 +#: mod/profiles.php:340 +msgid "Likes" +msgstr "Gosta de" + +#: include/conversation.php:614 mod/content.php:372 mod/photos.php:1662 +#: mod/profiles.php:344 +msgid "Dislikes" +msgstr "Não gosta de" + +#: include/conversation.php:615 include/conversation.php:1541 +#: mod/content.php:373 mod/photos.php:1663 +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1663 +msgid "Not attending" +msgstr "" + +#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1663 +msgid "Might attend" +msgstr "" + +#: include/conversation.php:747 mod/content.php:453 mod/content.php:759 +#: mod/photos.php:1728 object/Item.php:137 +msgid "Select" +msgstr "Selecionar" + +#: include/conversation.php:748 mod/contacts.php:816 mod/contacts.php:1015 +#: mod/content.php:454 mod/content.php:760 mod/photos.php:1729 +#: mod/settings.php:744 mod/admin.php:1508 object/Item.php:138 +msgid "Delete" +msgstr "Excluir" + +#: include/conversation.php:791 mod/content.php:487 mod/content.php:915 +#: mod/content.php:916 object/Item.php:356 object/Item.php:357 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Ver o perfil de %s @ %s" + +#: include/conversation.php:803 object/Item.php:344 +msgid "Categories:" +msgstr "Categorias:" + +#: include/conversation.php:804 object/Item.php:345 +msgid "Filed under:" +msgstr "Arquivado sob:" + +#: include/conversation.php:811 mod/content.php:497 mod/content.php:928 +#: object/Item.php:370 +#, php-format +msgid "%s from %s" +msgstr "%s de %s" + +#: include/conversation.php:827 mod/content.php:513 +msgid "View in context" +msgstr "Ver no contexto" + +#: include/conversation.php:829 include/conversation.php:1298 +#: mod/content.php:515 mod/content.php:953 mod/editpost.php:114 +#: mod/wallmessage.php:140 mod/message.php:337 mod/message.php:522 +#: mod/photos.php:1627 object/Item.php:395 +msgid "Please wait" +msgstr "Por favor, espere" + +#: include/conversation.php:906 +msgid "remove" +msgstr "remover" + +#: include/conversation.php:910 +msgid "Delete Selected Items" +msgstr "Excluir os itens selecionados" + +#: include/conversation.php:1002 +msgid "Follow Thread" +msgstr "Seguir o Thread" + +#: include/conversation.php:1139 +#, php-format +msgid "%s likes this." +msgstr "%s gostou disso." + +#: include/conversation.php:1142 +#, php-format +msgid "%s doesn't like this." +msgstr "%s não gostou disso." + +#: include/conversation.php:1145 +#, php-format +msgid "%s attends." +msgstr "" + +#: include/conversation.php:1148 +#, php-format +msgid "%s doesn't attend." +msgstr "" + +#: include/conversation.php:1151 +#, php-format +msgid "%s attends maybe." +msgstr "" + +#: include/conversation.php:1162 +msgid "and" +msgstr "e" + +#: include/conversation.php:1168 +#, php-format +msgid ", and %d other people" +msgstr ", e mais %d outras pessoas" + +#: include/conversation.php:1177 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d pessoas gostaram disso" + +#: include/conversation.php:1178 +#, php-format +msgid "%s like this." +msgstr "%s curtiu." + +#: include/conversation.php:1181 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d pessoas não gostaram disso" + +#: include/conversation.php:1182 +#, php-format +msgid "%s don't like this." +msgstr "%s não curtiu." + +#: include/conversation.php:1185 +#, php-format +msgid "%2$d people attend" +msgstr "" + +#: include/conversation.php:1186 +#, php-format +msgid "%s attend." +msgstr "" + +#: include/conversation.php:1189 +#, php-format +msgid "%2$d people don't attend" +msgstr "" + +#: include/conversation.php:1190 +#, php-format +msgid "%s don't attend." +msgstr "" + +#: include/conversation.php:1193 +#, php-format +msgid "%2$d people attend maybe" +msgstr "" + +#: include/conversation.php:1194 +#, php-format +msgid "%s anttend maybe." +msgstr "" + +#: include/conversation.php:1223 include/conversation.php:1239 +msgid "Visible to everybody" +msgstr "Visível para todos" + +#: include/conversation.php:1224 include/conversation.php:1240 +#: mod/wallmessage.php:114 mod/wallmessage.php:121 mod/message.php:271 +#: mod/message.php:278 mod/message.php:418 mod/message.php:425 +msgid "Please enter a link URL:" +msgstr "Por favor, digite uma URL:" + +#: include/conversation.php:1225 include/conversation.php:1241 +msgid "Please enter a video link/URL:" +msgstr "Favor fornecer um link/URL de vídeo" + +#: include/conversation.php:1226 include/conversation.php:1242 +msgid "Please enter an audio link/URL:" +msgstr "Favor fornecer um link/URL de áudio" + +#: include/conversation.php:1227 include/conversation.php:1243 +msgid "Tag term:" +msgstr "Etiqueta:" + +#: include/conversation.php:1228 include/conversation.php:1244 +#: mod/filer.php:30 +msgid "Save to Folder:" +msgstr "Salvar na pasta:" + +#: include/conversation.php:1229 include/conversation.php:1245 +msgid "Where are you right now?" +msgstr "Onde você está agora?" + +#: include/conversation.php:1230 +msgid "Delete item(s)?" +msgstr "Deletar item(s)?" + +#: include/conversation.php:1279 +msgid "Share" +msgstr "Compartilhar" + +#: include/conversation.php:1280 mod/editpost.php:100 mod/wallmessage.php:138 +#: mod/message.php:335 mod/message.php:519 +msgid "Upload photo" +msgstr "Enviar foto" + +#: include/conversation.php:1281 mod/editpost.php:101 +msgid "upload photo" +msgstr "upload de foto" + +#: include/conversation.php:1282 mod/editpost.php:102 +msgid "Attach file" +msgstr "Anexar arquivo" + +#: include/conversation.php:1283 mod/editpost.php:103 +msgid "attach file" +msgstr "anexar arquivo" + +#: include/conversation.php:1284 mod/editpost.php:104 mod/wallmessage.php:139 +#: mod/message.php:336 mod/message.php:520 +msgid "Insert web link" +msgstr "Inserir link web" + +#: include/conversation.php:1285 mod/editpost.php:105 +msgid "web link" +msgstr "link web" + +#: include/conversation.php:1286 mod/editpost.php:106 +msgid "Insert video link" +msgstr "Inserir link de vídeo" + +#: include/conversation.php:1287 mod/editpost.php:107 +msgid "video link" +msgstr "link de vídeo" + +#: include/conversation.php:1288 mod/editpost.php:108 +msgid "Insert audio link" +msgstr "Inserir link de áudio" + +#: include/conversation.php:1289 mod/editpost.php:109 +msgid "audio link" +msgstr "link de áudio" + +#: include/conversation.php:1290 mod/editpost.php:110 +msgid "Set your location" +msgstr "Definir sua localização" + +#: include/conversation.php:1291 mod/editpost.php:111 +msgid "set location" +msgstr "configure localização" + +#: include/conversation.php:1292 mod/editpost.php:112 +msgid "Clear browser location" +msgstr "Limpar a localização do navegador" + +#: include/conversation.php:1293 mod/editpost.php:113 +msgid "clear location" +msgstr "apague localização" + +#: include/conversation.php:1295 mod/editpost.php:127 +msgid "Set title" +msgstr "Definir o título" + +#: include/conversation.php:1297 mod/editpost.php:129 +msgid "Categories (comma-separated list)" +msgstr "Categorias (lista separada por vírgulas)" + +#: include/conversation.php:1299 mod/editpost.php:115 +msgid "Permission settings" +msgstr "Configurações de permissão" + +#: include/conversation.php:1300 mod/editpost.php:144 +msgid "permissions" +msgstr "permissões" + +#: include/conversation.php:1308 mod/editpost.php:124 +msgid "Public post" +msgstr "Publicação pública" + +#: include/conversation.php:1313 mod/content.php:737 mod/editpost.php:135 +#: mod/events.php:503 mod/photos.php:1647 mod/photos.php:1689 +#: mod/photos.php:1769 object/Item.php:714 +msgid "Preview" +msgstr "Pré-visualização" + +#: include/conversation.php:1317 include/items.php:2167 mod/contacts.php:455 +#: mod/editpost.php:138 mod/fbrowser.php:100 mod/fbrowser.php:135 +#: mod/suggest.php:32 mod/tagrm.php:11 mod/tagrm.php:96 +#: mod/dfrn_request.php:894 mod/follow.php:124 mod/message.php:209 +#: mod/photos.php:245 mod/photos.php:337 mod/settings.php:682 +#: mod/settings.php:708 mod/videos.php:132 +msgid "Cancel" +msgstr "Cancelar" + +#: include/conversation.php:1323 +msgid "Post to Groups" +msgstr "Postar em Grupos" + +#: include/conversation.php:1324 +msgid "Post to Contacts" +msgstr "Publique para Contatos" + +#: include/conversation.php:1325 +msgid "Private post" +msgstr "Publicação privada" + +#: include/conversation.php:1330 include/identity.php:264 mod/editpost.php:142 +msgid "Message" +msgstr "Mensagem" + +#: include/conversation.php:1331 mod/editpost.php:143 +msgid "Browser" +msgstr "Navegador" + +#: include/conversation.php:1513 +msgid "View all" +msgstr "" + +#: include/conversation.php:1535 +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Curtida" +msgstr[1] "Curtidas" + +#: include/conversation.php:1538 +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Não curtiu" +msgstr[1] "Não curtiram" + +#: include/conversation.php:1544 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Não vai" +msgstr[1] "Não vão" + +#: include/datetime.php:66 include/datetime.php:68 mod/profiles.php:698 +msgid "Miscellaneous" +msgstr "Miscelânea" + +#: include/datetime.php:196 include/identity.php:644 +msgid "Birthday:" +msgstr "Aniversário:" + +#: include/datetime.php:198 mod/profiles.php:721 +msgid "Age: " +msgstr "Idade: " + +#: include/datetime.php:200 +msgid "YYYY-MM-DD or MM-DD" +msgstr "AAAA-MM-DD ou MM-DD" + +#: include/datetime.php:370 +msgid "never" +msgstr "nunca" + +#: include/datetime.php:376 +msgid "less than a second ago" +msgstr "menos de um segundo atrás" + +#: include/datetime.php:379 +msgid "year" +msgstr "ano" + +#: include/datetime.php:379 +msgid "years" +msgstr "anos" + +#: include/datetime.php:380 include/event.php:519 mod/cal.php:279 +#: mod/events.php:384 +msgid "month" +msgstr "mês" + +#: include/datetime.php:380 +msgid "months" +msgstr "meses" + +#: include/datetime.php:381 include/event.php:520 mod/cal.php:280 +#: mod/events.php:385 +msgid "week" +msgstr "semana" + +#: include/datetime.php:381 +msgid "weeks" +msgstr "semanas" + +#: include/datetime.php:382 include/event.php:521 mod/cal.php:281 +#: mod/events.php:386 +msgid "day" +msgstr "dia" + +#: include/datetime.php:382 +msgid "days" +msgstr "dias" + +#: include/datetime.php:383 +msgid "hour" +msgstr "hora" + +#: include/datetime.php:383 +msgid "hours" +msgstr "horas" + +#: include/datetime.php:384 +msgid "minute" +msgstr "minuto" + +#: include/datetime.php:384 +msgid "minutes" +msgstr "minutos" + +#: include/datetime.php:385 +msgid "second" +msgstr "segundo" + +#: include/datetime.php:385 +msgid "seconds" +msgstr "segundos" + +#: include/datetime.php:394 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s atrás" + +#: include/datetime.php:620 +#, php-format +msgid "%s's birthday" +msgstr "aniversário de %s" + +#: include/datetime.php:621 include/dfrn.php:1252 +#, php-format +msgid "Happy Birthday %s" +msgstr "Feliz aniversário, %s" + +#: include/dba_pdo.php:72 include/dba.php:47 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'" #: include/enotify.php:24 msgid "Friendica Notification" @@ -249,10 +1634,6 @@ msgstr "%s Administrador" msgid "%1$s, %2$s Administrator" msgstr "%1$s, %2$s Administrador" -#: include/enotify.php:43 include/delivery.php:450 -msgid "noreply" -msgstr "naoresponda" - #: include/enotify.php:70 #, php-format msgid "%s " @@ -528,508 +1909,448 @@ msgstr "Nome completo:\t%1$s\\nLocal do Site:\t%2$s\\nNome de Login:\t%3$s (%4$s msgid "Please visit %s to approve or reject the request." msgstr "Por favor, visite %s para aprovar ou rejeitar a solicitação." -#: include/ForumManager.php:114 include/nav.php:130 include/text.php:1007 -#: view/theme/vier/theme.php:255 -msgid "Forums" -msgstr "Fóruns" +#: include/event.php:474 +msgid "all-day" +msgstr "" -#: include/ForumManager.php:116 view/theme/vier/theme.php:257 -msgid "External link to forum" -msgstr "Link externo para fórum" - -#: include/event.php:16 include/bb2diaspora.php:148 mod/localtime.php:12 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ H:i" - -#: include/event.php:33 include/event.php:51 include/bb2diaspora.php:154 -msgid "Starts:" -msgstr "Início:" - -#: include/event.php:36 include/event.php:57 include/bb2diaspora.php:162 -msgid "Finishes:" -msgstr "Término:" - -#: include/event.php:39 include/event.php:63 include/bb2diaspora.php:170 -#: include/identity.php:329 mod/directory.php:145 mod/contacts.php:628 -#: mod/events.php:495 mod/notifications.php:232 -msgid "Location:" -msgstr "Localização:" - -#: include/event.php:441 +#: include/event.php:476 msgid "Sun" msgstr "Dom" -#: include/event.php:442 +#: include/event.php:477 msgid "Mon" msgstr "Seg" -#: include/event.php:443 +#: include/event.php:478 msgid "Tue" msgstr "Ter" -#: include/event.php:444 +#: include/event.php:479 msgid "Wed" msgstr "Qua" -#: include/event.php:445 +#: include/event.php:480 msgid "Thu" msgstr "Qui" -#: include/event.php:446 +#: include/event.php:481 msgid "Fri" msgstr "Sex" -#: include/event.php:447 +#: include/event.php:482 msgid "Sat" msgstr "Sáb" -#: include/event.php:448 include/text.php:1112 mod/settings.php:955 +#: include/event.php:484 include/text.php:1198 mod/settings.php:981 msgid "Sunday" msgstr "Domingo" -#: include/event.php:449 include/text.php:1112 mod/settings.php:955 +#: include/event.php:485 include/text.php:1198 mod/settings.php:981 msgid "Monday" msgstr "Segunda" -#: include/event.php:450 include/text.php:1112 +#: include/event.php:486 include/text.php:1198 msgid "Tuesday" msgstr "Terça" -#: include/event.php:451 include/text.php:1112 +#: include/event.php:487 include/text.php:1198 msgid "Wednesday" msgstr "Quarta" -#: include/event.php:452 include/text.php:1112 +#: include/event.php:488 include/text.php:1198 msgid "Thursday" msgstr "Quinta" -#: include/event.php:453 include/text.php:1112 +#: include/event.php:489 include/text.php:1198 msgid "Friday" msgstr "Sexta" -#: include/event.php:454 include/text.php:1112 +#: include/event.php:490 include/text.php:1198 msgid "Saturday" msgstr "Sábado" -#: include/event.php:455 +#: include/event.php:492 msgid "Jan" msgstr "Jan" -#: include/event.php:456 +#: include/event.php:493 msgid "Feb" msgstr "Fev" -#: include/event.php:457 +#: include/event.php:494 msgid "Mar" msgstr "Mar" -#: include/event.php:458 +#: include/event.php:495 msgid "Apr" msgstr "Abr" -#: include/event.php:459 include/event.php:471 include/text.php:1116 +#: include/event.php:496 include/event.php:509 include/text.php:1202 msgid "May" msgstr "Maio" -#: include/event.php:460 +#: include/event.php:497 msgid "Jun" msgstr "Jun" -#: include/event.php:461 +#: include/event.php:498 msgid "Jul" msgstr "Jul" -#: include/event.php:462 +#: include/event.php:499 msgid "Aug" msgstr "Ago" -#: include/event.php:463 +#: include/event.php:500 msgid "Sept" msgstr "Set" -#: include/event.php:464 +#: include/event.php:501 msgid "Oct" msgstr "Out" -#: include/event.php:465 +#: include/event.php:502 msgid "Nov" msgstr "Nov" -#: include/event.php:466 +#: include/event.php:503 msgid "Dec" msgstr "Dez" -#: include/event.php:467 include/text.php:1116 +#: include/event.php:505 include/text.php:1202 msgid "January" msgstr "Janeiro" -#: include/event.php:468 include/text.php:1116 +#: include/event.php:506 include/text.php:1202 msgid "February" msgstr "Fevereiro" -#: include/event.php:469 include/text.php:1116 +#: include/event.php:507 include/text.php:1202 msgid "March" msgstr "Março" -#: include/event.php:470 include/text.php:1116 +#: include/event.php:508 include/text.php:1202 msgid "April" msgstr "Abril" -#: include/event.php:472 include/text.php:1116 +#: include/event.php:510 include/text.php:1202 msgid "June" msgstr "Junho" -#: include/event.php:473 include/text.php:1116 +#: include/event.php:511 include/text.php:1202 msgid "July" msgstr "Julho" -#: include/event.php:474 include/text.php:1116 +#: include/event.php:512 include/text.php:1202 msgid "August" msgstr "Agosto" -#: include/event.php:475 include/text.php:1116 +#: include/event.php:513 include/text.php:1202 msgid "September" msgstr "Setembro" -#: include/event.php:476 include/text.php:1116 +#: include/event.php:514 include/text.php:1202 msgid "October" msgstr "Outubro" -#: include/event.php:477 include/text.php:1116 +#: include/event.php:515 include/text.php:1202 msgid "November" msgstr "Novembro" -#: include/event.php:478 include/text.php:1116 +#: include/event.php:516 include/text.php:1202 msgid "December" msgstr "Dezembro" -#: include/event.php:479 mod/cal.php:286 mod/events.php:388 +#: include/event.php:518 mod/cal.php:278 mod/events.php:383 msgid "today" msgstr "hoje" -#: include/event.php:567 +#: include/event.php:523 +msgid "No events to display" +msgstr "" + +#: include/event.php:636 msgid "l, F j" msgstr "l, F j" -#: include/event.php:586 +#: include/event.php:658 msgid "Edit event" msgstr "Editar o evento" -#: include/event.php:608 include/text.php:1518 include/text.php:1525 +#: include/event.php:659 +msgid "Delete event" +msgstr "" + +#: include/event.php:685 include/text.php:1600 include/text.php:1607 msgid "link to source" msgstr "exibir a origem" -#: include/event.php:843 +#: include/event.php:939 msgid "Export" msgstr "Exportar" -#: include/event.php:844 +#: include/event.php:940 msgid "Export calendar as ical" msgstr "Exportar a agenda como iCal" -#: include/event.php:845 +#: include/event.php:941 msgid "Export calendar as csv" msgstr "Exportar a agenda como CSV" -#: include/security.php:22 -msgid "Welcome " -msgstr "Bem-vindo(a) " +#: include/features.php:65 +msgid "General Features" +msgstr "Funcionalidades Gerais" -#: include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Por favor, envie uma foto para o perfil." +#: include/features.php:67 +msgid "Multiple Profiles" +msgstr "Perfis Múltiplos" -#: include/security.php:26 -msgid "Welcome back " -msgstr "Bem-vindo(a) de volta " +#: include/features.php:67 +msgid "Ability to create multiple profiles" +msgstr "Capacidade de criar perfis múltiplos" -#: include/security.php:375 +#: include/features.php:68 +msgid "Photo Location" +msgstr "" + +#: include/features.php:68 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 "O token de segurança do formulário não estava correto. Isso provavelmente aconteceu porque o formulário ficou aberto por muito tempo (>3 horas) antes da sua submissão." +"Photo metadata is normally stripped. This extracts the location (if present)" +" prior to stripping metadata and links it to a map." +msgstr "" -#: include/profile_selectors.php:6 -msgid "Male" -msgstr "Masculino" +#: include/features.php:69 +msgid "Export Public Calendar" +msgstr "Exportar a agenda pública" -#: include/profile_selectors.php:6 -msgid "Female" -msgstr "Feminino" +#: include/features.php:69 +msgid "Ability for visitors to download the public calendar" +msgstr "Visitantes podem baixar a agenda pública" -#: include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Atualmente masculino" +#: include/features.php:74 +msgid "Post Composition Features" +msgstr "Funcionalidades de Composição de Publicações" -#: include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Atualmente feminino" +#: include/features.php:75 +msgid "Post Preview" +msgstr "Pré-visualização da Publicação" -#: include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Masculino a maior parte do tempo" +#: include/features.php:75 +msgid "Allow previewing posts and comments before publishing them" +msgstr "Permite pré-visualizar publicações e comentários antes de publicá-los" -#: include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Feminino a maior parte do tempo" +#: include/features.php:76 +msgid "Auto-mention Forums" +msgstr "Auto-menção Fóruns" -#: include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgênero" - -#: include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Intersexual" - -#: include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transexual" - -#: include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermafrodita" - -#: include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Neutro" - -#: include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Não específico" - -#: include/profile_selectors.php:6 -msgid "Other" -msgstr "Outro" - -#: include/profile_selectors.php:6 include/conversation.php:1477 -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "" -msgstr[1] "" - -#: include/profile_selectors.php:23 -msgid "Males" -msgstr "Homens" - -#: include/profile_selectors.php:23 -msgid "Females" -msgstr "Mulheres" - -#: include/profile_selectors.php:23 -msgid "Gay" -msgstr "Gays" - -#: include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "Lésbicas" - -#: include/profile_selectors.php:23 -msgid "No Preference" -msgstr "Sem preferência" - -#: include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "Bissexuais" - -#: include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "Autossexuais" - -#: include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "Abstêmios" - -#: include/profile_selectors.php:23 -msgid "Virgin" -msgstr "Virgens" - -#: include/profile_selectors.php:23 -msgid "Deviant" -msgstr "Desviantes" - -#: include/profile_selectors.php:23 -msgid "Fetish" -msgstr "Fetiches" - -#: include/profile_selectors.php:23 -msgid "Oodles" -msgstr "Insaciável" - -#: include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "Não sexual" - -#: include/profile_selectors.php:42 -msgid "Single" -msgstr "Solteiro(a)" - -#: include/profile_selectors.php:42 -msgid "Lonely" -msgstr "Solitário(a)" - -#: include/profile_selectors.php:42 -msgid "Available" -msgstr "Disponível" - -#: include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "Não disponível" - -#: include/profile_selectors.php:42 -msgid "Has crush" -msgstr "Tem uma paixão" - -#: include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "Apaixonado" - -#: include/profile_selectors.php:42 -msgid "Dating" -msgstr "Saindo com alguém" - -#: include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "Infiel" - -#: include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "Viciado(a) em sexo" - -#: include/profile_selectors.php:42 include/user.php:299 include/user.php:303 -msgid "Friends" -msgstr "Amigos" - -#: include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "Amigos/Benefícios" - -#: include/profile_selectors.php:42 -msgid "Casual" -msgstr "Casual" - -#: include/profile_selectors.php:42 -msgid "Engaged" -msgstr "Envolvido(a)" - -#: include/profile_selectors.php:42 -msgid "Married" -msgstr "Casado(a)" - -#: include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "Casado imaginariamente" - -#: include/profile_selectors.php:42 -msgid "Partners" -msgstr "Parceiros" - -#: include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "Coabitando" - -#: include/profile_selectors.php:42 -msgid "Common law" -msgstr "Direito comum" - -#: include/profile_selectors.php:42 -msgid "Happy" -msgstr "Feliz" - -#: include/profile_selectors.php:42 -msgid "Not looking" -msgstr "Não estou procurando" - -#: include/profile_selectors.php:42 -msgid "Swinger" -msgstr "Swinger" - -#: include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "Traído(a)" - -#: include/profile_selectors.php:42 -msgid "Separated" -msgstr "Separado(a)" - -#: include/profile_selectors.php:42 -msgid "Unstable" -msgstr "Instável" - -#: include/profile_selectors.php:42 -msgid "Divorced" -msgstr "Divorciado(a)" - -#: include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "Divorciado imaginariamente" - -#: include/profile_selectors.php:42 -msgid "Widowed" -msgstr "Viúvo(a)" - -#: include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "Incerto(a)" - -#: include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "É complicado" - -#: include/profile_selectors.php:42 -msgid "Don't care" -msgstr "Não importa" - -#: include/profile_selectors.php:42 -msgid "Ask me" -msgstr "Pergunte-me" - -#: include/oembed.php:229 -msgid "Embedded content" -msgstr "Conteúdo incorporado" - -#: include/oembed.php:238 -msgid "Embedding disabled" -msgstr "A incorporação está desabilitada" - -#: include/bbcode.php:349 include/bbcode.php:1054 include/bbcode.php:1055 -msgid "Image/photo" -msgstr "Imagem/foto" - -#: include/bbcode.php:466 -#, php-format -msgid "%2$s %3$s" -msgstr "%2$s %3$s" - -#: include/bbcode.php:1014 include/bbcode.php:1034 -msgid "$1 wrote:" -msgstr "$1 escreveu:" - -#: include/bbcode.php:1063 include/bbcode.php:1064 -msgid "Encrypted content" -msgstr "Conteúdo criptografado" - -#: include/dba_pdo.php:72 include/dba.php:56 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'" - -#: include/auth.php:45 -msgid "Logged out." -msgstr "Saiu." - -#: include/auth.php:116 include/auth.php:178 mod/openid.php:100 -msgid "Login failed." -msgstr "Não foi possível autenticar." - -#: include/auth.php:132 include/user.php:75 +#: include/features.php:76 msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Foi encontrado um erro ao tentar conectar usando o OpenID que você forneceu. Por favor, verifique se sua ID está escrita corretamente." +"Add/remove mention when a forum page is selected/deselected in ACL window." +msgstr "" -#: include/auth.php:132 include/user.php:75 -msgid "The error message was:" -msgstr "A mensagem de erro foi:" +#: include/features.php:81 +msgid "Network Sidebar Widgets" +msgstr "Widgets da Barra Lateral da Rede" + +#: include/features.php:82 +msgid "Search by Date" +msgstr "Buscar por Data" + +#: include/features.php:82 +msgid "Ability to select posts by date ranges" +msgstr "Capacidade de selecionar publicações por intervalos de data" + +#: include/features.php:83 include/features.php:113 +msgid "List Forums" +msgstr "" + +#: include/features.php:83 +msgid "Enable widget to display the forums your are connected with" +msgstr "" + +#: include/features.php:84 +msgid "Group Filter" +msgstr "Filtrar Grupo" + +#: include/features.php:84 +msgid "Enable widget to display Network posts only from selected group" +msgstr "Habilita widget para mostrar publicações da Rede somente de grupos selecionados" + +#: include/features.php:85 +msgid "Network Filter" +msgstr "Filtrar Rede" + +#: include/features.php:85 +msgid "Enable widget to display Network posts only from selected network" +msgstr "Habilita widget para mostrar publicações da Rede de redes selecionadas" + +#: include/features.php:86 mod/network.php:206 mod/search.php:34 +msgid "Saved Searches" +msgstr "Pesquisas salvas" + +#: include/features.php:86 +msgid "Save search terms for re-use" +msgstr "Guarde as palavras-chaves para reuso" + +#: include/features.php:91 +msgid "Network Tabs" +msgstr "Abas da Rede" + +#: include/features.php:92 +msgid "Network Personal Tab" +msgstr "Aba Pessoal da Rede" + +#: include/features.php:92 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Habilitar aba para mostrar apenas as publicações da Rede que você tenha interagido" + +#: include/features.php:93 +msgid "Network New Tab" +msgstr "Aba Nova da Rede" + +#: include/features.php:93 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "Habilite aba para mostra apenas publicações da Rede novas (das últimas 12 horas)" + +#: include/features.php:94 +msgid "Network Shared Links Tab" +msgstr "Aba de Links Compartilhados da Rede" + +#: include/features.php:94 +msgid "Enable tab to display only Network posts with links in them" +msgstr "Habilite aba para mostrar somente publicações da Rede que contenham links" + +#: include/features.php:99 +msgid "Post/Comment Tools" +msgstr "Ferramentas de Publicação/Comentário" + +#: include/features.php:100 +msgid "Multiple Deletion" +msgstr "Deleção Multipla" + +#: include/features.php:100 +msgid "Select and delete multiple posts/comments at once" +msgstr "Selecione e delete múltiplas publicações/comentário imediatamente" + +#: include/features.php:101 +msgid "Edit Sent Posts" +msgstr "Editar Publicações Enviadas" + +#: include/features.php:101 +msgid "Edit and correct posts and comments after sending" +msgstr "Editar e corrigir publicações e comentários após envio" + +#: include/features.php:102 +msgid "Tagging" +msgstr "Etiquetagem" + +#: include/features.php:102 +msgid "Ability to tag existing posts" +msgstr "Capacidade de colocar etiquetas em publicações existentes" + +#: include/features.php:103 +msgid "Post Categories" +msgstr "Categorias de Publicações" + +#: include/features.php:103 +msgid "Add categories to your posts" +msgstr "Adicione Categorias ás Publicações" + +#: include/features.php:104 +msgid "Ability to file posts under folders" +msgstr "Capacidade de arquivar publicações em pastas" + +#: include/features.php:105 +msgid "Dislike Posts" +msgstr "Desgostar de publicações" + +#: include/features.php:105 +msgid "Ability to dislike posts/comments" +msgstr "Capacidade de desgostar de publicações/comentários" + +#: include/features.php:106 +msgid "Star Posts" +msgstr "Destacar publicações" + +#: include/features.php:106 +msgid "Ability to mark special posts with a star indicator" +msgstr "Capacidade de marcar publicações especiais com uma estrela indicadora" + +#: include/features.php:107 +msgid "Mute Post Notifications" +msgstr "Silenciar Notificações de Postagem" + +#: include/features.php:107 +msgid "Ability to mute notifications for a thread" +msgstr "Habilitar notificação silenciosa para a tarefa" + +#: include/features.php:112 +msgid "Advanced Profile Settings" +msgstr "Configurações de perfil avançadas" + +#: include/features.php:113 +msgid "Show visitors public community forums at the Advanced Profile Page" +msgstr "" + +#: include/follow.php:81 mod/dfrn_request.php:512 +msgid "Disallowed profile URL." +msgstr "URL de perfil não permitida." + +#: include/follow.php:86 mod/dfrn_request.php:518 mod/friendica.php:114 +#: mod/admin.php:279 mod/admin.php:297 +msgid "Blocked domain" +msgstr "" + +#: include/follow.php:91 +msgid "Connect URL missing." +msgstr "URL de conexão faltando." + +#: include/follow.php:119 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Este site não está configurado para permitir comunicações com outras redes." + +#: include/follow.php:120 include/follow.php:134 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Não foi descoberto nenhum protocolo de comunicação ou fonte de notícias compatível." + +#: include/follow.php:132 +msgid "The profile address specified does not provide adequate information." +msgstr "O endereço de perfil especificado não fornece informação adequada." + +#: include/follow.php:137 +msgid "An author or name was not found." +msgstr "Não foi encontrado nenhum autor ou nome." + +#: include/follow.php:140 +msgid "No browser URL could be matched to this address." +msgstr "Não foi possível encontrar nenhuma URL de navegação neste endereço." + +#: include/follow.php:143 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Não foi possível casa o estilo @ de Endereço de Identidade com um protocolo conhecido ou contato de email." + +#: include/follow.php:144 +msgid "Use mailto: in front of address to force email check." +msgstr "Use mailto: antes do endereço para forçar a checagem de email." + +#: include/follow.php:150 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "O endereço de perfil especificado pertence a uma rede que foi desabilitada neste site." + +#: include/follow.php:155 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Perfil limitado. Essa pessoa não poderá receber notificações diretas/pessoais de você." + +#: include/follow.php:256 +msgid "Unable to retrieve contact information." +msgstr "Não foi possível recuperar a informação do contato." #: include/group.php:25 msgid "" @@ -1038,57 +2359,283 @@ msgid "" "not what you intended, please create another group with a different name." msgstr "Um grupo com esse nome, anteriormente excluído, foi reativado. Permissões de itens já existentes poderão ser aplicadas a esse grupo e qualquer futuros membros. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente." -#: include/group.php:209 +#: include/group.php:210 msgid "Default privacy group for new contacts" msgstr "Grupo de privacidade padrão para novos contatos" -#: include/group.php:242 +#: include/group.php:243 msgid "Everybody" msgstr "Todos" -#: include/group.php:265 +#: include/group.php:266 msgid "edit" msgstr "editar" -#: include/group.php:286 mod/newmember.php:61 +#: include/group.php:287 mod/newmember.php:61 msgid "Groups" msgstr "Grupos" -#: include/group.php:288 +#: include/group.php:289 msgid "Edit groups" msgstr "Editar grupos" -#: include/group.php:290 +#: include/group.php:291 msgid "Edit group" msgstr "Editar grupo" -#: include/group.php:291 +#: include/group.php:292 msgid "Create a new group" msgstr "Criar um novo grupo" -#: include/group.php:292 mod/group.php:94 mod/group.php:178 +#: include/group.php:293 mod/group.php:99 mod/group.php:196 msgid "Group Name: " msgstr "Nome do grupo: " -#: include/group.php:294 +#: include/group.php:295 msgid "Contacts not in any group" msgstr "Contatos não estão dentro de nenhum grupo" -#: include/group.php:296 mod/network.php:201 +#: include/group.php:297 mod/network.php:207 msgid "add" msgstr "adicionar" -#: include/Photo.php:996 include/Photo.php:1011 include/Photo.php:1018 -#: include/Photo.php:1040 include/message.php:145 mod/wall_upload.php:218 -#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:472 -msgid "Wall Photos" -msgstr "Fotos do mural" +#: include/identity.php:43 +msgid "Requested account is not available." +msgstr "Conta solicitada não disponível" -#: include/delivery.php:439 -msgid "(no subject)" -msgstr "(sem assunto)" +#: include/identity.php:52 mod/profile.php:21 +msgid "Requested profile is not available." +msgstr "Perfil solicitado não está disponível." -#: include/user.php:39 mod/settings.php:370 +#: include/identity.php:96 include/identity.php:319 include/identity.php:740 +msgid "Edit profile" +msgstr "Editar perfil" + +#: include/identity.php:259 +msgid "Atom feed" +msgstr "" + +#: include/identity.php:290 +msgid "Manage/edit profiles" +msgstr "Gerenciar/editar perfis" + +#: include/identity.php:295 include/identity.php:321 mod/profiles.php:787 +msgid "Change profile photo" +msgstr "Mudar a foto do perfil" + +#: include/identity.php:296 mod/profiles.php:788 +msgid "Create New Profile" +msgstr "Criar um novo perfil" + +#: include/identity.php:306 mod/profiles.php:777 +msgid "Profile Image" +msgstr "Imagem do perfil" + +#: include/identity.php:309 mod/profiles.php:779 +msgid "visible to everybody" +msgstr "visível para todos" + +#: include/identity.php:310 mod/profiles.php:684 mod/profiles.php:780 +msgid "Edit visibility" +msgstr "Editar a visibilidade" + +#: include/identity.php:338 include/identity.php:633 mod/directory.php:141 +#: mod/notifications.php:250 +msgid "Gender:" +msgstr "Gênero:" + +#: include/identity.php:341 include/identity.php:651 mod/directory.php:143 +msgid "Status:" +msgstr "Situação:" + +#: include/identity.php:343 include/identity.php:667 mod/directory.php:145 +msgid "Homepage:" +msgstr "Página web:" + +#: include/identity.php:345 include/identity.php:687 mod/contacts.php:640 +#: mod/directory.php:147 mod/notifications.php:246 +msgid "About:" +msgstr "Sobre:" + +#: include/identity.php:347 mod/contacts.php:638 +msgid "XMPP:" +msgstr "" + +#: include/identity.php:433 mod/contacts.php:55 mod/notifications.php:258 +msgid "Network:" +msgstr "Rede:" + +#: include/identity.php:462 include/identity.php:552 +msgid "g A l F d" +msgstr "G l d F" + +#: include/identity.php:463 include/identity.php:553 +msgid "F d" +msgstr "F d" + +#: include/identity.php:514 include/identity.php:599 +msgid "[today]" +msgstr "[hoje]" + +#: include/identity.php:526 +msgid "Birthday Reminders" +msgstr "Lembretes de aniversário" + +#: include/identity.php:527 +msgid "Birthdays this week:" +msgstr "Aniversários nesta semana:" + +#: include/identity.php:586 +msgid "[No description]" +msgstr "[Sem descrição]" + +#: include/identity.php:610 +msgid "Event Reminders" +msgstr "Lembretes de eventos" + +#: include/identity.php:611 +msgid "Events this week:" +msgstr "Eventos esta semana:" + +#: include/identity.php:631 mod/settings.php:1286 +msgid "Full Name:" +msgstr "Nome completo:" + +#: include/identity.php:636 +msgid "j F, Y" +msgstr "j de F, Y" + +#: include/identity.php:637 +msgid "j F" +msgstr "j de F" + +#: include/identity.php:648 +msgid "Age:" +msgstr "Idade:" + +#: include/identity.php:659 +#, php-format +msgid "for %1$d %2$s" +msgstr "para %1$d %2$s" + +#: include/identity.php:663 mod/profiles.php:703 +msgid "Sexual Preference:" +msgstr "Preferência sexual:" + +#: include/identity.php:671 mod/profiles.php:730 +msgid "Hometown:" +msgstr "Cidade:" + +#: include/identity.php:675 mod/contacts.php:642 mod/follow.php:137 +#: mod/notifications.php:248 +msgid "Tags:" +msgstr "Etiquetas:" + +#: include/identity.php:679 mod/profiles.php:731 +msgid "Political Views:" +msgstr "Posição política:" + +#: include/identity.php:683 +msgid "Religion:" +msgstr "Religião:" + +#: include/identity.php:691 +msgid "Hobbies/Interests:" +msgstr "Passatempos/Interesses:" + +#: include/identity.php:695 mod/profiles.php:735 +msgid "Likes:" +msgstr "Gosta de:" + +#: include/identity.php:699 mod/profiles.php:736 +msgid "Dislikes:" +msgstr "Não gosta de:" + +#: include/identity.php:703 +msgid "Contact information and Social Networks:" +msgstr "Informações de contato e redes sociais:" + +#: include/identity.php:707 +msgid "Musical interests:" +msgstr "Preferências musicais:" + +#: include/identity.php:711 +msgid "Books, literature:" +msgstr "Livros, literatura:" + +#: include/identity.php:715 +msgid "Television:" +msgstr "Televisão:" + +#: include/identity.php:719 +msgid "Film/dance/culture/entertainment:" +msgstr "Filmes/dança/cultura/entretenimento:" + +#: include/identity.php:723 +msgid "Love/Romance:" +msgstr "Amor/romance:" + +#: include/identity.php:727 +msgid "Work/employment:" +msgstr "Trabalho/emprego:" + +#: include/identity.php:731 +msgid "School/education:" +msgstr "Escola/educação:" + +#: include/identity.php:736 +msgid "Forums:" +msgstr "Fóruns:" + +#: include/identity.php:745 mod/events.php:506 +msgid "Basic" +msgstr "" + +#: include/identity.php:746 mod/contacts.php:878 mod/events.php:507 +#: mod/admin.php:1059 +msgid "Advanced" +msgstr "Avançado" + +#: include/identity.php:772 mod/contacts.php:844 mod/follow.php:145 +msgid "Status Messages and Posts" +msgstr "Mensagem de Estado (status) e Publicações" + +#: include/identity.php:780 mod/contacts.php:852 +msgid "Profile Details" +msgstr "Detalhe do Perfil" + +#: include/identity.php:788 mod/photos.php:93 +msgid "Photo Albums" +msgstr "Álbuns de fotos" + +#: include/identity.php:827 mod/notes.php:47 +msgid "Personal Notes" +msgstr "Notas pessoais" + +#: include/identity.php:830 +msgid "Only You Can See This" +msgstr "Somente Você Pode Ver Isso" + +#: include/network.php:687 +msgid "view full size" +msgstr "ver na tela inteira" + +#: include/oembed.php:255 +msgid "Embedded content" +msgstr "Conteúdo incorporado" + +#: include/oembed.php:263 +msgid "Embedding disabled" +msgstr "A incorporação está desabilitada" + +#: include/photos.php:57 include/photos.php:66 mod/fbrowser.php:40 +#: mod/fbrowser.php:61 mod/photos.php:187 mod/photos.php:1123 +#: mod/photos.php:1256 mod/photos.php:1277 mod/photos.php:1839 +#: mod/photos.php:1853 +msgid "Contact Photos" +msgstr "Fotos dos contatos" + +#: include/user.php:39 mod/settings.php:375 msgid "Passwords do not match. Password unchanged." msgstr "As senhas não correspondem. A senha não foi modificada." @@ -1116,62 +2663,76 @@ msgstr "Por favor, use um nome mais curto." msgid "Name too short." msgstr "O nome é muito curto." -#: include/user.php:113 +#: include/user.php:106 msgid "That doesn't appear to be your full (First Last) name." msgstr "Isso não parece ser o seu nome completo (Nome Sobrenome)." -#: include/user.php:118 +#: include/user.php:111 msgid "Your email domain is not among those allowed on this site." msgstr "O domínio do seu e-mail não está entre os permitidos neste site." -#: include/user.php:121 +#: include/user.php:114 msgid "Not a valid email address." msgstr "Não é um endereço de e-mail válido." -#: include/user.php:134 +#: include/user.php:127 msgid "Cannot use that email." msgstr "Não é possível usar esse e-mail." -#: include/user.php:140 +#: include/user.php:133 msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." msgstr "" -#: include/user.php:147 include/user.php:245 +#: include/user.php:140 include/user.php:228 msgid "Nickname is already registered. Please choose another." msgstr "Esta identificação já foi registrada. Por favor, escolha outra." -#: include/user.php:157 +#: include/user.php:150 msgid "" "Nickname was once registered here and may not be re-used. Please choose " "another." msgstr "Essa identificação já foi registrada e não pode ser reutilizada. Por favor, escolha outra." -#: include/user.php:173 +#: include/user.php:166 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "ERRO GRAVE: Não foi possível gerar as chaves de segurança." -#: include/user.php:231 +#: include/user.php:214 msgid "An error occurred during registration. Please try again." msgstr "Ocorreu um erro durante o registro. Por favor, tente novamente." -#: include/user.php:256 view/theme/duepuntozero/config.php:44 +#: include/user.php:239 view/theme/duepuntozero/config.php:43 msgid "default" msgstr "padrão" -#: include/user.php:266 +#: include/user.php:249 msgid "An error occurred creating your default profile. Please try again." msgstr "Ocorreu um erro na criação do seu perfil padrão. Por favor, tente novamente." -#: include/user.php:345 include/user.php:352 include/user.php:359 -#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 -#: mod/profile_photo.php:210 mod/profile_photo.php:302 -#: mod/profile_photo.php:311 mod/photos.php:79 mod/photos.php:193 -#: mod/photos.php:770 mod/photos.php:1233 mod/photos.php:1256 -#: mod/photos.php:1849 view/theme/diabook/theme.php:500 +#: include/user.php:309 include/user.php:317 include/user.php:325 +#: mod/profile_photo.php:74 mod/profile_photo.php:82 mod/profile_photo.php:90 +#: mod/profile_photo.php:215 mod/profile_photo.php:310 +#: mod/profile_photo.php:320 mod/photos.php:71 mod/photos.php:187 +#: mod/photos.php:774 mod/photos.php:1256 mod/photos.php:1277 +#: mod/photos.php:1863 msgid "Profile Photos" msgstr "Fotos do perfil" -#: include/user.php:387 +#: include/user.php:400 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" +"\t" +msgstr "" + +#: include/user.php:410 +#, php-format +msgid "Registration at %s" +msgstr "" + +#: include/user.php:420 #, php-format msgid "" "\n" @@ -1180,7 +2741,7 @@ msgid "" "\t" msgstr "\n\t\tCaro %1$s,\n\t\t\tObrigado por se cadastrar em %2$s. Sua conta foi criada.\n\t" -#: include/user.php:391 +#: include/user.php:424 #, php-format msgid "" "\n" @@ -1210,1074 +2771,16 @@ msgid "" "\t\tThank you and welcome to %2$s." msgstr "\n\t\tOs dados de login são os seguintes:\n\t\t\tLocal do Site:\t%3$s\n\t\t\tNome de Login:\t%1$s\n\t\t\tSenha:\t%5$s\n\n\t\tVocê pode alterar sua senha na página de \"Configurações\" da sua conta após fazer o login\n\n\t\tPor favor, dedique alguns minutos na página para rever as outras configurações da sua conta.\n\n\t\tTalvez você também queira incluir algumas informações básicas adicionais ao seu perfil padrão\n\t\t(na página de \"Perfis\") para que outras pessoas possam encontrá-lo com facilidade.\n\n\t\tRecomendamos que inclua seu nome completo, adicione uma foto do perfil,\n\t\tadicionar algumas \"palavras-chave\" (muito útil para fazer novas amizades) - e\n\t\ttalvez em que pais você mora; se você não quiser ser mais específico \n\t\tdo que isso.\n\n\t\tNós respeitamos plenamente seu direito à privacidade, e nenhum desses itens são necessários.\n\t\tSe você é novo por aqui e não conheço ninguém, eles podem ajuda-lo a fazer novas e interessantes amizades.\n\n\n\t\tObrigado e bem-vindo a %2$s." -#: include/user.php:423 mod/admin.php:1181 +#: include/user.php:456 mod/admin.php:1308 #, php-format msgid "Registration details for %s" msgstr "Detalhes do registro de %s" -#: include/features.php:63 -msgid "General Features" -msgstr "Funcionalidades Gerais" - -#: include/features.php:65 -msgid "Multiple Profiles" -msgstr "Perfis Múltiplos" - -#: include/features.php:65 -msgid "Ability to create multiple profiles" -msgstr "Capacidade de criar perfis múltiplos" - -#: include/features.php:66 -msgid "Photo Location" +#: include/dbstructure.php:20 +msgid "There are no tables on MyISAM." msgstr "" -#: include/features.php:66 -msgid "" -"Photo metadata is normally stripped. This extracts the location (if present)" -" prior to stripping metadata and links it to a map." -msgstr "" - -#: include/features.php:67 -msgid "Export Public Calendar" -msgstr "Exportar a agenda pública" - -#: include/features.php:67 -msgid "Ability for visitors to download the public calendar" -msgstr "Visitantes podem baixar a agenda pública" - -#: include/features.php:72 -msgid "Post Composition Features" -msgstr "Funcionalidades de Composição de Publicações" - -#: include/features.php:73 -msgid "Richtext Editor" -msgstr "Editor Richtext" - -#: include/features.php:73 -msgid "Enable richtext editor" -msgstr "Habilite editor richtext" - -#: include/features.php:74 -msgid "Post Preview" -msgstr "Pré-visualização da Publicação" - -#: include/features.php:74 -msgid "Allow previewing posts and comments before publishing them" -msgstr "Permite pré-visualizar publicações e comentários antes de publicá-los" - -#: include/features.php:75 -msgid "Auto-mention Forums" -msgstr "Auto-menção Fóruns" - -#: include/features.php:75 -msgid "" -"Add/remove mention when a fourm page is selected/deselected in ACL window." -msgstr "Adiciona/Remove menções quando uma página de fórum é selecionada/deselecionada na janela ACL" - -#: include/features.php:80 -msgid "Network Sidebar Widgets" -msgstr "Widgets da Barra Lateral da Rede" - -#: include/features.php:81 -msgid "Search by Date" -msgstr "Buscar por Data" - -#: include/features.php:81 -msgid "Ability to select posts by date ranges" -msgstr "Capacidade de selecionar publicações por intervalos de data" - -#: include/features.php:82 include/features.php:112 -msgid "List Forums" -msgstr "" - -#: include/features.php:82 -msgid "Enable widget to display the forums your are connected with" -msgstr "" - -#: include/features.php:83 -msgid "Group Filter" -msgstr "Filtrar Grupo" - -#: include/features.php:83 -msgid "Enable widget to display Network posts only from selected group" -msgstr "Habilita widget para mostrar publicações da Rede somente de grupos selecionados" - -#: include/features.php:84 -msgid "Network Filter" -msgstr "Filtrar Rede" - -#: include/features.php:84 -msgid "Enable widget to display Network posts only from selected network" -msgstr "Habilita widget para mostrar publicações da Rede de redes selecionadas" - -#: include/features.php:85 mod/search.php:34 mod/network.php:200 -msgid "Saved Searches" -msgstr "Pesquisas salvas" - -#: include/features.php:85 -msgid "Save search terms for re-use" -msgstr "Guarde as palavras-chaves para reuso" - -#: include/features.php:90 -msgid "Network Tabs" -msgstr "Abas da Rede" - -#: include/features.php:91 -msgid "Network Personal Tab" -msgstr "Aba Pessoal da Rede" - -#: include/features.php:91 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Habilitar aba para mostrar apenas as publicações da Rede que você tenha interagido" - -#: include/features.php:92 -msgid "Network New Tab" -msgstr "Aba Nova da Rede" - -#: include/features.php:92 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "Habilite aba para mostra apenas publicações da Rede novas (das últimas 12 horas)" - -#: include/features.php:93 -msgid "Network Shared Links Tab" -msgstr "Aba de Links Compartilhados da Rede" - -#: include/features.php:93 -msgid "Enable tab to display only Network posts with links in them" -msgstr "Habilite aba para mostrar somente publicações da Rede que contenham links" - -#: include/features.php:98 -msgid "Post/Comment Tools" -msgstr "Ferramentas de Publicação/Comentário" - -#: include/features.php:99 -msgid "Multiple Deletion" -msgstr "Deleção Multipla" - -#: include/features.php:99 -msgid "Select and delete multiple posts/comments at once" -msgstr "Selecione e delete múltiplas publicações/comentário imediatamente" - -#: include/features.php:100 -msgid "Edit Sent Posts" -msgstr "Editar Publicações Enviadas" - -#: include/features.php:100 -msgid "Edit and correct posts and comments after sending" -msgstr "Editar e corrigir publicações e comentários após envio" - -#: include/features.php:101 -msgid "Tagging" -msgstr "Etiquetagem" - -#: include/features.php:101 -msgid "Ability to tag existing posts" -msgstr "Capacidade de colocar etiquetas em publicações existentes" - -#: include/features.php:102 -msgid "Post Categories" -msgstr "Categorias de Publicações" - -#: include/features.php:102 -msgid "Add categories to your posts" -msgstr "Adicione Categorias ás Publicações" - -#: include/features.php:103 -msgid "Ability to file posts under folders" -msgstr "Capacidade de arquivar publicações em pastas" - -#: include/features.php:104 -msgid "Dislike Posts" -msgstr "Desgostar de publicações" - -#: include/features.php:104 -msgid "Ability to dislike posts/comments" -msgstr "Capacidade de desgostar de publicações/comentários" - -#: include/features.php:105 -msgid "Star Posts" -msgstr "Destacar publicações" - -#: include/features.php:105 -msgid "Ability to mark special posts with a star indicator" -msgstr "Capacidade de marcar publicações especiais com uma estrela indicadora" - -#: include/features.php:106 -msgid "Mute Post Notifications" -msgstr "Silenciar Notificações de Postagem" - -#: include/features.php:106 -msgid "Ability to mute notifications for a thread" -msgstr "Habilitar notificação silenciosa para a tarefa" - -#: include/features.php:111 -msgid "Advanced Profile Settings" -msgstr "Configurações de perfil avançadas" - -#: include/features.php:112 -msgid "Show visitors public community forums at the Advanced Profile Page" -msgstr "" - -#: include/nav.php:35 mod/navigation.php:19 -msgid "Nothing new here" -msgstr "Nada de novo aqui" - -#: include/nav.php:39 mod/navigation.php:23 -msgid "Clear notifications" -msgstr "Descartar notificações" - -#: include/nav.php:40 include/text.php:997 -msgid "@name, !forum, #tags, content" -msgstr "" - -#: include/nav.php:75 view/theme/frio/theme.php:243 boot.php:1655 -msgid "Logout" -msgstr "Sair" - -#: include/nav.php:75 view/theme/frio/theme.php:243 -msgid "End this session" -msgstr "Terminar esta sessão" - -#: include/nav.php:78 include/identity.php:712 mod/contacts.php:635 -#: mod/contacts.php:831 view/theme/frio/theme.php:246 -msgid "Status" -msgstr "Status" - -#: include/nav.php:78 include/nav.php:163 view/theme/frio/theme.php:246 -#: view/theme/diabook/theme.php:123 -msgid "Your posts and conversations" -msgstr "Suas publicações e conversas" - -#: include/nav.php:79 include/identity.php:603 include/identity.php:689 -#: include/identity.php:720 mod/profperm.php:104 mod/newmember.php:32 -#: mod/contacts.php:637 mod/contacts.php:839 view/theme/frio/theme.php:247 -#: view/theme/diabook/theme.php:124 -msgid "Profile" -msgstr "Perfil " - -#: include/nav.php:79 view/theme/frio/theme.php:247 -#: view/theme/diabook/theme.php:124 -msgid "Your profile page" -msgstr "Sua página de perfil" - -#: include/nav.php:80 include/identity.php:728 mod/fbrowser.php:32 -#: view/theme/frio/theme.php:248 view/theme/diabook/theme.php:126 -msgid "Photos" -msgstr "Fotos" - -#: include/nav.php:80 view/theme/frio/theme.php:248 -#: view/theme/diabook/theme.php:126 -msgid "Your photos" -msgstr "Suas fotos" - -#: include/nav.php:81 include/identity.php:736 include/identity.php:739 -#: view/theme/frio/theme.php:249 -msgid "Videos" -msgstr "Vídeos" - -#: include/nav.php:81 view/theme/frio/theme.php:249 -msgid "Your videos" -msgstr "Seus vídeos" - -#: include/nav.php:82 include/nav.php:146 include/identity.php:748 -#: include/identity.php:759 mod/cal.php:278 mod/events.php:379 -#: view/theme/frio/theme.php:250 view/theme/frio/theme.php:254 -#: view/theme/diabook/theme.php:127 -msgid "Events" -msgstr "Eventos" - -#: include/nav.php:82 view/theme/frio/theme.php:250 -#: view/theme/diabook/theme.php:127 -msgid "Your events" -msgstr "Seus eventos" - -#: include/nav.php:83 view/theme/diabook/theme.php:128 -msgid "Personal notes" -msgstr "Suas anotações pessoais" - -#: include/nav.php:83 -msgid "Your personal notes" -msgstr "Suas anotações pessoais" - -#: include/nav.php:94 mod/bookmarklet.php:12 boot.php:1656 -msgid "Login" -msgstr "Entrar" - -#: include/nav.php:94 -msgid "Sign in" -msgstr "Entrar" - -#: include/nav.php:107 include/nav.php:163 -#: include/NotificationsManager.php:174 view/theme/diabook/theme.php:123 -msgid "Home" -msgstr "Pessoal" - -#: include/nav.php:107 -msgid "Home Page" -msgstr "Página pessoal" - -#: include/nav.php:111 mod/register.php:280 boot.php:1631 -msgid "Register" -msgstr "Registrar" - -#: include/nav.php:111 -msgid "Create an account" -msgstr "Criar uma conta" - -#: include/nav.php:116 mod/help.php:47 view/theme/vier/theme.php:298 -msgid "Help" -msgstr "Ajuda" - -#: include/nav.php:116 -msgid "Help and documentation" -msgstr "Ajuda e documentação" - -#: include/nav.php:119 -msgid "Apps" -msgstr "Aplicativos" - -#: include/nav.php:119 -msgid "Addon applications, utilities, games" -msgstr "Complementos, utilitários, jogos" - -#: include/nav.php:122 include/text.php:994 mod/search.php:149 -msgid "Search" -msgstr "Pesquisar" - -#: include/nav.php:122 -msgid "Search site content" -msgstr "Pesquisar conteúdo no site" - -#: include/nav.php:125 include/text.php:1002 -msgid "Full Text" -msgstr "" - -#: include/nav.php:126 include/text.php:1003 -msgid "Tags" -msgstr "" - -#: include/nav.php:127 include/nav.php:193 include/identity.php:781 -#: include/identity.php:784 include/text.php:1004 mod/viewcontacts.php:116 -#: mod/contacts.php:790 mod/contacts.php:851 view/theme/frio/theme.php:257 -#: view/theme/diabook/theme.php:125 -msgid "Contacts" -msgstr "Contatos" - -#: include/nav.php:141 include/nav.php:143 mod/community.php:36 -#: view/theme/diabook/theme.php:129 -msgid "Community" -msgstr "Comunidade" - -#: include/nav.php:141 -msgid "Conversations on this site" -msgstr "Conversas neste site" - -#: include/nav.php:143 -msgid "Conversations on the network" -msgstr "Conversas na rede" - -#: include/nav.php:146 include/identity.php:751 include/identity.php:762 -#: view/theme/frio/theme.php:254 -msgid "Events and Calendar" -msgstr "Eventos e Agenda" - -#: include/nav.php:148 -msgid "Directory" -msgstr "Diretório" - -#: include/nav.php:148 -msgid "People directory" -msgstr "Diretório de pessoas" - -#: include/nav.php:150 -msgid "Information" -msgstr "Informação" - -#: include/nav.php:150 -msgid "Information about this friendica instance" -msgstr "Informação sobre esta instância do friendica" - -#: include/nav.php:160 include/NotificationsManager.php:160 mod/admin.php:402 -#: view/theme/frio/theme.php:253 -msgid "Network" -msgstr "Rede" - -#: include/nav.php:160 view/theme/frio/theme.php:253 -msgid "Conversations from your friends" -msgstr "Conversas dos seus amigos" - -#: include/nav.php:161 -msgid "Network Reset" -msgstr "Reiniciar Rede" - -#: include/nav.php:161 -msgid "Load Network page with no filters" -msgstr "Carregar página Rede sem filtros" - -#: include/nav.php:168 include/NotificationsManager.php:181 -msgid "Introductions" -msgstr "Apresentações" - -#: include/nav.php:168 -msgid "Friend Requests" -msgstr "Requisições de Amizade" - -#: include/nav.php:171 mod/notifications.php:96 -msgid "Notifications" -msgstr "Notificações" - -#: include/nav.php:172 -msgid "See all notifications" -msgstr "Ver todas notificações" - -#: include/nav.php:173 mod/settings.php:887 -msgid "Mark as seen" -msgstr "Marcar como visto" - -#: include/nav.php:173 -msgid "Mark all system notifications seen" -msgstr "Marcar todas as notificações de sistema como vistas" - -#: include/nav.php:177 mod/message.php:190 view/theme/frio/theme.php:255 -msgid "Messages" -msgstr "Mensagens" - -#: include/nav.php:177 view/theme/frio/theme.php:255 -msgid "Private mail" -msgstr "Mensagem privada" - -#: include/nav.php:178 -msgid "Inbox" -msgstr "Recebidas" - -#: include/nav.php:179 -msgid "Outbox" -msgstr "Enviadas" - -#: include/nav.php:180 mod/message.php:16 -msgid "New Message" -msgstr "Nova mensagem" - -#: include/nav.php:183 -msgid "Manage" -msgstr "Gerenciar" - -#: include/nav.php:183 -msgid "Manage other pages" -msgstr "Gerenciar outras páginas" - -#: include/nav.php:186 mod/settings.php:81 -msgid "Delegations" -msgstr "Delegações" - -#: include/nav.php:186 mod/delegate.php:130 -msgid "Delegate Page Management" -msgstr "Delegar Administração de Página" - -#: include/nav.php:188 mod/newmember.php:22 mod/admin.php:1501 -#: mod/admin.php:1759 mod/settings.php:111 view/theme/frio/theme.php:256 -#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:648 -msgid "Settings" -msgstr "Configurações" - -#: include/nav.php:188 view/theme/frio/theme.php:256 -msgid "Account settings" -msgstr "Configurações da conta" - -#: include/nav.php:191 include/identity.php:276 -msgid "Profiles" -msgstr "Perfis" - -#: include/nav.php:191 -msgid "Manage/Edit Profiles" -msgstr "Administrar/Editar Perfis" - -#: include/nav.php:193 view/theme/frio/theme.php:257 -msgid "Manage/edit friends and contacts" -msgstr "Gerenciar/editar amigos e contatos" - -#: include/nav.php:200 mod/admin.php:186 -msgid "Admin" -msgstr "Admin" - -#: include/nav.php:200 -msgid "Site setup and configuration" -msgstr "Configurações do site" - -#: include/nav.php:204 -msgid "Navigation" -msgstr "Navegação" - -#: include/nav.php:204 -msgid "Site map" -msgstr "Mapa do Site" - -#: include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Desconhecido | Não categorizado" - -#: include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Bloquear imediatamente" - -#: include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Dissimulado, spammer, propagandista" - -#: include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Eu conheço, mas não possuo nenhuma opinião acerca" - -#: include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "Ok, provavelmente inofensivo" - -#: include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Boa reputação, tem minha confiança" - -#: include/contact_selectors.php:56 mod/admin.php:861 -msgid "Frequently" -msgstr "Frequentemente" - -#: include/contact_selectors.php:57 mod/admin.php:862 -msgid "Hourly" -msgstr "De hora em hora" - -#: include/contact_selectors.php:58 mod/admin.php:863 -msgid "Twice daily" -msgstr "Duas vezes ao dia" - -#: include/contact_selectors.php:59 mod/admin.php:864 -msgid "Daily" -msgstr "Diariamente" - -#: include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Semanalmente" - -#: include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Mensalmente" - -#: include/contact_selectors.php:76 mod/dfrn_request.php:867 -msgid "Friendica" -msgstr "Friendica" - -#: include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: include/contact_selectors.php:79 include/contact_selectors.php:86 -#: mod/admin.php:1374 mod/admin.php:1387 mod/admin.php:1399 mod/admin.php:1417 -msgid "Email" -msgstr "E-mail" - -#: include/contact_selectors.php:80 mod/dfrn_request.php:869 -#: mod/settings.php:827 -msgid "Diaspora" -msgstr "Diaspora" - -#: include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" - -#: include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" - -#: include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: include/contact_selectors.php:87 -msgid "Google+" -msgstr "Google+" - -#: include/contact_selectors.php:88 -msgid "pump.io" -msgstr "pump.io" - -#: include/contact_selectors.php:89 -msgid "Twitter" -msgstr "Twitter" - -#: include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "Conector do Diáspora" - -#: include/contact_selectors.php:91 -msgid "GNU Social" -msgstr "GNU Social" - -#: include/contact_selectors.php:92 -msgid "App.net" -msgstr "App.net" - -#: include/contact_selectors.php:103 -msgid "Hubzilla/Redmatrix" -msgstr "Hubzilla/Redmatrix" - -#: include/conversation.php:122 include/conversation.php:258 -#: include/like.php:165 include/text.php:1788 view/theme/diabook/theme.php:463 -msgid "event" -msgstr "evento" - -#: include/conversation.php:125 include/conversation.php:134 -#: include/conversation.php:261 include/conversation.php:270 -#: include/diaspora.php:1402 include/like.php:163 mod/subthread.php:87 -#: mod/tagger.php:62 view/theme/diabook/theme.php:466 -#: view/theme/diabook/theme.php:475 -msgid "status" -msgstr "status" - -#: include/conversation.php:130 include/conversation.php:266 -#: include/like.php:163 include/text.php:1790 mod/subthread.php:87 -#: mod/tagger.php:62 view/theme/diabook/theme.php:471 -msgid "photo" -msgstr "foto" - -#: include/conversation.php:141 include/diaspora.php:1398 include/like.php:182 -#: view/theme/diabook/theme.php:480 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s gosta de %3$s de %2$s" - -#: include/conversation.php:144 include/like.php:184 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s não gosta de %3$s de %2$s" - -#: include/conversation.php:147 -#, php-format -msgid "%1$s attends %2$s's %3$s" -msgstr "" - -#: include/conversation.php:150 -#, php-format -msgid "%1$s doesn't attend %2$s's %3$s" -msgstr "" - -#: include/conversation.php:153 -#, php-format -msgid "%1$s attends maybe %2$s's %3$s" -msgstr "" - -#: include/conversation.php:185 mod/dfrn_confirm.php:473 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s agora é amigo de %2$s" - -#: include/conversation.php:219 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s cutucou %2$s" - -#: include/conversation.php:239 mod/mood.php:62 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s atualmente está %2$s" - -#: include/conversation.php:278 mod/tagger.php:95 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s etiquetou %3$s de %2$s com %4$s" - -#: include/conversation.php:303 -msgid "post/item" -msgstr "postagem/item" - -#: include/conversation.php:304 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s marcou %3$s de %2$s como favorito" - -#: include/conversation.php:587 mod/content.php:372 mod/profiles.php:345 -#: mod/photos.php:1634 -msgid "Likes" -msgstr "Gosta de" - -#: include/conversation.php:587 mod/content.php:372 mod/profiles.php:349 -#: mod/photos.php:1634 -msgid "Dislikes" -msgstr "Não gosta de" - -#: include/conversation.php:588 include/conversation.php:1471 -#: mod/content.php:373 mod/photos.php:1635 -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "" -msgstr[1] "" - -#: include/conversation.php:588 mod/content.php:373 mod/photos.php:1635 -msgid "Not attending" -msgstr "" - -#: include/conversation.php:588 mod/content.php:373 mod/photos.php:1635 -msgid "Might attend" -msgstr "" - -#: include/conversation.php:710 mod/content.php:453 mod/content.php:758 -#: mod/photos.php:1709 object/Item.php:133 -msgid "Select" -msgstr "Selecionar" - -#: include/conversation.php:711 mod/group.php:171 mod/content.php:454 -#: mod/content.php:759 mod/admin.php:1391 mod/contacts.php:806 -#: mod/contacts.php:1021 mod/settings.php:726 mod/photos.php:1710 -#: object/Item.php:134 -msgid "Delete" -msgstr "Excluir" - -#: include/conversation.php:755 mod/content.php:487 mod/content.php:910 -#: mod/content.php:911 object/Item.php:367 object/Item.php:368 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Ver o perfil de %s @ %s" - -#: include/conversation.php:767 object/Item.php:355 -msgid "Categories:" -msgstr "Categorias:" - -#: include/conversation.php:768 object/Item.php:356 -msgid "Filed under:" -msgstr "Arquivado sob:" - -#: include/conversation.php:775 mod/content.php:497 mod/content.php:923 -#: object/Item.php:381 -#, php-format -msgid "%s from %s" -msgstr "%s de %s" - -#: include/conversation.php:791 mod/content.php:513 -msgid "View in context" -msgstr "Ver no contexto" - -#: include/conversation.php:793 include/conversation.php:1255 -#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356 -#: mod/message.php:548 mod/content.php:515 mod/content.php:948 -#: mod/photos.php:1597 object/Item.php:406 -msgid "Please wait" -msgstr "Por favor, espere" - -#: include/conversation.php:872 -msgid "remove" -msgstr "remover" - -#: include/conversation.php:876 -msgid "Delete Selected Items" -msgstr "Excluir os itens selecionados" - -#: include/conversation.php:964 -msgid "Follow Thread" -msgstr "Seguir o Thread" - -#: include/conversation.php:965 include/Contact.php:364 -msgid "View Status" -msgstr "Ver Status" - -#: include/conversation.php:966 include/conversation.php:980 -#: include/Contact.php:310 include/Contact.php:323 include/Contact.php:365 -#: mod/directory.php:163 mod/match.php:71 mod/allfriends.php:65 -#: mod/suggest.php:82 mod/dirfind.php:203 -msgid "View Profile" -msgstr "Ver Perfil" - -#: include/conversation.php:967 include/Contact.php:366 -msgid "View Photos" -msgstr "Ver Fotos" - -#: include/conversation.php:968 include/Contact.php:367 -msgid "Network Posts" -msgstr "Publicações da Rede" - -#: include/conversation.php:969 include/Contact.php:368 -msgid "Edit Contact" -msgstr "Editar Contato" - -#: include/conversation.php:970 include/Contact.php:370 -msgid "Send PM" -msgstr "Enviar MP" - -#: include/conversation.php:974 include/Contact.php:371 -msgid "Poke" -msgstr "Cutucar" - -#: include/conversation.php:1088 -#, php-format -msgid "%s likes this." -msgstr "%s gostou disso." - -#: include/conversation.php:1091 -#, php-format -msgid "%s doesn't like this." -msgstr "%s não gostou disso." - -#: include/conversation.php:1094 -#, php-format -msgid "%s attends." -msgstr "" - -#: include/conversation.php:1097 -#, php-format -msgid "%s doesn't attend." -msgstr "" - -#: include/conversation.php:1100 -#, php-format -msgid "%s attends maybe." -msgstr "" - -#: include/conversation.php:1110 -msgid "and" -msgstr "e" - -#: include/conversation.php:1116 -#, php-format -msgid ", and %d other people" -msgstr ", e mais %d outras pessoas" - -#: include/conversation.php:1125 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d pessoas gostaram disso" - -#: include/conversation.php:1126 -#, php-format -msgid "%s like this." -msgstr "%s curtiu." - -#: include/conversation.php:1129 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d pessoas não gostaram disso" - -#: include/conversation.php:1130 -#, php-format -msgid "%s don't like this." -msgstr "%s não curtiu." - -#: include/conversation.php:1133 -#, php-format -msgid "%2$d people attend" -msgstr "" - -#: include/conversation.php:1134 -#, php-format -msgid "%s attend." -msgstr "" - -#: include/conversation.php:1137 -#, php-format -msgid "%2$d people don't attend" -msgstr "" - -#: include/conversation.php:1138 -#, php-format -msgid "%s don't attend." -msgstr "" - -#: include/conversation.php:1141 -#, php-format -msgid "%2$d people anttend maybe" -msgstr "" - -#: include/conversation.php:1142 -#, php-format -msgid "%s anttend maybe." -msgstr "" - -#: include/conversation.php:1181 include/conversation.php:1199 -msgid "Visible to everybody" -msgstr "Visível para todos" - -#: include/conversation.php:1182 include/conversation.php:1200 -#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291 -#: mod/message.php:299 mod/message.php:442 mod/message.php:450 -msgid "Please enter a link URL:" -msgstr "Por favor, digite uma URL:" - -#: include/conversation.php:1183 include/conversation.php:1201 -msgid "Please enter a video link/URL:" -msgstr "Favor fornecer um link/URL de vídeo" - -#: include/conversation.php:1184 include/conversation.php:1202 -msgid "Please enter an audio link/URL:" -msgstr "Favor fornecer um link/URL de áudio" - -#: include/conversation.php:1185 include/conversation.php:1203 -msgid "Tag term:" -msgstr "Etiqueta:" - -#: include/conversation.php:1186 include/conversation.php:1204 -#: mod/filer.php:30 -msgid "Save to Folder:" -msgstr "Salvar na pasta:" - -#: include/conversation.php:1187 include/conversation.php:1205 -msgid "Where are you right now?" -msgstr "Onde você está agora?" - -#: include/conversation.php:1188 -msgid "Delete item(s)?" -msgstr "Deletar item(s)?" - -#: include/conversation.php:1236 mod/photos.php:1596 -msgid "Share" -msgstr "Compartilhar" - -#: include/conversation.php:1237 mod/editpost.php:110 mod/wallmessage.php:154 -#: mod/message.php:354 mod/message.php:545 -msgid "Upload photo" -msgstr "Enviar foto" - -#: include/conversation.php:1238 mod/editpost.php:111 -msgid "upload photo" -msgstr "upload de foto" - -#: include/conversation.php:1239 mod/editpost.php:112 -msgid "Attach file" -msgstr "Anexar arquivo" - -#: include/conversation.php:1240 mod/editpost.php:113 -msgid "attach file" -msgstr "anexar arquivo" - -#: include/conversation.php:1241 mod/editpost.php:114 mod/wallmessage.php:155 -#: mod/message.php:355 mod/message.php:546 -msgid "Insert web link" -msgstr "Inserir link web" - -#: include/conversation.php:1242 mod/editpost.php:115 -msgid "web link" -msgstr "link web" - -#: include/conversation.php:1243 mod/editpost.php:116 -msgid "Insert video link" -msgstr "Inserir link de vídeo" - -#: include/conversation.php:1244 mod/editpost.php:117 -msgid "video link" -msgstr "link de vídeo" - -#: include/conversation.php:1245 mod/editpost.php:118 -msgid "Insert audio link" -msgstr "Inserir link de áudio" - -#: include/conversation.php:1246 mod/editpost.php:119 -msgid "audio link" -msgstr "link de áudio" - -#: include/conversation.php:1247 mod/editpost.php:120 -msgid "Set your location" -msgstr "Definir sua localização" - -#: include/conversation.php:1248 mod/editpost.php:121 -msgid "set location" -msgstr "configure localização" - -#: include/conversation.php:1249 mod/editpost.php:122 -msgid "Clear browser location" -msgstr "Limpar a localização do navegador" - -#: include/conversation.php:1250 mod/editpost.php:123 -msgid "clear location" -msgstr "apague localização" - -#: include/conversation.php:1252 mod/editpost.php:137 -msgid "Set title" -msgstr "Definir o título" - -#: include/conversation.php:1254 mod/editpost.php:139 -msgid "Categories (comma-separated list)" -msgstr "Categorias (lista separada por vírgulas)" - -#: include/conversation.php:1256 mod/editpost.php:125 -msgid "Permission settings" -msgstr "Configurações de permissão" - -#: include/conversation.php:1257 mod/editpost.php:154 -msgid "permissions" -msgstr "permissões" - -#: include/conversation.php:1265 mod/editpost.php:134 -msgid "Public post" -msgstr "Publicação pública" - -#: include/conversation.php:1270 mod/editpost.php:145 mod/content.php:737 -#: mod/events.php:505 mod/photos.php:1618 mod/photos.php:1666 -#: mod/photos.php:1754 object/Item.php:729 -msgid "Preview" -msgstr "Pré-visualização" - -#: include/conversation.php:1274 include/items.php:1849 mod/fbrowser.php:101 -#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:121 -#: mod/suggest.php:32 mod/editpost.php:148 mod/message.php:220 -#: mod/dfrn_request.php:875 mod/contacts.php:445 mod/settings.php:664 -#: mod/settings.php:690 mod/videos.php:131 mod/photos.php:248 -#: mod/photos.php:337 -msgid "Cancel" -msgstr "Cancelar" - -#: include/conversation.php:1280 -msgid "Post to Groups" -msgstr "Postar em Grupos" - -#: include/conversation.php:1281 -msgid "Post to Contacts" -msgstr "Publique para Contatos" - -#: include/conversation.php:1282 -msgid "Private post" -msgstr "Publicação privada" - -#: include/conversation.php:1287 include/identity.php:250 mod/editpost.php:152 -msgid "Message" -msgstr "Mensagem" - -#: include/conversation.php:1288 mod/editpost.php:153 -msgid "Browser" -msgstr "Navegador" - -#: include/conversation.php:1443 -msgid "View all" -msgstr "" - -#: include/conversation.php:1465 -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Curtida" -msgstr[1] "Curtidas" - -#: include/conversation.php:1468 -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Não curtiu" -msgstr[1] "Não curtiram" - -#: include/conversation.php:1474 -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Não vai" -msgstr[1] "Não vão" - -#: include/network.php:595 -msgid "view full size" -msgstr "ver na tela inteira" - -#: include/dbstructure.php:26 +#: include/dbstructure.php:61 #, php-format msgid "" "\n" @@ -2287,487 +2790,140 @@ msgid "" "\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "\n\t\t\tOs desenvolvedores de Friendica lançaram recentemente uma atualização %s,\n\t\t\tmas quando tentei instalá-la, algo deu terrivelmente errado.\n\t\t\tIsso precisa ser corrigido em breve e eu não posso fazer isso sozinho. Por favor, contate um\n\t\t\tdesenvolvedor da Friendica se você não pode me ajudar sozinho. Meu banco de dados pode ser inválido." -#: include/dbstructure.php:31 +#: include/dbstructure.php:66 #, php-format msgid "" "The error message is\n" "[pre]%s[/pre]" msgstr "A mensagem de erro é\n[pre]%s[/pre]" -#: include/dbstructure.php:153 -msgid "Errors encountered creating database tables." -msgstr "Foram encontrados erros durante a criação das tabelas do banco de dados." - -#: include/dbstructure.php:230 -msgid "Errors encountered performing database changes." -msgstr "Erros encontrados realizando mudanças no banco de dados." - -#: include/Contact.php:119 -msgid "stopped following" -msgstr "parou de acompanhar" - -#: include/Contact.php:369 -msgid "Drop Contact" -msgstr "Excluir o contato" - -#: include/acl_selectors.php:327 -msgid "Post to Email" -msgstr "Enviar por e-mail" - -#: include/acl_selectors.php:332 +#: include/dbstructure.php:190 #, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "Conectores desabilitados, desde \"%s\" está habilitado." +msgid "" +"\n" +"Error %d occurred during database update:\n" +"%s\n" +msgstr "" -#: include/acl_selectors.php:333 mod/settings.php:1131 -msgid "Hide your profile details from unknown viewers?" -msgstr "Ocultar os detalhes do seu perfil para pessoas desconhecidas?" +#: include/dbstructure.php:193 +msgid "Errors encountered performing database changes: " +msgstr "" -#: include/acl_selectors.php:338 -msgid "Visible to everybody" -msgstr "Visível para todos" +#: include/dbstructure.php:201 +msgid ": Database update" +msgstr "" -#: include/acl_selectors.php:339 view/theme/vier/config.php:103 -#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 -msgid "show" -msgstr "exibir" - -#: include/acl_selectors.php:340 view/theme/vier/config.php:103 -#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 -msgid "don't show" -msgstr "não exibir" - -#: include/acl_selectors.php:346 mod/editpost.php:133 -msgid "CC: email addresses" -msgstr "CC: endereço de e-mail" - -#: include/acl_selectors.php:347 mod/editpost.php:140 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Por exemplo: joao@exemplo.com, maria@exemplo.com" - -#: include/acl_selectors.php:349 mod/photos.php:1178 mod/photos.php:1562 -msgid "Permissions" -msgstr "Permissões" - -#: include/acl_selectors.php:350 -msgid "Close" -msgstr "Fechar" - -#: include/api.php:975 +#: include/dbstructure.php:425 #, php-format -msgid "Daily posting limit of %d posts reached. The post was rejected." -msgstr "O limite diário de postagem de %d mensagens foi atingido. O post foi rejeitado." +msgid "%s: updating %s table." +msgstr "" -#: include/api.php:995 -#, php-format -msgid "Weekly posting limit of %d posts reached. The post was rejected." -msgstr "O limite de postagem semanal de %d mensagens foi atingido. O post foi rejeitado." - -#: include/api.php:1016 -#, php-format -msgid "Monthly posting limit of %d posts reached. The post was rejected." -msgstr "O limite de postagem mensal de %d mensagens foi atingido. O post foi rejeitado." - -#: include/dfrn.php:1110 +#: include/dfrn.php:1251 #, php-format msgid "%s\\'s birthday" msgstr "Aniversário de %s\\" -#: include/diaspora.php:1954 +#: include/diaspora.php:2137 msgid "Sharing notification from Diaspora network" msgstr "Notificação de compartilhamento da rede Diaspora" -#: include/diaspora.php:2854 +#: include/diaspora.php:3146 msgid "Attachments:" msgstr "Anexos:" -#: include/follow.php:77 mod/dfrn_request.php:507 -msgid "Disallowed profile URL." -msgstr "URL de perfil não permitida." - -#: include/follow.php:82 -msgid "Connect URL missing." -msgstr "URL de conexão faltando." - -#: include/follow.php:109 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Este site não está configurado para permitir comunicações com outras redes." - -#: include/follow.php:110 include/follow.php:130 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Não foi descoberto nenhum protocolo de comunicação ou fonte de notícias compatível." - -#: include/follow.php:128 -msgid "The profile address specified does not provide adequate information." -msgstr "O endereço de perfil especificado não fornece informação adequada." - -#: include/follow.php:132 -msgid "An author or name was not found." -msgstr "Não foi encontrado nenhum autor ou nome." - -#: include/follow.php:134 -msgid "No browser URL could be matched to this address." -msgstr "Não foi possível encontrar nenhuma URL de navegação neste endereço." - -#: include/follow.php:136 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Não foi possível casa o estilo @ de Endereço de Identidade com um protocolo conhecido ou contato de email." - -#: include/follow.php:137 -msgid "Use mailto: in front of address to force email check." -msgstr "Use mailto: antes do endereço para forçar a checagem de email." - -#: include/follow.php:143 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "O endereço de perfil especificado pertence a uma rede que foi desabilitada neste site." - -#: include/follow.php:153 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Perfil limitado. Essa pessoa não poderá receber notificações diretas/pessoais de você." - -#: include/follow.php:254 -msgid "Unable to retrieve contact information." -msgstr "Não foi possível recuperar a informação do contato." - -#: include/follow.php:287 -msgid "following" -msgstr "acompanhando" - -#: include/identity.php:42 -msgid "Requested account is not available." -msgstr "Conta solicitada não disponível" - -#: include/identity.php:51 mod/profile.php:21 -msgid "Requested profile is not available." -msgstr "Perfil solicitado não está disponível." - -#: include/identity.php:95 include/identity.php:305 include/identity.php:686 -msgid "Edit profile" -msgstr "Editar perfil" - -#: include/identity.php:245 -msgid "Atom feed" -msgstr "" - -#: include/identity.php:276 -msgid "Manage/edit profiles" -msgstr "Gerenciar/editar perfis" - -#: include/identity.php:281 include/identity.php:307 mod/profiles.php:787 -msgid "Change profile photo" -msgstr "Mudar a foto do perfil" - -#: include/identity.php:282 mod/profiles.php:788 -msgid "Create New Profile" -msgstr "Criar um novo perfil" - -#: include/identity.php:292 mod/profiles.php:777 -msgid "Profile Image" -msgstr "Imagem do perfil" - -#: include/identity.php:295 mod/profiles.php:779 -msgid "visible to everybody" -msgstr "visível para todos" - -#: include/identity.php:296 mod/profiles.php:684 mod/profiles.php:780 -msgid "Edit visibility" -msgstr "Editar a visibilidade" - -#: include/identity.php:319 mod/directory.php:174 mod/match.php:84 -#: mod/viewcontacts.php:105 mod/allfriends.php:79 mod/cal.php:44 -#: mod/suggest.php:98 mod/hovercard.php:80 mod/common.php:123 -#: mod/network.php:517 mod/contacts.php:51 mod/contacts.php:626 -#: mod/contacts.php:953 mod/dirfind.php:223 mod/videos.php:37 -#: mod/photos.php:42 -msgid "Forum" -msgstr "Fórum" - -#: include/identity.php:331 include/identity.php:614 mod/directory.php:147 -#: mod/notifications.php:238 -msgid "Gender:" -msgstr "Gênero:" - -#: include/identity.php:334 include/identity.php:634 mod/directory.php:149 -msgid "Status:" -msgstr "Situação:" - -#: include/identity.php:336 include/identity.php:645 mod/directory.php:151 -msgid "Homepage:" -msgstr "Página web:" - -#: include/identity.php:338 include/identity.php:655 mod/directory.php:153 -#: mod/contacts.php:630 mod/notifications.php:234 -msgid "About:" -msgstr "Sobre:" - -#: include/identity.php:420 mod/contacts.php:50 mod/notifications.php:246 -msgid "Network:" -msgstr "Rede:" - -#: include/identity.php:449 include/identity.php:533 -msgid "g A l F d" -msgstr "G l d F" - -#: include/identity.php:450 include/identity.php:534 -msgid "F d" -msgstr "F d" - -#: include/identity.php:495 include/identity.php:580 -msgid "[today]" -msgstr "[hoje]" - -#: include/identity.php:507 -msgid "Birthday Reminders" -msgstr "Lembretes de aniversário" - -#: include/identity.php:508 -msgid "Birthdays this week:" -msgstr "Aniversários nesta semana:" - -#: include/identity.php:567 -msgid "[No description]" -msgstr "[Sem descrição]" - -#: include/identity.php:591 -msgid "Event Reminders" -msgstr "Lembretes de eventos" - -#: include/identity.php:592 -msgid "Events this week:" -msgstr "Eventos esta semana:" - -#: include/identity.php:612 mod/settings.php:1229 -msgid "Full Name:" -msgstr "Nome completo:" - -#: include/identity.php:619 -msgid "j F, Y" -msgstr "j de F, Y" - -#: include/identity.php:620 -msgid "j F" -msgstr "j de F" - -#: include/identity.php:631 -msgid "Age:" -msgstr "Idade:" - -#: include/identity.php:640 -#, php-format -msgid "for %1$d %2$s" -msgstr "para %1$d %2$s" - -#: include/identity.php:643 mod/profiles.php:703 -msgid "Sexual Preference:" -msgstr "Preferência sexual:" - -#: include/identity.php:647 mod/profiles.php:729 -msgid "Hometown:" -msgstr "Cidade:" - -#: include/identity.php:649 mod/follow.php:134 mod/contacts.php:632 -#: mod/notifications.php:236 -msgid "Tags:" -msgstr "Etiquetas:" - -#: include/identity.php:651 mod/profiles.php:730 -msgid "Political Views:" -msgstr "Posição política:" - -#: include/identity.php:653 -msgid "Religion:" -msgstr "Religião:" - -#: include/identity.php:657 -msgid "Hobbies/Interests:" -msgstr "Passatempos/Interesses:" - -#: include/identity.php:659 mod/profiles.php:734 -msgid "Likes:" -msgstr "Gosta de:" - -#: include/identity.php:661 mod/profiles.php:735 -msgid "Dislikes:" -msgstr "Não gosta de:" - -#: include/identity.php:664 -msgid "Contact information and Social Networks:" -msgstr "Informações de contato e redes sociais:" - -#: include/identity.php:666 -msgid "Musical interests:" -msgstr "Preferências musicais:" - -#: include/identity.php:668 -msgid "Books, literature:" -msgstr "Livros, literatura:" - -#: include/identity.php:670 -msgid "Television:" -msgstr "Televisão:" - -#: include/identity.php:672 -msgid "Film/dance/culture/entertainment:" -msgstr "Filmes/dança/cultura/entretenimento:" - -#: include/identity.php:674 -msgid "Love/Romance:" -msgstr "Amor/romance:" - -#: include/identity.php:676 -msgid "Work/employment:" -msgstr "Trabalho/emprego:" - -#: include/identity.php:678 -msgid "School/education:" -msgstr "Escola/educação:" - -#: include/identity.php:682 -msgid "Forums:" -msgstr "Fóruns:" - -#: include/identity.php:690 mod/events.php:508 -msgid "Basic" -msgstr "" - -#: include/identity.php:691 mod/admin.php:930 mod/contacts.php:868 -#: mod/events.php:509 -msgid "Advanced" -msgstr "Avançado" - -#: include/identity.php:715 mod/follow.php:143 mod/contacts.php:834 -msgid "Status Messages and Posts" -msgstr "Mensagem de Estado (status) e Publicações" - -#: include/identity.php:723 mod/contacts.php:842 -msgid "Profile Details" -msgstr "Detalhe do Perfil" - -#: include/identity.php:731 mod/photos.php:100 -msgid "Photo Albums" -msgstr "Álbuns de fotos" - -#: include/identity.php:770 mod/notes.php:46 -msgid "Personal Notes" -msgstr "Notas pessoais" - -#: include/identity.php:773 -msgid "Only You Can See This" -msgstr "Somente Você Pode Ver Isso" - -#: include/items.php:1447 mod/dfrn_request.php:745 mod/dfrn_confirm.php:726 +#: include/items.php:1738 mod/dfrn_confirm.php:736 mod/dfrn_request.php:759 msgid "[Name Withheld]" msgstr "[Nome não revelado]" -#: include/items.php:1805 mod/viewsrc.php:15 mod/display.php:104 -#: mod/display.php:279 mod/display.php:478 mod/notice.php:15 mod/admin.php:234 -#: mod/admin.php:1448 mod/admin.php:1682 +#: include/items.php:2123 mod/display.php:103 mod/display.php:279 +#: mod/display.php:484 mod/notice.php:15 mod/viewsrc.php:15 mod/admin.php:247 +#: mod/admin.php:1565 mod/admin.php:1816 msgid "Item not found." msgstr "O item não foi encontrado." -#: include/items.php:1844 +#: include/items.php:2162 msgid "Do you really want to delete this item?" msgstr "Você realmente deseja deletar esse item?" -#: include/items.php:1846 mod/follow.php:110 mod/suggest.php:29 -#: mod/api.php:105 mod/message.php:217 mod/dfrn_request.php:861 -#: mod/contacts.php:442 mod/profiles.php:641 mod/profiles.php:644 -#: mod/profiles.php:670 mod/register.php:238 mod/settings.php:1113 -#: mod/settings.php:1119 mod/settings.php:1127 mod/settings.php:1131 -#: mod/settings.php:1136 mod/settings.php:1142 mod/settings.php:1148 -#: mod/settings.php:1154 mod/settings.php:1180 mod/settings.php:1181 -#: mod/settings.php:1182 mod/settings.php:1183 mod/settings.php:1184 +#: include/items.php:2164 mod/api.php:105 mod/contacts.php:452 +#: mod/suggest.php:29 mod/dfrn_request.php:880 mod/follow.php:113 +#: mod/message.php:206 mod/profiles.php:640 mod/profiles.php:643 +#: mod/profiles.php:670 mod/register.php:245 mod/settings.php:1171 +#: mod/settings.php:1177 mod/settings.php:1184 mod/settings.php:1188 +#: mod/settings.php:1193 mod/settings.php:1198 mod/settings.php:1203 +#: mod/settings.php:1208 mod/settings.php:1234 mod/settings.php:1235 +#: mod/settings.php:1236 mod/settings.php:1237 mod/settings.php:1238 msgid "Yes" msgstr "Sim" -#: include/items.php:2011 mod/wall_upload.php:77 mod/wall_upload.php:80 -#: mod/notes.php:22 mod/uimport.php:23 mod/nogroup.php:25 mod/invite.php:15 -#: mod/invite.php:101 mod/viewcontacts.php:45 mod/wall_attach.php:67 -#: mod/wall_attach.php:70 mod/allfriends.php:12 mod/cal.php:308 -#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33 -#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/suggest.php:58 -#: mod/display.php:474 mod/common.php:18 mod/editpost.php:10 mod/network.php:4 -#: mod/group.php:19 mod/wallmessage.php:9 mod/wallmessage.php:33 -#: mod/wallmessage.php:79 mod/wallmessage.php:103 mod/api.php:26 -#: mod/api.php:31 mod/ostatus_subscribe.php:9 mod/message.php:46 -#: mod/message.php:182 mod/manage.php:96 mod/crepair.php:100 -#: mod/contacts.php:350 mod/dfrn_confirm.php:57 mod/dirfind.php:11 -#: mod/events.php:190 mod/fsuggest.php:78 mod/item.php:185 mod/item.php:197 -#: mod/mood.php:114 mod/poke.php:150 mod/profile_photo.php:19 -#: mod/profile_photo.php:175 mod/profile_photo.php:186 -#: mod/profile_photo.php:199 mod/profiles.php:166 mod/profiles.php:598 -#: mod/register.php:42 mod/regmod.php:110 mod/settings.php:22 -#: mod/settings.php:128 mod/settings.php:650 mod/notifications.php:71 -#: mod/photos.php:172 mod/photos.php:1093 index.php:397 +#: include/items.php:2327 mod/allfriends.php:12 mod/api.php:26 mod/api.php:31 +#: mod/attach.php:33 mod/common.php:18 mod/contacts.php:360 +#: mod/crepair.php:102 mod/delegate.php:12 mod/display.php:481 +#: mod/editpost.php:10 mod/fsuggest.php:79 mod/invite.php:15 +#: mod/invite.php:103 mod/mood.php:115 mod/nogroup.php:27 mod/notes.php:23 +#: mod/ostatus_subscribe.php:9 mod/poke.php:154 mod/profile_photo.php:19 +#: mod/profile_photo.php:180 mod/profile_photo.php:191 +#: mod/profile_photo.php:204 mod/regmod.php:113 mod/repair_ostatus.php:9 +#: mod/suggest.php:58 mod/uimport.php:24 mod/viewcontacts.php:46 +#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wallmessage.php:9 +#: mod/wallmessage.php:33 mod/wallmessage.php:73 mod/wallmessage.php:97 +#: mod/cal.php:299 mod/dfrn_confirm.php:61 mod/dirfind.php:11 +#: mod/events.php:185 mod/follow.php:11 mod/follow.php:74 mod/follow.php:158 +#: mod/group.php:19 mod/manage.php:102 mod/message.php:46 mod/message.php:171 +#: mod/network.php:4 mod/photos.php:166 mod/photos.php:1109 +#: mod/profiles.php:168 mod/profiles.php:607 mod/register.php:42 +#: mod/settings.php:22 mod/settings.php:130 mod/settings.php:668 +#: mod/wall_upload.php:101 mod/wall_upload.php:104 mod/item.php:196 +#: mod/item.php:208 mod/notifications.php:71 index.php:407 msgid "Permission denied." msgstr "Permissão negada." -#: include/items.php:2116 +#: include/items.php:2444 msgid "Archives" msgstr "Arquivos" -#: include/like.php:186 +#: include/ostatus.php:1947 #, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%1$s vai a %3$s de %2$s" +msgid "%s is now following %s." +msgstr "" -#: include/like.php:188 +#: include/ostatus.php:1948 +msgid "following" +msgstr "acompanhando" + +#: include/ostatus.php:1951 #, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%1$s não vai a %3$s de %2$s" +msgid "%s stopped following %s." +msgstr "" -#: include/like.php:190 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%1$s está pensando em ir a %3$s de %2$s" +#: include/ostatus.php:1952 +msgid "stopped following" +msgstr "parou de acompanhar" -#: include/message.php:15 include/message.php:173 -msgid "[no subject]" -msgstr "[sem assunto]" - -#: include/plugin.php:526 include/plugin.php:528 -msgid "Click here to upgrade." -msgstr "Clique aqui para atualização (upgrade)." - -#: include/plugin.php:534 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Essa ação excede o limite definido para o seu plano de assinatura." - -#: include/plugin.php:539 -msgid "This action is not available under your subscription plan." -msgstr "Essa ação não está disponível em seu plano de assinatura." - -#: include/text.php:304 +#: include/text.php:307 msgid "newer" msgstr "mais recente" -#: include/text.php:306 +#: include/text.php:308 msgid "older" msgstr "antigo" -#: include/text.php:311 -msgid "prev" -msgstr "anterior" - #: include/text.php:313 msgid "first" msgstr "primeiro" -#: include/text.php:345 -msgid "last" -msgstr "último" +#: include/text.php:314 +msgid "prev" +msgstr "anterior" #: include/text.php:348 msgid "next" msgstr "próximo" +#: include/text.php:349 +msgid "last" +msgstr "último" + #: include/text.php:403 msgid "Loading more entries..." msgstr "Baixando mais entradas..." @@ -2776,387 +2932,1170 @@ msgstr "Baixando mais entradas..." msgid "The end" msgstr "Fim" -#: include/text.php:871 +#: include/text.php:955 msgid "No contacts" msgstr "Nenhum contato" -#: include/text.php:894 +#: include/text.php:980 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d contato" msgstr[1] "%d contatos" -#: include/text.php:907 +#: include/text.php:993 msgid "View Contacts" msgstr "Ver contatos" -#: include/text.php:995 mod/notes.php:61 mod/filer.php:31 mod/editpost.php:109 +#: include/text.php:1081 mod/editpost.php:99 mod/filer.php:31 mod/notes.php:62 msgid "Save" msgstr "Salvar" -#: include/text.php:1058 +#: include/text.php:1144 msgid "poke" msgstr "cutucar" -#: include/text.php:1058 +#: include/text.php:1144 msgid "poked" msgstr "cutucado" -#: include/text.php:1059 +#: include/text.php:1145 msgid "ping" msgstr "ping" -#: include/text.php:1059 +#: include/text.php:1145 msgid "pinged" msgstr "pingado" -#: include/text.php:1060 +#: include/text.php:1146 msgid "prod" msgstr "incentivar" -#: include/text.php:1060 +#: include/text.php:1146 msgid "prodded" msgstr "incentivado" -#: include/text.php:1061 +#: include/text.php:1147 msgid "slap" msgstr "bater" -#: include/text.php:1061 +#: include/text.php:1147 msgid "slapped" msgstr "batido" -#: include/text.php:1062 +#: include/text.php:1148 msgid "finger" msgstr "apontar" -#: include/text.php:1062 +#: include/text.php:1148 msgid "fingered" msgstr "apontado" -#: include/text.php:1063 +#: include/text.php:1149 msgid "rebuff" msgstr "rejeite" -#: include/text.php:1063 +#: include/text.php:1149 msgid "rebuffed" msgstr "rejeitado" -#: include/text.php:1077 +#: include/text.php:1163 msgid "happy" msgstr "feliz" -#: include/text.php:1078 +#: include/text.php:1164 msgid "sad" msgstr "triste" -#: include/text.php:1079 +#: include/text.php:1165 msgid "mellow" msgstr "desencanado" -#: include/text.php:1080 +#: include/text.php:1166 msgid "tired" msgstr "cansado" -#: include/text.php:1081 +#: include/text.php:1167 msgid "perky" msgstr "audacioso" -#: include/text.php:1082 +#: include/text.php:1168 msgid "angry" msgstr "chateado" -#: include/text.php:1083 +#: include/text.php:1169 msgid "stupified" msgstr "estupefato" -#: include/text.php:1084 +#: include/text.php:1170 msgid "puzzled" msgstr "confuso" -#: include/text.php:1085 +#: include/text.php:1171 msgid "interested" msgstr "interessado" -#: include/text.php:1086 +#: include/text.php:1172 msgid "bitter" msgstr "rancoroso" -#: include/text.php:1087 +#: include/text.php:1173 msgid "cheerful" msgstr "jovial" -#: include/text.php:1088 +#: include/text.php:1174 msgid "alive" msgstr "vivo" -#: include/text.php:1089 +#: include/text.php:1175 msgid "annoyed" msgstr "incomodado" -#: include/text.php:1090 +#: include/text.php:1176 msgid "anxious" msgstr "ansioso" -#: include/text.php:1091 +#: include/text.php:1177 msgid "cranky" msgstr "excêntrico" -#: include/text.php:1092 +#: include/text.php:1178 msgid "disturbed" msgstr "perturbado" -#: include/text.php:1093 +#: include/text.php:1179 msgid "frustrated" msgstr "frustrado" -#: include/text.php:1094 +#: include/text.php:1180 msgid "motivated" msgstr "motivado" -#: include/text.php:1095 +#: include/text.php:1181 msgid "relaxed" msgstr "relaxado" -#: include/text.php:1096 +#: include/text.php:1182 msgid "surprised" msgstr "surpreso" -#: include/text.php:1310 mod/videos.php:383 +#: include/text.php:1392 mod/videos.php:386 msgid "View Video" msgstr "Ver Vídeo" -#: include/text.php:1342 +#: include/text.php:1424 msgid "bytes" msgstr "bytes" -#: include/text.php:1374 include/text.php:1386 +#: include/text.php:1456 include/text.php:1468 msgid "Click to open/close" msgstr "Clique para abrir/fechar" -#: include/text.php:1512 +#: include/text.php:1594 msgid "View on separate page" msgstr "Ver em uma página separada" -#: include/text.php:1513 +#: include/text.php:1595 msgid "view on separate page" msgstr "ver em uma página separada" -#: include/text.php:1792 +#: include/text.php:1874 msgid "activity" msgstr "atividade" -#: include/text.php:1794 mod/content.php:623 object/Item.php:431 -#: object/Item.php:444 +#: include/text.php:1876 mod/content.php:623 object/Item.php:419 +#: object/Item.php:431 msgid "comment" msgid_plural "comments" msgstr[0] "comentário" msgstr[1] "comentários" -#: include/text.php:1795 +#: include/text.php:1877 msgid "post" msgstr "publicação" -#: include/text.php:1963 +#: include/text.php:2045 msgid "Item filed" msgstr "O item foi arquivado" -#: include/uimport.php:94 -msgid "Error decoding account file" -msgstr "Erro ao decodificar arquivo de conta" +#: mod/allfriends.php:46 +msgid "No friends to display." +msgstr "Nenhum amigo para exibir." -#: include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Erro! Nenhum arquivo de dados de versão! Esse não é um arquivo de conta do Friendica?" +#: mod/api.php:76 mod/api.php:102 +msgid "Authorize application connection" +msgstr "Autorizar a conexão com a aplicação" -#: include/uimport.php:116 include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "Erro! Não consigo conferir o apelido (nickname)" +#: mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Volte para a sua aplicação e digite este código de segurança:" -#: include/uimport.php:120 include/uimport.php:131 +#: mod/api.php:89 +msgid "Please login to continue." +msgstr "Por favor, autentique-se para continuar." + +#: mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?" + +#: mod/api.php:106 mod/dfrn_request.php:880 mod/follow.php:113 +#: mod/profiles.php:640 mod/profiles.php:644 mod/profiles.php:670 +#: mod/register.php:246 mod/settings.php:1171 mod/settings.php:1177 +#: mod/settings.php:1184 mod/settings.php:1188 mod/settings.php:1193 +#: mod/settings.php:1198 mod/settings.php:1203 mod/settings.php:1208 +#: mod/settings.php:1234 mod/settings.php:1235 mod/settings.php:1236 +#: mod/settings.php:1237 mod/settings.php:1238 +msgid "No" +msgstr "Não" + +#: mod/apps.php:7 index.php:254 +msgid "You must be logged in to use addons. " +msgstr "Você precisa estar logado para usar os addons." + +#: mod/apps.php:11 +msgid "Applications" +msgstr "Aplicativos" + +#: mod/apps.php:14 +msgid "No installed applications." +msgstr "Nenhum aplicativo instalado" + +#: mod/attach.php:8 +msgid "Item not available." +msgstr "O item não está disponível." + +#: mod/attach.php:20 +msgid "Item was not found." +msgstr "O item não foi encontrado." + +#: mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "O texto foi criado" + +#: mod/common.php:91 +msgid "No contacts in common." +msgstr "Nenhum contato em comum." + +#: mod/common.php:141 mod/contacts.php:871 +msgid "Common Friends" +msgstr "Amigos em Comum" + +#: mod/contacts.php:134 #, php-format -msgid "User '%s' already exists on this server!" -msgstr "User '%s' já existe nesse servidor!" +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "" +msgstr[1] "" -#: include/uimport.php:153 -msgid "User creation error" -msgstr "Erro na criação do usuário" +#: mod/contacts.php:169 mod/contacts.php:378 +msgid "Could not access contact record." +msgstr "Não foi possível acessar o registro do contato." -#: include/uimport.php:173 -msgid "User profile creation error" -msgstr "Erro na criação do perfil do Usuário" +#: mod/contacts.php:183 +msgid "Could not locate selected profile." +msgstr "Não foi possível localizar o perfil selecionado." -#: include/uimport.php:222 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d contato não foi importado" -msgstr[1] "%d contatos não foram importados" +#: mod/contacts.php:216 +msgid "Contact updated." +msgstr "O contato foi atualizado." -#: include/uimport.php:292 -msgid "Done. You can now login with your username and password" -msgstr "Feito. Você agora pode entrar com seu nome de usuário e senha." +#: mod/contacts.php:218 mod/dfrn_request.php:593 +msgid "Failed to update contact record." +msgstr "Não foi possível atualizar o registro do contato." -#: include/NotificationsManager.php:153 -msgid "System" -msgstr "Sistema" +#: mod/contacts.php:399 +msgid "Contact has been blocked" +msgstr "O contato foi bloqueado" -#: include/NotificationsManager.php:167 mod/network.php:844 -#: mod/profiles.php:696 -msgid "Personal" -msgstr "Pessoal" +#: mod/contacts.php:399 +msgid "Contact has been unblocked" +msgstr "O contato foi desbloqueado" -#: include/NotificationsManager.php:234 include/NotificationsManager.php:245 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s comentou uma publicação de %s" +#: mod/contacts.php:410 +msgid "Contact has been ignored" +msgstr "O contato foi ignorado" -#: include/NotificationsManager.php:244 -#, php-format -msgid "%s created a new post" -msgstr "%s criou uma nova publicação" +#: mod/contacts.php:410 +msgid "Contact has been unignored" +msgstr "O contato deixou de ser ignorado" -#: include/NotificationsManager.php:258 -#, php-format -msgid "%s liked %s's post" -msgstr "%s gostou da publicação de %s" +#: mod/contacts.php:422 +msgid "Contact has been archived" +msgstr "O contato foi arquivado" -#: include/NotificationsManager.php:269 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s desgostou da publicação de %s" +#: mod/contacts.php:422 +msgid "Contact has been unarchived" +msgstr "O contato foi desarquivado" -#: include/NotificationsManager.php:280 -#, php-format -msgid "%s is attending %s's event" -msgstr "%s vai comparecer ao evento de %s" - -#: include/NotificationsManager.php:291 -#, php-format -msgid "%s is not attending %s's event" -msgstr "%s não vai comparecer ao evento de %s" - -#: include/NotificationsManager.php:302 -#, php-format -msgid "%s may attend %s's event" -msgstr "%s talvez compareça ao evento de %s" - -#: include/NotificationsManager.php:317 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s agora é amigo de %s" - -#: include/NotificationsManager.php:750 -msgid "Friend Suggestion" -msgstr "Sugestão de amigo" - -#: include/NotificationsManager.php:783 -msgid "Friend/Connect Request" -msgstr "Solicitação de amizade/conexão" - -#: include/NotificationsManager.php:783 -msgid "New Follower" -msgstr "Novo acompanhante" - -#: mod/oexchange.php:25 -msgid "Post successful." -msgstr "Publicado com sucesso." - -#: mod/update_community.php:18 mod/update_notes.php:37 -#: mod/update_display.php:22 mod/update_profile.php:41 -#: mod/update_network.php:25 -msgid "[Embedded content - reload page to view]" -msgstr "[Conteúdo incorporado - recarregue a página para ver]" - -#: mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Acesso negado." - -#: mod/home.php:35 -#, php-format -msgid "Welcome to %s" -msgstr "Bem-vindo(a) a %s" - -#: mod/notify.php:60 -msgid "No more system notifications." -msgstr "Não fazer notificações de sistema." - -#: mod/notify.php:64 mod/notifications.php:111 -msgid "System Notifications" -msgstr "Notificações de sistema" - -#: mod/search.php:25 mod/network.php:191 -msgid "Remove term" -msgstr "Remover o termo" - -#: mod/search.php:93 mod/search.php:99 mod/directory.php:37 -#: mod/viewcontacts.php:35 mod/display.php:199 mod/community.php:22 -#: mod/dfrn_request.php:790 mod/videos.php:197 mod/photos.php:964 -msgid "Public access denied." -msgstr "Acesso público negado." - -#: mod/search.php:100 -msgid "Only logged in users are permitted to perform a search." +#: mod/contacts.php:447 +msgid "Drop contact" msgstr "" -#: mod/search.php:124 -msgid "Too Many Requests" -msgstr "" +#: mod/contacts.php:450 mod/contacts.php:809 +msgid "Do you really want to delete this contact?" +msgstr "Você realmente deseja deletar esse contato?" -#: mod/search.php:125 -msgid "Only one search per minute is permitted for not logged in users." -msgstr "" +#: mod/contacts.php:469 +msgid "Contact has been removed." +msgstr "O contato foi removido." -#: mod/search.php:224 mod/community.php:66 mod/community.php:75 -msgid "No results." -msgstr "Nenhum resultado." - -#: mod/search.php:230 +#: mod/contacts.php:506 #, php-format -msgid "Items tagged with: %s" +msgid "You are mutual friends with %s" +msgstr "Você tem uma amizade mútua com %s" + +#: mod/contacts.php:510 +#, php-format +msgid "You are sharing with %s" +msgstr "Você está compartilhando com %s" + +#: mod/contacts.php:515 +#, php-format +msgid "%s is sharing with you" +msgstr "%s está compartilhando com você" + +#: mod/contacts.php:535 +msgid "Private communications are not available for this contact." +msgstr "As comunicações privadas não estão disponíveis para este contato." + +#: mod/contacts.php:538 mod/admin.php:978 +msgid "Never" +msgstr "Nunca" + +#: mod/contacts.php:542 +msgid "(Update was successful)" +msgstr "(A atualização foi bem sucedida)" + +#: mod/contacts.php:542 +msgid "(Update was not successful)" +msgstr "(A atualização não foi bem sucedida)" + +#: mod/contacts.php:544 mod/contacts.php:972 +msgid "Suggest friends" +msgstr "Sugerir amigos" + +#: mod/contacts.php:548 +#, php-format +msgid "Network type: %s" +msgstr "Tipo de rede: %s" + +#: mod/contacts.php:561 +msgid "Communications lost with this contact!" +msgstr "As comunicações com esse contato foram perdidas!" + +#: mod/contacts.php:564 +msgid "Fetch further information for feeds" +msgstr "Pega mais informações para feeds" + +#: mod/contacts.php:565 mod/admin.php:987 +msgid "Disabled" +msgstr "Desabilitado" + +#: mod/contacts.php:565 +msgid "Fetch information" +msgstr "Buscar informações" + +#: mod/contacts.php:565 +msgid "Fetch information and keywords" +msgstr "Buscar informação e palavras-chave" + +#: mod/contacts.php:583 +msgid "Contact" msgstr "" -#: mod/search.php:232 mod/network.php:146 mod/contacts.php:795 +#: mod/contacts.php:585 mod/content.php:728 mod/crepair.php:156 +#: mod/fsuggest.php:108 mod/invite.php:142 mod/localtime.php:45 +#: mod/mood.php:138 mod/poke.php:203 mod/events.php:505 mod/manage.php:155 +#: mod/message.php:338 mod/message.php:521 mod/photos.php:1141 +#: mod/photos.php:1271 mod/photos.php:1597 mod/photos.php:1646 +#: mod/photos.php:1688 mod/photos.php:1768 mod/profiles.php:681 +#: mod/install.php:242 mod/install.php:282 object/Item.php:705 +#: view/theme/duepuntozero/config.php:61 view/theme/frio/config.php:64 +#: view/theme/quattro/config.php:67 view/theme/vier/config.php:112 +msgid "Submit" +msgstr "Enviar" + +#: mod/contacts.php:586 +msgid "Profile Visibility" +msgstr "Visibilidade do perfil" + +#: mod/contacts.php:587 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Por favor, selecione o perfil que você gostaria de exibir para %s quando estiver visualizando seu perfil de modo seguro." + +#: mod/contacts.php:588 +msgid "Contact Information / Notes" +msgstr "Informações sobre o contato / Anotações" + +#: mod/contacts.php:589 +msgid "Edit contact notes" +msgstr "Editar as anotações do contato" + +#: mod/contacts.php:594 mod/contacts.php:938 mod/nogroup.php:43 +#: mod/viewcontacts.php:102 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visitar o perfil de %s [%s]" + +#: mod/contacts.php:595 +msgid "Block/Unblock contact" +msgstr "Bloquear/desbloquear o contato" + +#: mod/contacts.php:596 +msgid "Ignore contact" +msgstr "Ignorar o contato" + +#: mod/contacts.php:597 +msgid "Repair URL settings" +msgstr "Reparar as definições de URL" + +#: mod/contacts.php:598 +msgid "View conversations" +msgstr "Ver as conversas" + +#: mod/contacts.php:604 +msgid "Last update:" +msgstr "Última atualização:" + +#: mod/contacts.php:606 +msgid "Update public posts" +msgstr "Atualizar publicações públicas" + +#: mod/contacts.php:608 mod/contacts.php:982 +msgid "Update now" +msgstr "Atualizar agora" + +#: mod/contacts.php:613 mod/contacts.php:813 mod/contacts.php:991 +#: mod/admin.php:1510 +msgid "Unblock" +msgstr "Desbloquear" + +#: mod/contacts.php:613 mod/contacts.php:813 mod/contacts.php:991 +#: mod/admin.php:1509 +msgid "Block" +msgstr "Bloquear" + +#: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999 +msgid "Unignore" +msgstr "Deixar de ignorar" + +#: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999 +#: mod/notifications.php:60 mod/notifications.php:179 +#: mod/notifications.php:263 +msgid "Ignore" +msgstr "Ignorar" + +#: mod/contacts.php:618 +msgid "Currently blocked" +msgstr "Atualmente bloqueado" + +#: mod/contacts.php:619 +msgid "Currently ignored" +msgstr "Atualmente ignorado" + +#: mod/contacts.php:620 +msgid "Currently archived" +msgstr "Atualmente arquivado" + +#: mod/contacts.php:621 mod/notifications.php:172 mod/notifications.php:251 +msgid "Hide this contact from others" +msgstr "Ocultar este contato dos outros" + +#: mod/contacts.php:621 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Respostas/gostadas associados às suas publicações ainda podem estar visíveis" + +#: mod/contacts.php:622 +msgid "Notification for new posts" +msgstr "Notificações para novas publicações" + +#: mod/contacts.php:622 +msgid "Send a notification of every new post of this contact" +msgstr "Envie uma notificação para todos as novas publicações deste contato" + +#: mod/contacts.php:625 +msgid "Blacklisted keywords" +msgstr "Palavras-chave na Lista Negra" + +#: 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 de palavras-chave separadas por vírgulas que não devem ser convertidas para hashtags, quando \"Buscar informações e palavras-chave\" for selecionado." + +#: mod/contacts.php:632 mod/follow.php:129 mod/notifications.php:255 +msgid "Profile URL" +msgstr "URL do perfil" + +#: mod/contacts.php:643 +msgid "Actions" +msgstr "" + +#: mod/contacts.php:646 +msgid "Contact Settings" +msgstr "" + +#: mod/contacts.php:692 +msgid "Suggestions" +msgstr "Sugestões" + +#: mod/contacts.php:695 +msgid "Suggest potential friends" +msgstr "Sugerir amigos em potencial" + +#: mod/contacts.php:700 mod/group.php:212 +msgid "All Contacts" +msgstr "Todos os contatos" + +#: mod/contacts.php:703 +msgid "Show all contacts" +msgstr "Exibe todos os contatos" + +#: mod/contacts.php:708 +msgid "Unblocked" +msgstr "Desbloquear" + +#: mod/contacts.php:711 +msgid "Only show unblocked contacts" +msgstr "Exibe somente contatos desbloqueados" + +#: mod/contacts.php:717 +msgid "Blocked" +msgstr "Bloqueado" + +#: mod/contacts.php:720 +msgid "Only show blocked contacts" +msgstr "Exibe somente contatos bloqueados" + +#: mod/contacts.php:726 +msgid "Ignored" +msgstr "Ignorados" + +#: mod/contacts.php:729 +msgid "Only show ignored contacts" +msgstr "Exibe somente contatos ignorados" + +#: mod/contacts.php:735 +msgid "Archived" +msgstr "Arquivados" + +#: mod/contacts.php:738 +msgid "Only show archived contacts" +msgstr "Exibe somente contatos arquivados" + +#: mod/contacts.php:744 +msgid "Hidden" +msgstr "Ocultos" + +#: mod/contacts.php:747 +msgid "Only show hidden contacts" +msgstr "Exibe somente contatos ocultos" + +#: mod/contacts.php:804 +msgid "Search your contacts" +msgstr "Pesquisar seus contatos" + +#: mod/contacts.php:805 mod/network.php:151 mod/search.php:227 #, php-format msgid "Results for: %s" msgstr "" -#: mod/friendica.php:70 -msgid "This is Friendica, version" -msgstr "Este é o Friendica, versão" +#: mod/contacts.php:812 mod/settings.php:160 mod/settings.php:707 +msgid "Update" +msgstr "Atualizar" -#: mod/friendica.php:71 -msgid "running at web location" -msgstr "sendo executado no endereço web" +#: mod/contacts.php:815 mod/contacts.php:1007 +msgid "Archive" +msgstr "Arquivar" -#: mod/friendica.php:73 +#: mod/contacts.php:815 mod/contacts.php:1007 +msgid "Unarchive" +msgstr "Desarquivar" + +#: mod/contacts.php:818 +msgid "Batch Actions" +msgstr "" + +#: mod/contacts.php:864 +msgid "View all contacts" +msgstr "Ver todos os contatos" + +#: mod/contacts.php:874 +msgid "View all common friends" +msgstr "" + +#: mod/contacts.php:881 +msgid "Advanced Contact Settings" +msgstr "Configurações avançadas do contato" + +#: mod/contacts.php:915 +msgid "Mutual Friendship" +msgstr "Amizade mútua" + +#: mod/contacts.php:919 +msgid "is a fan of yours" +msgstr "é um fã seu" + +#: mod/contacts.php:923 +msgid "you are a fan of" +msgstr "você é um fã de" + +#: mod/contacts.php:939 mod/nogroup.php:44 +msgid "Edit contact" +msgstr "Editar o contato" + +#: mod/contacts.php:993 +msgid "Toggle Blocked status" +msgstr "Alternar o status de bloqueio" + +#: mod/contacts.php:1001 +msgid "Toggle Ignored status" +msgstr "Alternar o status de ignorado" + +#: mod/contacts.php:1009 +msgid "Toggle Archive status" +msgstr "Alternar o status de arquivamento" + +#: mod/contacts.php:1017 +msgid "Delete contact" +msgstr "Excluir o contato" + +#: mod/content.php:119 mod/network.php:475 +msgid "No such group" +msgstr "Este grupo não existe" + +#: mod/content.php:130 mod/group.php:213 mod/network.php:502 +msgid "Group is empty" +msgstr "O grupo está vazio" + +#: mod/content.php:135 mod/network.php:506 +#, php-format +msgid "Group: %s" +msgstr "Grupo: %s" + +#: mod/content.php:325 object/Item.php:96 +msgid "This entry was edited" +msgstr "Essa entrada foi editada" + +#: mod/content.php:621 object/Item.php:417 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d comentário" +msgstr[1] "%d comentários" + +#: mod/content.php:638 mod/photos.php:1429 object/Item.php:117 +msgid "Private Message" +msgstr "Mensagem privada" + +#: mod/content.php:702 mod/photos.php:1625 object/Item.php:274 +msgid "I like this (toggle)" +msgstr "Eu gostei disso (alternar)" + +#: mod/content.php:702 object/Item.php:274 +msgid "like" +msgstr "gostei" + +#: mod/content.php:703 mod/photos.php:1626 object/Item.php:275 +msgid "I don't like this (toggle)" +msgstr "Eu não gostei disso (alternar)" + +#: mod/content.php:703 object/Item.php:275 +msgid "dislike" +msgstr "desgostar" + +#: mod/content.php:705 object/Item.php:278 +msgid "Share this" +msgstr "Compartilhar isso" + +#: mod/content.php:705 object/Item.php:278 +msgid "share" +msgstr "compartilhar" + +#: mod/content.php:725 mod/photos.php:1643 mod/photos.php:1685 +#: mod/photos.php:1765 object/Item.php:702 +msgid "This is you" +msgstr "Este(a) é você" + +#: mod/content.php:727 mod/content.php:950 mod/photos.php:1645 +#: mod/photos.php:1687 mod/photos.php:1767 object/Item.php:392 +#: object/Item.php:704 +msgid "Comment" +msgstr "Comentar" + +#: mod/content.php:729 object/Item.php:706 +msgid "Bold" +msgstr "Negrito" + +#: mod/content.php:730 object/Item.php:707 +msgid "Italic" +msgstr "Itálico" + +#: mod/content.php:731 object/Item.php:708 +msgid "Underline" +msgstr "Sublinhado" + +#: mod/content.php:732 object/Item.php:709 +msgid "Quote" +msgstr "Citação" + +#: mod/content.php:733 object/Item.php:710 +msgid "Code" +msgstr "Código" + +#: mod/content.php:734 object/Item.php:711 +msgid "Image" +msgstr "Imagem" + +#: mod/content.php:735 object/Item.php:712 +msgid "Link" +msgstr "Link" + +#: mod/content.php:736 object/Item.php:713 +msgid "Video" +msgstr "Vídeo" + +#: mod/content.php:746 mod/settings.php:743 object/Item.php:122 +#: object/Item.php:124 +msgid "Edit" +msgstr "Editar" + +#: mod/content.php:772 object/Item.php:238 +msgid "add star" +msgstr "destacar" + +#: mod/content.php:773 object/Item.php:239 +msgid "remove star" +msgstr "remover o destaque" + +#: mod/content.php:774 object/Item.php:240 +msgid "toggle star status" +msgstr "ativa/desativa o destaque" + +#: mod/content.php:777 object/Item.php:243 +msgid "starred" +msgstr "marcado com estrela" + +#: mod/content.php:778 mod/content.php:800 object/Item.php:263 +msgid "add tag" +msgstr "adicionar etiqueta" + +#: mod/content.php:789 object/Item.php:251 +msgid "ignore thread" +msgstr "ignorar tópico" + +#: mod/content.php:790 object/Item.php:252 +msgid "unignore thread" +msgstr "deixar de ignorar tópico" + +#: mod/content.php:791 object/Item.php:253 +msgid "toggle ignore status" +msgstr "alternar status ignorar" + +#: mod/content.php:794 mod/ostatus_subscribe.php:73 object/Item.php:256 +msgid "ignored" +msgstr "Ignorado" + +#: mod/content.php:805 object/Item.php:141 +msgid "save to folder" +msgstr "salvar na pasta" + +#: mod/content.php:853 object/Item.php:212 +msgid "I will attend" +msgstr "Eu vou" + +#: mod/content.php:853 object/Item.php:212 +msgid "I will not attend" +msgstr "Eu não vou" + +#: mod/content.php:853 object/Item.php:212 +msgid "I might attend" +msgstr "Eu estou pensando em ir" + +#: mod/content.php:917 object/Item.php:358 +msgid "to" +msgstr "para" + +#: mod/content.php:918 object/Item.php:360 +msgid "Wall-to-Wall" +msgstr "Mural-para-mural" + +#: mod/content.php:919 object/Item.php:361 +msgid "via Wall-To-Wall:" +msgstr "via Mural-para-mural" + +#: mod/credits.php:16 +msgid "Credits" +msgstr "" + +#: mod/credits.php:17 msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Por favor, visite friendica.com para aprender mais sobre o projeto Friendica." +"Friendica is a community project, that would not be possible without the " +"help of many people. Here is a list of those who have contributed to the " +"code or the translation of Friendica. Thank you all!" +msgstr "" -#: mod/friendica.php:75 -msgid "Bug reports and issues: please visit" -msgstr "Relate ou acompanhe um erro no" +#: mod/crepair.php:89 +msgid "Contact settings applied." +msgstr "As configurações do contato foram aplicadas." -#: mod/friendica.php:75 -msgid "the bugtracker at github" -msgstr "GitHub" +#: mod/crepair.php:91 +msgid "Contact update failed." +msgstr "Não foi possível atualizar o contato." -#: mod/friendica.php:76 +#: mod/crepair.php:116 mod/fsuggest.php:21 mod/fsuggest.php:93 +#: mod/dfrn_confirm.php:126 +msgid "Contact not found." +msgstr "O contato não foi encontrado." + +#: mod/crepair.php:122 msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Sugestões, elogios, doações, etc. - favor enviar e-mail para \"Info\" arroba Friendica - ponto com" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "ATENÇÃO: Isso é muito avançado, se você digitar informações incorretas, suas comunicações com esse contato pode parar de funcionar." -#: mod/friendica.php:90 -msgid "Installed plugins/addons/apps:" -msgstr "Plugins/complementos/aplicações instaladas:" +#: mod/crepair.php:123 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Por favor, use o botão 'Voltar' do seu navegador agora, caso você não tenha certeza do que está fazendo." -#: mod/friendica.php:103 -msgid "No installed plugins/addons/apps" -msgstr "Nenhum plugin/complemento/aplicativo instalado" +#: mod/crepair.php:136 mod/crepair.php:138 +msgid "No mirroring" +msgstr "Nenhum espelhamento" + +#: mod/crepair.php:136 +msgid "Mirror as forwarded posting" +msgstr "Espelhar como postagem encaminhada" + +#: mod/crepair.php:136 mod/crepair.php:138 +msgid "Mirror as my own posting" +msgstr "Espelhar como minha própria postagem" + +#: mod/crepair.php:152 +msgid "Return to contact editor" +msgstr "Voltar ao editor de contatos" + +#: mod/crepair.php:154 +msgid "Refetch contact data" +msgstr "" + +#: mod/crepair.php:158 +msgid "Remote Self" +msgstr "Eu remoto" + +#: mod/crepair.php:161 +msgid "Mirror postings from this contact" +msgstr "Espelhar publicações deste contato" + +#: mod/crepair.php:163 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "Marcar este contato como eu remoto: o Friendica replicará novas publicações desse usuário." + +#: mod/crepair.php:167 mod/settings.php:683 mod/settings.php:709 +#: mod/admin.php:1490 mod/admin.php:1503 mod/admin.php:1516 mod/admin.php:1532 +msgid "Name" +msgstr "Nome" + +#: mod/crepair.php:168 +msgid "Account Nickname" +msgstr "Identificação da conta" + +#: mod/crepair.php:169 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Tagname - sobrescreve Nome/Identificação" + +#: mod/crepair.php:170 +msgid "Account URL" +msgstr "URL da conta" + +#: mod/crepair.php:171 +msgid "Friend Request URL" +msgstr "URL da requisição de amizade" + +#: mod/crepair.php:172 +msgid "Friend Confirm URL" +msgstr "URL da confirmação de amizade" + +#: mod/crepair.php:173 +msgid "Notification Endpoint URL" +msgstr "URL do ponto final da notificação" + +#: mod/crepair.php:174 +msgid "Poll/Feed URL" +msgstr "URL do captador/fonte de notícias" + +#: mod/crepair.php:175 +msgid "New photo from this URL" +msgstr "Nova imagem desta URL" + +#: mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "Nenhuma página delegada potencial localizada." + +#: 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 "Delegados podem administrar todos os aspectos dessa página/conta exceto por configurações básicas da conta.\nFavor não delegar sua conta pessoal para ninguém que você não confie inteiramente." + +#: mod/delegate.php:133 +msgid "Existing Page Managers" +msgstr "Administradores de Páginas Existentes" + +#: mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "Delegados de Páginas Existentes" + +#: mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "Delegados Potenciais" + +#: mod/delegate.php:139 mod/tagrm.php:95 +msgid "Remove" +msgstr "Remover" + +#: mod/delegate.php:140 +msgid "Add" +msgstr "Adicionar" + +#: mod/delegate.php:141 +msgid "No entries." +msgstr "Sem entradas." + +#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:539 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "%1$s dá as boas vinda à %2$s" + +#: mod/directory.php:37 mod/display.php:200 mod/viewcontacts.php:36 +#: mod/community.php:18 mod/dfrn_request.php:804 mod/photos.php:979 +#: mod/probe.php:9 mod/search.php:93 mod/search.php:99 mod/videos.php:198 +#: mod/webfinger.php:8 +msgid "Public access denied." +msgstr "Acesso público negado." + +#: mod/directory.php:199 view/theme/vier/theme.php:199 +msgid "Global Directory" +msgstr "Diretório global" + +#: mod/directory.php:201 +msgid "Find on this site" +msgstr "Pesquisar neste site" + +#: mod/directory.php:203 +msgid "Results for:" +msgstr "" + +#: mod/directory.php:205 +msgid "Site Directory" +msgstr "Diretório do site" + +#: mod/directory.php:212 +msgid "No entries (some entries may be hidden)." +msgstr "Nenhuma entrada (algumas entradas podem estar ocultas)." + +#: mod/display.php:328 mod/cal.php:143 mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "O acesso a este perfil está restrito." + +#: mod/display.php:479 +msgid "Item has been removed." +msgstr "O item foi removido." + +#: mod/editpost.php:17 mod/editpost.php:27 +msgid "Item not found" +msgstr "O item não foi encontrado" + +#: mod/editpost.php:32 +msgid "Edit post" +msgstr "Editar a publicação" + +#: mod/fbrowser.php:132 +msgid "Files" +msgstr "Arquivos" + +#: mod/fetch.php:12 mod/fetch.php:39 mod/fetch.php:48 mod/help.php:53 +#: mod/p.php:16 mod/p.php:43 mod/p.php:52 index.php:298 +msgid "Not Found" +msgstr "Não encontrada" + +#: mod/filer.php:30 +msgid "- select -" +msgstr "-selecione-" + +#: mod/fsuggest.php:64 +msgid "Friend suggestion sent." +msgstr "A sugestão de amigo foi enviada" + +#: mod/fsuggest.php:98 +msgid "Suggest Friends" +msgstr "Sugerir amigos" + +#: mod/fsuggest.php:100 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Sugerir um amigo para %s" + +#: mod/hcard.php:11 +msgid "No profile" +msgstr "Nenhum perfil" + +#: mod/help.php:41 +msgid "Help:" +msgstr "Ajuda:" + +#: mod/help.php:56 index.php:301 +msgid "Page not found." +msgstr "Página não encontrada." + +#: mod/home.php:39 +#, php-format +msgid "Welcome to %s" +msgstr "Bem-vindo(a) a %s" + +#: mod/invite.php:28 +msgid "Total invitation limit exceeded." +msgstr "Limite de convites totais excedido." + +#: mod/invite.php:51 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Não é um endereço de e-mail válido." + +#: mod/invite.php:76 +msgid "Please join us on Friendica" +msgstr "Por favor, junte-se à nós na Friendica" + +#: mod/invite.php:87 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limite de convites ultrapassado. Favor contactar o administrador do sítio." + +#: mod/invite.php:91 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Não foi possível enviar a mensagem." + +#: mod/invite.php:95 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d mensagem enviada." +msgstr[1] "%d mensagens enviadas." + +#: mod/invite.php:114 +msgid "You have no more invitations available" +msgstr "Você não possui mais convites disponíveis" + +#: mod/invite.php:122 +#, 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 "Visite %s para obter uma lista de sites públicos onde você pode se cadastrar. Membros da friendica podem se conectar, mesmo que estejam em sites separados. Além disso você também pode se conectar com membros de várias outras redes sociais." + +#: mod/invite.php:124 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Para aceitar esse convite, por favor cadastre-se em %s ou qualquer outro site friendica público." + +#: mod/invite.php:125 +#, php-format +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks. See %s for a list of alternate Friendica " +"sites you can join." +msgstr "Os sites friendica estão todos interconectados para criar uma grande rede social com foco na privacidade e controlada por seus membros, que também podem se conectar com várias redes sociais tradicionais. Dê uma olhada em %s para uma lista de sites friendica onde você pode se cadastrar." + +#: mod/invite.php:128 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Desculpe, mas esse sistema não está configurado para conectar-se com outros sites públicos nem permite convidar novos membros." + +#: mod/invite.php:134 +msgid "Send invitations" +msgstr "Enviar convites." + +#: mod/invite.php:135 +msgid "Enter email addresses, one per line:" +msgstr "Digite os endereços de e-mail, um por linha:" + +#: mod/invite.php:136 mod/wallmessage.php:135 mod/message.php:332 +#: mod/message.php:515 +msgid "Your message:" +msgstr "Sua mensagem:" + +#: mod/invite.php:137 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "Você está convidado a se juntar a mim e outros amigos em friendica - e também nos ajudar a criar uma experiência social melhor na web." + +#: mod/invite.php:139 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Você preciso informar este código de convite: $invite_code" + +#: mod/invite.php:139 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Após você se registrar, por favor conecte-se comigo através da minha página de perfil em:" + +#: mod/invite.php:141 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" +msgstr "Para mais informações sobre o projeto Friendica e porque nós achamos que ele é importante, por favor visite-nos em http://friendica.com." + +#: mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Conversão de tempo" + +#: mod/localtime.php:26 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica oferece esse serviço para compartilhar eventos com outras redes e amigos em fusos horários desconhecidos." + +#: mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "Hora UTC: %s" + +#: mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "Fuso horário atual: %s" + +#: mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Horário local convertido: %s" + +#: mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Por favor, selecione seu fuso horário:" + +#: mod/lockview.php:32 mod/lockview.php:40 +msgid "Remote privacy information not available." +msgstr "Não existe informação disponível sobre a privacidade remota." + +#: mod/lockview.php:49 +msgid "Visible to:" +msgstr "Visível para:" #: mod/lostpass.php:19 msgid "No valid account found." @@ -3166,7 +4105,7 @@ msgstr "Não foi encontrada nenhuma conta válida." msgid "Password reset request issued. Check your email." msgstr "A solicitação para reiniciar sua senha foi encaminhada. Verifique seu e-mail." -#: mod/lostpass.php:42 +#: mod/lostpass.php:41 #, php-format msgid "" "\n" @@ -3182,7 +4121,7 @@ msgid "" "\t\tissued this request." msgstr "\n\t\tPrezado %1$s,\n\t\t\tUma solicitação foi recebida recentemente em \"%2$s\" para redefinir a\n\t\tsenha da sua conta. Para confirmar este pedido, por favor selecione o link de confirmação\n\t\tabaixo ou copie e cole-o na barra de endereço do seu navegador.\n\n\t\tSe NÃO foi você que solicitou esta alteração por favor, NÃO clique no link\n\t\tfornecido e ignore e/ou apague este e-mail.\n\n\t\tSua senha não será alterada a menos que possamos verificar que foi você que\n\t\temitiu esta solicitação." -#: mod/lostpass.php:53 +#: mod/lostpass.php:52 #, php-format msgid "" "\n" @@ -3199,38 +4138,38 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "\n\t\tSiga este link para verificar sua identidade:\n\n\t\t%1$s\n\n\t\tVocê então receberá uma mensagem de continuidade contendo a nova senha.\n\t\tVocê pode alterar sua senha na sua página de configurações após efetuar seu login.\n\n\t\tOs dados de login são os seguintes:\n\n\t\tLocalização do Site:\t%2$s\n\t\tNome de Login:\t%3$s" -#: mod/lostpass.php:72 +#: mod/lostpass.php:71 #, php-format msgid "Password reset requested at %s" msgstr "Foi feita uma solicitação de reiniciação da senha em %s" -#: mod/lostpass.php:92 +#: mod/lostpass.php:91 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "Não foi possível verificar a solicitação (você pode tê-la submetido anteriormente). A senha não foi reiniciada." -#: mod/lostpass.php:109 boot.php:1670 +#: mod/lostpass.php:110 boot.php:1882 msgid "Password Reset" msgstr "Redifinir a senha" -#: mod/lostpass.php:110 +#: mod/lostpass.php:111 msgid "Your password has been reset as requested." msgstr "Sua senha foi reiniciada, conforme solicitado." -#: mod/lostpass.php:111 +#: mod/lostpass.php:112 msgid "Your new password is" msgstr "Sua nova senha é" -#: mod/lostpass.php:112 +#: mod/lostpass.php:113 msgid "Save or copy your new password - and then" msgstr "Grave ou copie a sua nova senha e, então" -#: mod/lostpass.php:113 +#: mod/lostpass.php:114 msgid "click here to login" msgstr "clique aqui para entrar" -#: mod/lostpass.php:114 +#: mod/lostpass.php:115 msgid "" "Your password may be changed from the Settings page after " "successful login." @@ -3276,7 +4215,7 @@ msgid "" "your email for further instructions." msgstr "Digite o seu endereço de e-mail e clique em 'Reiniciar' para prosseguir com a reiniciação da sua senha. Após isso, verifique seu e-mail para mais instruções." -#: mod/lostpass.php:161 boot.php:1658 +#: mod/lostpass.php:161 boot.php:1870 msgid "Nickname or Email: " msgstr "Identificação ou e-mail: " @@ -3284,582 +4223,33 @@ msgstr "Identificação ou e-mail: " msgid "Reset" msgstr "Reiniciar" -#: mod/hcard.php:10 -msgid "No profile" -msgstr "Nenhum perfil" - -#: mod/help.php:41 -msgid "Help:" -msgstr "Ajuda:" - -#: mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52 mod/fetch.php:12 -#: mod/fetch.php:39 mod/fetch.php:48 index.php:284 -msgid "Not Found" -msgstr "Não encontrada" - -#: mod/help.php:56 index.php:287 -msgid "Page not found." -msgstr "Página não encontrada." - -#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86 -#: mod/wall_upload.php:122 mod/wall_upload.php:125 mod/wall_attach.php:17 -#: mod/wall_attach.php:25 mod/wall_attach.php:76 -msgid "Invalid request." -msgstr "Solicitação inválida." - -#: mod/wall_upload.php:151 mod/profile_photo.php:150 mod/photos.php:806 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "" - -#: mod/wall_upload.php:188 mod/profile_photo.php:159 mod/photos.php:846 -msgid "Unable to process image." -msgstr "Não foi possível processar a imagem." - -#: mod/wall_upload.php:221 mod/profile_photo.php:307 mod/photos.php:873 -msgid "Image upload failed." -msgstr "Não foi possível enviar a imagem." - -#: mod/lockview.php:31 mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Não existe informação disponível sobre a privacidade remota." - -#: mod/lockview.php:48 -msgid "Visible to:" -msgstr "Visível para:" - -#: mod/directory.php:205 view/theme/vier/theme.php:201 -#: view/theme/diabook/theme.php:525 -msgid "Global Directory" -msgstr "Diretório global" - -#: mod/directory.php:207 -msgid "Find on this site" -msgstr "Pesquisar neste site" - -#: mod/directory.php:209 -msgid "Results for:" -msgstr "" - -#: mod/directory.php:211 -msgid "Site Directory" -msgstr "Diretório do site" - -#: mod/directory.php:218 -msgid "No entries (some entries may be hidden)." -msgstr "Nenhuma entrada (algumas entradas podem estar ocultas)." - -#: mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "Erro no protocolo OpenID. Não foi retornada nenhuma ID." - -#: mod/openid.php:60 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "A conta não foi encontrada e não são permitidos registros via OpenID nesse site." - -#: mod/uimport.php:50 mod/register.php:191 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Este site excedeu o limite diário permitido para registros de novas contas.\nPor favor tente novamente amanhã." - -#: mod/uimport.php:64 mod/register.php:286 -msgid "Import" -msgstr "Importar" - -#: mod/uimport.php:66 -msgid "Move account" -msgstr "Mover conta" - -#: mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "Você pode importar um conta de outro sevidor Friendica." - -#: mod/uimport.php:68 -msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also" -" to inform your friends that you moved here." -msgstr "Você precisa exportar sua conta de um servidor antigo e fazer o upload aqui. Nós recriaremos sua conta antiga aqui com todos os seus contatos. Nós também tentaremos informar seus amigos que você se mudou para cá." - -#: mod/uimport.php:69 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (GNU Social/Statusnet) or from Diaspora" -msgstr "Esta funcionalidade está em fase de testes. Não importamos contatos da rede OStatuss (GNU Social/Statusnet) nem da Diaspora." - -#: mod/uimport.php:70 -msgid "Account file" -msgstr "Arquivo de conta" - -#: mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "Para exportar a sua conta, entre em \"Configurações->Exportar dados pessoais\" e selecione \"Exportar conta\"" - -#: mod/nogroup.php:41 mod/viewcontacts.php:97 mod/contacts.php:586 -#: mod/contacts.php:944 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visitar o perfil de %s [%s]" - -#: mod/nogroup.php:42 mod/contacts.php:945 -msgid "Edit contact" -msgstr "Editar o contato" - -#: mod/nogroup.php:63 -msgid "Contacts who are not members of a group" -msgstr "Contatos que não são membros de um grupo" - -#: mod/match.php:33 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Não foi encontrada nenhuma palavra-chave associada a você. Por favor, adicione algumas ao seu perfil padrão." - -#: mod/match.php:86 -msgid "is interested in:" -msgstr "se interessa por:" - -#: mod/match.php:100 -msgid "Profile Match" -msgstr "Correspondência de perfil" - -#: mod/match.php:107 mod/dirfind.php:240 -msgid "No matches" -msgstr "Nenhuma correspondência" - -#: mod/uexport.php:29 -msgid "Export account" -msgstr "Exportar conta" - -#: mod/uexport.php:29 -msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "Exporta suas informações de conta e contatos. Use para fazer uma cópia de segurança de sua conta e/ou para movê-la para outro servidor." - -#: mod/uexport.php:30 -msgid "Export all" -msgstr "Exportar tudo" - -#: mod/uexport.php:30 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" -msgstr "Exportar as informações de sua conta, contatos e todos os seus items como JSON. Pode ser um arquivo muito grande, e pode levar bastante tempo. Use isto para fazer uma cópia de segurança completa da sua conta (fotos não são exportadas)" - -#: mod/uexport.php:37 mod/settings.php:95 -msgid "Export personal data" -msgstr "Exportar dados pessoais" - -#: mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "Limite de convites totais excedido." - -#: mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Não é um endereço de e-mail válido." - -#: mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Por favor, junte-se à nós na Friendica" - -#: mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limite de convites ultrapassado. Favor contactar o administrador do sítio." - -#: mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Não foi possível enviar a mensagem." - -#: mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d mensagem enviada." -msgstr[1] "%d mensagens enviadas." - -#: mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "Você não possui mais convites disponíveis" - -#: 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 "Visite %s para obter uma lista de sites públicos onde você pode se cadastrar. Membros da friendica podem se conectar, mesmo que estejam em sites separados. Além disso você também pode se conectar com membros de várias outras redes sociais." - -#: mod/invite.php:122 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "Para aceitar esse convite, por favor cadastre-se em %s ou qualquer outro site friendica público." - -#: 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 "Os sites friendica estão todos interconectados para criar uma grande rede social com foco na privacidade e controlada por seus membros, que também podem se conectar com várias redes sociais tradicionais. Dê uma olhada em %s para uma lista de sites friendica onde você pode se cadastrar." - -#: mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Desculpe, mas esse sistema não está configurado para conectar-se com outros sites públicos nem permite convidar novos membros." - -#: mod/invite.php:132 -msgid "Send invitations" -msgstr "Enviar convites." - -#: mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "Digite os endereços de e-mail, um por linha:" - -#: mod/invite.php:134 mod/wallmessage.php:151 mod/message.php:351 -#: mod/message.php:541 -msgid "Your message:" -msgstr "Sua mensagem:" - -#: 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 "Você está convidado a se juntar a mim e outros amigos em friendica - e também nos ajudar a criar uma experiência social melhor na web." - -#: mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Você preciso informar este código de convite: $invite_code" - -#: mod/invite.php:137 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Após você se registrar, por favor conecte-se comigo através da minha página de perfil em:" - -#: 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 "Para mais informações sobre o projeto Friendica e porque nós achamos que ele é importante, por favor visite-nos em http://friendica.com." - -#: mod/invite.php:140 mod/localtime.php:45 mod/message.php:357 -#: mod/message.php:547 mod/manage.php:143 mod/crepair.php:154 -#: mod/content.php:728 mod/contacts.php:577 mod/events.php:507 -#: mod/fsuggest.php:107 mod/mood.php:137 mod/poke.php:199 mod/profiles.php:681 -#: mod/install.php:272 mod/install.php:312 mod/photos.php:1125 -#: mod/photos.php:1249 mod/photos.php:1566 mod/photos.php:1617 -#: mod/photos.php:1665 mod/photos.php:1753 object/Item.php:720 -#: view/theme/frio/config.php:59 view/theme/cleanzero/config.php:80 -#: view/theme/quattro/config.php:64 view/theme/dispy/config.php:70 -#: view/theme/vier/config.php:107 view/theme/diabook/theme.php:633 -#: view/theme/diabook/config.php:148 view/theme/duepuntozero/config.php:59 -msgid "Submit" -msgstr "Enviar" - -#: mod/fbrowser.php:41 mod/fbrowser.php:62 mod/photos.php:63 -#: mod/photos.php:193 mod/photos.php:1107 mod/photos.php:1233 -#: mod/photos.php:1256 mod/photos.php:1825 mod/photos.php:1837 -#: view/theme/diabook/theme.php:499 -msgid "Contact Photos" -msgstr "Fotos dos contatos" - -#: mod/fbrowser.php:133 -msgid "Files" -msgstr "Arquivos" - -#: mod/maintenance.php:5 +#: mod/maintenance.php:20 msgid "System down for maintenance" msgstr "Sistema em manutenção" -#: mod/profperm.php:19 mod/group.php:72 index.php:396 -msgid "Permission denied" -msgstr "Permissão negada" +#: mod/match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Não foi encontrada nenhuma palavra-chave associada a você. Por favor, adicione algumas ao seu perfil padrão." -#: mod/profperm.php:25 mod/profperm.php:56 -msgid "Invalid profile identifier." -msgstr "Identificador de perfil inválido." +#: mod/match.php:88 +msgid "is interested in:" +msgstr "se interessa por:" -#: mod/profperm.php:102 -msgid "Profile Visibility Editor" -msgstr "Editor de visibilidade do perfil" +#: mod/match.php:102 +msgid "Profile Match" +msgstr "Correspondência de perfil" -#: mod/profperm.php:106 mod/group.php:223 -msgid "Click on a contact to add or remove." -msgstr "Clique em um contato para adicionar ou remover." +#: mod/match.php:109 mod/dirfind.php:245 +msgid "No matches" +msgstr "Nenhuma correspondência" -#: mod/profperm.php:115 -msgid "Visible To" -msgstr "Visível para" +#: mod/mood.php:134 +msgid "Mood" +msgstr "Humor" -#: mod/profperm.php:131 -msgid "All Contacts (with secure profile access)" -msgstr "Todos os contatos (com acesso a perfil seguro)" - -#: mod/viewcontacts.php:72 -msgid "No contacts." -msgstr "Nenhum contato." - -#: mod/tagrm.php:41 -msgid "Tag removed" -msgstr "A etiqueta foi removida" - -#: mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Remover a etiqueta do item" - -#: mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Selecione uma etiqueta para remover: " - -#: mod/tagrm.php:93 mod/delegate.php:139 -msgid "Remove" -msgstr "Remover" - -#: mod/ping.php:272 -msgid "{0} wants to be your friend" -msgstr "{0} deseja ser seu amigo" - -#: mod/ping.php:287 -msgid "{0} sent you a message" -msgstr "{0} lhe enviou uma mensagem" - -#: mod/ping.php:302 -msgid "{0} requested registration" -msgstr "{0} solicitou registro" - -#: mod/wall_attach.php:94 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Lamento, talvez seu envio seja maior do que as configurações do PHP permitem" - -#: mod/wall_attach.php:94 -msgid "Or - did you try to upload an empty file?" -msgstr "Ou - você tentou enviar um arquivo vazio?" - -#: mod/wall_attach.php:105 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "" - -#: mod/wall_attach.php:156 mod/wall_attach.php:172 -msgid "File upload failed." -msgstr "Não foi possível enviar o arquivo." - -#: mod/allfriends.php:43 -msgid "No friends to display." -msgstr "Nenhum amigo para exibir." - -#: mod/cal.php:152 mod/display.php:328 mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "O acesso a este perfil está restrito." - -#: mod/cal.php:279 mod/events.php:380 -msgid "View" -msgstr "" - -#: mod/cal.php:280 mod/events.php:382 -msgid "Previous" -msgstr "Anterior" - -#: mod/cal.php:281 mod/events.php:383 mod/install.php:231 -msgid "Next" -msgstr "Próximo" - -#: mod/cal.php:301 -msgid "User not found" -msgstr "" - -#: mod/cal.php:317 -msgid "This calendar format is not supported" -msgstr "Esse formato de agenda não é contemplado" - -#: mod/cal.php:319 -msgid "No exportable data found" -msgstr "" - -#: mod/cal.php:327 -msgid "calendar" -msgstr "agenda" - -#: mod/repair_ostatus.php:14 -msgid "Resubscribing to OStatus contacts" -msgstr "" - -#: mod/repair_ostatus.php:30 -msgid "Error" -msgstr "Erro" - -#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51 -msgid "Done" -msgstr "" - -#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73 -msgid "Keep this window open until done." -msgstr "" - -#: mod/delegate.php:101 -msgid "No potential page delegates located." -msgstr "Nenhuma página delegada potencial localizada." - -#: 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 "Delegados podem administrar todos os aspectos dessa página/conta exceto por configurações básicas da conta.\nFavor não delegar sua conta pessoal para ninguém que você não confie inteiramente." - -#: mod/delegate.php:133 -msgid "Existing Page Managers" -msgstr "Administradores de Páginas Existentes" - -#: mod/delegate.php:135 -msgid "Existing Page Delegates" -msgstr "Delegados de Páginas Existentes" - -#: mod/delegate.php:137 -msgid "Potential Delegates" -msgstr "Delegados Potenciais" - -#: mod/delegate.php:140 -msgid "Add" -msgstr "Adicionar" - -#: mod/delegate.php:141 -msgid "No entries." -msgstr "Sem entradas." - -#: mod/credits.php:16 -msgid "Credits" -msgstr "" - -#: mod/credits.php:17 -msgid "" -"Friendica is a community project, that would not be possible without the " -"help of many people. Here is a list of those who have contributed to the " -"code or the translation of Friendica. Thank you all!" -msgstr "" - -#: mod/filer.php:30 -msgid "- select -" -msgstr "-selecione-" - -#: mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s está seguindo %2$s's %3$s" - -#: mod/attach.php:8 -msgid "Item not available." -msgstr "O item não está disponível." - -#: mod/attach.php:20 -msgid "Item was not found." -msgstr "O item não foi encontrado." - -#: mod/follow.php:19 mod/dfrn_request.php:874 -msgid "Submit Request" -msgstr "Enviar solicitação" - -#: mod/follow.php:30 -msgid "You already added this contact." -msgstr "Você já adicionou esse contato." - -#: mod/follow.php:39 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "" - -#: mod/follow.php:46 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "" - -#: mod/follow.php:53 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "" - -#: mod/follow.php:109 mod/dfrn_request.php:860 -msgid "Please answer the following:" -msgstr "Por favor, entre com as informações solicitadas:" - -#: mod/follow.php:110 mod/dfrn_request.php:861 -#, php-format -msgid "Does %s know you?" -msgstr "%s conhece você?" - -#: mod/follow.php:110 mod/api.php:106 mod/dfrn_request.php:861 -#: mod/profiles.php:641 mod/profiles.php:645 mod/profiles.php:670 -#: mod/register.php:239 mod/settings.php:1113 mod/settings.php:1119 -#: mod/settings.php:1127 mod/settings.php:1131 mod/settings.php:1136 -#: mod/settings.php:1142 mod/settings.php:1148 mod/settings.php:1154 -#: mod/settings.php:1180 mod/settings.php:1181 mod/settings.php:1182 -#: mod/settings.php:1183 mod/settings.php:1184 -msgid "No" -msgstr "Não" - -#: mod/follow.php:111 mod/dfrn_request.php:865 -msgid "Add a personal note:" -msgstr "Adicione uma anotação pessoal:" - -#: mod/follow.php:117 mod/dfrn_request.php:871 -msgid "Your Identity Address:" -msgstr "Seu endereço de identificação:" - -#: mod/follow.php:126 mod/contacts.php:624 mod/notifications.php:243 -msgid "Profile URL" -msgstr "URL do perfil" - -#: mod/follow.php:180 -msgid "Contact added" -msgstr "O contato foi adicionado" - -#: mod/apps.php:7 index.php:240 -msgid "You must be logged in to use addons. " -msgstr "Você precisa estar logado para usar os addons." - -#: mod/apps.php:11 -msgid "Applications" -msgstr "Aplicativos" - -#: mod/apps.php:14 -msgid "No installed applications." -msgstr "Nenhum aplicativo instalado" - -#: mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Você realmente deseja deletar essa sugestão?" - -#: mod/suggest.php:71 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Não existe nenhuma sugestão disponível. Se este for um site novo, por favor tente novamente em 24 horas." - -#: mod/suggest.php:84 mod/suggest.php:104 -msgid "Ignore/Hide" -msgstr "Ignorar/Ocultar" - -#: mod/p.php:9 -msgid "Not Extended" -msgstr "" - -#: mod/display.php:471 -msgid "Item has been removed." -msgstr "O item foi removido." - -#: mod/common.php:86 -msgid "No contacts in common." -msgstr "Nenhum contato em comum." - -#: mod/common.php:134 mod/contacts.php:861 -msgid "Common Friends" -msgstr "Amigos em Comum" +#: mod/mood.php:135 +msgid "Set your current mood and tell your friends" +msgstr "Defina o seu humor e conte aos seus amigos" #: mod/newmember.php:6 msgid "Welcome to Friendica" @@ -3911,7 +4301,7 @@ msgid "" "potential friends know exactly how to find you." msgstr "Revise as outras configurações, em particular as relacionadas a privacidade. Não estar listado no diretório é o equivalente a não ter o seu número na lista telefônica. Normalmente é interessante você estar listado - a não ser que os seu amigos atuais e potenciais saibam exatamente como encontrar você." -#: mod/newmember.php:36 mod/profile_photo.php:250 mod/profiles.php:700 +#: mod/newmember.php:36 mod/profile_photo.php:256 mod/profiles.php:700 msgid "Upload Profile Photo" msgstr "Enviar foto do perfil" @@ -4030,257 +4420,367 @@ msgid "" " features and resources." msgstr "Consulte nossas páginas de ajuda para mais detalhes sobre as características e recursos do programa." -#: mod/removeme.php:46 mod/removeme.php:49 +#: mod/nogroup.php:65 +msgid "Contacts who are not members of a group" +msgstr "Contatos que não são membros de um grupo" + +#: mod/notify.php:65 +msgid "No more system notifications." +msgstr "Não fazer notificações de sistema." + +#: mod/notify.php:69 mod/notifications.php:111 +msgid "System Notifications" +msgstr "Notificações de sistema" + +#: mod/oexchange.php:21 +msgid "Post successful." +msgstr "Publicado com sucesso." + +#: mod/ostatus_subscribe.php:14 +msgid "Subscribing to OStatus contacts" +msgstr "" + +#: mod/ostatus_subscribe.php:25 +msgid "No contact provided." +msgstr "" + +#: mod/ostatus_subscribe.php:31 +msgid "Couldn't fetch information for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:40 +msgid "Couldn't fetch friends for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:54 mod/repair_ostatus.php:44 +msgid "Done" +msgstr "" + +#: mod/ostatus_subscribe.php:68 +msgid "success" +msgstr "sucesso" + +#: mod/ostatus_subscribe.php:70 +msgid "failed" +msgstr "" + +#: mod/ostatus_subscribe.php:78 mod/repair_ostatus.php:50 +msgid "Keep this window open until done." +msgstr "" + +#: mod/p.php:9 +msgid "Not Extended" +msgstr "" + +#: mod/poke.php:196 +msgid "Poke/Prod" +msgstr "Cutucar/Incitar" + +#: mod/poke.php:197 +msgid "poke, prod or do other things to somebody" +msgstr "Cutuca, incita ou faz outras coisas com alguém" + +#: mod/poke.php:198 +msgid "Recipient" +msgstr "Destinatário" + +#: mod/poke.php:199 +msgid "Choose what you wish to do to recipient" +msgstr "Selecione o que você deseja fazer com o destinatário" + +#: mod/poke.php:202 +msgid "Make this post private" +msgstr "Fazer com que essa publicação se torne privada" + +#: mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "A imagem foi enviada, mas não foi possível cortá-la." + +#: mod/profile_photo.php:77 mod/profile_photo.php:85 mod/profile_photo.php:93 +#: mod/profile_photo.php:323 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Não foi possível reduzir o tamanho da imagem [%s]." + +#: mod/profile_photo.php:127 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Recarregue a página pressionando a tecla Shift ou limpe o cache do navegador caso a nova foto não apareça imediatamente" + +#: mod/profile_photo.php:137 +msgid "Unable to process image" +msgstr "Não foi possível processar a imagem" + +#: mod/profile_photo.php:156 mod/photos.php:813 mod/wall_upload.php:181 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "" + +#: mod/profile_photo.php:165 mod/photos.php:854 mod/wall_upload.php:218 +msgid "Unable to process image." +msgstr "Não foi possível processar a imagem." + +#: mod/profile_photo.php:254 +msgid "Upload File:" +msgstr "Enviar arquivo:" + +#: mod/profile_photo.php:255 +msgid "Select a profile:" +msgstr "Selecione um perfil:" + +#: mod/profile_photo.php:257 +msgid "Upload" +msgstr "Enviar" + +#: mod/profile_photo.php:260 +msgid "or" +msgstr "ou" + +#: mod/profile_photo.php:260 +msgid "skip this step" +msgstr "pule esta etapa" + +#: mod/profile_photo.php:260 +msgid "select a photo from your photo albums" +msgstr "selecione uma foto de um álbum de fotos" + +#: mod/profile_photo.php:274 +msgid "Crop Image" +msgstr "Cortar a imagem" + +#: mod/profile_photo.php:275 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Por favor, ajuste o corte da imagem para a melhor visualização." + +#: mod/profile_photo.php:277 +msgid "Done Editing" +msgstr "Encerrar a edição" + +#: mod/profile_photo.php:313 +msgid "Image uploaded successfully." +msgstr "A imagem foi enviada com sucesso." + +#: mod/profile_photo.php:315 mod/photos.php:883 mod/wall_upload.php:257 +msgid "Image upload failed." +msgstr "Não foi possível enviar a imagem." + +#: mod/profperm.php:20 mod/group.php:76 index.php:406 +msgid "Permission denied" +msgstr "Permissão negada" + +#: mod/profperm.php:26 mod/profperm.php:57 +msgid "Invalid profile identifier." +msgstr "Identificador de perfil inválido." + +#: mod/profperm.php:103 +msgid "Profile Visibility Editor" +msgstr "Editor de visibilidade do perfil" + +#: mod/profperm.php:107 mod/group.php:262 +msgid "Click on a contact to add or remove." +msgstr "Clique em um contato para adicionar ou remover." + +#: mod/profperm.php:116 +msgid "Visible To" +msgstr "Visível para" + +#: mod/profperm.php:132 +msgid "All Contacts (with secure profile access)" +msgstr "Todos os contatos (com acesso a perfil seguro)" + +#: mod/regmod.php:58 +msgid "Account approved." +msgstr "A conta foi aprovada." + +#: mod/regmod.php:95 +#, php-format +msgid "Registration revoked for %s" +msgstr "O registro de %s foi revogado" + +#: mod/regmod.php:107 +msgid "Please login." +msgstr "Por favor, autentique-se." + +#: mod/removeme.php:52 mod/removeme.php:55 msgid "Remove My Account" msgstr "Remover minha conta" -#: mod/removeme.php:47 +#: mod/removeme.php:53 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Isso removerá completamente a sua conta. Uma vez feito isso, não será mais possível recuperá-la." -#: mod/removeme.php:48 +#: mod/removeme.php:54 msgid "Please enter your password for verification:" msgstr "Por favor, digite a sua senha para verificação:" -#: mod/editpost.php:17 mod/editpost.php:27 -msgid "Item not found" -msgstr "O item não foi encontrado" +#: mod/repair_ostatus.php:14 +msgid "Resubscribing to OStatus contacts" +msgstr "" -#: mod/editpost.php:40 -msgid "Edit post" -msgstr "Editar a publicação" +#: mod/repair_ostatus.php:30 +msgid "Error" +msgstr "Erro" -#: mod/network.php:398 +#: mod/subthread.php:104 #, 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] "Aviso: Este grupo contém %s membro de uma rede insegura." -msgstr[1] "Aviso: Este grupo contém %s membros de uma rede insegura." +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s está seguindo %2$s's %3$s" -#: mod/network.php:401 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "Mensagens privadas para este grupo correm o risco de sofrerem divulgação pública." +#: mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Você realmente deseja deletar essa sugestão?" -#: mod/network.php:468 mod/content.php:119 -msgid "No such group" -msgstr "Este grupo não existe" - -#: mod/network.php:495 mod/group.php:193 mod/content.php:130 -msgid "Group is empty" -msgstr "O grupo está vazio" - -#: mod/network.php:499 mod/content.php:135 -#, php-format -msgid "Group: %s" -msgstr "Grupo: %s" - -#: mod/network.php:527 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Mensagens privadas para esta pessoa correm o risco de sofrerem divulgação pública." - -#: mod/network.php:532 -msgid "Invalid contact." -msgstr "Contato inválido." - -#: mod/network.php:825 -msgid "Commented Order" -msgstr "Ordem dos comentários" - -#: mod/network.php:828 -msgid "Sort by Comment Date" -msgstr "Ordenar pela data do comentário" - -#: mod/network.php:833 -msgid "Posted Order" -msgstr "Ordem das publicações" - -#: mod/network.php:836 -msgid "Sort by Post Date" -msgstr "Ordenar pela data de publicação" - -#: mod/network.php:847 -msgid "Posts that mention or involve you" -msgstr "Publicações que mencionem ou envolvam você" - -#: mod/network.php:855 -msgid "New" -msgstr "Nova" - -#: mod/network.php:858 -msgid "Activity Stream - by date" -msgstr "Fluxo de atividades - por data" - -#: mod/network.php:866 -msgid "Shared Links" -msgstr "Links compartilhados" - -#: mod/network.php:869 -msgid "Interesting Links" -msgstr "Links interessantes" - -#: mod/network.php:877 -msgid "Starred" -msgstr "Destacada" - -#: mod/network.php:880 -msgid "Favourite Posts" -msgstr "Publicações favoritas" - -#: mod/community.php:27 -msgid "Not available." -msgstr "Não disponível." - -#: mod/localtime.php:24 -msgid "Time Conversion" -msgstr "Conversão de tempo" - -#: mod/localtime.php:26 +#: mod/suggest.php:71 msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "Friendica oferece esse serviço para compartilhar eventos com outras redes e amigos em fusos horários desconhecidos." +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Não existe nenhuma sugestão disponível. Se este for um site novo, por favor tente novamente em 24 horas." -#: mod/localtime.php:30 +#: mod/suggest.php:84 mod/suggest.php:104 +msgid "Ignore/Hide" +msgstr "Ignorar/Ocultar" + +#: mod/tagrm.php:43 +msgid "Tag removed" +msgstr "A etiqueta foi removida" + +#: mod/tagrm.php:82 +msgid "Remove Item Tag" +msgstr "Remover a etiqueta do item" + +#: mod/tagrm.php:84 +msgid "Select a tag to remove: " +msgstr "Selecione uma etiqueta para remover: " + +#: mod/uimport.php:51 mod/register.php:198 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Este site excedeu o limite diário permitido para registros de novas contas.\nPor favor tente novamente amanhã." + +#: mod/uimport.php:66 mod/register.php:295 +msgid "Import" +msgstr "Importar" + +#: mod/uimport.php:68 +msgid "Move account" +msgstr "Mover conta" + +#: mod/uimport.php:69 +msgid "You can import an account from another Friendica server." +msgstr "Você pode importar um conta de outro sevidor Friendica." + +#: mod/uimport.php:70 +msgid "" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also" +" to inform your friends that you moved here." +msgstr "Você precisa exportar sua conta de um servidor antigo e fazer o upload aqui. Nós recriaremos sua conta antiga aqui com todos os seus contatos. Nós também tentaremos informar seus amigos que você se mudou para cá." + +#: mod/uimport.php:71 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "Esta funcionalidade está em fase de testes. Não importamos contatos da rede OStatuss (GNU Social/Statusnet) nem da Diaspora." + +#: mod/uimport.php:72 +msgid "Account file" +msgstr "Arquivo de conta" + +#: mod/uimport.php:72 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "Para exportar a sua conta, entre em \"Configurações->Exportar dados pessoais\" e selecione \"Exportar conta\"" + +#: mod/update_community.php:19 mod/update_display.php:23 +#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35 +msgid "[Embedded content - reload page to view]" +msgstr "[Conteúdo incorporado - recarregue a página para ver]" + +#: mod/viewcontacts.php:75 +msgid "No contacts." +msgstr "Nenhum contato." + +#: mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Acesso negado." + +#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76 +#: mod/wall_upload.php:36 mod/wall_upload.php:52 mod/wall_upload.php:110 +#: mod/wall_upload.php:150 mod/wall_upload.php:153 +msgid "Invalid request." +msgstr "Solicitação inválida." + +#: mod/wall_attach.php:94 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Lamento, talvez seu envio seja maior do que as configurações do PHP permitem" + +#: mod/wall_attach.php:94 +msgid "Or - did you try to upload an empty file?" +msgstr "Ou - você tentou enviar um arquivo vazio?" + +#: mod/wall_attach.php:105 #, php-format -msgid "UTC time: %s" -msgstr "Hora UTC: %s" +msgid "File exceeds size limit of %s" +msgstr "" -#: mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "Fuso horário atual: %s" +#: mod/wall_attach.php:158 mod/wall_attach.php:174 +msgid "File upload failed." +msgstr "Não foi possível enviar o arquivo." -#: mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "Horário local convertido: %s" - -#: mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Por favor, selecione seu fuso horário:" - -#: mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "O texto foi criado" - -#: mod/group.php:29 -msgid "Group created." -msgstr "O grupo foi criado." - -#: mod/group.php:35 -msgid "Could not create group." -msgstr "Não foi possível criar o grupo." - -#: mod/group.php:47 mod/group.php:140 -msgid "Group not found." -msgstr "O grupo não foi encontrado." - -#: mod/group.php:60 -msgid "Group name changed." -msgstr "O nome do grupo foi alterado." - -#: mod/group.php:87 -msgid "Save Group" -msgstr "Salvar o grupo" - -#: mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Criar um grupo de contatos/amigos." - -#: mod/group.php:113 -msgid "Group removed." -msgstr "O grupo foi removido." - -#: mod/group.php:115 -msgid "Unable to remove group." -msgstr "Não foi possível remover o grupo." - -#: mod/group.php:177 -msgid "Group Editor" -msgstr "Editor de grupo" - -#: mod/group.php:190 -msgid "Members" -msgstr "Membros" - -#: mod/group.php:192 mod/contacts.php:690 -msgid "All Contacts" -msgstr "Todos os contatos" - -#: mod/wallmessage.php:42 mod/wallmessage.php:112 +#: mod/wallmessage.php:42 mod/wallmessage.php:106 #, php-format msgid "Number of daily wall messages for %s exceeded. Message failed." msgstr "O número diário de mensagens do mural de %s foi excedido. Não foi possível enviar a mensagem." -#: mod/wallmessage.php:56 mod/message.php:71 +#: mod/wallmessage.php:50 mod/message.php:60 msgid "No recipient selected." msgstr "Não foi selecionado nenhum destinatário." -#: mod/wallmessage.php:59 +#: mod/wallmessage.php:53 msgid "Unable to check your home location." msgstr "Não foi possível verificar a sua localização." -#: mod/wallmessage.php:62 mod/message.php:78 +#: mod/wallmessage.php:56 mod/message.php:67 msgid "Message could not be sent." msgstr "Não foi possível enviar a mensagem." -#: mod/wallmessage.php:65 mod/message.php:81 +#: mod/wallmessage.php:59 mod/message.php:70 msgid "Message collection failure." msgstr "Falha na coleta de mensagens." -#: mod/wallmessage.php:68 mod/message.php:84 +#: mod/wallmessage.php:62 mod/message.php:73 msgid "Message sent." msgstr "A mensagem foi enviada." -#: mod/wallmessage.php:86 mod/wallmessage.php:95 +#: mod/wallmessage.php:80 mod/wallmessage.php:89 msgid "No recipient." msgstr "Nenhum destinatário." -#: mod/wallmessage.php:142 mod/message.php:341 +#: mod/wallmessage.php:126 mod/message.php:322 msgid "Send Private Message" msgstr "Enviar mensagem privada" -#: mod/wallmessage.php:143 +#: mod/wallmessage.php:127 #, php-format msgid "" "If you wish for %s to respond, please check that the privacy settings on " "your site allow private mail from unknown senders." msgstr "Caso você deseje uma resposta de %s, por favor verifique se as configurações de privacidade em seu site permitem o recebimento de mensagens de remetentes desconhecidos." -#: mod/wallmessage.php:144 mod/message.php:342 mod/message.php:536 +#: mod/wallmessage.php:128 mod/message.php:323 mod/message.php:510 msgid "To:" msgstr "Para:" -#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538 +#: mod/wallmessage.php:129 mod/message.php:328 mod/message.php:512 msgid "Subject:" msgstr "Assunto:" -#: mod/share.php:38 -msgid "link" -msgstr "ligação" - -#: mod/api.php:76 mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autorizar a conexão com a aplicação" - -#: mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Volte para a sua aplicação e digite este código de segurança:" - -#: mod/api.php:89 -msgid "Please login to continue." -msgstr "Por favor, autentique-se para continuar." - -#: mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?" - -#: mod/babel.php:17 +#: mod/babel.php:16 msgid "Source (bbcode) text:" msgstr "Texto fonte (bbcode):" @@ -4320,352 +4820,252 @@ msgstr "bb2dia2bb: " msgid "bb2md2html2bb: " msgstr "bb2md2html2bb: " -#: mod/babel.php:69 +#: mod/babel.php:65 msgid "Source input (Diaspora format): " msgstr "Fonte de entrada (formato Diaspora):" -#: mod/babel.php:74 +#: mod/babel.php:69 msgid "diaspora2bb: " msgstr "diaspora2bb: " -#: mod/ostatus_subscribe.php:14 -msgid "Subscribing to OStatus contacts" +#: mod/cal.php:271 mod/events.php:375 +msgid "View" msgstr "" -#: mod/ostatus_subscribe.php:25 -msgid "No contact provided." +#: mod/cal.php:272 mod/events.php:377 +msgid "Previous" +msgstr "Anterior" + +#: mod/cal.php:273 mod/events.php:378 mod/install.php:201 +msgid "Next" +msgstr "Próximo" + +#: mod/cal.php:282 mod/events.php:387 +msgid "list" msgstr "" -#: mod/ostatus_subscribe.php:30 -msgid "Couldn't fetch information for contact." +#: mod/cal.php:292 +msgid "User not found" msgstr "" -#: mod/ostatus_subscribe.php:38 -msgid "Couldn't fetch friends for contact." +#: mod/cal.php:308 +msgid "This calendar format is not supported" +msgstr "Esse formato de agenda não é contemplado" + +#: mod/cal.php:310 +msgid "No exportable data found" msgstr "" -#: mod/ostatus_subscribe.php:65 -msgid "success" -msgstr "sucesso" +#: mod/cal.php:325 +msgid "calendar" +msgstr "agenda" -#: mod/ostatus_subscribe.php:67 -msgid "failed" -msgstr "" +#: mod/community.php:23 +msgid "Not available." +msgstr "Não disponível." -#: mod/ostatus_subscribe.php:69 mod/content.php:792 object/Item.php:245 -msgid "ignored" -msgstr "Ignorado" +#: mod/community.php:50 mod/search.php:219 +msgid "No results." +msgstr "Nenhum resultado." -#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s dá as boas vinda à %2$s" +#: mod/dfrn_confirm.php:70 mod/profiles.php:19 mod/profiles.php:135 +#: mod/profiles.php:182 mod/profiles.php:619 +msgid "Profile not found." +msgstr "O perfil não foi encontrado." -#: mod/profile.php:179 -msgid "Tips for New Members" -msgstr "Dicas para novos membros" - -#: mod/message.php:75 -msgid "Unable to locate contact information." -msgstr "Não foi possível localizar informação do contato." - -#: mod/message.php:215 -msgid "Do you really want to delete this message?" -msgstr "Você realmente deseja deletar essa mensagem?" - -#: mod/message.php:235 -msgid "Message deleted." -msgstr "A mensagem foi excluída." - -#: mod/message.php:266 -msgid "Conversation removed." -msgstr "A conversa foi removida." - -#: mod/message.php:383 -msgid "No messages." -msgstr "Nenhuma mensagem." - -#: mod/message.php:426 -msgid "Message not available." -msgstr "A mensagem não está disponível." - -#: mod/message.php:503 -msgid "Delete message" -msgstr "Excluir a mensagem" - -#: mod/message.php:529 mod/message.php:609 -msgid "Delete conversation" -msgstr "Excluir conversa" - -#: mod/message.php:531 +#: mod/dfrn_confirm.php:127 msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Não foi encontrada nenhuma comunicação segura. Você pode ser capaz de responder a partir da página de perfil do remetente." +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Isso pode acontecer eventualmente se o contato foi solicitado por ambas as pessoas e ele já tinha sido aprovado." -#: mod/message.php:535 -msgid "Send Reply" -msgstr "Enviar resposta" +#: mod/dfrn_confirm.php:244 +msgid "Response from remote site was not understood." +msgstr "A resposta do site remoto não foi compreendida." -#: mod/message.php:579 +#: mod/dfrn_confirm.php:253 mod/dfrn_confirm.php:258 +msgid "Unexpected response from remote site: " +msgstr "Resposta inesperada do site remoto: " + +#: mod/dfrn_confirm.php:267 +msgid "Confirmation completed successfully." +msgstr "A confirmação foi completada com sucesso." + +#: mod/dfrn_confirm.php:269 mod/dfrn_confirm.php:283 mod/dfrn_confirm.php:290 +msgid "Remote site reported: " +msgstr "O site remoto relatou: " + +#: mod/dfrn_confirm.php:281 +msgid "Temporary failure. Please wait and try again." +msgstr "Falha temporária. Por favor, aguarde e tente novamente." + +#: mod/dfrn_confirm.php:288 +msgid "Introduction failed or was revoked." +msgstr "Ocorreu uma falha na apresentação ou ela foi revogada." + +#: mod/dfrn_confirm.php:418 +msgid "Unable to set contact photo." +msgstr "Não foi possível definir a foto do contato." + +#: mod/dfrn_confirm.php:559 #, php-format -msgid "Unknown sender - %s" -msgstr "Remetente desconhecido - %s" +msgid "No user record found for '%s' " +msgstr "Não foi encontrado nenhum registro de usuário para '%s' " -#: mod/message.php:581 +#: mod/dfrn_confirm.php:569 +msgid "Our site encryption key is apparently messed up." +msgstr "A chave de criptografia do nosso site está, aparentemente, bagunçada." + +#: mod/dfrn_confirm.php:580 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "Foi fornecida uma URL em branco ou não foi possível descriptografá-la." + +#: mod/dfrn_confirm.php:602 +msgid "Contact record was not found for you on our site." +msgstr "O registro do contato não foi encontrado para você em seu site." + +#: mod/dfrn_confirm.php:616 #, php-format -msgid "You and %s" -msgstr "Você e %s" +msgid "Site public key not available in contact record for URL %s." +msgstr "A chave pública do site não está disponível no registro do contato para a URL %s" -#: mod/message.php:583 +#: mod/dfrn_confirm.php:636 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "O ID fornecido pelo seu sistema é uma duplicata em nosso sistema. Deve funcionar agora, se você tentar de novo." + +#: mod/dfrn_confirm.php:647 +msgid "Unable to set your contact credentials on our system." +msgstr "Não foi possível definir suas credenciais de contato no nosso sistema." + +#: mod/dfrn_confirm.php:709 +msgid "Unable to update your contact profile details on our system" +msgstr "Não foi possível atualizar os detalhes do seu perfil em nosso sistema." + +#: mod/dfrn_confirm.php:781 #, php-format -msgid "%s and You" -msgstr "%s e você" +msgid "%1$s has joined %2$s" +msgstr "%1$s se associou a %2$s" -#: mod/message.php:612 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: mod/message.php:615 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d mensagem" -msgstr[1] "%d mensagens" - -#: mod/manage.php:139 -msgid "Manage Identities and/or Pages" -msgstr "Gerenciar identidades e/ou páginas" - -#: 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 "Alterne entre diferentes identidades ou páginas de comunidade/grupo que dividem detalhes da sua conta ou que você tenha fornecido permissões de \"administração\"" - -#: mod/manage.php:141 -msgid "Select an identity to manage: " -msgstr "Selecione uma identidade para gerenciar: " - -#: mod/crepair.php:87 -msgid "Contact settings applied." -msgstr "As configurações do contato foram aplicadas." - -#: mod/crepair.php:89 -msgid "Contact update failed." -msgstr "Não foi possível atualizar o contato." - -#: mod/crepair.php:114 mod/dfrn_confirm.php:122 mod/fsuggest.php:20 -#: mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "O contato não foi encontrado." - -#: mod/crepair.php:120 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "ATENÇÃO: Isso é muito avançado, se você digitar informações incorretas, suas comunicações com esse contato pode parar de funcionar." - -#: mod/crepair.php:121 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Por favor, use o botão 'Voltar' do seu navegador agora, caso você não tenha certeza do que está fazendo." - -#: mod/crepair.php:134 mod/crepair.php:136 -msgid "No mirroring" -msgstr "Nenhum espelhamento" - -#: mod/crepair.php:134 -msgid "Mirror as forwarded posting" -msgstr "Espelhar como postagem encaminhada" - -#: mod/crepair.php:134 mod/crepair.php:136 -msgid "Mirror as my own posting" -msgstr "Espelhar como minha própria postagem" - -#: mod/crepair.php:150 -msgid "Return to contact editor" -msgstr "Voltar ao editor de contatos" - -#: mod/crepair.php:152 -msgid "Refetch contact data" -msgstr "" - -#: mod/crepair.php:156 -msgid "Remote Self" -msgstr "Eu remoto" - -#: mod/crepair.php:159 -msgid "Mirror postings from this contact" -msgstr "Espelhar publicações deste contato" - -#: mod/crepair.php:161 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "Marcar este contato como eu remoto: o Friendica replicará novas publicações desse usuário." - -#: mod/crepair.php:165 mod/admin.php:1374 mod/admin.php:1387 -#: mod/admin.php:1399 mod/admin.php:1415 mod/settings.php:665 -#: mod/settings.php:691 -msgid "Name" -msgstr "Nome" - -#: mod/crepair.php:166 -msgid "Account Nickname" -msgstr "Identificação da conta" - -#: mod/crepair.php:167 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Tagname - sobrescreve Nome/Identificação" - -#: mod/crepair.php:168 -msgid "Account URL" -msgstr "URL da conta" - -#: mod/crepair.php:169 -msgid "Friend Request URL" -msgstr "URL da requisição de amizade" - -#: mod/crepair.php:170 -msgid "Friend Confirm URL" -msgstr "URL da confirmação de amizade" - -#: mod/crepair.php:171 -msgid "Notification Endpoint URL" -msgstr "URL do ponto final da notificação" - -#: mod/crepair.php:172 -msgid "Poll/Feed URL" -msgstr "URL do captador/fonte de notícias" - -#: mod/crepair.php:173 -msgid "New photo from this URL" -msgstr "Nova imagem desta URL" - -#: mod/dfrn_request.php:100 +#: mod/dfrn_request.php:101 msgid "This introduction has already been accepted." msgstr "Esta apresentação já foi aceita." -#: mod/dfrn_request.php:123 mod/dfrn_request.php:518 +#: mod/dfrn_request.php:124 mod/dfrn_request.php:528 msgid "Profile location is not valid or does not contain profile information." msgstr "A localização do perfil não é válida ou não contém uma informação de perfil." -#: mod/dfrn_request.php:128 mod/dfrn_request.php:523 +#: mod/dfrn_request.php:129 mod/dfrn_request.php:533 msgid "Warning: profile location has no identifiable owner name." msgstr "Aviso: a localização do perfil não possui nenhum nome identificável do seu dono." -#: mod/dfrn_request.php:130 mod/dfrn_request.php:525 +#: mod/dfrn_request.php:132 mod/dfrn_request.php:536 msgid "Warning: profile location has no profile photo." msgstr "Aviso: a localização do perfil não possui nenhuma foto do perfil." -#: mod/dfrn_request.php:133 mod/dfrn_request.php:528 +#: mod/dfrn_request.php:136 mod/dfrn_request.php:540 #, 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] "O parâmetro requerido %d não foi encontrado na localização fornecida" msgstr[1] "Os parâmetros requeridos %d não foram encontrados na localização fornecida" -#: mod/dfrn_request.php:178 +#: mod/dfrn_request.php:180 msgid "Introduction complete." msgstr "A apresentação foi finalizada." -#: mod/dfrn_request.php:220 +#: mod/dfrn_request.php:225 msgid "Unrecoverable protocol error." msgstr "Ocorreu um erro irrecuperável de protocolo." -#: mod/dfrn_request.php:248 +#: mod/dfrn_request.php:253 msgid "Profile unavailable." msgstr "O perfil não está disponível." -#: mod/dfrn_request.php:273 +#: mod/dfrn_request.php:280 #, php-format msgid "%s has received too many connection requests today." msgstr "%s recebeu solicitações de conexão em excesso hoje." -#: mod/dfrn_request.php:274 +#: mod/dfrn_request.php:281 msgid "Spam protection measures have been invoked." msgstr "As medidas de proteção contra spam foram ativadas." -#: mod/dfrn_request.php:275 +#: mod/dfrn_request.php:282 msgid "Friends are advised to please try again in 24 hours." msgstr "Os amigos foram notificados para tentar novamente em 24 horas." -#: mod/dfrn_request.php:337 +#: mod/dfrn_request.php:344 msgid "Invalid locator" msgstr "Localizador inválido" -#: mod/dfrn_request.php:346 +#: mod/dfrn_request.php:353 msgid "Invalid email address." msgstr "Endereço de e-mail inválido." -#: mod/dfrn_request.php:373 +#: mod/dfrn_request.php:378 msgid "This account has not been configured for email. Request failed." msgstr "Essa conta não foi configurada para e-mails. Não foi possível atender à solicitação." -#: mod/dfrn_request.php:476 +#: mod/dfrn_request.php:481 msgid "You have already introduced yourself here." msgstr "Você já fez a sua apresentação aqui." -#: mod/dfrn_request.php:480 +#: mod/dfrn_request.php:485 #, php-format msgid "Apparently you are already friends with %s." msgstr "Aparentemente você já é amigo de %s." -#: mod/dfrn_request.php:501 +#: mod/dfrn_request.php:506 msgid "Invalid profile URL." msgstr "URL de perfil inválida." -#: mod/dfrn_request.php:579 mod/contacts.php:208 -msgid "Failed to update contact record." -msgstr "Não foi possível atualizar o registro do contato." - -#: mod/dfrn_request.php:600 +#: mod/dfrn_request.php:614 msgid "Your introduction has been sent." msgstr "A sua apresentação foi enviada." -#: mod/dfrn_request.php:640 +#: mod/dfrn_request.php:656 msgid "" "Remote subscription can't be done for your network. Please subscribe " "directly on your system." msgstr "A sua rede não permite inscrição a distância. Inscreva-se diretamente no seu sistema." -#: mod/dfrn_request.php:663 +#: mod/dfrn_request.php:677 msgid "Please login to confirm introduction." msgstr "Por favor, autentique-se para confirmar a apresentação." -#: mod/dfrn_request.php:673 +#: mod/dfrn_request.php:687 msgid "" "Incorrect identity currently logged in. Please login to " "this profile." msgstr "A identidade autenticada está incorreta. Por favor, entre como este perfil." -#: mod/dfrn_request.php:687 mod/dfrn_request.php:704 +#: mod/dfrn_request.php:701 mod/dfrn_request.php:718 msgid "Confirm" msgstr "Confirmar" -#: mod/dfrn_request.php:699 +#: mod/dfrn_request.php:713 msgid "Hide this contact" msgstr "Ocultar este contato" -#: mod/dfrn_request.php:702 +#: mod/dfrn_request.php:716 #, php-format msgid "Welcome home %s." msgstr "Bem-vindo(a) à sua página pessoal %s." -#: mod/dfrn_request.php:703 +#: mod/dfrn_request.php:717 #, php-format msgid "Please confirm your introduction/connection request to %s." msgstr "Por favor, confirme sua solicitação de apresentação/conexão para %s." -#: mod/dfrn_request.php:832 +#: mod/dfrn_request.php:848 msgid "" "Please enter your 'Identity Address' from one of the following supported " "communications networks:" msgstr "Por favor, digite seu 'Endereço de Identificação' a partir de uma das seguintes redes de comunicação suportadas:" -#: mod/dfrn_request.php:853 +#: mod/dfrn_request.php:872 #, php-format msgid "" "If you are not yet a member of the free social web, ." msgstr "" -#: mod/dfrn_request.php:858 +#: mod/dfrn_request.php:877 msgid "Friend/Connection Request" msgstr "Solicitação de amizade/conexão" -#: mod/dfrn_request.php:859 +#: mod/dfrn_request.php:878 msgid "" "Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " "testuser@identi.ca" msgstr "Examplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" -#: mod/dfrn_request.php:868 +#: mod/dfrn_request.php:879 mod/follow.php:112 +msgid "Please answer the following:" +msgstr "Por favor, entre com as informações solicitadas:" + +#: mod/dfrn_request.php:880 mod/follow.php:113 +#, php-format +msgid "Does %s know you?" +msgstr "%s conhece você?" + +#: mod/dfrn_request.php:884 mod/follow.php:114 +msgid "Add a personal note:" +msgstr "Adicione uma anotação pessoal:" + +#: mod/dfrn_request.php:887 msgid "StatusNet/Federated Social Web" msgstr "StatusNet/Federated Social Web" -#: mod/dfrn_request.php:870 +#: mod/dfrn_request.php:889 #, php-format msgid "" " - please do not use this form. Instead, enter %s into your Diaspora search" " bar." msgstr " - Por favor, não utilize esse formulário. Ao invés disso, digite %s na sua barra de pesquisa do Diaspora." -#: mod/content.php:325 object/Item.php:95 -msgid "This entry was edited" -msgstr "Essa entrada foi editada" +#: mod/dfrn_request.php:890 mod/follow.php:120 +msgid "Your Identity Address:" +msgstr "Seu endereço de identificação:" -#: mod/content.php:621 object/Item.php:429 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d comentário" -msgstr[1] "%d comentários" +#: mod/dfrn_request.php:893 mod/follow.php:19 +msgid "Submit Request" +msgstr "Enviar solicitação" -#: mod/content.php:638 mod/photos.php:1405 object/Item.php:117 -msgid "Private Message" -msgstr "Mensagem privada" - -#: mod/content.php:702 mod/photos.php:1594 object/Item.php:263 -msgid "I like this (toggle)" -msgstr "Eu gostei disso (alternar)" - -#: mod/content.php:702 object/Item.php:263 -msgid "like" -msgstr "gostei" - -#: mod/content.php:703 mod/photos.php:1595 object/Item.php:264 -msgid "I don't like this (toggle)" -msgstr "Eu não gostei disso (alternar)" - -#: mod/content.php:703 object/Item.php:264 -msgid "dislike" -msgstr "desgostar" - -#: mod/content.php:705 object/Item.php:266 -msgid "Share this" -msgstr "Compartilhar isso" - -#: mod/content.php:705 object/Item.php:266 -msgid "share" -msgstr "compartilhar" - -#: mod/content.php:725 mod/photos.php:1614 mod/photos.php:1662 -#: mod/photos.php:1750 object/Item.php:717 -msgid "This is you" -msgstr "Este(a) é você" - -#: mod/content.php:727 mod/content.php:945 mod/photos.php:1616 -#: mod/photos.php:1664 mod/photos.php:1752 object/Item.php:403 -#: object/Item.php:719 boot.php:902 -msgid "Comment" -msgstr "Comentar" - -#: mod/content.php:729 object/Item.php:721 -msgid "Bold" -msgstr "Negrito" - -#: mod/content.php:730 object/Item.php:722 -msgid "Italic" -msgstr "Itálico" - -#: mod/content.php:731 object/Item.php:723 -msgid "Underline" -msgstr "Sublinhado" - -#: mod/content.php:732 object/Item.php:724 -msgid "Quote" -msgstr "Citação" - -#: mod/content.php:733 object/Item.php:725 -msgid "Code" -msgstr "Código" - -#: mod/content.php:734 object/Item.php:726 -msgid "Image" -msgstr "Imagem" - -#: mod/content.php:735 object/Item.php:727 -msgid "Link" -msgstr "Link" - -#: mod/content.php:736 object/Item.php:728 -msgid "Video" -msgstr "Vídeo" - -#: mod/content.php:746 mod/settings.php:725 object/Item.php:122 -#: object/Item.php:124 -msgid "Edit" -msgstr "Editar" - -#: mod/content.php:771 object/Item.php:227 -msgid "add star" -msgstr "destacar" - -#: mod/content.php:772 object/Item.php:228 -msgid "remove star" -msgstr "remover o destaque" - -#: mod/content.php:773 object/Item.php:229 -msgid "toggle star status" -msgstr "ativa/desativa o destaque" - -#: mod/content.php:776 object/Item.php:232 -msgid "starred" -msgstr "marcado com estrela" - -#: mod/content.php:777 mod/content.php:798 object/Item.php:252 -msgid "add tag" -msgstr "adicionar etiqueta" - -#: mod/content.php:787 object/Item.php:240 -msgid "ignore thread" -msgstr "ignorar tópico" - -#: mod/content.php:788 object/Item.php:241 -msgid "unignore thread" -msgstr "deixar de ignorar tópico" - -#: mod/content.php:789 object/Item.php:242 -msgid "toggle ignore status" -msgstr "alternar status ignorar" - -#: mod/content.php:803 object/Item.php:137 -msgid "save to folder" -msgstr "salvar na pasta" - -#: mod/content.php:848 object/Item.php:201 -msgid "I will attend" -msgstr "Eu vou" - -#: mod/content.php:848 object/Item.php:201 -msgid "I will not attend" -msgstr "Eu não vou" - -#: mod/content.php:848 object/Item.php:201 -msgid "I might attend" -msgstr "Eu estou pensando em ir" - -#: mod/content.php:912 object/Item.php:369 -msgid "to" -msgstr "para" - -#: mod/content.php:913 object/Item.php:371 -msgid "Wall-to-Wall" -msgstr "Mural-para-mural" - -#: mod/content.php:914 object/Item.php:372 -msgid "via Wall-To-Wall:" -msgstr "via Mural-para-mural" - -#: mod/admin.php:92 -msgid "Theme settings updated." -msgstr "As configurações do tema foram atualizadas." - -#: mod/admin.php:156 mod/admin.php:925 -msgid "Site" -msgstr "Site" - -#: mod/admin.php:157 mod/admin.php:869 mod/admin.php:1382 mod/admin.php:1397 -msgid "Users" -msgstr "Usuários" - -#: mod/admin.php:158 mod/admin.php:1499 mod/admin.php:1559 mod/settings.php:74 -msgid "Plugins" -msgstr "Plugins" - -#: mod/admin.php:159 mod/admin.php:1757 mod/admin.php:1807 -msgid "Themes" -msgstr "Temas" - -#: mod/admin.php:160 mod/settings.php:52 -msgid "Additional features" -msgstr "Funcionalidades adicionais" - -#: mod/admin.php:161 -msgid "DB updates" -msgstr "Atualizações do BD" - -#: mod/admin.php:162 mod/admin.php:397 -msgid "Inspect Queue" -msgstr "" - -#: mod/admin.php:163 mod/admin.php:363 -msgid "Federation Statistics" -msgstr "" - -#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1875 -msgid "Logs" -msgstr "Relatórios" - -#: mod/admin.php:178 mod/admin.php:1942 -msgid "View Logs" -msgstr "" - -#: mod/admin.php:179 -msgid "probe address" -msgstr "prova endereço" - -#: mod/admin.php:180 -msgid "check webfinger" -msgstr "verifica webfinger" - -#: mod/admin.php:187 -msgid "Plugin Features" -msgstr "Recursos do plugin" - -#: mod/admin.php:189 -msgid "diagnostics" -msgstr "diagnóstico" - -#: mod/admin.php:190 -msgid "User registrations waiting for confirmation" -msgstr "Cadastros de novos usuários aguardando confirmação" - -#: mod/admin.php:356 -msgid "" -"This page offers you some numbers to the known part of the federated social " -"network your Friendica node is part of. These numbers are not complete but " -"only reflect the part of the network your node is aware of." -msgstr "" - -#: mod/admin.php:357 -msgid "" -"The Auto Discovered Contact Directory feature is not enabled, it " -"will improve the data displayed here." -msgstr "" - -#: mod/admin.php:362 mod/admin.php:396 mod/admin.php:460 mod/admin.php:924 -#: mod/admin.php:1381 mod/admin.php:1498 mod/admin.php:1558 mod/admin.php:1756 -#: mod/admin.php:1806 mod/admin.php:1874 mod/admin.php:1941 -msgid "Administration" -msgstr "Administração" - -#: mod/admin.php:369 -#, php-format -msgid "Currently this node is aware of %d nodes from the following platforms:" -msgstr "" - -#: mod/admin.php:399 -msgid "ID" -msgstr "ID" - -#: mod/admin.php:400 -msgid "Recipient Name" -msgstr "" - -#: mod/admin.php:401 -msgid "Recipient Profile" -msgstr "" - -#: mod/admin.php:403 -msgid "Created" -msgstr "" - -#: mod/admin.php:404 -msgid "Last Tried" -msgstr "" - -#: mod/admin.php:405 -msgid "" -"This page lists the content of the queue for outgoing postings. These are " -"postings the initial delivery failed for. They will be resend later and " -"eventually deleted if the delivery fails permanently." -msgstr "" - -#: mod/admin.php:424 mod/admin.php:1330 -msgid "Normal Account" -msgstr "Conta normal" - -#: mod/admin.php:425 mod/admin.php:1331 -msgid "Soapbox Account" -msgstr "Conta de vitrine" - -#: mod/admin.php:426 mod/admin.php:1332 -msgid "Community/Celebrity Account" -msgstr "Conta de comunidade/celebridade" - -#: mod/admin.php:427 mod/admin.php:1333 -msgid "Automatic Friend Account" -msgstr "Conta de amigo automático" - -#: mod/admin.php:428 -msgid "Blog Account" -msgstr "Conta de blog" - -#: mod/admin.php:429 -msgid "Private Forum" -msgstr "Fórum privado" - -#: mod/admin.php:455 -msgid "Message queues" -msgstr "Fila de mensagens" - -#: mod/admin.php:461 -msgid "Summary" -msgstr "Resumo" - -#: mod/admin.php:463 -msgid "Registered users" -msgstr "Usuários registrados" - -#: mod/admin.php:465 -msgid "Pending registrations" -msgstr "Registros pendentes" - -#: mod/admin.php:466 -msgid "Version" -msgstr "Versão" - -#: mod/admin.php:471 -msgid "Active plugins" -msgstr "Plugins ativos" - -#: mod/admin.php:494 -msgid "Can not parse base url. Must have at least ://" -msgstr "Não foi possível analisar a URL. Ela deve conter pelo menos ://" - -#: mod/admin.php:797 -msgid "RINO2 needs mcrypt php extension to work." -msgstr "" - -#: mod/admin.php:805 -msgid "Site settings updated." -msgstr "As configurações do site foram atualizadas." - -#: mod/admin.php:833 mod/settings.php:919 -msgid "No special theme for mobile devices" -msgstr "Nenhum tema especial para dispositivos móveis" - -#: mod/admin.php:852 -msgid "No community page" -msgstr "Sem página de comunidade" - -#: mod/admin.php:853 -msgid "Public postings from users of this site" -msgstr "Textos públicos de usuários deste sítio" - -#: mod/admin.php:854 -msgid "Global community page" -msgstr "Página global da comunidade" - -#: mod/admin.php:859 mod/contacts.php:530 -msgid "Never" -msgstr "Nunca" - -#: mod/admin.php:860 -msgid "At post arrival" -msgstr "Na chegada da publicação" - -#: mod/admin.php:868 mod/contacts.php:557 -msgid "Disabled" -msgstr "Desabilitado" - -#: mod/admin.php:870 -msgid "Users, Global Contacts" -msgstr "Usuários, Contatos Globais" - -#: mod/admin.php:871 -msgid "Users, Global Contacts/fallback" -msgstr "Usuários, Contatos Globais/plano B" - -#: mod/admin.php:875 -msgid "One month" -msgstr "Um mês" - -#: mod/admin.php:876 -msgid "Three months" -msgstr "Três meses" - -#: mod/admin.php:877 -msgid "Half a year" -msgstr "Seis meses" - -#: mod/admin.php:878 -msgid "One year" -msgstr "Um ano" - -#: mod/admin.php:883 -msgid "Multi user instance" -msgstr "Instância multi usuário" - -#: mod/admin.php:906 -msgid "Closed" -msgstr "Fechado" - -#: mod/admin.php:907 -msgid "Requires approval" -msgstr "Requer aprovação" - -#: mod/admin.php:908 -msgid "Open" -msgstr "Aberto" - -#: mod/admin.php:912 -msgid "No SSL policy, links will track page SSL state" -msgstr "Nenhuma política de SSL, os links irão rastrear o estado SSL da página" - -#: mod/admin.php:913 -msgid "Force all links to use SSL" -msgstr "Forçar todos os links a utilizar SSL" - -#: mod/admin.php:914 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Certificado auto-assinado, usar SSL somente para links locais (não recomendado)" - -#: mod/admin.php:926 mod/admin.php:1560 mod/admin.php:1808 mod/admin.php:1876 -#: mod/admin.php:2025 mod/settings.php:663 mod/settings.php:773 -#: mod/settings.php:820 mod/settings.php:889 mod/settings.php:976 -#: mod/settings.php:1214 -msgid "Save Settings" -msgstr "Salvar configurações" - -#: mod/admin.php:927 mod/register.php:263 -msgid "Registration" -msgstr "Registro" - -#: mod/admin.php:928 -msgid "File upload" -msgstr "Envio de arquivo" - -#: mod/admin.php:929 -msgid "Policies" -msgstr "Políticas" - -#: mod/admin.php:931 -msgid "Auto Discovered Contact Directory" -msgstr "" - -#: mod/admin.php:932 -msgid "Performance" -msgstr "Performance" - -#: mod/admin.php:933 -msgid "Worker" -msgstr "" - -#: mod/admin.php:934 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "Relocação - ATENÇÃO: função avançada. Pode tornar esse servidor inacessível." - -#: mod/admin.php:937 -msgid "Site name" -msgstr "Nome do site" - -#: mod/admin.php:938 -msgid "Host name" -msgstr "Nome do host" - -#: mod/admin.php:939 -msgid "Sender Email" -msgstr "enviador de email" - -#: mod/admin.php:939 -msgid "" -"The email address your server shall use to send notification emails from." -msgstr "" - -#: mod/admin.php:940 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: mod/admin.php:941 -msgid "Shortcut icon" -msgstr "ícone de atalho" - -#: mod/admin.php:941 -msgid "Link to an icon that will be used for browsers." -msgstr "" - -#: mod/admin.php:942 -msgid "Touch icon" -msgstr "ícone de toque" - -#: mod/admin.php:942 -msgid "Link to an icon that will be used for tablets and mobiles." -msgstr "" - -#: mod/admin.php:943 -msgid "Additional Info" -msgstr "Informação adicional" - -#: mod/admin.php:943 -#, php-format -msgid "" -"For public servers: you can add additional information here that will be " -"listed at %s/siteinfo." -msgstr "" - -#: mod/admin.php:944 -msgid "System language" -msgstr "Idioma do sistema" - -#: mod/admin.php:945 -msgid "System theme" -msgstr "Tema do sistema" - -#: mod/admin.php:945 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Tema padrão do sistema. Pode ser substituído nos perfis de usuário - alterar configurações do tema" - -#: mod/admin.php:946 -msgid "Mobile system theme" -msgstr "Tema do sistema para dispositivos móveis" - -#: mod/admin.php:946 -msgid "Theme for mobile devices" -msgstr "Tema para dispositivos móveis" - -#: mod/admin.php:947 -msgid "SSL link policy" -msgstr "Política de link SSL" - -#: mod/admin.php:947 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Determina se os links gerados devem ser forçados a utilizar SSL" - -#: mod/admin.php:948 -msgid "Force SSL" -msgstr "Forçar SSL" - -#: mod/admin.php:948 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" -" to endless loops." -msgstr "Forçar todas as solicitações não-SSL para SSL - Atenção: em alguns sistemas isso pode levar a loops infinitos." - -#: mod/admin.php:949 -msgid "Old style 'Share'" -msgstr "Estilo antigo do 'Compartilhar' " - -#: mod/admin.php:949 -msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "Desativa o elemento bbcode 'compartilhar' para repetir ítens." - -#: mod/admin.php:950 -msgid "Hide help entry from navigation menu" -msgstr "Oculta a entrada 'Ajuda' do menu de navegação" - -#: mod/admin.php:950 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "Oculta a entrada de menu para as páginas de Ajuda do menu de navegação. Ainda será possível acessá-las chamando /help diretamente." - -#: mod/admin.php:951 -msgid "Single user instance" -msgstr "Instância de usuário único" - -#: mod/admin.php:951 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "Faça essa instância multiusuário ou usuário único para o usuário em questão" - -#: mod/admin.php:952 -msgid "Maximum image size" -msgstr "Tamanho máximo da imagem" - -#: mod/admin.php:952 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Tamanho máximo, em bytes, das imagens enviadas. O padrão é 0, o que significa sem limites" - -#: mod/admin.php:953 -msgid "Maximum image length" -msgstr "Tamanho máximo da imagem" - -#: mod/admin.php:953 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "Tamanho máximo em pixels do lado mais largo das imagens enviadas. O padrão é -1, que significa sem limites." - -#: mod/admin.php:954 -msgid "JPEG image quality" -msgstr "Qualidade da imagem JPEG" - -#: mod/admin.php:954 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "Imagens JPEG enviadas serão salvas com essa qualidade [0-100]. O padrão é 100, que significa a melhor qualidade." - -#: mod/admin.php:956 -msgid "Register policy" -msgstr "Política de registro" - -#: mod/admin.php:957 -msgid "Maximum Daily Registrations" -msgstr "Registros Diários Máximos" - -#: mod/admin.php:957 -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 o registro é permitido acima, isso configura o número máximo de registros de novos usuários a serem aceitos por dia. Se o registro está configurado para 'fechado/closed' , essa configuração não tem efeito." - -#: mod/admin.php:958 -msgid "Register text" -msgstr "Texto de registro" - -#: mod/admin.php:958 -msgid "Will be displayed prominently on the registration page." -msgstr "Será exibido com destaque na página de registro." - -#: mod/admin.php:959 -msgid "Accounts abandoned after x days" -msgstr "Contas abandonadas após x dias" - -#: mod/admin.php:959 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Não desperdiçará recursos do sistema captando de sites externos para contas abandonadas. Digite 0 para nenhum limite de tempo." - -#: mod/admin.php:960 -msgid "Allowed friend domains" -msgstr "Domínios de amigos permitidos" - -#: mod/admin.php:960 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Lista dos domínios que têm permissão para estabelecer amizades com esse site, separados por vírgula. Caracteres curinga são aceitos. Deixe em branco para permitir qualquer domínio." - -#: mod/admin.php:961 -msgid "Allowed email domains" -msgstr "Domínios de e-mail permitidos" - -#: mod/admin.php:961 -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 "Lista de domínios separados por vírgula, que são permitidos em endereços de e-mail para registro nesse site. Caracteres-curinga são aceitos. Vazio para aceitar qualquer domínio" - -#: mod/admin.php:962 -msgid "Block public" -msgstr "Bloquear acesso público" - -#: mod/admin.php:962 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Marque para bloquear o acesso público a todas as páginas desse site, com exceção das páginas pessoais públicas, a não ser que a pessoa esteja autenticada." - -#: mod/admin.php:963 -msgid "Force publish" -msgstr "Forçar a listagem" - -#: mod/admin.php:963 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Marque para forçar todos os perfis desse site a serem listados no diretório do site." - -#: mod/admin.php:964 -msgid "Global directory URL" -msgstr "" - -#: mod/admin.php:964 -msgid "" -"URL to the global directory. If this is not set, the global directory is " -"completely unavailable to the application." -msgstr "" - -#: mod/admin.php:965 -msgid "Allow threaded items" -msgstr "Habilita itens aninhados" - -#: mod/admin.php:965 -msgid "Allow infinite level threading for items on this site." -msgstr "Habilita nível infinito de aninhamento (threading) para itens." - -#: mod/admin.php:966 -msgid "Private posts by default for new users" -msgstr "Publicações privadas por padrão para novos usuários" - -#: mod/admin.php:966 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Define as permissões padrão de publicação de todos os novos membros para o grupo de privacidade padrão, ao invés de torná-las públicas." - -#: mod/admin.php:967 -msgid "Don't include post content in email notifications" -msgstr "Não incluir o conteúdo da postagem nas notificações de email" - -#: mod/admin.php:967 -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 "Não incluir o conteúdo de uma postagem/comentário/mensagem privada/etc. em notificações de email que são enviadas para fora desse sítio, como medida de segurança." - -#: mod/admin.php:968 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "Disabilita acesso público a addons listados no menu de aplicativos." - -#: mod/admin.php:968 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "Marcar essa caixa ira restringir os addons listados no menu de aplicativos aos membros somente." - -#: mod/admin.php:969 -msgid "Don't embed private images in posts" -msgstr "Não inclua imagens privadas em publicações" - -#: mod/admin.php:969 -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 "Não substitue fotos privativas guardadas localmente em publicações por uma cópia inclusa da imagem. Isso significa que os contatos que recebem publicações contendo fotos privadas terão que autenticar e carregar cada imagem, o que pode levar algum tempo." - -#: mod/admin.php:970 -msgid "Allow Users to set remote_self" -msgstr "Permite usuários configurarem remote_self" - -#: mod/admin.php:970 -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 "Ao marcar isto, todos os usuários poderão marcar cada contato como um remote_self na opção de reparar contato. Marcar isto para um contato produz espelhamento de toda publicação deste contato no fluxo dos usuários" - -#: mod/admin.php:971 -msgid "Block multiple registrations" -msgstr "Bloquear registros repetidos" - -#: mod/admin.php:971 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Desabilitar o registro de contas adicionais para serem usadas como páginas." - -#: mod/admin.php:972 -msgid "OpenID support" -msgstr "Suporte ao OpenID" - -#: mod/admin.php:972 -msgid "OpenID support for registration and logins." -msgstr "Suporte ao OpenID para registros e autenticações." - -#: mod/admin.php:973 -msgid "Fullname check" -msgstr "Verificar nome completo" - -#: mod/admin.php:973 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "Forçar os usuários a usar um espaço em branco entre o nome e o sobrenome, ao preencherem o nome completo no registro, como uma medida contra o spam" - -#: mod/admin.php:974 -msgid "UTF-8 Regular expressions" -msgstr "Expressões regulares UTF-8" - -#: mod/admin.php:974 -msgid "Use PHP UTF8 regular expressions" -msgstr "Use expressões regulares do PHP em UTF8" - -#: mod/admin.php:975 -msgid "Community Page Style" -msgstr "Estilo da página de comunidade" - -#: mod/admin.php:975 -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 de página de comunidade para mostrar. 'Comunidade Global' mostra todos os textos públicos de uma rede aberta e distribuída que chega neste servidor." - -#: mod/admin.php:976 -msgid "Posts per user on community page" -msgstr "Textos por usuário na página da comunidade" - -#: mod/admin.php:976 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"'Global Community')" -msgstr "O número máximo de textos por usuário na página da comunidade. (Não é válido para 'comunidade global')" - -#: mod/admin.php:977 -msgid "Enable OStatus support" -msgstr "Habilitar suporte ao OStatus" - -#: mod/admin.php:977 -msgid "" -"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "Fornece compatibilidade OStatus (StatusNet, GNU Social, etc.). Todas as comunicações no OStatus são públicas, assim avisos de privacidade serão ocasionalmente mostrados." - -#: mod/admin.php:978 -msgid "OStatus conversation completion interval" -msgstr "Intervalo de finalização da conversação OStatus " - -#: mod/admin.php:978 -msgid "" -"How often shall the poller check for new entries in OStatus conversations? " -"This can be a very ressource task." -msgstr "De quanto em quanto tempo o \"buscador\" (poller) deve checar por novas entradas numa conversação OStatus? Essa pode ser uma tarefa bem demorada." - -#: mod/admin.php:979 -msgid "Only import OStatus threads from our contacts" -msgstr "" - -#: mod/admin.php:979 -msgid "" -"Normally we import every content from our OStatus contacts. With this option" -" we only store threads that are started by a contact that is known on our " -"system." -msgstr "" - -#: mod/admin.php:980 -msgid "OStatus support can only be enabled if threading is enabled." -msgstr "" - -#: mod/admin.php:982 -msgid "" -"Diaspora support can't be enabled because Friendica was installed into a sub" -" directory." -msgstr "" - -#: mod/admin.php:983 -msgid "Enable Diaspora support" -msgstr "Habilitar suporte ao Diaspora" - -#: mod/admin.php:983 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Fornece compatibilidade nativa com a rede Diaspora." - -#: mod/admin.php:984 -msgid "Only allow Friendica contacts" -msgstr "Permitir somente contatos Friendica" - -#: mod/admin.php:984 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Todos os contatos devem usar protocolos Friendica. Todos os outros protocolos de comunicação embarcados estão desabilitados" - -#: mod/admin.php:985 -msgid "Verify SSL" -msgstr "Verificar SSL" - -#: mod/admin.php:985 -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 "Caso deseje, você pode habilitar a restrição de certificações. Isso significa que você não poderá conectar-se a nenhum site que use certificados auto-assinados." - -#: mod/admin.php:986 -msgid "Proxy user" -msgstr "Usuário do proxy" - -#: mod/admin.php:987 -msgid "Proxy URL" -msgstr "URL do proxy" - -#: mod/admin.php:988 -msgid "Network timeout" -msgstr "Limite de tempo da rede" - -#: mod/admin.php:988 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valor em segundos. Defina como 0 para ilimitado (não recomendado)." - -#: mod/admin.php:989 -msgid "Delivery interval" -msgstr "Intervalo de envio" - -#: mod/admin.php:989 -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 "Postergue o processo de entrega em background por essa quantidade de segundos visando reduzir a carga do sistema. Recomendado: 4-5 para servidores compartilhados (shared hosts), 2-3 para servidores privados virtuais (VPS). 0-1 para grandes servidores dedicados." - -#: mod/admin.php:990 -msgid "Poll interval" -msgstr "Intervalo da busca (polling)" - -#: mod/admin.php:990 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Postergue o processo de entrega em background por essa quantidade de segundos visando reduzir a carga do sistema. Se 0, use intervalo de entrega." - -#: mod/admin.php:991 -msgid "Maximum Load Average" -msgstr "Média de Carga Máxima" - -#: mod/admin.php:991 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Carga do sistema máxima antes que os processos de entrega e busca sejam postergados - padrão 50." - -#: mod/admin.php:992 -msgid "Maximum Load Average (Frontend)" -msgstr "" - -#: mod/admin.php:992 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "" - -#: mod/admin.php:993 -msgid "Maximum table size for optimization" -msgstr "" - -#: mod/admin.php:993 -msgid "" -"Maximum table size (in MB) for the automatic optimization - default 100 MB. " -"Enter -1 to disable it." -msgstr "" - -#: mod/admin.php:994 -msgid "Minimum level of fragmentation" -msgstr "" - -#: mod/admin.php:994 -msgid "" -"Minimum fragmenation level to start the automatic optimization - default " -"value is 30%." -msgstr "" - -#: mod/admin.php:996 -msgid "Periodical check of global contacts" -msgstr "Checagem periódica dos contatos globais" - -#: mod/admin.php:996 -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:997 -msgid "Days between requery" -msgstr "" - -#: mod/admin.php:997 -msgid "Number of days after which a server is requeried for his contacts." -msgstr "" - -#: mod/admin.php:998 -msgid "Discover contacts from other servers" -msgstr "" - -#: mod/admin.php:998 -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 "Periodicamente buscar contatos em outros servidores. Você pode entre 'Usuários': os usuários do sistema remoto; e 'Contatos Globais': os contatos ativos conhecidos pelo sistema. O plano B é destinado a servidores rodando Redmatrix ou Friendica, se mais antigos, para os quais os contatos globais não estavam disponíveis. O plano B aumenta a carga do servidor, por isso a opção recomendada é 'Usuários, Contatos Globais'." - -#: mod/admin.php:999 -msgid "Timeframe for fetching global contacts" -msgstr "" - -#: mod/admin.php:999 -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:1000 -msgid "Search the local directory" -msgstr "" - -#: mod/admin.php:1000 -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:1002 -msgid "Publish server information" -msgstr "" - -#: mod/admin.php:1002 -msgid "" -"If enabled, general server and usage data will be published. The data " -"contains the name and version of the server, number of users with public " -"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." -msgstr "" - -#: mod/admin.php:1004 -msgid "Use MySQL full text engine" -msgstr "Use o engine de texto completo (full text) do MySQL" - -#: mod/admin.php:1004 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "Ativa a engine de texto completo (full text). Acelera a busca - mas só pode buscar apenas por 4 ou mais caracteres." - -#: mod/admin.php:1005 -msgid "Suppress Language" -msgstr "Retira idioma" - -#: mod/admin.php:1005 -msgid "Suppress language information in meta information about a posting." -msgstr "Retira informações sobre idioma nas meta informações sobre uma publicação." - -#: mod/admin.php:1006 -msgid "Suppress Tags" -msgstr "Suprime etiquetas" - -#: mod/admin.php:1006 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "suprime mostrar uma lista de hashtags no final de cada texto." - -#: mod/admin.php:1007 -msgid "Path to item cache" -msgstr "Diretório do cache de item" - -#: mod/admin.php:1007 -msgid "The item caches buffers generated bbcode and external images." -msgstr "" - -#: mod/admin.php:1008 -msgid "Cache duration in seconds" -msgstr "Duração do cache em segundos" - -#: mod/admin.php:1008 -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 "Por quanto tempo os arquivos de cache devem ser mantidos? O valor padrão é 86400 segundos (um dia). Para desativar o cache, defina o valor para -1." - -#: mod/admin.php:1009 -msgid "Maximum numbers of comments per post" -msgstr "O número máximo de comentários por post" - -#: mod/admin.php:1009 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "Quanto comentários devem ser mostradas em cada post? O valor padrão é 100." - -#: mod/admin.php:1010 -msgid "Path for lock file" -msgstr "Diretório do arquivo de trava" - -#: mod/admin.php:1010 -msgid "" -"The lock file is used to avoid multiple pollers at one time. Only define a " -"folder here." -msgstr "" - -#: mod/admin.php:1011 -msgid "Temp path" -msgstr "Diretório Temp" - -#: mod/admin.php:1011 -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:1012 -msgid "Base path to installation" -msgstr "Diretório base para instalação" - -#: mod/admin.php:1012 -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:1013 -msgid "Disable picture proxy" -msgstr "Disabilitar proxy de imagem" - -#: mod/admin.php:1013 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwith." -msgstr "O proxy de imagem aumenta o desempenho e privacidade. Ele não deve ser usado em sistemas com largura de banda muito baixa." - -#: mod/admin.php:1014 -msgid "Enable old style pager" -msgstr "Habilita estilo antigo de paginação" - -#: mod/admin.php:1014 -msgid "" -"The old style pager has page numbers but slows down massively the page " -"speed." -msgstr "O estilo antigo de paginação tem número de páginas mas dimunui muito a velocidade das páginas." - -#: mod/admin.php:1015 -msgid "Only search in tags" -msgstr "Somente pesquisa nas estiquetas" - -#: mod/admin.php:1015 -msgid "On large systems the text search can slow down the system extremely." -msgstr "Em grandes sistemas a pesquisa de texto pode deixar o sistema muito lento." - -#: mod/admin.php:1017 -msgid "New base url" -msgstr "Nova URL base" - -#: mod/admin.php:1017 -msgid "" -"Change base url for this server. Sends relocate message to all DFRN contacts" -" of all users." -msgstr "" - -#: mod/admin.php:1019 -msgid "RINO Encryption" -msgstr "" - -#: mod/admin.php:1019 -msgid "Encryption layer between nodes." -msgstr "" - -#: mod/admin.php:1020 -msgid "Embedly API key" -msgstr "" - -#: mod/admin.php:1020 -msgid "" -"Embedly is used to fetch additional data for " -"web pages. This is an optional parameter." -msgstr "" - -#: mod/admin.php:1022 -msgid "Enable 'worker' background processing" -msgstr "" - -#: mod/admin.php:1022 -msgid "" -"The worker background processing limits the number of parallel background " -"jobs to a maximum number and respects the system load." -msgstr "" - -#: mod/admin.php:1023 -msgid "Maximum number of parallel workers" -msgstr "" - -#: mod/admin.php:1023 -msgid "" -"On shared hosters set this to 2. On larger systems, values of 10 are great. " -"Default value is 4." -msgstr "" - -#: mod/admin.php:1024 -msgid "Don't use 'proc_open' with the worker" -msgstr "" - -#: mod/admin.php:1024 -msgid "" -"Enable this if your system doesn't allow the use of 'proc_open'. This can " -"happen on shared hosters. If this is enabled you should increase the " -"frequency of poller calls in your crontab." -msgstr "" - -#: mod/admin.php:1025 -msgid "Enable fastlane" -msgstr "" - -#: mod/admin.php:1025 -msgid "" -"When enabed, the fastlane mechanism starts an additional worker if processes" -" with higher priority are blocked by processes of lower priority." -msgstr "" - -#: mod/admin.php:1054 -msgid "Update has been marked successful" -msgstr "A atualização foi marcada como bem sucedida" - -#: mod/admin.php:1062 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "A atualização da estrutura do banco de dados %s foi aplicada com sucesso." - -#: mod/admin.php:1065 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "A execução da atualização da estrutura do banco de dados %s falhou com o erro: %s" - -#: mod/admin.php:1077 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "A execução de %s falhou com erro: %s" - -#: mod/admin.php:1080 -#, php-format -msgid "Update %s was successfully applied." -msgstr "A atualização %s foi aplicada com sucesso." - -#: mod/admin.php:1084 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Atualizar %s não retornou um status. Desconhecido se ele teve sucesso." - -#: mod/admin.php:1086 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "Não havia nenhuma função de atualização %s adicional que precisava ser chamada." - -#: mod/admin.php:1105 -msgid "No failed updates." -msgstr "Nenhuma atualização com falha." - -#: mod/admin.php:1106 -msgid "Check database structure" -msgstr "Verifique a estrutura do banco de dados" - -#: mod/admin.php:1111 -msgid "Failed Updates" -msgstr "Atualizações com falha" - -#: mod/admin.php:1112 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "Isso não inclue atualizações antes da 1139, as quais não retornavam um status." - -#: mod/admin.php:1113 -msgid "Mark success (if update was manually applied)" -msgstr "Marcar como bem sucedida (caso tenham sido aplicadas atualizações manuais)" - -#: mod/admin.php:1114 -msgid "Attempt to execute this update step automatically" -msgstr "Tentar executar esse passo da atualização automaticamente" - -#: mod/admin.php:1146 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "\n\t\t\tCaro %1$s,\n\t\t\t\to administrador de %2$s criou uma conta para você." - -#: mod/admin.php:1149 -#, php-format -msgid "" -"\n" -"\t\t\tThe login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%1$s\n" -"\t\t\tLogin Name:\t\t%2$s\n" -"\t\t\tPassword:\t\t%3$s\n" -"\n" -"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\t\tin.\n" -"\n" -"\t\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\t\tthan that.\n" -"\n" -"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\t\tIf you are new and do not know anybody here, they may help\n" -"\t\t\tyou to make some new and interesting friends.\n" -"\n" -"\t\t\tThank you and welcome to %4$s." -msgstr "\n\t\t\tOs dados de login são os seguintes:\n\n\t\t\tLocal do Site:\t%1$s\n\t\t\tNome de Login:\t\t%2$s\n\t\t\tSenha:\t\t%3$s\n\n\t\t\tVocê pode alterar sua senha na página de \"Configurações\" da sua conta após fazer o login.\n\n\t\t\tPor favor, dedique alguns minutos na página para rever as outras configurações da sua conta.\n\n\t\t\tTalvez você também queira incluir algumas informações básicas adicionais ao seu perfil padrão\n\t\t\t(na página de \"Perfis\") para que outras pessoas possam encontrá-lo com facilidade.\n\n\t\t\tRecomendamos que inclua seu nome completo, adicione uma foto do perfil,\n\t\t\tadicionar algumas \"palavras-chave\" (muito útil para fazer novas amizades) - e\n\t\t\ttalvez em que pais você mora; se você não quiser ser mais específico\n\t\t\tdo que isso.\n\n\t\t\tNós respeitamos plenamente seu direito à privacidade, e nenhum desses itens são necessários.\n\t\t\tSe você é novo por aqui e não conheço ninguém, eles podem ajuda-lo\n\t\t\ta fazer novas e interessantes amizades.\n\n\t\t\tObrigado e bem-vindo a %4$s." - -#: mod/admin.php:1193 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s usuário bloqueado/desbloqueado" -msgstr[1] "%s usuários bloqueados/desbloqueados" - -#: mod/admin.php:1200 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s usuário excluído" -msgstr[1] "%s usuários excluídos" - -#: mod/admin.php:1247 -#, php-format -msgid "User '%s' deleted" -msgstr "O usuário '%s' foi excluído" - -#: mod/admin.php:1255 -#, php-format -msgid "User '%s' unblocked" -msgstr "O usuário '%s' foi desbloqueado" - -#: mod/admin.php:1255 -#, php-format -msgid "User '%s' blocked" -msgstr "O usuário '%s' foi bloqueado" - -#: mod/admin.php:1374 mod/admin.php:1399 -msgid "Register date" -msgstr "Data de registro" - -#: mod/admin.php:1374 mod/admin.php:1399 -msgid "Last login" -msgstr "Última entrada" - -#: mod/admin.php:1374 mod/admin.php:1399 -msgid "Last item" -msgstr "Último item" - -#: mod/admin.php:1374 mod/settings.php:43 -msgid "Account" -msgstr "Conta" - -#: mod/admin.php:1383 -msgid "Add User" -msgstr "Adicionar usuário" - -#: mod/admin.php:1384 -msgid "select all" -msgstr "selecionar todos" - -#: mod/admin.php:1385 -msgid "User registrations waiting for confirm" -msgstr "Registros de usuário aguardando confirmação" - -#: mod/admin.php:1386 -msgid "User waiting for permanent deletion" -msgstr "Usuário aguardando por fim permanente da conta." - -#: mod/admin.php:1387 -msgid "Request date" -msgstr "Solicitar data" - -#: mod/admin.php:1388 -msgid "No registrations." -msgstr "Nenhum registro." - -#: mod/admin.php:1389 mod/notifications.php:176 mod/notifications.php:249 -msgid "Approve" -msgstr "Aprovar" - -#: mod/admin.php:1390 -msgid "Deny" -msgstr "Negar" - -#: mod/admin.php:1392 mod/contacts.php:605 mod/contacts.php:803 -#: mod/contacts.php:997 -msgid "Block" -msgstr "Bloquear" - -#: mod/admin.php:1393 mod/contacts.php:605 mod/contacts.php:803 -#: mod/contacts.php:997 -msgid "Unblock" -msgstr "Desbloquear" - -#: mod/admin.php:1394 -msgid "Site admin" -msgstr "Administração do site" - -#: mod/admin.php:1395 -msgid "Account expired" -msgstr "Conta expirou" - -#: mod/admin.php:1398 -msgid "New User" -msgstr "Novo usuário" - -#: mod/admin.php:1399 -msgid "Deleted since" -msgstr "Apagado desde" - -#: mod/admin.php:1404 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Os usuários selecionados serão excluídos!\\n\\nTudo o que estes usuários publicaram neste site será excluído permanentemente!\\n\\nDeseja continuar?" - -#: mod/admin.php:1405 -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 "O usuário {0} será excluído!\\n\\nTudo o que este usuário publicou neste site será permanentemente excluído!\\n\\nDeseja continuar?" - -#: mod/admin.php:1415 -msgid "Name of the new user." -msgstr "Nome do novo usuário." - -#: mod/admin.php:1416 -msgid "Nickname" -msgstr "Apelido" - -#: mod/admin.php:1416 -msgid "Nickname of the new user." -msgstr "Apelido para o novo usuário." - -#: mod/admin.php:1417 -msgid "Email address of the new user." -msgstr "Endereço de e-mail do novo usuário." - -#: mod/admin.php:1460 -#, php-format -msgid "Plugin %s disabled." -msgstr "O plugin %s foi desabilitado." - -#: mod/admin.php:1464 -#, php-format -msgid "Plugin %s enabled." -msgstr "O plugin %s foi habilitado." - -#: mod/admin.php:1475 mod/admin.php:1711 -msgid "Disable" -msgstr "Desabilitar" - -#: mod/admin.php:1477 mod/admin.php:1713 -msgid "Enable" -msgstr "Habilitar" - -#: mod/admin.php:1500 mod/admin.php:1758 -msgid "Toggle" -msgstr "Alternar" - -#: mod/admin.php:1508 mod/admin.php:1767 -msgid "Author: " -msgstr "Autor: " - -#: mod/admin.php:1509 mod/admin.php:1768 -msgid "Maintainer: " -msgstr "Mantenedor: " - -#: mod/admin.php:1561 -msgid "Reload active plugins" -msgstr "" - -#: mod/admin.php:1566 -#, php-format -msgid "" -"There are currently no plugins available on your node. You can find the " -"official plugin repository at %1$s and might find other interesting plugins " -"in the open plugin registry at %2$s" -msgstr "" - -#: mod/admin.php:1671 -msgid "No themes found." -msgstr "Nenhum tema encontrado" - -#: mod/admin.php:1749 -msgid "Screenshot" -msgstr "Captura de tela" - -#: mod/admin.php:1809 -msgid "Reload active themes" -msgstr "" - -#: mod/admin.php:1814 -#, php-format -msgid "No themes found on the system. They should be paced in %1$s" -msgstr "" - -#: mod/admin.php:1815 -msgid "[Experimental]" -msgstr "[Esperimental]" - -#: mod/admin.php:1816 -msgid "[Unsupported]" -msgstr "[Não suportado]" - -#: mod/admin.php:1840 -msgid "Log settings updated." -msgstr "As configurações de relatórios foram atualizadas." - -#: mod/admin.php:1877 -msgid "Clear" -msgstr "Limpar" - -#: mod/admin.php:1882 -msgid "Enable Debugging" -msgstr "Habilitar depuração" - -#: mod/admin.php:1883 -msgid "Log file" -msgstr "Arquivo do relatório" - -#: mod/admin.php:1883 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "O servidor web precisa ter permissão de escrita. Relativa ao diretório raiz do seu Friendica." - -#: mod/admin.php:1884 -msgid "Log level" -msgstr "Nível do relatório" - -#: mod/admin.php:1887 -msgid "PHP logging" -msgstr "" - -#: mod/admin.php:1888 -msgid "" -"To enable logging of PHP errors and warnings you can add the following to " -"the .htconfig.php file of your installation. The filename set in the " -"'error_log' line is relative to the friendica top-level directory and must " -"be writeable by the web server. The option '1' for 'log_errors' and " -"'display_errors' is to enable these options, set to '0' to disable them." -msgstr "" - -#: mod/admin.php:2014 mod/admin.php:2015 mod/settings.php:763 -msgid "Off" -msgstr "Off" - -#: mod/admin.php:2014 mod/admin.php:2015 mod/settings.php:763 -msgid "On" -msgstr "On" - -#: mod/admin.php:2015 -#, php-format -msgid "Lock feature %s" -msgstr "Bloquear funcionalidade %s" - -#: mod/admin.php:2023 -msgid "Manage Additional Features" -msgstr "Gerenciar funcionalidades adicionais" - -#: mod/contacts.php:128 -#, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited." -msgstr[0] "" -msgstr[1] "" - -#: mod/contacts.php:159 mod/contacts.php:368 -msgid "Could not access contact record." -msgstr "Não foi possível acessar o registro do contato." - -#: mod/contacts.php:173 -msgid "Could not locate selected profile." -msgstr "Não foi possível localizar o perfil selecionado." - -#: mod/contacts.php:206 -msgid "Contact updated." -msgstr "O contato foi atualizado." - -#: mod/contacts.php:389 -msgid "Contact has been blocked" -msgstr "O contato foi bloqueado" - -#: mod/contacts.php:389 -msgid "Contact has been unblocked" -msgstr "O contato foi desbloqueado" - -#: mod/contacts.php:400 -msgid "Contact has been ignored" -msgstr "O contato foi ignorado" - -#: mod/contacts.php:400 -msgid "Contact has been unignored" -msgstr "O contato deixou de ser ignorado" - -#: mod/contacts.php:412 -msgid "Contact has been archived" -msgstr "O contato foi arquivado" - -#: mod/contacts.php:412 -msgid "Contact has been unarchived" -msgstr "O contato foi desarquivado" - -#: mod/contacts.php:437 -msgid "Drop contact" -msgstr "" - -#: mod/contacts.php:440 mod/contacts.php:799 -msgid "Do you really want to delete this contact?" -msgstr "Você realmente deseja deletar esse contato?" - -#: mod/contacts.php:457 -msgid "Contact has been removed." -msgstr "O contato foi removido." - -#: mod/contacts.php:498 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Você tem uma amizade mútua com %s" - -#: mod/contacts.php:502 -#, php-format -msgid "You are sharing with %s" -msgstr "Você está compartilhando com %s" - -#: mod/contacts.php:507 -#, php-format -msgid "%s is sharing with you" -msgstr "%s está compartilhando com você" - -#: mod/contacts.php:527 -msgid "Private communications are not available for this contact." -msgstr "As comunicações privadas não estão disponíveis para este contato." - -#: mod/contacts.php:534 -msgid "(Update was successful)" -msgstr "(A atualização foi bem sucedida)" - -#: mod/contacts.php:534 -msgid "(Update was not successful)" -msgstr "(A atualização não foi bem sucedida)" - -#: mod/contacts.php:536 mod/contacts.php:978 -msgid "Suggest friends" -msgstr "Sugerir amigos" - -#: mod/contacts.php:540 -#, php-format -msgid "Network type: %s" -msgstr "Tipo de rede: %s" - -#: mod/contacts.php:553 -msgid "Communications lost with this contact!" -msgstr "As comunicações com esse contato foram perdidas!" - -#: mod/contacts.php:556 -msgid "Fetch further information for feeds" -msgstr "Pega mais informações para feeds" - -#: mod/contacts.php:557 -msgid "Fetch information" -msgstr "Buscar informações" - -#: mod/contacts.php:557 -msgid "Fetch information and keywords" -msgstr "Buscar informação e palavras-chave" - -#: mod/contacts.php:575 -msgid "Contact" -msgstr "" - -#: mod/contacts.php:578 -msgid "Profile Visibility" -msgstr "Visibilidade do perfil" - -#: mod/contacts.php:579 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Por favor, selecione o perfil que você gostaria de exibir para %s quando estiver visualizando seu perfil de modo seguro." - -#: mod/contacts.php:580 -msgid "Contact Information / Notes" -msgstr "Informações sobre o contato / Anotações" - -#: mod/contacts.php:581 -msgid "Edit contact notes" -msgstr "Editar as anotações do contato" - -#: mod/contacts.php:587 -msgid "Block/Unblock contact" -msgstr "Bloquear/desbloquear o contato" - -#: mod/contacts.php:588 -msgid "Ignore contact" -msgstr "Ignorar o contato" - -#: mod/contacts.php:589 -msgid "Repair URL settings" -msgstr "Reparar as definições de URL" - -#: mod/contacts.php:590 -msgid "View conversations" -msgstr "Ver as conversas" - -#: mod/contacts.php:596 -msgid "Last update:" -msgstr "Última atualização:" - -#: mod/contacts.php:598 -msgid "Update public posts" -msgstr "Atualizar publicações públicas" - -#: mod/contacts.php:600 mod/contacts.php:988 -msgid "Update now" -msgstr "Atualizar agora" - -#: mod/contacts.php:606 mod/contacts.php:804 mod/contacts.php:1005 -msgid "Unignore" -msgstr "Deixar de ignorar" - -#: mod/contacts.php:606 mod/contacts.php:804 mod/contacts.php:1005 -#: mod/notifications.php:60 mod/notifications.php:179 -#: mod/notifications.php:251 -msgid "Ignore" -msgstr "Ignorar" - -#: mod/contacts.php:610 -msgid "Currently blocked" -msgstr "Atualmente bloqueado" - -#: mod/contacts.php:611 -msgid "Currently ignored" -msgstr "Atualmente ignorado" - -#: mod/contacts.php:612 -msgid "Currently archived" -msgstr "Atualmente arquivado" - -#: mod/contacts.php:613 mod/notifications.php:172 mod/notifications.php:239 -msgid "Hide this contact from others" -msgstr "Ocultar este contato dos outros" - -#: mod/contacts.php:613 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Respostas/gostadas associados às suas publicações ainda podem estar visíveis" - -#: mod/contacts.php:614 -msgid "Notification for new posts" -msgstr "Notificações para novas publicações" - -#: mod/contacts.php:614 -msgid "Send a notification of every new post of this contact" -msgstr "Envie uma notificação para todos as novas publicações deste contato" - -#: mod/contacts.php:617 -msgid "Blacklisted keywords" -msgstr "Palavras-chave na Lista Negra" - -#: mod/contacts.php:617 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "Lista de palavras-chave separadas por vírgulas que não devem ser convertidas para hashtags, quando \"Buscar informações e palavras-chave\" for selecionado." - -#: mod/contacts.php:633 -msgid "Actions" -msgstr "" - -#: mod/contacts.php:636 -msgid "Contact Settings" -msgstr "" - -#: mod/contacts.php:682 -msgid "Suggestions" -msgstr "Sugestões" - -#: mod/contacts.php:685 -msgid "Suggest potential friends" -msgstr "Sugerir amigos em potencial" - -#: mod/contacts.php:693 -msgid "Show all contacts" -msgstr "Exibe todos os contatos" - -#: mod/contacts.php:698 -msgid "Unblocked" -msgstr "Desbloquear" - -#: mod/contacts.php:701 -msgid "Only show unblocked contacts" -msgstr "Exibe somente contatos desbloqueados" - -#: mod/contacts.php:707 -msgid "Blocked" -msgstr "Bloqueado" - -#: mod/contacts.php:710 -msgid "Only show blocked contacts" -msgstr "Exibe somente contatos bloqueados" - -#: mod/contacts.php:716 -msgid "Ignored" -msgstr "Ignorados" - -#: mod/contacts.php:719 -msgid "Only show ignored contacts" -msgstr "Exibe somente contatos ignorados" - -#: mod/contacts.php:725 -msgid "Archived" -msgstr "Arquivados" - -#: mod/contacts.php:728 -msgid "Only show archived contacts" -msgstr "Exibe somente contatos arquivados" - -#: mod/contacts.php:734 -msgid "Hidden" -msgstr "Ocultos" - -#: mod/contacts.php:737 -msgid "Only show hidden contacts" -msgstr "Exibe somente contatos ocultos" - -#: mod/contacts.php:794 -msgid "Search your contacts" -msgstr "Pesquisar seus contatos" - -#: mod/contacts.php:802 mod/settings.php:158 mod/settings.php:689 -msgid "Update" -msgstr "Atualizar" - -#: mod/contacts.php:805 mod/contacts.php:1013 -msgid "Archive" -msgstr "Arquivar" - -#: mod/contacts.php:805 mod/contacts.php:1013 -msgid "Unarchive" -msgstr "Desarquivar" - -#: mod/contacts.php:808 -msgid "Batch Actions" -msgstr "" - -#: mod/contacts.php:854 -msgid "View all contacts" -msgstr "Ver todos os contatos" - -#: mod/contacts.php:864 -msgid "View all common friends" -msgstr "" - -#: mod/contacts.php:871 -msgid "Advanced Contact Settings" -msgstr "Configurações avançadas do contato" - -#: mod/contacts.php:916 -msgid "Mutual Friendship" -msgstr "Amizade mútua" - -#: mod/contacts.php:920 -msgid "is a fan of yours" -msgstr "é um fã seu" - -#: mod/contacts.php:924 -msgid "you are a fan of" -msgstr "você é um fã de" - -#: mod/contacts.php:999 -msgid "Toggle Blocked status" -msgstr "Alternar o status de bloqueio" - -#: mod/contacts.php:1007 -msgid "Toggle Ignored status" -msgstr "Alternar o status de ignorado" - -#: mod/contacts.php:1015 -msgid "Toggle Archive status" -msgstr "Alternar o status de arquivamento" - -#: mod/contacts.php:1023 -msgid "Delete contact" -msgstr "Excluir o contato" - -#: mod/dfrn_confirm.php:66 mod/profiles.php:19 mod/profiles.php:134 -#: mod/profiles.php:180 mod/profiles.php:610 -msgid "Profile not found." -msgstr "O perfil não foi encontrado." - -#: mod/dfrn_confirm.php:123 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Isso pode acontecer eventualmente se o contato foi solicitado por ambas as pessoas e ele já tinha sido aprovado." - -#: mod/dfrn_confirm.php:242 -msgid "Response from remote site was not understood." -msgstr "A resposta do site remoto não foi compreendida." - -#: mod/dfrn_confirm.php:251 mod/dfrn_confirm.php:256 -msgid "Unexpected response from remote site: " -msgstr "Resposta inesperada do site remoto: " - -#: mod/dfrn_confirm.php:265 -msgid "Confirmation completed successfully." -msgstr "A confirmação foi completada com sucesso." - -#: mod/dfrn_confirm.php:267 mod/dfrn_confirm.php:281 mod/dfrn_confirm.php:288 -msgid "Remote site reported: " -msgstr "O site remoto relatou: " - -#: mod/dfrn_confirm.php:279 -msgid "Temporary failure. Please wait and try again." -msgstr "Falha temporária. Por favor, aguarde e tente novamente." - -#: mod/dfrn_confirm.php:286 -msgid "Introduction failed or was revoked." -msgstr "Ocorreu uma falha na apresentação ou ela foi revogada." - -#: mod/dfrn_confirm.php:415 -msgid "Unable to set contact photo." -msgstr "Não foi possível definir a foto do contato." - -#: mod/dfrn_confirm.php:553 -#, php-format -msgid "No user record found for '%s' " -msgstr "Não foi encontrado nenhum registro de usuário para '%s' " - -#: mod/dfrn_confirm.php:563 -msgid "Our site encryption key is apparently messed up." -msgstr "A chave de criptografia do nosso site está, aparentemente, bagunçada." - -#: mod/dfrn_confirm.php:574 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "Foi fornecida uma URL em branco ou não foi possível descriptografá-la." - -#: mod/dfrn_confirm.php:595 -msgid "Contact record was not found for you on our site." -msgstr "O registro do contato não foi encontrado para você em seu site." - -#: mod/dfrn_confirm.php:609 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "A chave pública do site não está disponível no registro do contato para a URL %s" - -#: mod/dfrn_confirm.php:629 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "O ID fornecido pelo seu sistema é uma duplicata em nosso sistema. Deve funcionar agora, se você tentar de novo." - -#: mod/dfrn_confirm.php:640 -msgid "Unable to set your contact credentials on our system." -msgstr "Não foi possível definir suas credenciais de contato no nosso sistema." - -#: mod/dfrn_confirm.php:699 -msgid "Unable to update your contact profile details on our system" -msgstr "Não foi possível atualizar os detalhes do seu perfil em nosso sistema." - -#: mod/dfrn_confirm.php:771 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s se associou a %2$s" - -#: mod/dirfind.php:36 +#: mod/dirfind.php:37 #, php-format msgid "People Search - %s" msgstr "" -#: mod/dirfind.php:47 +#: mod/dirfind.php:48 #, php-format msgid "Forum Search - %s" msgstr "" -#: mod/events.php:95 mod/events.php:97 +#: mod/events.php:93 mod/events.php:95 msgid "Event can not end before it has started." msgstr "O evento não pode terminar antes de ter começado." -#: mod/events.php:104 mod/events.php:106 +#: mod/events.php:102 mod/events.php:104 msgid "Event title and start time are required." msgstr "O título do evento e a hora de início são obrigatórios." -#: mod/events.php:381 +#: mod/events.php:376 msgid "Create New Event" msgstr "Criar um novo evento" -#: mod/events.php:483 +#: mod/events.php:481 msgid "Event details" msgstr "Detalhes do evento" -#: mod/events.php:484 +#: mod/events.php:482 msgid "Starting date and Title are required." msgstr "" -#: mod/events.php:485 mod/events.php:486 +#: mod/events.php:483 mod/events.php:484 msgid "Event Starts:" msgstr "Início do evento:" -#: mod/events.php:485 mod/events.php:497 mod/profiles.php:709 +#: mod/events.php:483 mod/events.php:495 mod/profiles.php:709 msgid "Required" msgstr "Obrigatório" -#: mod/events.php:487 mod/events.php:503 +#: mod/events.php:485 mod/events.php:501 msgid "Finish date/time is not known or not relevant" msgstr "A data/hora de término não é conhecida ou não é relevante" -#: mod/events.php:489 mod/events.php:490 +#: mod/events.php:487 mod/events.php:488 msgid "Event Finishes:" msgstr "Término do evento:" -#: mod/events.php:491 mod/events.php:504 +#: mod/events.php:489 mod/events.php:502 msgid "Adjust for viewer timezone" msgstr "Ajustar para o fuso horário do visualizador" -#: mod/events.php:493 +#: mod/events.php:491 msgid "Description:" msgstr "Descrição:" -#: mod/events.php:497 mod/events.php:499 +#: mod/events.php:495 mod/events.php:497 msgid "Title:" msgstr "Título:" -#: mod/events.php:500 mod/events.php:501 +#: mod/events.php:498 mod/events.php:499 msgid "Share this event" msgstr "Compartilhar este evento" -#: mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "A sugestão de amigo foi enviada" +#: mod/events.php:528 +msgid "Failed to remove event" +msgstr "" -#: mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Sugerir amigos" +#: mod/events.php:530 +msgid "Event removed" +msgstr "" -#: mod/fsuggest.php:99 +#: mod/follow.php:30 +msgid "You already added this contact." +msgstr "Você já adicionou esse contato." + +#: mod/follow.php:39 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "" + +#: mod/follow.php:46 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "" + +#: mod/follow.php:53 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "" + +#: mod/follow.php:186 +msgid "Contact added" +msgstr "O contato foi adicionado" + +#: mod/friendica.php:68 +msgid "This is Friendica, version" +msgstr "Este é o Friendica, versão" + +#: mod/friendica.php:69 +msgid "running at web location" +msgstr "sendo executado no endereço web" + +#: mod/friendica.php:73 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Por favor, visite friendica.com para aprender mais sobre o projeto Friendica." + +#: mod/friendica.php:77 +msgid "Bug reports and issues: please visit" +msgstr "Relate ou acompanhe um erro no" + +#: mod/friendica.php:77 +msgid "the bugtracker at github" +msgstr "GitHub" + +#: mod/friendica.php:80 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Sugestões, elogios, doações, etc. - favor enviar e-mail para \"Info\" arroba Friendica - ponto com" + +#: mod/friendica.php:94 +msgid "Installed plugins/addons/apps:" +msgstr "Plugins/complementos/aplicações instaladas:" + +#: mod/friendica.php:108 +msgid "No installed plugins/addons/apps" +msgstr "Nenhum plugin/complemento/aplicativo instalado" + +#: mod/friendica.php:113 +msgid "On this server the following remote servers are blocked." +msgstr "" + +#: mod/friendica.php:114 mod/admin.php:280 mod/admin.php:298 +msgid "Reason for the block" +msgstr "" + +#: mod/group.php:29 +msgid "Group created." +msgstr "O grupo foi criado." + +#: mod/group.php:35 +msgid "Could not create group." +msgstr "Não foi possível criar o grupo." + +#: mod/group.php:49 mod/group.php:154 +msgid "Group not found." +msgstr "O grupo não foi encontrado." + +#: mod/group.php:63 +msgid "Group name changed." +msgstr "O nome do grupo foi alterado." + +#: mod/group.php:93 +msgid "Save Group" +msgstr "Salvar o grupo" + +#: mod/group.php:98 +msgid "Create a group of contacts/friends." +msgstr "Criar um grupo de contatos/amigos." + +#: mod/group.php:123 +msgid "Group removed." +msgstr "O grupo foi removido." + +#: mod/group.php:125 +msgid "Unable to remove group." +msgstr "Não foi possível remover o grupo." + +#: mod/group.php:189 +msgid "Delete Group" +msgstr "" + +#: mod/group.php:195 +msgid "Group Editor" +msgstr "Editor de grupo" + +#: mod/group.php:200 +msgid "Edit Group Name" +msgstr "" + +#: mod/group.php:210 +msgid "Members" +msgstr "Membros" + +#: mod/group.php:226 +msgid "Remove Contact" +msgstr "" + +#: mod/group.php:250 +msgid "Add Contact" +msgstr "" + +#: mod/manage.php:151 +msgid "Manage Identities and/or Pages" +msgstr "Gerenciar identidades e/ou páginas" + +#: mod/manage.php:152 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Alterne entre diferentes identidades ou páginas de comunidade/grupo que dividem detalhes da sua conta ou que você tenha fornecido permissões de \"administração\"" + +#: mod/manage.php:153 +msgid "Select an identity to manage: " +msgstr "Selecione uma identidade para gerenciar: " + +#: mod/message.php:64 +msgid "Unable to locate contact information." +msgstr "Não foi possível localizar informação do contato." + +#: mod/message.php:204 +msgid "Do you really want to delete this message?" +msgstr "Você realmente deseja deletar essa mensagem?" + +#: mod/message.php:224 +msgid "Message deleted." +msgstr "A mensagem foi excluída." + +#: mod/message.php:255 +msgid "Conversation removed." +msgstr "A conversa foi removida." + +#: mod/message.php:364 +msgid "No messages." +msgstr "Nenhuma mensagem." + +#: mod/message.php:403 +msgid "Message not available." +msgstr "A mensagem não está disponível." + +#: mod/message.php:477 +msgid "Delete message" +msgstr "Excluir a mensagem" + +#: mod/message.php:503 mod/message.php:591 +msgid "Delete conversation" +msgstr "Excluir conversa" + +#: mod/message.php:505 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Não foi encontrada nenhuma comunicação segura. Você pode ser capaz de responder a partir da página de perfil do remetente." + +#: mod/message.php:509 +msgid "Send Reply" +msgstr "Enviar resposta" + +#: mod/message.php:561 #, php-format -msgid "Suggest a friend for %s" -msgstr "Sugerir um amigo para %s" +msgid "Unknown sender - %s" +msgstr "Remetente desconhecido - %s" -#: mod/item.php:116 -msgid "Unable to locate original post." -msgstr "Não foi possível localizar a publicação original." +#: mod/message.php:563 +#, php-format +msgid "You and %s" +msgstr "Você e %s" -#: mod/item.php:334 -msgid "Empty post discarded." -msgstr "A publicação em branco foi descartada." +#: mod/message.php:565 +#, php-format +msgid "%s and You" +msgstr "%s e você" -#: mod/item.php:867 -msgid "System error. Post not saved." -msgstr "Erro no sistema. A publicação não foi salva." +#: mod/message.php:594 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" -#: mod/item.php:993 +#: mod/message.php:597 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d mensagem" +msgstr[1] "%d mensagens" + +#: mod/network.php:197 mod/search.php:25 +msgid "Remove term" +msgstr "Remover o termo" + +#: mod/network.php:404 #, php-format msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Essa mensagem foi enviada a você por %s, um membro da rede social Friendica." +"Warning: This group contains %s member from a network that doesn't allow non" +" public messages." +msgid_plural "" +"Warning: This group contains %s members from a network that doesn't allow " +"non public messages." +msgstr[0] "" +msgstr[1] "" -#: mod/item.php:995 -#, php-format -msgid "You may visit them online at %s" -msgstr "Você pode visitá-lo em %s" +#: mod/network.php:407 +msgid "Messages in this group won't be send to these receivers." +msgstr "" -#: mod/item.php:996 +#: mod/network.php:535 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Mensagens privadas para esta pessoa correm o risco de sofrerem divulgação pública." + +#: mod/network.php:540 +msgid "Invalid contact." +msgstr "Contato inválido." + +#: mod/network.php:813 +msgid "Commented Order" +msgstr "Ordem dos comentários" + +#: mod/network.php:816 +msgid "Sort by Comment Date" +msgstr "Ordenar pela data do comentário" + +#: mod/network.php:821 +msgid "Posted Order" +msgstr "Ordem das publicações" + +#: mod/network.php:824 +msgid "Sort by Post Date" +msgstr "Ordenar pela data de publicação" + +#: mod/network.php:835 +msgid "Posts that mention or involve you" +msgstr "Publicações que mencionem ou envolvam você" + +#: mod/network.php:843 +msgid "New" +msgstr "Nova" + +#: mod/network.php:846 +msgid "Activity Stream - by date" +msgstr "Fluxo de atividades - por data" + +#: mod/network.php:854 +msgid "Shared Links" +msgstr "Links compartilhados" + +#: mod/network.php:857 +msgid "Interesting Links" +msgstr "Links interessantes" + +#: mod/network.php:865 +msgid "Starred" +msgstr "Destacada" + +#: mod/network.php:868 +msgid "Favourite Posts" +msgstr "Publicações favoritas" + +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Erro no protocolo OpenID. Não foi retornada nenhuma ID." + +#: mod/openid.php:60 msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Por favor, entre em contato com o remetente respondendo a esta publicação, caso você não queira mais receber estas mensagens." +"Account not found and OpenID registration is not permitted on this site." +msgstr "A conta não foi encontrada e não são permitidos registros via OpenID nesse site." -#: mod/item.php:1000 +#: mod/photos.php:94 mod/photos.php:1900 +msgid "Recent Photos" +msgstr "Fotos recentes" + +#: mod/photos.php:97 mod/photos.php:1328 mod/photos.php:1902 +msgid "Upload New Photos" +msgstr "Enviar novas fotos" + +#: mod/photos.php:112 mod/settings.php:36 +msgid "everybody" +msgstr "todos" + +#: mod/photos.php:176 +msgid "Contact information unavailable" +msgstr "A informação de contato não está disponível" + +#: mod/photos.php:197 +msgid "Album not found." +msgstr "O álbum não foi encontrado." + +#: mod/photos.php:230 mod/photos.php:242 mod/photos.php:1272 +msgid "Delete Album" +msgstr "Excluir o álbum" + +#: mod/photos.php:240 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Você realmente deseja deletar esse álbum de fotos e todas as suas fotos?" + +#: mod/photos.php:323 mod/photos.php:334 mod/photos.php:1598 +msgid "Delete Photo" +msgstr "Excluir a foto" + +#: mod/photos.php:332 +msgid "Do you really want to delete this photo?" +msgstr "Você realmente deseja deletar essa foto?" + +#: mod/photos.php:713 #, php-format -msgid "%s posted an update." -msgstr "%s publicou uma atualização." +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s foi marcado em %2$s por %3$s" -#: mod/mood.php:133 -msgid "Mood" -msgstr "Humor" +#: mod/photos.php:713 +msgid "a photo" +msgstr "uma foto" -#: mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Defina o seu humor e conte aos seus amigos" +#: mod/photos.php:821 +msgid "Image file is empty." +msgstr "O arquivo de imagem está vazio." -#: mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Cutucar/Incitar" +#: mod/photos.php:988 +msgid "No photos selected" +msgstr "Não foi selecionada nenhuma foto" -#: mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "Cutuca, incita ou faz outras coisas com alguém" +#: mod/photos.php:1091 mod/videos.php:309 +msgid "Access to this item is restricted." +msgstr "O acesso a este item é restrito." -#: mod/poke.php:194 -msgid "Recipient" -msgstr "Destinatário" - -#: mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Selecione o que você deseja fazer com o destinatário" - -#: mod/poke.php:198 -msgid "Make this post private" -msgstr "Fazer com que essa publicação se torne privada" - -#: mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "A imagem foi enviada, mas não foi possível cortá-la." - -#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 -#: mod/profile_photo.php:314 +#: mod/photos.php:1151 #, php-format -msgid "Image size reduction [%s] failed." -msgstr "Não foi possível reduzir o tamanho da imagem [%s]." +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Você está usando %1$.2f Mbytes dos %2$.2f Mbytes liberados para armazenamento de fotos." -#: mod/profile_photo.php:124 +#: mod/photos.php:1188 +msgid "Upload Photos" +msgstr "Enviar fotos" + +#: mod/photos.php:1192 mod/photos.php:1267 +msgid "New album name: " +msgstr "Nome do novo álbum: " + +#: mod/photos.php:1193 +msgid "or existing album name: " +msgstr "ou o nome de um álbum já existente: " + +#: mod/photos.php:1194 +msgid "Do not show a status post for this upload" +msgstr "Não exiba uma publicação de status para este envio" + +#: mod/photos.php:1205 mod/photos.php:1602 mod/settings.php:1307 +msgid "Show to Groups" +msgstr "Mostre para Grupos" + +#: mod/photos.php:1206 mod/photos.php:1603 mod/settings.php:1308 +msgid "Show to Contacts" +msgstr "Mostre para Contatos" + +#: mod/photos.php:1207 +msgid "Private Photo" +msgstr "Foto Privada" + +#: mod/photos.php:1208 +msgid "Public Photo" +msgstr "Foto Pública" + +#: mod/photos.php:1278 +msgid "Edit Album" +msgstr "Editar o álbum" + +#: mod/photos.php:1283 +msgid "Show Newest First" +msgstr "Exibir as mais recentes primeiro" + +#: mod/photos.php:1285 +msgid "Show Oldest First" +msgstr "Exibir as mais antigas primeiro" + +#: mod/photos.php:1314 mod/photos.php:1885 +msgid "View Photo" +msgstr "Ver a foto" + +#: mod/photos.php:1359 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permissão negada. O acesso a este item pode estar restrito." + +#: mod/photos.php:1361 +msgid "Photo not available" +msgstr "A foto não está disponível" + +#: mod/photos.php:1422 +msgid "View photo" +msgstr "Ver a imagem" + +#: mod/photos.php:1422 +msgid "Edit photo" +msgstr "Editar a foto" + +#: mod/photos.php:1423 +msgid "Use as profile photo" +msgstr "Usar como uma foto de perfil" + +#: mod/photos.php:1448 +msgid "View Full Size" +msgstr "Ver no tamanho real" + +#: mod/photos.php:1538 +msgid "Tags: " +msgstr "Etiquetas: " + +#: mod/photos.php:1541 +msgid "[Remove any tag]" +msgstr "[Remover qualquer etiqueta]" + +#: mod/photos.php:1584 +msgid "New album name" +msgstr "Novo nome para o álbum" + +#: mod/photos.php:1585 +msgid "Caption" +msgstr "Legenda" + +#: mod/photos.php:1586 +msgid "Add a Tag" +msgstr "Adicionar uma etiqueta" + +#: mod/photos.php:1586 msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Recarregue a página pressionando a tecla Shift ou limpe o cache do navegador caso a nova foto não apareça imediatamente" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Por exemplo: @joao, @Joao_da_Silva, @joao@exemplo.com, #Minas_Gerais, #acampamento" -#: mod/profile_photo.php:134 -msgid "Unable to process image" -msgstr "Não foi possível processar a imagem" +#: mod/photos.php:1587 +msgid "Do not rotate" +msgstr "" -#: mod/profile_photo.php:248 -msgid "Upload File:" -msgstr "Enviar arquivo:" +#: mod/photos.php:1588 +msgid "Rotate CW (right)" +msgstr "Rotacionar para direita" -#: mod/profile_photo.php:249 -msgid "Select a profile:" -msgstr "Selecione um perfil:" +#: mod/photos.php:1589 +msgid "Rotate CCW (left)" +msgstr "Rotacionar para esquerda" -#: mod/profile_photo.php:251 -msgid "Upload" -msgstr "Enviar" +#: mod/photos.php:1604 +msgid "Private photo" +msgstr "Foto privada" -#: mod/profile_photo.php:254 -msgid "or" -msgstr "ou" +#: mod/photos.php:1605 +msgid "Public photo" +msgstr "Foto pública" -#: mod/profile_photo.php:254 -msgid "skip this step" -msgstr "pule esta etapa" +#: mod/photos.php:1814 +msgid "Map" +msgstr "" -#: mod/profile_photo.php:254 -msgid "select a photo from your photo albums" -msgstr "selecione uma foto de um álbum de fotos" +#: mod/photos.php:1891 mod/videos.php:393 +msgid "View Album" +msgstr "Ver álbum" -#: mod/profile_photo.php:268 -msgid "Crop Image" -msgstr "Cortar a imagem" +#: mod/probe.php:10 mod/webfinger.php:9 +msgid "Only logged in users are permitted to perform a probing." +msgstr "" -#: mod/profile_photo.php:269 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Por favor, ajuste o corte da imagem para a melhor visualização." - -#: mod/profile_photo.php:271 -msgid "Done Editing" -msgstr "Encerrar a edição" - -#: mod/profile_photo.php:305 -msgid "Image uploaded successfully." -msgstr "A imagem foi enviada com sucesso." +#: mod/profile.php:175 +msgid "Tips for New Members" +msgstr "Dicas para novos membros" #: mod/profiles.php:38 msgid "Profile deleted." msgstr "O perfil foi excluído." -#: mod/profiles.php:56 mod/profiles.php:90 +#: mod/profiles.php:54 mod/profiles.php:90 msgid "Profile-" msgstr "Perfil-" -#: mod/profiles.php:75 mod/profiles.php:118 +#: mod/profiles.php:73 mod/profiles.php:118 msgid "New profile created." msgstr "O novo perfil foi criado." @@ -6836,86 +5678,90 @@ msgstr "O novo perfil foi criado." msgid "Profile unavailable to clone." msgstr "O perfil não está disponível para clonagem." -#: mod/profiles.php:190 +#: mod/profiles.php:192 msgid "Profile Name is required." msgstr "É necessário informar o nome do perfil." -#: mod/profiles.php:337 +#: mod/profiles.php:332 msgid "Marital Status" msgstr "Situação amorosa" -#: mod/profiles.php:341 +#: mod/profiles.php:336 msgid "Romantic Partner" msgstr "Parceiro romântico" -#: mod/profiles.php:353 +#: mod/profiles.php:348 msgid "Work/Employment" msgstr "Trabalho/emprego" -#: mod/profiles.php:356 +#: mod/profiles.php:351 msgid "Religion" msgstr "Religião" -#: mod/profiles.php:360 +#: mod/profiles.php:355 msgid "Political Views" msgstr "Posicionamento político" -#: mod/profiles.php:364 +#: mod/profiles.php:359 msgid "Gender" msgstr "Gênero" -#: mod/profiles.php:368 +#: mod/profiles.php:363 msgid "Sexual Preference" msgstr "Preferência sexual" -#: mod/profiles.php:372 +#: mod/profiles.php:367 +msgid "XMPP" +msgstr "" + +#: mod/profiles.php:371 msgid "Homepage" msgstr "Página Principal" -#: mod/profiles.php:376 mod/profiles.php:695 +#: mod/profiles.php:375 mod/profiles.php:695 msgid "Interests" msgstr "Interesses" -#: mod/profiles.php:380 +#: mod/profiles.php:379 msgid "Address" msgstr "Endereço" -#: mod/profiles.php:387 mod/profiles.php:691 +#: mod/profiles.php:386 mod/profiles.php:691 msgid "Location" msgstr "Localização" -#: mod/profiles.php:470 +#: mod/profiles.php:471 msgid "Profile updated." msgstr "O perfil foi atualizado." -#: mod/profiles.php:557 +#: mod/profiles.php:564 msgid " and " msgstr " e " -#: mod/profiles.php:565 +#: mod/profiles.php:573 msgid "public profile" msgstr "perfil público" -#: mod/profiles.php:568 +#: mod/profiles.php:576 #, php-format msgid "%1$s changed %2$s to “%3$s”" msgstr "%1$s mudou %2$s para “%3$s”" -#: mod/profiles.php:569 +#: mod/profiles.php:577 #, php-format msgid " - Visit %1$s's %2$s" msgstr " - Visite %2$s de %1$s" -#: mod/profiles.php:572 +#: mod/profiles.php:579 #, php-format msgid "%1$s has an updated %2$s, changing %3$s." msgstr "%1$s foi atualizado %2$s, mudando %3$s." -#: mod/profiles.php:638 +#: mod/profiles.php:637 msgid "Hide contacts and friends:" msgstr "Esconder contatos e amigos:" -#: mod/profiles.php:643 +#: mod/profiles.php:642 msgid "Hide your contact/friend list from viewers of this profile?" msgstr "Ocultar sua lista de contatos/amigos dos visitantes no seu perfil?" @@ -7042,62 +5888,72 @@ msgid "Tell us about yourself..." msgstr "Fale um pouco sobre você..." #: mod/profiles.php:728 +msgid "XMPP (Jabber) address:" +msgstr "" + +#: mod/profiles.php:728 +msgid "" +"The XMPP address will be propagated to your contacts so that they can follow" +" you." +msgstr "" + +#: mod/profiles.php:729 msgid "Homepage URL:" msgstr "Endereço do site web:" -#: mod/profiles.php:731 +#: mod/profiles.php:732 msgid "Religious Views:" msgstr "Orientação religiosa:" -#: mod/profiles.php:732 +#: mod/profiles.php:733 msgid "Public Keywords:" msgstr "Palavras-chave públicas:" -#: mod/profiles.php:732 +#: mod/profiles.php:733 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Usado para sugerir amigos em potencial, pode ser visto pelos outros)" -#: mod/profiles.php:733 +#: mod/profiles.php:734 msgid "Private Keywords:" msgstr "Palavras-chave privadas:" -#: mod/profiles.php:733 +#: mod/profiles.php:734 msgid "(Used for searching profiles, never shown to others)" msgstr "(Usado na pesquisa de perfis, nunca é exibido para os outros)" -#: mod/profiles.php:736 +#: mod/profiles.php:737 msgid "Musical interests" msgstr "Preferências musicais" -#: mod/profiles.php:737 +#: mod/profiles.php:738 msgid "Books, literature" msgstr "Livros, literatura" -#: mod/profiles.php:738 +#: mod/profiles.php:739 msgid "Television" msgstr "Televisão" -#: mod/profiles.php:739 +#: mod/profiles.php:740 msgid "Film/dance/culture/entertainment" msgstr "Filme/dança/cultura/entretenimento" -#: mod/profiles.php:740 +#: mod/profiles.php:741 msgid "Hobbies/Interests" msgstr "Passatempos/Interesses" -#: mod/profiles.php:741 +#: mod/profiles.php:742 msgid "Love/romance" msgstr "Amor/romance" -#: mod/profiles.php:742 +#: mod/profiles.php:743 msgid "Work/employment" msgstr "Trabalho/emprego" -#: mod/profiles.php:743 +#: mod/profiles.php:744 msgid "School/education" msgstr "Escola/educação" -#: mod/profiles.php:744 +#: mod/profiles.php:745 msgid "Contact information and Social Networks" msgstr "Informações de contato e redes sociais" @@ -7105,1160 +5961,1294 @@ msgstr "Informações de contato e redes sociais" msgid "Edit/Manage Profiles" msgstr "Editar/Gerenciar perfis" -#: mod/register.php:92 +#: mod/register.php:93 msgid "" "Registration successful. Please check your email for further instructions." msgstr "O registro foi bem sucedido. Por favor, verifique seu e-mail para maiores informações." -#: mod/register.php:97 +#: mod/register.php:98 #, php-format msgid "" "Failed to send email message. Here your accout details:
login: %s
" "password: %s

You can change your password after login." msgstr "Falha ao enviar mensagem de email. Estes são os dados da sua conta:
login: %s
senha: %s

Você pode alterar sua senha após fazer o login." -#: mod/register.php:104 +#: mod/register.php:105 msgid "Registration successful." msgstr "" -#: mod/register.php:110 +#: mod/register.php:111 msgid "Your registration can not be processed." msgstr "Não foi possível processar o seu registro." -#: mod/register.php:153 +#: mod/register.php:160 msgid "Your registration is pending approval by the site owner." msgstr "A aprovação do seu registro está pendente junto ao administrador do site." -#: mod/register.php:219 +#: mod/register.php:226 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " "and clicking 'Register'." msgstr "Você pode (opcionalmente) preencher este formulário via OpenID, fornecendo seu OpenID e clicando em 'Registrar'." -#: mod/register.php:220 +#: mod/register.php:227 msgid "" "If you are not familiar with OpenID, please leave that field blank and fill " "in the rest of the items." msgstr "Se você não está familiarizado com o OpenID, por favor, deixe esse campo em branco e preencha os outros itens." -#: mod/register.php:221 +#: mod/register.php:228 msgid "Your OpenID (optional): " msgstr "Seu OpenID (opcional): " -#: mod/register.php:235 +#: mod/register.php:242 msgid "Include your profile in member directory?" msgstr "Incluir o seu perfil no diretório de membros?" -#: mod/register.php:259 +#: mod/register.php:267 +msgid "Note for the admin" +msgstr "" + +#: mod/register.php:267 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "" + +#: mod/register.php:268 msgid "Membership on this site is by invitation only." msgstr "A associação a este site só pode ser feita mediante convite." -#: mod/register.php:260 +#: mod/register.php:269 msgid "Your invitation ID: " msgstr "A ID do seu convite: " -#: mod/register.php:271 +#: mod/register.php:272 mod/admin.php:1056 +msgid "Registration" +msgstr "Registro" + +#: mod/register.php:280 msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " msgstr "" -#: mod/register.php:272 +#: mod/register.php:281 msgid "Your Email Address: " msgstr "Seu endereço de e-mail: " -#: mod/register.php:274 mod/settings.php:1221 +#: mod/register.php:283 mod/settings.php:1278 msgid "New Password:" msgstr "Nova senha:" -#: mod/register.php:274 +#: mod/register.php:283 msgid "Leave empty for an auto generated password." msgstr "" -#: mod/register.php:275 mod/settings.php:1222 +#: mod/register.php:284 mod/settings.php:1279 msgid "Confirm:" msgstr "Confirme:" -#: mod/register.php:276 +#: mod/register.php:285 msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be " "'nickname@$sitename'." msgstr "Selecione uma identificação para o perfil. Ela deve começar com um caractere alfabético. O endereço do seu perfil neste site será 'identificação@$sitename'" -#: mod/register.php:277 +#: mod/register.php:286 msgid "Choose a nickname: " msgstr "Escolha uma identificação: " -#: mod/register.php:287 +#: mod/register.php:296 msgid "Import your profile to this friendica instance" msgstr "Importa seu perfil desta instância do friendica" -#: mod/regmod.php:55 -msgid "Account approved." -msgstr "A conta foi aprovada." +#: mod/search.php:100 +msgid "Only logged in users are permitted to perform a search." +msgstr "" -#: mod/regmod.php:92 +#: mod/search.php:124 +msgid "Too Many Requests" +msgstr "" + +#: mod/search.php:125 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "" + +#: mod/search.php:225 #, php-format -msgid "Registration revoked for %s" -msgstr "O registro de %s foi revogado" +msgid "Items tagged with: %s" +msgstr "" -#: mod/regmod.php:104 -msgid "Please login." -msgstr "Por favor, autentique-se." +#: mod/settings.php:43 mod/admin.php:1490 +msgid "Account" +msgstr "Conta" -#: mod/settings.php:36 mod/photos.php:118 -msgid "everybody" -msgstr "todos" +#: mod/settings.php:52 mod/admin.php:169 +msgid "Additional features" +msgstr "Funcionalidades adicionais" #: mod/settings.php:60 msgid "Display" msgstr "Tela" -#: mod/settings.php:67 mod/settings.php:871 +#: mod/settings.php:67 mod/settings.php:890 msgid "Social Networks" msgstr "Redes Sociais" +#: mod/settings.php:74 mod/admin.php:167 mod/admin.php:1616 mod/admin.php:1679 +msgid "Plugins" +msgstr "Plugins" + #: mod/settings.php:88 msgid "Connected apps" msgstr "Aplicações conectadas" +#: mod/settings.php:95 mod/uexport.php:45 +msgid "Export personal data" +msgstr "Exportar dados pessoais" + #: mod/settings.php:102 msgid "Remove account" msgstr "Remover a conta" -#: mod/settings.php:155 +#: mod/settings.php:157 msgid "Missing some important data!" msgstr "Está faltando algum dado importante!" -#: mod/settings.php:269 +#: mod/settings.php:271 msgid "Failed to connect with email account using the settings provided." msgstr "Não foi possível conectar à conta de e-mail com as configurações fornecidas." -#: mod/settings.php:274 +#: mod/settings.php:276 msgid "Email settings updated." msgstr "As configurações de e-mail foram atualizadas." -#: mod/settings.php:289 +#: mod/settings.php:291 msgid "Features updated" msgstr "Funcionalidades atualizadas" -#: mod/settings.php:356 +#: mod/settings.php:361 msgid "Relocate message has been send to your contacts" msgstr "A mensagem de relocação foi enviada para seus contatos" -#: mod/settings.php:375 +#: mod/settings.php:380 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Não é permitido uma senha em branco. A senha não foi modificada." -#: mod/settings.php:383 +#: mod/settings.php:388 msgid "Wrong password." msgstr "Senha errada." -#: mod/settings.php:394 +#: mod/settings.php:399 msgid "Password changed." msgstr "A senha foi modificada." -#: mod/settings.php:396 +#: mod/settings.php:401 msgid "Password update failed. Please try again." msgstr "Não foi possível atualizar a senha. Por favor, tente novamente." -#: mod/settings.php:465 +#: mod/settings.php:481 msgid " Please use a shorter name." msgstr " Por favor, use um nome mais curto." -#: mod/settings.php:467 +#: mod/settings.php:483 msgid " Name too short." msgstr " O nome é muito curto." -#: mod/settings.php:476 +#: mod/settings.php:492 msgid "Wrong Password" msgstr "Senha Errada" -#: mod/settings.php:481 +#: mod/settings.php:497 msgid " Not valid email." msgstr " Não é um e-mail válido." -#: mod/settings.php:487 +#: mod/settings.php:503 msgid " Cannot change to that email." msgstr " Não foi possível alterar para esse e-mail." -#: mod/settings.php:543 +#: mod/settings.php:559 msgid "Private forum has no privacy permissions. Using default privacy group." msgstr "O fórum privado não possui permissões de privacidade. Utilizando o grupo de privacidade padrão." -#: mod/settings.php:547 +#: mod/settings.php:563 msgid "Private forum has no privacy permissions and no default privacy group." msgstr "O fórum privado não possui permissões de privacidade e nenhum grupo de privacidade padrão." -#: mod/settings.php:586 +#: mod/settings.php:603 msgid "Settings updated." msgstr "As configurações foram atualizadas." -#: mod/settings.php:662 mod/settings.php:688 mod/settings.php:724 +#: mod/settings.php:680 mod/settings.php:706 mod/settings.php:742 msgid "Add application" msgstr "Adicionar aplicação" -#: mod/settings.php:666 mod/settings.php:692 +#: mod/settings.php:681 mod/settings.php:792 mod/settings.php:841 +#: mod/settings.php:908 mod/settings.php:1005 mod/settings.php:1271 +#: mod/admin.php:1055 mod/admin.php:1680 mod/admin.php:1943 mod/admin.php:2017 +#: mod/admin.php:2170 +msgid "Save Settings" +msgstr "Salvar configurações" + +#: mod/settings.php:684 mod/settings.php:710 msgid "Consumer Key" msgstr "Chave do consumidor" -#: mod/settings.php:667 mod/settings.php:693 +#: mod/settings.php:685 mod/settings.php:711 msgid "Consumer Secret" msgstr "Segredo do consumidor" -#: mod/settings.php:668 mod/settings.php:694 +#: mod/settings.php:686 mod/settings.php:712 msgid "Redirect" msgstr "Redirecionar" -#: mod/settings.php:669 mod/settings.php:695 +#: mod/settings.php:687 mod/settings.php:713 msgid "Icon url" msgstr "URL do ícone" -#: mod/settings.php:680 +#: mod/settings.php:698 msgid "You can't edit this application." msgstr "Você não pode editar esta aplicação." -#: mod/settings.php:723 +#: mod/settings.php:741 msgid "Connected Apps" msgstr "Aplicações conectadas" -#: mod/settings.php:727 +#: mod/settings.php:745 msgid "Client key starts with" msgstr "A chave do cliente inicia com" -#: mod/settings.php:728 +#: mod/settings.php:746 msgid "No name" msgstr "Sem nome" -#: mod/settings.php:729 +#: mod/settings.php:747 msgid "Remove authorization" msgstr "Remover autorização" -#: mod/settings.php:741 +#: mod/settings.php:759 msgid "No Plugin settings configured" msgstr "Não foi definida nenhuma configuração de plugin" -#: mod/settings.php:749 +#: mod/settings.php:768 msgid "Plugin Settings" msgstr "Configurações do plugin" -#: mod/settings.php:771 +#: mod/settings.php:782 mod/admin.php:2159 mod/admin.php:2160 +msgid "Off" +msgstr "Off" + +#: mod/settings.php:782 mod/admin.php:2159 mod/admin.php:2160 +msgid "On" +msgstr "On" + +#: mod/settings.php:790 msgid "Additional Features" msgstr "Funcionalidades Adicionais" -#: mod/settings.php:781 mod/settings.php:785 +#: mod/settings.php:800 mod/settings.php:804 msgid "General Social Media Settings" msgstr "" -#: mod/settings.php:791 +#: mod/settings.php:810 msgid "Disable intelligent shortening" msgstr "" -#: mod/settings.php:793 +#: mod/settings.php:812 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If this option is enabled then every shortened post will always point to the" " original friendica post." msgstr "" -#: mod/settings.php:799 +#: mod/settings.php:818 msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" msgstr "" -#: mod/settings.php:801 +#: mod/settings.php:820 msgid "" "If you receive a message from an unknown OStatus user, this option decides " "what to do. If it is checked, a new contact will be created for every " "unknown user." msgstr "" -#: mod/settings.php:807 +#: mod/settings.php:826 msgid "Default group for OStatus contacts" msgstr "" -#: mod/settings.php:813 +#: mod/settings.php:834 msgid "Your legacy GNU Social account" msgstr "" -#: mod/settings.php:815 +#: mod/settings.php:836 msgid "" "If you enter your old GNU Social/Statusnet account name here (in the format " "user@domain.tld), your contacts will be added automatically. The field will " "be emptied when done." msgstr "" -#: mod/settings.php:818 +#: mod/settings.php:839 msgid "Repair OStatus subscriptions" msgstr "" -#: mod/settings.php:827 mod/settings.php:828 +#: mod/settings.php:848 mod/settings.php:849 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "O suporte interno para conectividade de %s está %s" -#: mod/settings.php:827 mod/settings.php:828 +#: mod/settings.php:848 mod/settings.php:849 msgid "enabled" msgstr "habilitado" -#: mod/settings.php:827 mod/settings.php:828 +#: mod/settings.php:848 mod/settings.php:849 msgid "disabled" msgstr "desabilitado" -#: mod/settings.php:828 +#: mod/settings.php:849 msgid "GNU Social (OStatus)" msgstr "" -#: mod/settings.php:864 +#: mod/settings.php:883 msgid "Email access is disabled on this site." msgstr "O acesso ao e-mail está desabilitado neste site." -#: mod/settings.php:876 +#: mod/settings.php:895 msgid "Email/Mailbox Setup" msgstr "Configurações do e-mail/caixa postal" -#: mod/settings.php:877 +#: mod/settings.php:896 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Caso você deseje se comunicar com contatos de e-mail usando este serviço (opcional), por favor especifique como se conectar à sua caixa postal." -#: mod/settings.php:878 +#: mod/settings.php:897 msgid "Last successful email check:" msgstr "Última checagem bem sucedida de e-mail:" -#: mod/settings.php:880 +#: mod/settings.php:899 msgid "IMAP server name:" msgstr "Nome do servidor IMAP:" -#: mod/settings.php:881 +#: mod/settings.php:900 msgid "IMAP port:" msgstr "Porta do IMAP:" -#: mod/settings.php:882 +#: mod/settings.php:901 msgid "Security:" msgstr "Segurança:" -#: mod/settings.php:882 mod/settings.php:887 +#: mod/settings.php:901 mod/settings.php:906 msgid "None" msgstr "Nenhuma" -#: mod/settings.php:883 +#: mod/settings.php:902 msgid "Email login name:" msgstr "Nome de usuário do e-mail:" -#: mod/settings.php:884 +#: mod/settings.php:903 msgid "Email password:" msgstr "Senha do e-mail:" -#: mod/settings.php:885 +#: mod/settings.php:904 msgid "Reply-to address:" msgstr "Endereço de resposta (Reply-to):" -#: mod/settings.php:886 +#: mod/settings.php:905 msgid "Send public posts to all email contacts:" msgstr "Enviar publicações públicas para todos os contatos de e-mail:" -#: mod/settings.php:887 +#: mod/settings.php:906 msgid "Action after import:" msgstr "Ação após a importação:" -#: mod/settings.php:887 +#: mod/settings.php:906 msgid "Move to folder" msgstr "Mover para pasta" -#: mod/settings.php:888 +#: mod/settings.php:907 msgid "Move to folder:" msgstr "Mover para pasta:" -#: mod/settings.php:974 +#: mod/settings.php:943 mod/admin.php:942 +msgid "No special theme for mobile devices" +msgstr "Nenhum tema especial para dispositivos móveis" + +#: mod/settings.php:1003 msgid "Display Settings" msgstr "Configurações de exibição" -#: mod/settings.php:980 mod/settings.php:1001 +#: mod/settings.php:1009 mod/settings.php:1032 msgid "Display Theme:" msgstr "Tema do perfil:" -#: mod/settings.php:981 +#: mod/settings.php:1010 msgid "Mobile Theme:" msgstr "Tema para dispositivos móveis:" -#: mod/settings.php:982 +#: mod/settings.php:1011 +msgid "Suppress warning of insecure networks" +msgstr "" + +#: mod/settings.php:1011 +msgid "" +"Should the system suppress the warning that the current group contains " +"members of networks that can't receive non public postings." +msgstr "" + +#: mod/settings.php:1012 msgid "Update browser every xx seconds" msgstr "Atualizar o navegador a cada xx segundos" -#: mod/settings.php:982 +#: mod/settings.php:1012 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "" -#: mod/settings.php:983 +#: mod/settings.php:1013 msgid "Number of items to display per page:" msgstr "Número de itens a serem exibidos por página:" -#: mod/settings.php:983 mod/settings.php:984 +#: mod/settings.php:1013 mod/settings.php:1014 msgid "Maximum of 100 items" msgstr "Máximo de 100 itens" -#: mod/settings.php:984 +#: mod/settings.php:1014 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Número de itens a serem exibidos por página quando visualizando em um dispositivo móvel:" -#: mod/settings.php:985 +#: mod/settings.php:1015 msgid "Don't show emoticons" msgstr "Não exibir emoticons" -#: mod/settings.php:986 +#: mod/settings.php:1016 msgid "Calendar" msgstr "Agenda" -#: mod/settings.php:987 +#: mod/settings.php:1017 msgid "Beginning of week:" msgstr "" -#: mod/settings.php:988 +#: mod/settings.php:1018 msgid "Don't show notices" msgstr "Não mostra avisos" -#: mod/settings.php:989 +#: mod/settings.php:1019 msgid "Infinite scroll" msgstr "rolamento infinito" -#: mod/settings.php:990 +#: mod/settings.php:1020 msgid "Automatic updates only at the top of the network page" msgstr "Atualizações automáticas só na parte superior da página da rede" -#: mod/settings.php:992 +#: mod/settings.php:1021 +msgid "Bandwith Saver Mode" +msgstr "" + +#: mod/settings.php:1021 +msgid "" +"When enabled, embedded content is not displayed on automatic updates, they " +"only show on page reload." +msgstr "" + +#: mod/settings.php:1023 msgid "General Theme Settings" msgstr "" -#: mod/settings.php:993 +#: mod/settings.php:1024 msgid "Custom Theme Settings" msgstr "" -#: mod/settings.php:994 +#: mod/settings.php:1025 msgid "Content Settings" msgstr "" -#: mod/settings.php:995 view/theme/frio/config.php:61 -#: view/theme/cleanzero/config.php:82 view/theme/quattro/config.php:66 -#: view/theme/dispy/config.php:72 view/theme/vier/config.php:109 -#: view/theme/diabook/config.php:150 view/theme/duepuntozero/config.php:61 +#: mod/settings.php:1026 view/theme/duepuntozero/config.php:63 +#: view/theme/frio/config.php:66 view/theme/quattro/config.php:69 +#: view/theme/vier/config.php:114 msgid "Theme settings" msgstr "Configurações do tema" -#: mod/settings.php:1072 -msgid "User Types" -msgstr "Tipos de Usuários" +#: mod/settings.php:1110 +msgid "Account Types" +msgstr "" -#: mod/settings.php:1073 -msgid "Community Types" -msgstr "Tipos de Comunidades" +#: mod/settings.php:1111 +msgid "Personal Page Subtypes" +msgstr "" -#: mod/settings.php:1074 +#: mod/settings.php:1112 +msgid "Community Forum Subtypes" +msgstr "" + +#: mod/settings.php:1119 +msgid "Personal Page" +msgstr "" + +#: mod/settings.php:1120 +msgid "This account is a regular personal profile" +msgstr "" + +#: mod/settings.php:1123 +msgid "Organisation Page" +msgstr "" + +#: mod/settings.php:1124 +msgid "This account is a profile for an organisation" +msgstr "" + +#: mod/settings.php:1127 +msgid "News Page" +msgstr "" + +#: mod/settings.php:1128 +msgid "This account is a news account/reflector" +msgstr "" + +#: mod/settings.php:1131 +msgid "Community Forum" +msgstr "" + +#: mod/settings.php:1132 +msgid "" +"This account is a community forum where people can discuss with each other" +msgstr "" + +#: mod/settings.php:1135 msgid "Normal Account Page" msgstr "Página de conta normal" -#: mod/settings.php:1075 +#: mod/settings.php:1136 msgid "This account is a normal personal profile" msgstr "Essa conta é um perfil pessoal normal" -#: mod/settings.php:1078 +#: mod/settings.php:1139 msgid "Soapbox Page" msgstr "Página de vitrine" -#: mod/settings.php:1079 +#: mod/settings.php:1140 msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "Aprova automaticamente todas as solicitações de conexão/amizade como fãs com permissão somente de leitura" -#: mod/settings.php:1082 -msgid "Community Forum/Celebrity Account" -msgstr "Conta de fórum de comunidade/celebridade" +#: mod/settings.php:1143 +msgid "Public Forum" +msgstr "" -#: mod/settings.php:1083 -msgid "" -"Automatically approve all connection/friend requests as read-write fans" -msgstr "Aprova automaticamente todas as solicitações de conexão/amizade como fãs com permissão de leitura e escrita" +#: mod/settings.php:1144 +msgid "Automatically approve all contact requests" +msgstr "" -#: mod/settings.php:1086 +#: mod/settings.php:1147 msgid "Automatic Friend Page" msgstr "Página de amigo automático" -#: mod/settings.php:1087 +#: mod/settings.php:1148 msgid "Automatically approve all connection/friend requests as friends" msgstr "Aprovar automaticamente todas as solicitações de conexão/amizade como amigos" -#: mod/settings.php:1090 +#: mod/settings.php:1151 msgid "Private Forum [Experimental]" msgstr "Fórum privado [Experimental]" -#: mod/settings.php:1091 +#: mod/settings.php:1152 msgid "Private forum - approved members only" msgstr "Fórum privado - somente membros aprovados" -#: mod/settings.php:1103 +#: mod/settings.php:1163 msgid "OpenID:" msgstr "OpenID:" -#: mod/settings.php:1103 +#: mod/settings.php:1163 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Opcional) Permitir o uso deste OpenID para entrar nesta conta" -#: mod/settings.php:1113 +#: mod/settings.php:1171 msgid "Publish your default profile in your local site directory?" msgstr "Publicar o seu perfil padrão no diretório local do seu site?" -#: mod/settings.php:1119 +#: mod/settings.php:1171 +msgid "Your profile may be visible in public." +msgstr "" + +#: mod/settings.php:1177 msgid "Publish your default profile in the global social directory?" msgstr "Publicar o seu perfil padrão no diretório social global?" -#: mod/settings.php:1127 +#: mod/settings.php:1184 msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "Ocultar visualização da sua lista de contatos/amigos no seu perfil padrão? " -#: mod/settings.php:1131 +#: mod/settings.php:1188 msgid "" "If enabled, posting public messages to Diaspora and other networks isn't " "possible." msgstr "Se ativado, postar mensagens públicas no Diáspora e em outras redes não será possível." -#: mod/settings.php:1136 +#: mod/settings.php:1193 msgid "Allow friends to post to your profile page?" msgstr "Permitir aos amigos publicarem na sua página de perfil?" -#: mod/settings.php:1142 +#: mod/settings.php:1198 msgid "Allow friends to tag your posts?" msgstr "Permitir aos amigos etiquetarem suas publicações?" -#: mod/settings.php:1148 +#: mod/settings.php:1203 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Permitir que você seja sugerido como amigo em potencial para novos membros?" -#: mod/settings.php:1154 +#: mod/settings.php:1208 msgid "Permit unknown people to send you private mail?" msgstr "Permitir que pessoas desconhecidas lhe enviem mensagens privadas?" -#: mod/settings.php:1162 +#: mod/settings.php:1216 msgid "Profile is not published." msgstr "O perfil não está publicado." -#: mod/settings.php:1170 +#: mod/settings.php:1224 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "" -#: mod/settings.php:1177 +#: mod/settings.php:1231 msgid "Automatically expire posts after this many days:" msgstr "Expirar automaticamente publicações após tantos dias:" -#: mod/settings.php:1177 +#: mod/settings.php:1231 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Se deixado em branco, as publicações não irão expirar. Publicações expiradas serão excluídas." -#: mod/settings.php:1178 +#: mod/settings.php:1232 msgid "Advanced expiration settings" msgstr "Configurações avançadas de expiração" -#: mod/settings.php:1179 +#: mod/settings.php:1233 msgid "Advanced Expiration" msgstr "Expiração avançada" -#: mod/settings.php:1180 +#: mod/settings.php:1234 msgid "Expire posts:" msgstr "Expirar publicações:" -#: mod/settings.php:1181 +#: mod/settings.php:1235 msgid "Expire personal notes:" msgstr "Expirar notas pessoais:" -#: mod/settings.php:1182 +#: mod/settings.php:1236 msgid "Expire starred posts:" msgstr "Expirar publicações destacadas:" -#: mod/settings.php:1183 +#: mod/settings.php:1237 msgid "Expire photos:" msgstr "Expirar fotos:" -#: mod/settings.php:1184 +#: mod/settings.php:1238 msgid "Only expire posts by others:" msgstr "Expirar somente as publicações de outras pessoas:" -#: mod/settings.php:1212 +#: mod/settings.php:1269 msgid "Account Settings" msgstr "Configurações da conta" -#: mod/settings.php:1220 +#: mod/settings.php:1277 msgid "Password Settings" msgstr "Configurações da senha" -#: mod/settings.php:1222 +#: mod/settings.php:1279 msgid "Leave password fields blank unless changing" msgstr "Deixe os campos de senha em branco, a não ser que você queira alterá-la" -#: mod/settings.php:1223 +#: mod/settings.php:1280 msgid "Current Password:" msgstr "Senha Atual:" -#: mod/settings.php:1223 mod/settings.php:1224 +#: mod/settings.php:1280 mod/settings.php:1281 msgid "Your current password to confirm the changes" msgstr "Sua senha atual para confirmar as mudanças" -#: mod/settings.php:1224 +#: mod/settings.php:1281 msgid "Password:" msgstr "Senha:" -#: mod/settings.php:1228 +#: mod/settings.php:1285 msgid "Basic Settings" msgstr "Configurações básicas" -#: mod/settings.php:1230 +#: mod/settings.php:1287 msgid "Email Address:" msgstr "Endereço de e-mail:" -#: mod/settings.php:1231 +#: mod/settings.php:1288 msgid "Your Timezone:" msgstr "Seu fuso horário:" -#: mod/settings.php:1232 +#: mod/settings.php:1289 msgid "Your Language:" msgstr "Seu idioma:" -#: mod/settings.php:1232 +#: mod/settings.php:1289 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "" -#: mod/settings.php:1233 +#: mod/settings.php:1290 msgid "Default Post Location:" msgstr "Localização padrão de suas publicações:" -#: mod/settings.php:1234 +#: mod/settings.php:1291 msgid "Use Browser Location:" msgstr "Usar localizador do navegador:" -#: mod/settings.php:1237 +#: mod/settings.php:1294 msgid "Security and Privacy Settings" msgstr "Configurações de segurança e privacidade" -#: mod/settings.php:1239 +#: mod/settings.php:1296 msgid "Maximum Friend Requests/Day:" msgstr "Número máximo de requisições de amizade por dia:" -#: mod/settings.php:1239 mod/settings.php:1269 +#: mod/settings.php:1296 mod/settings.php:1326 msgid "(to prevent spam abuse)" msgstr "(para prevenir abuso de spammers)" -#: mod/settings.php:1240 +#: mod/settings.php:1297 msgid "Default Post Permissions" msgstr "Permissões padrão de publicação" -#: mod/settings.php:1241 +#: mod/settings.php:1298 msgid "(click to open/close)" msgstr "(clique para abrir/fechar)" -#: mod/settings.php:1250 mod/photos.php:1187 mod/photos.php:1571 -msgid "Show to Groups" -msgstr "Mostre para Grupos" - -#: mod/settings.php:1251 mod/photos.php:1188 mod/photos.php:1572 -msgid "Show to Contacts" -msgstr "Mostre para Contatos" - -#: mod/settings.php:1252 +#: mod/settings.php:1309 msgid "Default Private Post" msgstr "Publicação Privada Padrão" -#: mod/settings.php:1253 +#: mod/settings.php:1310 msgid "Default Public Post" msgstr "Publicação Pública Padrão" -#: mod/settings.php:1257 +#: mod/settings.php:1314 msgid "Default Permissions for New Posts" msgstr "Permissões Padrão para Publicações Novas" -#: mod/settings.php:1269 +#: mod/settings.php:1326 msgid "Maximum private messages per day from unknown people:" msgstr "Número máximo de mensagens privadas de pessoas desconhecidas, por dia:" -#: mod/settings.php:1272 +#: mod/settings.php:1329 msgid "Notification Settings" msgstr "Configurações de notificação" -#: mod/settings.php:1273 +#: mod/settings.php:1330 msgid "By default post a status message when:" msgstr "Por padrão, publicar uma mensagem de status quando:" -#: mod/settings.php:1274 +#: mod/settings.php:1331 msgid "accepting a friend request" msgstr "aceitar uma requisição de amizade" -#: mod/settings.php:1275 +#: mod/settings.php:1332 msgid "joining a forum/community" msgstr "associar-se a um fórum/comunidade" -#: mod/settings.php:1276 +#: mod/settings.php:1333 msgid "making an interesting profile change" msgstr "fazer uma modificação interessante em seu perfil" -#: mod/settings.php:1277 +#: mod/settings.php:1334 msgid "Send a notification email when:" msgstr "Enviar um e-mail de notificação sempre que:" -#: mod/settings.php:1278 +#: mod/settings.php:1335 msgid "You receive an introduction" msgstr "Você recebeu uma apresentação" -#: mod/settings.php:1279 +#: mod/settings.php:1336 msgid "Your introductions are confirmed" msgstr "Suas apresentações forem confirmadas" -#: mod/settings.php:1280 +#: mod/settings.php:1337 msgid "Someone writes on your profile wall" msgstr "Alguém escrever no mural do seu perfil" -#: mod/settings.php:1281 +#: mod/settings.php:1338 msgid "Someone writes a followup comment" msgstr "Alguém comentar a sua mensagem" -#: mod/settings.php:1282 +#: mod/settings.php:1339 msgid "You receive a private message" msgstr "Você recebeu uma mensagem privada" -#: mod/settings.php:1283 +#: mod/settings.php:1340 msgid "You receive a friend suggestion" msgstr "Você recebe uma suggestão de amigo" -#: mod/settings.php:1284 +#: mod/settings.php:1341 msgid "You are tagged in a post" msgstr "Você foi etiquetado em uma publicação" -#: mod/settings.php:1285 +#: mod/settings.php:1342 msgid "You are poked/prodded/etc. in a post" msgstr "Você está cutucado/incitado/etc. em uma publicação" -#: mod/settings.php:1287 +#: mod/settings.php:1344 msgid "Activate desktop notifications" msgstr "" -#: mod/settings.php:1287 +#: mod/settings.php:1344 msgid "Show desktop popup on new notifications" msgstr "" -#: mod/settings.php:1289 +#: mod/settings.php:1346 msgid "Text-only notification emails" msgstr "Emails de notificação apenas de texto" -#: mod/settings.php:1291 +#: mod/settings.php:1348 msgid "Send text only notification emails, without the html part" msgstr "Enviar e-mails de notificação apenas de texto, sem a parte html" -#: mod/settings.php:1293 +#: mod/settings.php:1350 msgid "Advanced Account/Page Type Settings" msgstr "Conta avançada/Configurações do tipo de página" -#: mod/settings.php:1294 +#: mod/settings.php:1351 msgid "Change the behaviour of this account for special situations" msgstr "Modificar o comportamento desta conta em situações especiais" -#: mod/settings.php:1297 +#: mod/settings.php:1354 msgid "Relocate" msgstr "Relocação" -#: mod/settings.php:1298 +#: mod/settings.php:1355 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Se você moveu esse perfil de outro servidor e algum dos seus contatos não recebe atualizações, pressione esse botão." -#: mod/settings.php:1299 +#: mod/settings.php:1356 msgid "Resend relocate message to contacts" msgstr "Reenviar mensagem de relocação para os contatos" -#: mod/videos.php:123 +#: mod/uexport.php:37 +msgid "Export account" +msgstr "Exportar conta" + +#: mod/uexport.php:37 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "Exporta suas informações de conta e contatos. Use para fazer uma cópia de segurança de sua conta e/ou para movê-la para outro servidor." + +#: mod/uexport.php:38 +msgid "Export all" +msgstr "Exportar tudo" + +#: mod/uexport.php:38 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "Exportar as informações de sua conta, contatos e todos os seus items como JSON. Pode ser um arquivo muito grande, e pode levar bastante tempo. Use isto para fazer uma cópia de segurança completa da sua conta (fotos não são exportadas)" + +#: mod/videos.php:124 msgid "Do you really want to delete this video?" msgstr "" -#: mod/videos.php:128 +#: mod/videos.php:129 msgid "Delete Video" msgstr "" -#: mod/videos.php:207 +#: mod/videos.php:208 msgid "No videos selected" msgstr "Nenhum vídeo selecionado" -#: mod/videos.php:308 mod/photos.php:1075 -msgid "Access to this item is restricted." -msgstr "O acesso a este item é restrito." - -#: mod/videos.php:390 mod/photos.php:1877 -msgid "View Album" -msgstr "Ver álbum" - -#: mod/videos.php:399 +#: mod/videos.php:402 msgid "Recent Videos" msgstr "Vídeos Recentes" -#: mod/videos.php:401 +#: mod/videos.php:404 msgid "Upload New Videos" msgstr "Envie Novos Vídeos" -#: mod/install.php:139 +#: mod/install.php:106 msgid "Friendica Communications Server - Setup" msgstr "Servidor de Comunicações Friendica - Configuração" -#: mod/install.php:145 +#: mod/install.php:112 msgid "Could not connect to database." msgstr "Não foi possível conectar ao banco de dados." -#: mod/install.php:149 +#: mod/install.php:116 msgid "Could not create table." msgstr "Não foi possível criar tabela." -#: mod/install.php:155 +#: mod/install.php:122 msgid "Your Friendica site database has been installed." msgstr "O banco de dados do seu site Friendica foi instalado." -#: mod/install.php:160 +#: mod/install.php:127 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "Você provavelmente precisará importar o arquivo \"database.sql\" manualmente, usando o phpmyadmin ou o mysql." -#: mod/install.php:161 mod/install.php:230 mod/install.php:602 +#: mod/install.php:128 mod/install.php:200 mod/install.php:547 msgid "Please see the file \"INSTALL.txt\"." msgstr "Por favor, dê uma olhada no arquivo \"INSTALL.TXT\"." -#: mod/install.php:173 +#: mod/install.php:140 msgid "Database already in use." msgstr "" -#: mod/install.php:227 +#: mod/install.php:197 msgid "System check" msgstr "Checagem do sistema" -#: mod/install.php:232 +#: mod/install.php:202 msgid "Check again" msgstr "Checar novamente" -#: mod/install.php:251 +#: mod/install.php:221 msgid "Database connection" msgstr "Conexão de banco de dados" -#: mod/install.php:252 +#: mod/install.php:222 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "À fim de instalar o Friendica, você precisa saber como se conectar ao seu banco de dados." -#: mod/install.php:253 +#: mod/install.php:223 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Por favor, entre em contato com a sua hospedagem ou com o administrador do site caso você tenha alguma dúvida em relação a essas configurações." -#: mod/install.php:254 +#: mod/install.php:224 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "O banco de dados que você especificou abaixo já deve existir. Caso contrário, por favor crie-o antes de continuar." -#: mod/install.php:258 +#: mod/install.php:228 msgid "Database Server Name" msgstr "Nome do servidor de banco de dados" -#: mod/install.php:259 +#: mod/install.php:229 msgid "Database Login Name" msgstr "Nome do usuário do banco de dados" -#: mod/install.php:260 +#: mod/install.php:230 msgid "Database Login Password" msgstr "Senha do usuário do banco de dados" -#: mod/install.php:261 +#: mod/install.php:230 +msgid "For security reasons the password must not be empty" +msgstr "" + +#: mod/install.php:231 msgid "Database Name" msgstr "Nome do banco de dados" -#: mod/install.php:262 mod/install.php:303 +#: mod/install.php:232 mod/install.php:273 msgid "Site administrator email address" msgstr "Endereço de email do administrador do site" -#: mod/install.php:262 mod/install.php:303 +#: mod/install.php:232 mod/install.php:273 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "O endereço de email da sua conta deve ser igual a este para que você possa utilizar o painel de administração web." -#: mod/install.php:266 mod/install.php:306 +#: mod/install.php:236 mod/install.php:276 msgid "Please select a default timezone for your website" msgstr "Por favor, selecione o fuso horário padrão para o seu site" -#: mod/install.php:293 +#: mod/install.php:263 msgid "Site settings" msgstr "Configurações do site" -#: mod/install.php:307 +#: mod/install.php:277 msgid "System Language:" msgstr "" -#: mod/install.php:307 +#: mod/install.php:277 msgid "" "Set the default language for your Friendica installation interface and to " "send emails." msgstr "" -#: mod/install.php:347 +#: mod/install.php:317 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "Não foi possível encontrar uma versão de linha de comando do PHP nos caminhos do seu servidor web." -#: mod/install.php:348 +#: mod/install.php:318 msgid "" "If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron. See 'Setup the poller'" msgstr "" -#: mod/install.php:352 +#: mod/install.php:322 msgid "PHP executable path" msgstr "Caminho para o executável do PhP" -#: mod/install.php:352 +#: mod/install.php:322 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "Digite o caminho completo do executável PHP. Você pode deixar isso em branco para continuar com a instalação." -#: mod/install.php:357 +#: mod/install.php:327 msgid "Command line PHP" msgstr "PHP em linha de comando" -#: mod/install.php:366 +#: mod/install.php:336 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "O executável do PHP não é o binário do php cli (could be cgi-fcgi version)" -#: mod/install.php:367 +#: mod/install.php:337 msgid "Found PHP version: " msgstr "Encontrado PHP versão:" -#: mod/install.php:369 +#: mod/install.php:339 msgid "PHP cli binary" msgstr "Binário cli do PHP" -#: mod/install.php:380 +#: mod/install.php:350 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "\"register_argc_argv\" não está habilitado na versão de linha de comando do PHP no seu sistema." -#: mod/install.php:381 +#: mod/install.php:351 msgid "This is required for message delivery to work." msgstr "Isto é necessário para o funcionamento do envio de mensagens." -#: mod/install.php:383 +#: mod/install.php:353 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: mod/install.php:404 +#: mod/install.php:376 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Erro: a função \"openssl_pkey_new\" no seu sistema não é capaz de gerar as chaves de criptografia" -#: mod/install.php:405 +#: mod/install.php:377 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Se estiver usando o Windows, por favor dê uma olhada em \"http://www.php.net/manual/en/openssl.installation.php\"." -#: mod/install.php:407 +#: mod/install.php:379 msgid "Generate encryption keys" msgstr "Gerar chaves de encriptação" -#: mod/install.php:414 +#: mod/install.php:386 msgid "libCurl PHP module" msgstr "Módulo PHP libCurl" -#: mod/install.php:415 +#: mod/install.php:387 msgid "GD graphics PHP module" msgstr "Módulo PHP GD graphics" -#: mod/install.php:416 +#: mod/install.php:388 msgid "OpenSSL PHP module" msgstr "Módulo PHP OpenSSL" -#: mod/install.php:417 -msgid "mysqli PHP module" -msgstr "Módulo PHP mysqli" +#: mod/install.php:389 +msgid "PDO or MySQLi PHP module" +msgstr "" -#: mod/install.php:418 +#: mod/install.php:390 msgid "mb_string PHP module" msgstr "Módulo PHP mb_string " -#: mod/install.php:419 -msgid "mcrypt PHP module" -msgstr "" - -#: mod/install.php:420 +#: mod/install.php:391 msgid "XML PHP module" msgstr "" -#: mod/install.php:421 +#: mod/install.php:392 msgid "iconv module" msgstr "" -#: mod/install.php:425 mod/install.php:427 +#: mod/install.php:396 mod/install.php:398 msgid "Apache mod_rewrite module" msgstr "Módulo mod_rewrite do Apache" -#: mod/install.php:425 +#: mod/install.php:396 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Erro: o módulo mod-rewrite do Apache é necessário, mas não está instalado." -#: mod/install.php:433 +#: mod/install.php:404 msgid "Error: libCURL PHP module required but not installed." msgstr "Erro: o módulo libCURL do PHP é necessário, mas não está instalado." -#: mod/install.php:437 +#: mod/install.php:408 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Erro: o módulo gráfico GD, com suporte a JPEG, do PHP é necessário, mas não está instalado." -#: mod/install.php:441 +#: mod/install.php:412 msgid "Error: openssl PHP module required but not installed." msgstr "Erro: o módulo openssl do PHP é necessário, mas não está instalado." -#: mod/install.php:445 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Erro: o módulo mysqli do PHP é necessário, mas não está instalado." +#: mod/install.php:416 +msgid "Error: PDO or MySQLi PHP module required but not installed." +msgstr "" -#: mod/install.php:449 +#: mod/install.php:420 +msgid "Error: The MySQL driver for PDO is not installed." +msgstr "" + +#: mod/install.php:424 msgid "Error: mb_string PHP module required but not installed." msgstr "Erro: o módulo mb_string PHP é necessário, mas não está instalado." -#: mod/install.php:453 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Erro: o módulo mcrypt do PHP é necessário, mas não está instalado." - -#: mod/install.php:457 +#: mod/install.php:428 msgid "Error: iconv PHP module required but not installed." msgstr "" -#: mod/install.php:466 -msgid "" -"If you are using php_cli, please make sure that mcrypt module is enabled in " -"its config file" -msgstr "" - -#: mod/install.php:469 -msgid "" -"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 " -"encryption layer." -msgstr "" - -#: mod/install.php:471 -msgid "mcrypt_create_iv() function" -msgstr "" - -#: mod/install.php:479 +#: mod/install.php:438 msgid "Error, XML PHP module required but not installed." msgstr "Erro: o módulo XML do PHP é necessário, mas não está instalado." -#: mod/install.php:494 +#: mod/install.php:450 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 "O instalador web precisa criar um arquivo chamado \".htconfig.php\" na pasta raiz da instalação e não está conseguindo." -#: mod/install.php:495 +#: mod/install.php:451 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 "Geralmente isso está relacionado às definições de permissão, uma vez que o servidor web pode não estar conseguindo escrever os arquivos nesta pasta." -#: mod/install.php:496 +#: mod/install.php:452 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 "Ao final desse procedimento, será fornecido um texto que deverá ser salvo em um arquivo de nome. htconfig.php, na pasta raiz da instalação do seu Friendica." -#: mod/install.php:497 +#: mod/install.php:453 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"INSTALL.txt\" for instructions." msgstr "Você também pode pular esse procedimento e executar uma instalação manual. Por favor, dê uma olhada no arquivo \"INSTALL.TXT\" para instruções." -#: mod/install.php:500 +#: mod/install.php:456 msgid ".htconfig.php is writable" msgstr ".htconfig.php tem permissão de escrita" -#: mod/install.php:510 +#: mod/install.php:466 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Friendica usa o engine de template Smarty3 para renderizar suas web views. Smarty3 compila templates para PHP para acelerar a renderização." -#: mod/install.php:511 +#: mod/install.php:467 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 "Para guardar os templates compilados, o servidor web necessita de permissão de escrita no diretório view/smarty3/ no diretório raíz do Friendica." -#: mod/install.php:512 +#: mod/install.php:468 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Favor se certificar que o usuário sob o qual o servidor web roda (ex: www-data) tenha permissão de escrita nesse diretório." -#: mod/install.php:513 +#: mod/install.php:469 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: como uma medida de segurança, você deve fornecer ao servidor web permissão de escrita em view/smarty3/ somente--não aos arquivos de template (.tpl) que ele contém." -#: mod/install.php:516 +#: mod/install.php:472 msgid "view/smarty3 is writable" msgstr "view/smarty3 tem escrita permitida" -#: mod/install.php:532 +#: mod/install.php:488 msgid "" "Url rewrite in .htaccess is not working. Check your server configuration." msgstr "A reescrita de URLs definida no .htaccess não está funcionando. Por favor, verifique as configurações do seu servidor." -#: mod/install.php:534 +#: mod/install.php:490 msgid "Url rewrite is working" msgstr "A reescrita de URLs está funcionando" -#: mod/install.php:551 +#: mod/install.php:509 +msgid "ImageMagick PHP extension is not installed" +msgstr "" + +#: mod/install.php:511 msgid "ImageMagick PHP extension is installed" msgstr "" -#: mod/install.php:553 +#: mod/install.php:513 msgid "ImageMagick supports GIF" msgstr "" -#: mod/install.php:561 +#: mod/install.php:520 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 "Não foi possível gravar o arquivo de configuração \".htconfig.php\". Por favor, use o texto incluso para criar um arquivo de configuração na raiz da instalação do Friendika em seu servidor web." -#: mod/install.php:600 +#: mod/install.php:545 msgid "

What next

" msgstr "

A seguir

" -#: mod/install.php:601 +#: mod/install.php:546 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." msgstr "IMPORTANTE: Você deve configurar [manualmente] uma tarefa agendada para o captador." +#: mod/item.php:116 +msgid "Unable to locate original post." +msgstr "Não foi possível localizar a publicação original." + +#: mod/item.php:344 +msgid "Empty post discarded." +msgstr "A publicação em branco foi descartada." + +#: mod/item.php:904 +msgid "System error. Post not saved." +msgstr "Erro no sistema. A publicação não foi salva." + +#: mod/item.php:995 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Essa mensagem foi enviada a você por %s, um membro da rede social Friendica." + +#: mod/item.php:997 +#, php-format +msgid "You may visit them online at %s" +msgstr "Você pode visitá-lo em %s" + +#: mod/item.php:998 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Por favor, entre em contato com o remetente respondendo a esta publicação, caso você não queira mais receber estas mensagens." + +#: mod/item.php:1002 +#, php-format +msgid "%s posted an update." +msgstr "%s publicou uma atualização." + #: mod/notifications.php:35 msgid "Invalid request identifier." msgstr "Identificador de solicitação inválido" #: mod/notifications.php:44 mod/notifications.php:180 -#: mod/notifications.php:252 +#: mod/notifications.php:227 msgid "Discard" msgstr "Descartar" @@ -8282,7 +7272,7 @@ msgstr "Exibir solicitações ignoradas" msgid "Hide Ignored Requests" msgstr "Ocultar solicitações ignoradas" -#: mod/notifications.php:164 mod/notifications.php:222 +#: mod/notifications.php:164 mod/notifications.php:234 msgid "Notification type: " msgstr "Tipo de notificação:" @@ -8291,14 +7281,18 @@ msgstr "Tipo de notificação:" msgid "suggested by %s" msgstr "sugerido por %s" -#: mod/notifications.php:173 mod/notifications.php:240 +#: mod/notifications.php:173 mod/notifications.php:252 msgid "Post a new friend activity" msgstr "Publicar a adição de amigo" -#: mod/notifications.php:173 mod/notifications.php:240 +#: mod/notifications.php:173 mod/notifications.php:252 msgid "if applicable" msgstr "se aplicável" +#: mod/notifications.php:176 mod/notifications.php:261 mod/admin.php:1506 +msgid "Approve" +msgstr "Aprovar" + #: mod/notifications.php:195 msgid "Claims to be known to you: " msgstr "Alega ser conhecido por você: " @@ -8311,220 +7305,1500 @@ msgstr "sim" msgid "no" msgstr "não" -#: 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 "Sua conexão deve ser bidirecional ou não? \"Amigo\" implica que você permite ler e se inscreve nos textos dele. \"Fan / admirador\" significa que você permite ler, mas você não quer ler os textos dele. Aprovar como:" +#: mod/notifications.php:197 mod/notifications.php:202 +msgid "Shall your connection be bidirectional or not?" +msgstr "" -#: mod/notifications.php:200 +#: mod/notifications.php:198 mod/notifications.php:203 +#, php-format 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 "Sua conexão deve ser bidirecional ou não? \"Amigo\" implica que você permite a leitura e assina o textos dele. \"Compartilhador\" significa que você permite a leitura mas você não quer ler os textos dele. Aprova como:" +"Accepting %s as a friend allows %s to subscribe to your posts, and you will " +"also receive updates from them in your news feed." +msgstr "" -#: mod/notifications.php:209 +#: mod/notifications.php:199 +#, php-format +msgid "" +"Accepting %s as a subscriber allows them to subscribe to your posts, but you" +" will not receive updates from them in your news feed." +msgstr "" + +#: mod/notifications.php:204 +#, php-format +msgid "" +"Accepting %s as a sharer allows them to subscribe to your posts, but you " +"will not receive updates from them in your news feed." +msgstr "" + +#: mod/notifications.php:215 msgid "Friend" msgstr "Amigo" -#: mod/notifications.php:210 +#: mod/notifications.php:216 msgid "Sharer" msgstr "Compartilhador" -#: mod/notifications.php:210 -msgid "Fan/Admirer" -msgstr "Fã/Admirador" +#: mod/notifications.php:216 +msgid "Subscriber" +msgstr "" -#: mod/notifications.php:260 +#: mod/notifications.php:272 msgid "No introductions." msgstr "Sem apresentações." -#: mod/notifications.php:299 +#: mod/notifications.php:313 msgid "Show unread" msgstr "" -#: mod/notifications.php:299 +#: mod/notifications.php:313 msgid "Show all" msgstr "" -#: mod/notifications.php:305 +#: mod/notifications.php:319 #, php-format msgid "No more %s notifications." msgstr "" -#: mod/photos.php:101 mod/photos.php:1886 -msgid "Recent Photos" -msgstr "Fotos recentes" +#: mod/ping.php:270 +msgid "{0} wants to be your friend" +msgstr "{0} deseja ser seu amigo" -#: mod/photos.php:104 mod/photos.php:1308 mod/photos.php:1888 -msgid "Upload New Photos" -msgstr "Enviar novas fotos" +#: mod/ping.php:285 +msgid "{0} sent you a message" +msgstr "{0} lhe enviou uma mensagem" -#: mod/photos.php:182 -msgid "Contact information unavailable" -msgstr "A informação de contato não está disponível" +#: mod/ping.php:300 +msgid "{0} requested registration" +msgstr "{0} solicitou registro" -#: mod/photos.php:203 -msgid "Album not found." -msgstr "O álbum não foi encontrado." +#: mod/admin.php:96 +msgid "Theme settings updated." +msgstr "As configurações do tema foram atualizadas." -#: mod/photos.php:233 mod/photos.php:245 mod/photos.php:1250 -msgid "Delete Album" -msgstr "Excluir o álbum" +#: mod/admin.php:165 mod/admin.php:1054 +msgid "Site" +msgstr "Site" -#: mod/photos.php:243 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Você realmente deseja deletar esse álbum de fotos e todas as suas fotos?" +#: mod/admin.php:166 mod/admin.php:988 mod/admin.php:1498 mod/admin.php:1514 +msgid "Users" +msgstr "Usuários" -#: mod/photos.php:323 mod/photos.php:334 mod/photos.php:1567 -msgid "Delete Photo" -msgstr "Excluir a foto" +#: mod/admin.php:168 mod/admin.php:1892 mod/admin.php:1942 +msgid "Themes" +msgstr "Temas" -#: mod/photos.php:332 -msgid "Do you really want to delete this photo?" -msgstr "Você realmente deseja deletar essa foto?" +#: mod/admin.php:170 +msgid "DB updates" +msgstr "Atualizações do BD" -#: mod/photos.php:707 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s foi marcado em %2$s por %3$s" +#: mod/admin.php:171 mod/admin.php:512 +msgid "Inspect Queue" +msgstr "" -#: mod/photos.php:707 -msgid "a photo" -msgstr "uma foto" +#: mod/admin.php:172 mod/admin.php:288 +msgid "Server Blocklist" +msgstr "" -#: mod/photos.php:814 -msgid "Image file is empty." -msgstr "O arquivo de imagem está vazio." +#: mod/admin.php:173 mod/admin.php:478 +msgid "Federation Statistics" +msgstr "" -#: mod/photos.php:974 -msgid "No photos selected" -msgstr "Não foi selecionada nenhuma foto" +#: mod/admin.php:187 mod/admin.php:198 mod/admin.php:2016 +msgid "Logs" +msgstr "Relatórios" -#: mod/photos.php:1135 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Você está usando %1$.2f Mbytes dos %2$.2f Mbytes liberados para armazenamento de fotos." +#: mod/admin.php:188 mod/admin.php:2084 +msgid "View Logs" +msgstr "" -#: mod/photos.php:1170 -msgid "Upload Photos" -msgstr "Enviar fotos" +#: mod/admin.php:189 +msgid "probe address" +msgstr "prova endereço" -#: mod/photos.php:1174 mod/photos.php:1245 -msgid "New album name: " -msgstr "Nome do novo álbum: " +#: mod/admin.php:190 +msgid "check webfinger" +msgstr "verifica webfinger" -#: mod/photos.php:1175 -msgid "or existing album name: " -msgstr "ou o nome de um álbum já existente: " +#: mod/admin.php:197 +msgid "Plugin Features" +msgstr "Recursos do plugin" -#: mod/photos.php:1176 -msgid "Do not show a status post for this upload" -msgstr "Não exiba uma publicação de status para este envio" +#: mod/admin.php:199 +msgid "diagnostics" +msgstr "diagnóstico" -#: mod/photos.php:1189 -msgid "Private Photo" -msgstr "Foto Privada" +#: mod/admin.php:200 +msgid "User registrations waiting for confirmation" +msgstr "Cadastros de novos usuários aguardando confirmação" -#: mod/photos.php:1190 -msgid "Public Photo" -msgstr "Foto Pública" +#: mod/admin.php:279 +msgid "The blocked domain" +msgstr "" -#: mod/photos.php:1258 -msgid "Edit Album" -msgstr "Editar o álbum" +#: mod/admin.php:280 mod/admin.php:293 +msgid "The reason why you blocked this domain." +msgstr "" -#: mod/photos.php:1264 -msgid "Show Newest First" -msgstr "Exibir as mais recentes primeiro" +#: mod/admin.php:281 +msgid "Delete domain" +msgstr "" -#: mod/photos.php:1266 -msgid "Show Oldest First" -msgstr "Exibir as mais antigas primeiro" +#: mod/admin.php:281 +msgid "Check to delete this entry from the blocklist" +msgstr "" -#: mod/photos.php:1294 mod/photos.php:1871 -msgid "View Photo" -msgstr "Ver a foto" +#: mod/admin.php:287 mod/admin.php:477 mod/admin.php:511 mod/admin.php:586 +#: mod/admin.php:1053 mod/admin.php:1497 mod/admin.php:1615 mod/admin.php:1678 +#: mod/admin.php:1891 mod/admin.php:1941 mod/admin.php:2015 mod/admin.php:2083 +msgid "Administration" +msgstr "Administração" -#: mod/photos.php:1340 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permissão negada. O acesso a este item pode estar restrito." - -#: mod/photos.php:1342 -msgid "Photo not available" -msgstr "A foto não está disponível" - -#: mod/photos.php:1398 -msgid "View photo" -msgstr "Ver a imagem" - -#: mod/photos.php:1398 -msgid "Edit photo" -msgstr "Editar a foto" - -#: mod/photos.php:1399 -msgid "Use as profile photo" -msgstr "Usar como uma foto de perfil" - -#: mod/photos.php:1424 -msgid "View Full Size" -msgstr "Ver no tamanho real" - -#: mod/photos.php:1510 -msgid "Tags: " -msgstr "Etiquetas: " - -#: mod/photos.php:1513 -msgid "[Remove any tag]" -msgstr "[Remover qualquer etiqueta]" - -#: mod/photos.php:1553 -msgid "New album name" -msgstr "Novo nome para o álbum" - -#: mod/photos.php:1554 -msgid "Caption" -msgstr "Legenda" - -#: mod/photos.php:1555 -msgid "Add a Tag" -msgstr "Adicionar uma etiqueta" - -#: mod/photos.php:1555 +#: mod/admin.php:289 msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Por exemplo: @joao, @Joao_da_Silva, @joao@exemplo.com, #Minas_Gerais, #acampamento" - -#: mod/photos.php:1556 -msgid "Do not rotate" +"This page can be used to define a black list of servers from the federated " +"network that are not allowed to interact with your node. For all entered " +"domains you should also give a reason why you have blocked the remote " +"server." msgstr "" -#: mod/photos.php:1557 -msgid "Rotate CW (right)" -msgstr "Rotacionar para direita" - -#: mod/photos.php:1558 -msgid "Rotate CCW (left)" -msgstr "Rotacionar para esquerda" - -#: mod/photos.php:1573 -msgid "Private photo" -msgstr "Foto privada" - -#: mod/photos.php:1574 -msgid "Public photo" -msgstr "Foto pública" - -#: mod/photos.php:1800 -msgid "Map" +#: mod/admin.php:290 +msgid "" +"The list of blocked servers will be made publically available on the " +"/friendica page so that your users and people investigating communication " +"problems can find the reason easily." msgstr "" -#: object/Item.php:370 +#: mod/admin.php:291 +msgid "Add new entry to block list" +msgstr "" + +#: mod/admin.php:292 +msgid "Server Domain" +msgstr "" + +#: mod/admin.php:292 +msgid "" +"The domain of the new server to add to the block list. Do not include the " +"protocol." +msgstr "" + +#: mod/admin.php:293 +msgid "Block reason" +msgstr "" + +#: mod/admin.php:294 +msgid "Add Entry" +msgstr "" + +#: mod/admin.php:295 +msgid "Save changes to the blocklist" +msgstr "" + +#: mod/admin.php:296 +msgid "Current Entries in the Blocklist" +msgstr "" + +#: mod/admin.php:299 +msgid "Delete entry from blocklist" +msgstr "" + +#: mod/admin.php:302 +msgid "Delete entry from blocklist?" +msgstr "" + +#: mod/admin.php:327 +msgid "Server added to blocklist." +msgstr "" + +#: mod/admin.php:343 +msgid "Site blocklist updated." +msgstr "" + +#: mod/admin.php:408 +msgid "unknown" +msgstr "" + +#: mod/admin.php:471 +msgid "" +"This page offers you some numbers to the known part of the federated social " +"network your Friendica node is part of. These numbers are not complete but " +"only reflect the part of the network your node is aware of." +msgstr "" + +#: mod/admin.php:472 +msgid "" +"The Auto Discovered Contact Directory feature is not enabled, it " +"will improve the data displayed here." +msgstr "" + +#: mod/admin.php:484 +#, php-format +msgid "Currently this node is aware of %d nodes from the following platforms:" +msgstr "" + +#: mod/admin.php:514 +msgid "ID" +msgstr "ID" + +#: mod/admin.php:515 +msgid "Recipient Name" +msgstr "" + +#: mod/admin.php:516 +msgid "Recipient Profile" +msgstr "" + +#: mod/admin.php:518 +msgid "Created" +msgstr "" + +#: mod/admin.php:519 +msgid "Last Tried" +msgstr "" + +#: mod/admin.php:520 +msgid "" +"This page lists the content of the queue for outgoing postings. These are " +"postings the initial delivery failed for. They will be resend later and " +"eventually deleted if the delivery fails permanently." +msgstr "" + +#: mod/admin.php:545 +#, php-format +msgid "" +"Your DB still runs with MyISAM tables. You should change the engine type to " +"InnoDB. As Friendica will use InnoDB only features in the future, you should" +" change this! See here for a guide that may be helpful " +"converting the table engines. You may also use the command php " +"include/dbstructure.php toinnodb of your Friendica installation for an " +"automatic conversion.
" +msgstr "" + +#: mod/admin.php:550 +msgid "" +"You are using a MySQL version which does not support all features that " +"Friendica uses. You should consider switching to MariaDB." +msgstr "" + +#: mod/admin.php:554 mod/admin.php:1447 +msgid "Normal Account" +msgstr "Conta normal" + +#: mod/admin.php:555 mod/admin.php:1448 +msgid "Soapbox Account" +msgstr "Conta de vitrine" + +#: mod/admin.php:556 mod/admin.php:1449 +msgid "Community/Celebrity Account" +msgstr "Conta de comunidade/celebridade" + +#: mod/admin.php:557 mod/admin.php:1450 +msgid "Automatic Friend Account" +msgstr "Conta de amigo automático" + +#: mod/admin.php:558 +msgid "Blog Account" +msgstr "Conta de blog" + +#: mod/admin.php:559 +msgid "Private Forum" +msgstr "Fórum privado" + +#: mod/admin.php:581 +msgid "Message queues" +msgstr "Fila de mensagens" + +#: mod/admin.php:587 +msgid "Summary" +msgstr "Resumo" + +#: mod/admin.php:589 +msgid "Registered users" +msgstr "Usuários registrados" + +#: mod/admin.php:591 +msgid "Pending registrations" +msgstr "Registros pendentes" + +#: mod/admin.php:592 +msgid "Version" +msgstr "Versão" + +#: mod/admin.php:597 +msgid "Active plugins" +msgstr "Plugins ativos" + +#: mod/admin.php:622 +msgid "Can not parse base url. Must have at least ://" +msgstr "Não foi possível analisar a URL. Ela deve conter pelo menos ://" + +#: mod/admin.php:914 +msgid "Site settings updated." +msgstr "As configurações do site foram atualizadas." + +#: mod/admin.php:971 +msgid "No community page" +msgstr "Sem página de comunidade" + +#: mod/admin.php:972 +msgid "Public postings from users of this site" +msgstr "Textos públicos de usuários deste sítio" + +#: mod/admin.php:973 +msgid "Global community page" +msgstr "Página global da comunidade" + +#: mod/admin.php:979 +msgid "At post arrival" +msgstr "Na chegada da publicação" + +#: mod/admin.php:989 +msgid "Users, Global Contacts" +msgstr "Usuários, Contatos Globais" + +#: mod/admin.php:990 +msgid "Users, Global Contacts/fallback" +msgstr "Usuários, Contatos Globais/plano B" + +#: mod/admin.php:994 +msgid "One month" +msgstr "Um mês" + +#: mod/admin.php:995 +msgid "Three months" +msgstr "Três meses" + +#: mod/admin.php:996 +msgid "Half a year" +msgstr "Seis meses" + +#: mod/admin.php:997 +msgid "One year" +msgstr "Um ano" + +#: mod/admin.php:1002 +msgid "Multi user instance" +msgstr "Instância multi usuário" + +#: mod/admin.php:1025 +msgid "Closed" +msgstr "Fechado" + +#: mod/admin.php:1026 +msgid "Requires approval" +msgstr "Requer aprovação" + +#: mod/admin.php:1027 +msgid "Open" +msgstr "Aberto" + +#: mod/admin.php:1031 +msgid "No SSL policy, links will track page SSL state" +msgstr "Nenhuma política de SSL, os links irão rastrear o estado SSL da página" + +#: mod/admin.php:1032 +msgid "Force all links to use SSL" +msgstr "Forçar todos os links a utilizar SSL" + +#: mod/admin.php:1033 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Certificado auto-assinado, usar SSL somente para links locais (não recomendado)" + +#: mod/admin.php:1057 +msgid "File upload" +msgstr "Envio de arquivo" + +#: mod/admin.php:1058 +msgid "Policies" +msgstr "Políticas" + +#: mod/admin.php:1060 +msgid "Auto Discovered Contact Directory" +msgstr "" + +#: mod/admin.php:1061 +msgid "Performance" +msgstr "Performance" + +#: mod/admin.php:1062 +msgid "Worker" +msgstr "" + +#: mod/admin.php:1063 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "Relocação - ATENÇÃO: função avançada. Pode tornar esse servidor inacessível." + +#: mod/admin.php:1066 +msgid "Site name" +msgstr "Nome do site" + +#: mod/admin.php:1067 +msgid "Host name" +msgstr "Nome do host" + +#: mod/admin.php:1068 +msgid "Sender Email" +msgstr "enviador de email" + +#: mod/admin.php:1068 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "" + +#: mod/admin.php:1069 +msgid "Banner/Logo" +msgstr "Banner/Logo" + +#: mod/admin.php:1070 +msgid "Shortcut icon" +msgstr "ícone de atalho" + +#: mod/admin.php:1070 +msgid "Link to an icon that will be used for browsers." +msgstr "" + +#: mod/admin.php:1071 +msgid "Touch icon" +msgstr "ícone de toque" + +#: mod/admin.php:1071 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "" + +#: mod/admin.php:1072 +msgid "Additional Info" +msgstr "Informação adicional" + +#: mod/admin.php:1072 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/siteinfo." +msgstr "" + +#: mod/admin.php:1073 +msgid "System language" +msgstr "Idioma do sistema" + +#: mod/admin.php:1074 +msgid "System theme" +msgstr "Tema do sistema" + +#: mod/admin.php:1074 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Tema padrão do sistema. Pode ser substituído nos perfis de usuário - alterar configurações do tema" + +#: mod/admin.php:1075 +msgid "Mobile system theme" +msgstr "Tema do sistema para dispositivos móveis" + +#: mod/admin.php:1075 +msgid "Theme for mobile devices" +msgstr "Tema para dispositivos móveis" + +#: mod/admin.php:1076 +msgid "SSL link policy" +msgstr "Política de link SSL" + +#: mod/admin.php:1076 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Determina se os links gerados devem ser forçados a utilizar SSL" + +#: mod/admin.php:1077 +msgid "Force SSL" +msgstr "Forçar SSL" + +#: mod/admin.php:1077 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "Forçar todas as solicitações não-SSL para SSL - Atenção: em alguns sistemas isso pode levar a loops infinitos." + +#: mod/admin.php:1078 +msgid "Hide help entry from navigation menu" +msgstr "Oculta a entrada 'Ajuda' do menu de navegação" + +#: mod/admin.php:1078 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "Oculta a entrada de menu para as páginas de Ajuda do menu de navegação. Ainda será possível acessá-las chamando /help diretamente." + +#: mod/admin.php:1079 +msgid "Single user instance" +msgstr "Instância de usuário único" + +#: mod/admin.php:1079 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Faça essa instância multiusuário ou usuário único para o usuário em questão" + +#: mod/admin.php:1080 +msgid "Maximum image size" +msgstr "Tamanho máximo da imagem" + +#: mod/admin.php:1080 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Tamanho máximo, em bytes, das imagens enviadas. O padrão é 0, o que significa sem limites" + +#: mod/admin.php:1081 +msgid "Maximum image length" +msgstr "Tamanho máximo da imagem" + +#: mod/admin.php:1081 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Tamanho máximo em pixels do lado mais largo das imagens enviadas. O padrão é -1, que significa sem limites." + +#: mod/admin.php:1082 +msgid "JPEG image quality" +msgstr "Qualidade da imagem JPEG" + +#: mod/admin.php:1082 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Imagens JPEG enviadas serão salvas com essa qualidade [0-100]. O padrão é 100, que significa a melhor qualidade." + +#: mod/admin.php:1084 +msgid "Register policy" +msgstr "Política de registro" + +#: mod/admin.php:1085 +msgid "Maximum Daily Registrations" +msgstr "Registros Diários Máximos" + +#: mod/admin.php:1085 +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 o registro é permitido acima, isso configura o número máximo de registros de novos usuários a serem aceitos por dia. Se o registro está configurado para 'fechado/closed' , essa configuração não tem efeito." + +#: mod/admin.php:1086 +msgid "Register text" +msgstr "Texto de registro" + +#: mod/admin.php:1086 +msgid "Will be displayed prominently on the registration page." +msgstr "Será exibido com destaque na página de registro." + +#: mod/admin.php:1087 +msgid "Accounts abandoned after x days" +msgstr "Contas abandonadas após x dias" + +#: mod/admin.php:1087 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Não desperdiçará recursos do sistema captando de sites externos para contas abandonadas. Digite 0 para nenhum limite de tempo." + +#: mod/admin.php:1088 +msgid "Allowed friend domains" +msgstr "Domínios de amigos permitidos" + +#: mod/admin.php:1088 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Lista dos domínios que têm permissão para estabelecer amizades com esse site, separados por vírgula. Caracteres curinga são aceitos. Deixe em branco para permitir qualquer domínio." + +#: mod/admin.php:1089 +msgid "Allowed email domains" +msgstr "Domínios de e-mail permitidos" + +#: mod/admin.php:1089 +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 "Lista de domínios separados por vírgula, que são permitidos em endereços de e-mail para registro nesse site. Caracteres-curinga são aceitos. Vazio para aceitar qualquer domínio" + +#: mod/admin.php:1090 +msgid "Block public" +msgstr "Bloquear acesso público" + +#: mod/admin.php:1090 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Marque para bloquear o acesso público a todas as páginas desse site, com exceção das páginas pessoais públicas, a não ser que a pessoa esteja autenticada." + +#: mod/admin.php:1091 +msgid "Force publish" +msgstr "Forçar a listagem" + +#: mod/admin.php:1091 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Marque para forçar todos os perfis desse site a serem listados no diretório do site." + +#: mod/admin.php:1092 +msgid "Global directory URL" +msgstr "" + +#: mod/admin.php:1092 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "" + +#: mod/admin.php:1093 +msgid "Allow threaded items" +msgstr "Habilita itens aninhados" + +#: mod/admin.php:1093 +msgid "Allow infinite level threading for items on this site." +msgstr "Habilita nível infinito de aninhamento (threading) para itens." + +#: mod/admin.php:1094 +msgid "Private posts by default for new users" +msgstr "Publicações privadas por padrão para novos usuários" + +#: mod/admin.php:1094 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "Define as permissões padrão de publicação de todos os novos membros para o grupo de privacidade padrão, ao invés de torná-las públicas." + +#: mod/admin.php:1095 +msgid "Don't include post content in email notifications" +msgstr "Não incluir o conteúdo da postagem nas notificações de email" + +#: mod/admin.php:1095 +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 "Não incluir o conteúdo de uma postagem/comentário/mensagem privada/etc. em notificações de email que são enviadas para fora desse sítio, como medida de segurança." + +#: mod/admin.php:1096 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Disabilita acesso público a addons listados no menu de aplicativos." + +#: mod/admin.php:1096 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "Marcar essa caixa ira restringir os addons listados no menu de aplicativos aos membros somente." + +#: mod/admin.php:1097 +msgid "Don't embed private images in posts" +msgstr "Não inclua imagens privadas em publicações" + +#: mod/admin.php:1097 +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 "Não substitue fotos privativas guardadas localmente em publicações por uma cópia inclusa da imagem. Isso significa que os contatos que recebem publicações contendo fotos privadas terão que autenticar e carregar cada imagem, o que pode levar algum tempo." + +#: mod/admin.php:1098 +msgid "Allow Users to set remote_self" +msgstr "Permite usuários configurarem remote_self" + +#: mod/admin.php:1098 +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 "Ao marcar isto, todos os usuários poderão marcar cada contato como um remote_self na opção de reparar contato. Marcar isto para um contato produz espelhamento de toda publicação deste contato no fluxo dos usuários" + +#: mod/admin.php:1099 +msgid "Block multiple registrations" +msgstr "Bloquear registros repetidos" + +#: mod/admin.php:1099 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Desabilitar o registro de contas adicionais para serem usadas como páginas." + +#: mod/admin.php:1100 +msgid "OpenID support" +msgstr "Suporte ao OpenID" + +#: mod/admin.php:1100 +msgid "OpenID support for registration and logins." +msgstr "Suporte ao OpenID para registros e autenticações." + +#: mod/admin.php:1101 +msgid "Fullname check" +msgstr "Verificar nome completo" + +#: mod/admin.php:1101 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "Forçar os usuários a usar um espaço em branco entre o nome e o sobrenome, ao preencherem o nome completo no registro, como uma medida contra o spam" + +#: mod/admin.php:1102 +msgid "Community Page Style" +msgstr "Estilo da página de comunidade" + +#: mod/admin.php:1102 +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 de página de comunidade para mostrar. 'Comunidade Global' mostra todos os textos públicos de uma rede aberta e distribuída que chega neste servidor." + +#: mod/admin.php:1103 +msgid "Posts per user on community page" +msgstr "Textos por usuário na página da comunidade" + +#: mod/admin.php:1103 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"'Global Community')" +msgstr "O número máximo de textos por usuário na página da comunidade. (Não é válido para 'comunidade global')" + +#: mod/admin.php:1104 +msgid "Enable OStatus support" +msgstr "Habilitar suporte ao OStatus" + +#: mod/admin.php:1104 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "Fornece compatibilidade OStatus (StatusNet, GNU Social, etc.). Todas as comunicações no OStatus são públicas, assim avisos de privacidade serão ocasionalmente mostrados." + +#: mod/admin.php:1105 +msgid "OStatus conversation completion interval" +msgstr "Intervalo de finalização da conversação OStatus " + +#: mod/admin.php:1105 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "De quanto em quanto tempo o \"buscador\" (poller) deve checar por novas entradas numa conversação OStatus? Essa pode ser uma tarefa bem demorada." + +#: mod/admin.php:1106 +msgid "Only import OStatus threads from our contacts" +msgstr "" + +#: mod/admin.php:1106 +msgid "" +"Normally we import every content from our OStatus contacts. With this option" +" we only store threads that are started by a contact that is known on our " +"system." +msgstr "" + +#: mod/admin.php:1107 +msgid "OStatus support can only be enabled if threading is enabled." +msgstr "" + +#: mod/admin.php:1109 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "" + +#: mod/admin.php:1110 +msgid "Enable Diaspora support" +msgstr "Habilitar suporte ao Diaspora" + +#: mod/admin.php:1110 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Fornece compatibilidade nativa com a rede Diaspora." + +#: mod/admin.php:1111 +msgid "Only allow Friendica contacts" +msgstr "Permitir somente contatos Friendica" + +#: mod/admin.php:1111 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "Todos os contatos devem usar protocolos Friendica. Todos os outros protocolos de comunicação embarcados estão desabilitados" + +#: mod/admin.php:1112 +msgid "Verify SSL" +msgstr "Verificar SSL" + +#: mod/admin.php:1112 +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 "Caso deseje, você pode habilitar a restrição de certificações. Isso significa que você não poderá conectar-se a nenhum site que use certificados auto-assinados." + +#: mod/admin.php:1113 +msgid "Proxy user" +msgstr "Usuário do proxy" + +#: mod/admin.php:1114 +msgid "Proxy URL" +msgstr "URL do proxy" + +#: mod/admin.php:1115 +msgid "Network timeout" +msgstr "Limite de tempo da rede" + +#: mod/admin.php:1115 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valor em segundos. Defina como 0 para ilimitado (não recomendado)." + +#: mod/admin.php:1116 +msgid "Maximum Load Average" +msgstr "Média de Carga Máxima" + +#: mod/admin.php:1116 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Carga do sistema máxima antes que os processos de entrega e busca sejam postergados - padrão 50." + +#: mod/admin.php:1117 +msgid "Maximum Load Average (Frontend)" +msgstr "" + +#: mod/admin.php:1117 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "" + +#: mod/admin.php:1118 +msgid "Minimal Memory" +msgstr "" + +#: mod/admin.php:1118 +msgid "" +"Minimal free memory in MB for the poller. Needs access to /proc/meminfo - " +"default 0 (deactivated)." +msgstr "" + +#: mod/admin.php:1119 +msgid "Maximum table size for optimization" +msgstr "" + +#: mod/admin.php:1119 +msgid "" +"Maximum table size (in MB) for the automatic optimization - default 100 MB. " +"Enter -1 to disable it." +msgstr "" + +#: mod/admin.php:1120 +msgid "Minimum level of fragmentation" +msgstr "" + +#: mod/admin.php:1120 +msgid "" +"Minimum fragmenation level to start the automatic optimization - default " +"value is 30%." +msgstr "" + +#: mod/admin.php:1122 +msgid "Periodical check of global contacts" +msgstr "Checagem periódica dos contatos globais" + +#: mod/admin.php:1122 +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:1123 +msgid "Days between requery" +msgstr "" + +#: mod/admin.php:1123 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "" + +#: mod/admin.php:1124 +msgid "Discover contacts from other servers" +msgstr "" + +#: mod/admin.php:1124 +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 "Periodicamente buscar contatos em outros servidores. Você pode entre 'Usuários': os usuários do sistema remoto; e 'Contatos Globais': os contatos ativos conhecidos pelo sistema. O plano B é destinado a servidores rodando Redmatrix ou Friendica, se mais antigos, para os quais os contatos globais não estavam disponíveis. O plano B aumenta a carga do servidor, por isso a opção recomendada é 'Usuários, Contatos Globais'." + +#: mod/admin.php:1125 +msgid "Timeframe for fetching global contacts" +msgstr "" + +#: mod/admin.php:1125 +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:1126 +msgid "Search the local directory" +msgstr "" + +#: mod/admin.php:1126 +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:1128 +msgid "Publish server information" +msgstr "" + +#: mod/admin.php:1128 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "" + +#: mod/admin.php:1130 +msgid "Suppress Tags" +msgstr "Suprime etiquetas" + +#: mod/admin.php:1130 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "suprime mostrar uma lista de hashtags no final de cada texto." + +#: mod/admin.php:1131 +msgid "Path to item cache" +msgstr "Diretório do cache de item" + +#: mod/admin.php:1131 +msgid "The item caches buffers generated bbcode and external images." +msgstr "" + +#: mod/admin.php:1132 +msgid "Cache duration in seconds" +msgstr "Duração do cache em segundos" + +#: mod/admin.php:1132 +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 "Por quanto tempo os arquivos de cache devem ser mantidos? O valor padrão é 86400 segundos (um dia). Para desativar o cache, defina o valor para -1." + +#: mod/admin.php:1133 +msgid "Maximum numbers of comments per post" +msgstr "O número máximo de comentários por post" + +#: mod/admin.php:1133 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "Quanto comentários devem ser mostradas em cada post? O valor padrão é 100." + +#: mod/admin.php:1134 +msgid "Temp path" +msgstr "Diretório Temp" + +#: mod/admin.php:1134 +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:1135 +msgid "Base path to installation" +msgstr "Diretório base para instalação" + +#: mod/admin.php:1135 +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:1136 +msgid "Disable picture proxy" +msgstr "Disabilitar proxy de imagem" + +#: mod/admin.php:1136 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwith." +msgstr "O proxy de imagem aumenta o desempenho e privacidade. Ele não deve ser usado em sistemas com largura de banda muito baixa." + +#: mod/admin.php:1137 +msgid "Only search in tags" +msgstr "Somente pesquisa nas estiquetas" + +#: mod/admin.php:1137 +msgid "On large systems the text search can slow down the system extremely." +msgstr "Em grandes sistemas a pesquisa de texto pode deixar o sistema muito lento." + +#: mod/admin.php:1139 +msgid "New base url" +msgstr "Nova URL base" + +#: mod/admin.php:1139 +msgid "" +"Change base url for this server. Sends relocate message to all DFRN contacts" +" of all users." +msgstr "" + +#: mod/admin.php:1141 +msgid "RINO Encryption" +msgstr "" + +#: mod/admin.php:1141 +msgid "Encryption layer between nodes." +msgstr "" + +#: mod/admin.php:1143 +msgid "Maximum number of parallel workers" +msgstr "" + +#: mod/admin.php:1143 +msgid "" +"On shared hosters set this to 2. On larger systems, values of 10 are great. " +"Default value is 4." +msgstr "" + +#: mod/admin.php:1144 +msgid "Don't use 'proc_open' with the worker" +msgstr "" + +#: mod/admin.php:1144 +msgid "" +"Enable this if your system doesn't allow the use of 'proc_open'. This can " +"happen on shared hosters. If this is enabled you should increase the " +"frequency of poller calls in your crontab." +msgstr "" + +#: mod/admin.php:1145 +msgid "Enable fastlane" +msgstr "" + +#: mod/admin.php:1145 +msgid "" +"When enabed, the fastlane mechanism starts an additional worker if processes" +" with higher priority are blocked by processes of lower priority." +msgstr "" + +#: mod/admin.php:1146 +msgid "Enable frontend worker" +msgstr "" + +#: mod/admin.php:1146 +msgid "" +"When enabled the Worker process is triggered when backend access is " +"performed (e.g. messages being delivered). On smaller sites you might want " +"to call yourdomain.tld/worker on a regular basis via an external cron job. " +"You should only enable this option if you cannot utilize cron/scheduled jobs" +" on your server. The worker background process needs to be activated for " +"this." +msgstr "" + +#: mod/admin.php:1176 +msgid "Update has been marked successful" +msgstr "A atualização foi marcada como bem sucedida" + +#: mod/admin.php:1184 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "A atualização da estrutura do banco de dados %s foi aplicada com sucesso." + +#: mod/admin.php:1187 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "A execução da atualização da estrutura do banco de dados %s falhou com o erro: %s" + +#: mod/admin.php:1201 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "A execução de %s falhou com erro: %s" + +#: mod/admin.php:1204 +#, php-format +msgid "Update %s was successfully applied." +msgstr "A atualização %s foi aplicada com sucesso." + +#: mod/admin.php:1207 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Atualizar %s não retornou um status. Desconhecido se ele teve sucesso." + +#: mod/admin.php:1210 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "Não havia nenhuma função de atualização %s adicional que precisava ser chamada." + +#: mod/admin.php:1230 +msgid "No failed updates." +msgstr "Nenhuma atualização com falha." + +#: mod/admin.php:1231 +msgid "Check database structure" +msgstr "Verifique a estrutura do banco de dados" + +#: mod/admin.php:1236 +msgid "Failed Updates" +msgstr "Atualizações com falha" + +#: mod/admin.php:1237 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "Isso não inclue atualizações antes da 1139, as quais não retornavam um status." + +#: mod/admin.php:1238 +msgid "Mark success (if update was manually applied)" +msgstr "Marcar como bem sucedida (caso tenham sido aplicadas atualizações manuais)" + +#: mod/admin.php:1239 +msgid "Attempt to execute this update step automatically" +msgstr "Tentar executar esse passo da atualização automaticamente" + +#: mod/admin.php:1273 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "\n\t\t\tCaro %1$s,\n\t\t\t\to administrador de %2$s criou uma conta para você." + +#: mod/admin.php:1276 +#, php-format +msgid "" +"\n" +"\t\t\tThe login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%1$s\n" +"\t\t\tLogin Name:\t\t%2$s\n" +"\t\t\tPassword:\t\t%3$s\n" +"\n" +"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\t\tin.\n" +"\n" +"\t\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\t\tthan that.\n" +"\n" +"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\t\tIf you are new and do not know anybody here, they may help\n" +"\t\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\t\tThank you and welcome to %4$s." +msgstr "\n\t\t\tOs dados de login são os seguintes:\n\n\t\t\tLocal do Site:\t%1$s\n\t\t\tNome de Login:\t\t%2$s\n\t\t\tSenha:\t\t%3$s\n\n\t\t\tVocê pode alterar sua senha na página de \"Configurações\" da sua conta após fazer o login.\n\n\t\t\tPor favor, dedique alguns minutos na página para rever as outras configurações da sua conta.\n\n\t\t\tTalvez você também queira incluir algumas informações básicas adicionais ao seu perfil padrão\n\t\t\t(na página de \"Perfis\") para que outras pessoas possam encontrá-lo com facilidade.\n\n\t\t\tRecomendamos que inclua seu nome completo, adicione uma foto do perfil,\n\t\t\tadicionar algumas \"palavras-chave\" (muito útil para fazer novas amizades) - e\n\t\t\ttalvez em que pais você mora; se você não quiser ser mais específico\n\t\t\tdo que isso.\n\n\t\t\tNós respeitamos plenamente seu direito à privacidade, e nenhum desses itens são necessários.\n\t\t\tSe você é novo por aqui e não conheço ninguém, eles podem ajuda-lo\n\t\t\ta fazer novas e interessantes amizades.\n\n\t\t\tObrigado e bem-vindo a %4$s." + +#: mod/admin.php:1320 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s usuário bloqueado/desbloqueado" +msgstr[1] "%s usuários bloqueados/desbloqueados" + +#: mod/admin.php:1327 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s usuário excluído" +msgstr[1] "%s usuários excluídos" + +#: mod/admin.php:1374 +#, php-format +msgid "User '%s' deleted" +msgstr "O usuário '%s' foi excluído" + +#: mod/admin.php:1382 +#, php-format +msgid "User '%s' unblocked" +msgstr "O usuário '%s' foi desbloqueado" + +#: mod/admin.php:1382 +#, php-format +msgid "User '%s' blocked" +msgstr "O usuário '%s' foi bloqueado" + +#: mod/admin.php:1490 mod/admin.php:1516 +msgid "Register date" +msgstr "Data de registro" + +#: mod/admin.php:1490 mod/admin.php:1516 +msgid "Last login" +msgstr "Última entrada" + +#: mod/admin.php:1490 mod/admin.php:1516 +msgid "Last item" +msgstr "Último item" + +#: mod/admin.php:1499 +msgid "Add User" +msgstr "Adicionar usuário" + +#: mod/admin.php:1500 +msgid "select all" +msgstr "selecionar todos" + +#: mod/admin.php:1501 +msgid "User registrations waiting for confirm" +msgstr "Registros de usuário aguardando confirmação" + +#: mod/admin.php:1502 +msgid "User waiting for permanent deletion" +msgstr "Usuário aguardando por fim permanente da conta." + +#: mod/admin.php:1503 +msgid "Request date" +msgstr "Solicitar data" + +#: mod/admin.php:1504 +msgid "No registrations." +msgstr "Nenhum registro." + +#: mod/admin.php:1505 +msgid "Note from the user" +msgstr "" + +#: mod/admin.php:1507 +msgid "Deny" +msgstr "Negar" + +#: mod/admin.php:1511 +msgid "Site admin" +msgstr "Administração do site" + +#: mod/admin.php:1512 +msgid "Account expired" +msgstr "Conta expirou" + +#: mod/admin.php:1515 +msgid "New User" +msgstr "Novo usuário" + +#: mod/admin.php:1516 +msgid "Deleted since" +msgstr "Apagado desde" + +#: mod/admin.php:1521 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Os usuários selecionados serão excluídos!\\n\\nTudo o que estes usuários publicaram neste site será excluído permanentemente!\\n\\nDeseja continuar?" + +#: mod/admin.php:1522 +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 "O usuário {0} será excluído!\\n\\nTudo o que este usuário publicou neste site será permanentemente excluído!\\n\\nDeseja continuar?" + +#: mod/admin.php:1532 +msgid "Name of the new user." +msgstr "Nome do novo usuário." + +#: mod/admin.php:1533 +msgid "Nickname" +msgstr "Apelido" + +#: mod/admin.php:1533 +msgid "Nickname of the new user." +msgstr "Apelido para o novo usuário." + +#: mod/admin.php:1534 +msgid "Email address of the new user." +msgstr "Endereço de e-mail do novo usuário." + +#: mod/admin.php:1577 +#, php-format +msgid "Plugin %s disabled." +msgstr "O plugin %s foi desabilitado." + +#: mod/admin.php:1581 +#, php-format +msgid "Plugin %s enabled." +msgstr "O plugin %s foi habilitado." + +#: mod/admin.php:1592 mod/admin.php:1844 +msgid "Disable" +msgstr "Desabilitar" + +#: mod/admin.php:1594 mod/admin.php:1846 +msgid "Enable" +msgstr "Habilitar" + +#: mod/admin.php:1617 mod/admin.php:1893 +msgid "Toggle" +msgstr "Alternar" + +#: mod/admin.php:1625 mod/admin.php:1902 +msgid "Author: " +msgstr "Autor: " + +#: mod/admin.php:1626 mod/admin.php:1903 +msgid "Maintainer: " +msgstr "Mantenedor: " + +#: mod/admin.php:1681 +msgid "Reload active plugins" +msgstr "" + +#: mod/admin.php:1686 +#, php-format +msgid "" +"There are currently no plugins available on your node. You can find the " +"official plugin repository at %1$s and might find other interesting plugins " +"in the open plugin registry at %2$s" +msgstr "" + +#: mod/admin.php:1805 +msgid "No themes found." +msgstr "Nenhum tema encontrado" + +#: mod/admin.php:1884 +msgid "Screenshot" +msgstr "Captura de tela" + +#: mod/admin.php:1944 +msgid "Reload active themes" +msgstr "" + +#: mod/admin.php:1949 +#, php-format +msgid "No themes found on the system. They should be paced in %1$s" +msgstr "" + +#: mod/admin.php:1950 +msgid "[Experimental]" +msgstr "[Esperimental]" + +#: mod/admin.php:1951 +msgid "[Unsupported]" +msgstr "[Não suportado]" + +#: mod/admin.php:1975 +msgid "Log settings updated." +msgstr "As configurações de relatórios foram atualizadas." + +#: mod/admin.php:2007 +msgid "PHP log currently enabled." +msgstr "" + +#: mod/admin.php:2009 +msgid "PHP log currently disabled." +msgstr "" + +#: mod/admin.php:2018 +msgid "Clear" +msgstr "Limpar" + +#: mod/admin.php:2023 +msgid "Enable Debugging" +msgstr "Habilitar depuração" + +#: mod/admin.php:2024 +msgid "Log file" +msgstr "Arquivo do relatório" + +#: mod/admin.php:2024 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "O servidor web precisa ter permissão de escrita. Relativa ao diretório raiz do seu Friendica." + +#: mod/admin.php:2025 +msgid "Log level" +msgstr "Nível do relatório" + +#: mod/admin.php:2028 +msgid "PHP logging" +msgstr "" + +#: mod/admin.php:2029 +msgid "" +"To enable logging of PHP errors and warnings you can add the following to " +"the .htconfig.php file of your installation. The filename set in the " +"'error_log' line is relative to the friendica top-level directory and must " +"be writeable by the web server. The option '1' for 'log_errors' and " +"'display_errors' is to enable these options, set to '0' to disable them." +msgstr "" + +#: mod/admin.php:2160 +#, php-format +msgid "Lock feature %s" +msgstr "Bloquear funcionalidade %s" + +#: mod/admin.php:2168 +msgid "Manage Additional Features" +msgstr "Gerenciar funcionalidades adicionais" + +#: object/Item.php:359 msgid "via" msgstr "via" +#: view/theme/duepuntozero/config.php:44 +msgid "greenzero" +msgstr "greenzero" + +#: view/theme/duepuntozero/config.php:45 +msgid "purplezero" +msgstr "purplezero" + +#: view/theme/duepuntozero/config.php:46 +msgid "easterbunny" +msgstr "easterbunny" + +#: view/theme/duepuntozero/config.php:47 +msgid "darkzero" +msgstr "darkzero" + +#: view/theme/duepuntozero/config.php:48 +msgid "comix" +msgstr "comix" + +#: view/theme/duepuntozero/config.php:49 +msgid "slackr" +msgstr "slackr" + +#: view/theme/duepuntozero/config.php:64 +msgid "Variations" +msgstr "Variações" + +#: view/theme/frio/config.php:47 +msgid "Default" +msgstr "Padrão" + +#: view/theme/frio/config.php:59 +msgid "Note: " +msgstr "Observação:" + +#: view/theme/frio/config.php:59 +msgid "Check image permissions if all users are allowed to visit the image" +msgstr "" + +#: view/theme/frio/config.php:67 +msgid "Select scheme" +msgstr "Selecionar esquema de cores" + +#: view/theme/frio/config.php:68 +msgid "Navigation bar background color" +msgstr "Cor de fundo da barra de navegação" + +#: view/theme/frio/config.php:69 +msgid "Navigation bar icon color " +msgstr "Cor do ícone da barra de navegação" + +#: view/theme/frio/config.php:70 +msgid "Link color" +msgstr "Cor do link" + +#: view/theme/frio/config.php:71 +msgid "Set the background color" +msgstr "Escolher a cor de fundo" + +#: view/theme/frio/config.php:72 +msgid "Content background transparency" +msgstr "Transparência do fundo do conteúdo" + +#: view/theme/frio/config.php:73 +msgid "Set the background image" +msgstr "Escolher a imagem de fundo" + #: view/theme/frio/php/Image.php:23 msgid "Repeat the image" msgstr "Lado a lado" @@ -8557,46 +8831,6 @@ msgstr "Ajustar" msgid "Resize to best fit and retain aspect ratio." msgstr "Redimensiona para ajustar ao plano de fundo, mantendo proporções." -#: view/theme/frio/config.php:42 -msgid "Default" -msgstr "Padrão" - -#: view/theme/frio/config.php:54 -msgid "Note: " -msgstr "Observação:" - -#: view/theme/frio/config.php:54 -msgid "Check image permissions if all users are allowed to visit the image" -msgstr "" - -#: view/theme/frio/config.php:62 -msgid "Select scheme" -msgstr "Selecionar esquema de cores" - -#: view/theme/frio/config.php:63 -msgid "Navigation bar background color" -msgstr "Cor de fundo da barra de navegação" - -#: view/theme/frio/config.php:64 -msgid "Navigation bar icon color " -msgstr "Cor do ícone da barra de navegação" - -#: view/theme/frio/config.php:65 -msgid "Link color" -msgstr "Cor do link" - -#: view/theme/frio/config.php:66 -msgid "Set the background color" -msgstr "Escolher a cor de fundo" - -#: view/theme/frio/config.php:67 -msgid "Content background transparency" -msgstr "Transparência do fundo do conteúdo" - -#: view/theme/frio/config.php:68 -msgid "Set the background image" -msgstr "Escolher a imagem de fundo" - #: view/theme/frio/theme.php:226 msgid "Guest" msgstr "Convidado" @@ -8605,230 +8839,119 @@ msgstr "Convidado" msgid "Visitor" msgstr "Visitante" -#: view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "Configure o nível de redimensionamento para imagens em publicações e comentários (largura e altura)" - -#: 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 "Escolha o tamanho da fonte para publicações e comentários" - -#: view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Configure a largura do tema" - -#: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "Esquema de cores" - -#: view/theme/quattro/config.php:67 +#: view/theme/quattro/config.php:70 msgid "Alignment" msgstr "Alinhamento" -#: view/theme/quattro/config.php:67 +#: view/theme/quattro/config.php:70 msgid "Left" msgstr "Esquerda" -#: view/theme/quattro/config.php:67 +#: view/theme/quattro/config.php:70 msgid "Center" msgstr "Centro" -#: view/theme/quattro/config.php:69 +#: view/theme/quattro/config.php:71 +msgid "Color scheme" +msgstr "Esquema de cores" + +#: view/theme/quattro/config.php:72 msgid "Posts font size" msgstr "Tamanho da fonte para publicações" -#: view/theme/quattro/config.php:70 +#: view/theme/quattro/config.php:73 msgid "Textareas font size" msgstr "Tamanho da fonte para campos texto" -#: view/theme/dispy/config.php:74 view/theme/diabook/config.php:152 -msgid "Set line-height for posts and comments" -msgstr "Escolha comprimento da linha para publicações e comentários" - -#: view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Configure o esquema de cores" - -#: view/theme/vier/theme.php:152 view/theme/vier/config.php:112 -#: view/theme/diabook/theme.php:391 view/theme/diabook/theme.php:626 -#: view/theme/diabook/config.php:160 -msgid "Community Profiles" -msgstr "Profiles Comunitários" - -#: view/theme/vier/theme.php:181 view/theme/vier/config.php:116 -#: view/theme/diabook/theme.php:412 view/theme/diabook/theme.php:630 -#: view/theme/diabook/config.php:164 -msgid "Last users" -msgstr "Últimos usuários" - -#: view/theme/vier/theme.php:199 view/theme/vier/config.php:115 -#: view/theme/diabook/theme.php:523 view/theme/diabook/theme.php:629 -#: view/theme/diabook/config.php:163 -msgid "Find Friends" -msgstr "Encontrar amigos" - -#: view/theme/vier/theme.php:200 view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "Diretório Local" - -#: view/theme/vier/theme.php:291 -msgid "Quick Start" -msgstr "" - -#: view/theme/vier/theme.php:373 view/theme/vier/config.php:114 -#: view/theme/diabook/theme.php:606 view/theme/diabook/theme.php:628 -#: view/theme/diabook/config.php:162 -msgid "Connect Services" -msgstr "Conectar serviços" - -#: view/theme/vier/config.php:64 +#: view/theme/vier/config.php:69 msgid "Comma separated list of helper forums" msgstr "" -#: view/theme/vier/config.php:110 +#: view/theme/vier/config.php:115 msgid "Set style" msgstr "escolha estilo" -#: view/theme/vier/config.php:111 view/theme/diabook/theme.php:130 -#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:624 -#: view/theme/diabook/config.php:158 +#: view/theme/vier/config.php:116 msgid "Community Pages" msgstr "Páginas da Comunidade" -#: view/theme/vier/config.php:113 view/theme/diabook/theme.php:599 -#: view/theme/diabook/theme.php:627 view/theme/diabook/config.php:161 +#: view/theme/vier/config.php:117 view/theme/vier/theme.php:149 +msgid "Community Profiles" +msgstr "Profiles Comunitários" + +#: view/theme/vier/config.php:118 msgid "Help or @NewHere ?" msgstr "Ajuda ou @NewHere ?" -#: view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "Seus contatos" +#: view/theme/vier/config.php:119 view/theme/vier/theme.php:390 +msgid "Connect Services" +msgstr "Conectar serviços" -#: view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "Suas fotos pessoais" +#: view/theme/vier/config.php:120 view/theme/vier/theme.php:197 +msgid "Find Friends" +msgstr "Encontrar amigos" -#: view/theme/diabook/theme.php:441 view/theme/diabook/theme.php:632 -#: view/theme/diabook/config.php:166 -msgid "Last likes" -msgstr "Últimas gostadas" +#: view/theme/vier/config.php:121 view/theme/vier/theme.php:179 +msgid "Last users" +msgstr "Últimos usuários" -#: view/theme/diabook/theme.php:486 view/theme/diabook/theme.php:631 -#: view/theme/diabook/config.php:165 -msgid "Last photos" -msgstr "Últimas fotos" +#: view/theme/vier/theme.php:198 +msgid "Local Directory" +msgstr "Diretório Local" -#: view/theme/diabook/theme.php:579 view/theme/diabook/theme.php:625 -#: view/theme/diabook/config.php:159 -msgid "Earth Layers" -msgstr "Camadas da Terra" +#: view/theme/vier/theme.php:290 +msgid "Quick Start" +msgstr "" -#: view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "Configure o zoom para Camadas da Terra" - -#: view/theme/diabook/theme.php:585 view/theme/diabook/config.php:156 -msgid "Set longitude (X) for Earth Layers" -msgstr "Configure longitude (X) para Camadas da Terra" - -#: view/theme/diabook/theme.php:586 view/theme/diabook/config.php:157 -msgid "Set latitude (Y) for Earth Layers" -msgstr "Configure latitude (Y) para Camadas da Terra" - -#: view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "Mostre/esconda caixas na coluna à direita:" - -#: view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "Escolha a resolução para a coluna do meio" - -#: view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Configure o esquema de cores" - -#: view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "Configure o zoom para Camadas da Terra" - -#: 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 "Variações" - -#: index.php:447 +#: index.php:433 msgid "toggle mobile" msgstr "habilita mobile" -#: boot.php:901 +#: boot.php:999 msgid "Delete this item?" msgstr "Excluir este item?" -#: boot.php:904 +#: boot.php:1001 msgid "show fewer" msgstr "exibir menos" -#: boot.php:1518 +#: boot.php:1729 #, php-format msgid "Update %s failed. See error logs." msgstr "Atualização %s falhou. Vide registro de erros (log)." -#: boot.php:1630 +#: boot.php:1843 msgid "Create a New Account" msgstr "Criar uma nova conta" -#: boot.php:1659 +#: boot.php:1871 msgid "Password: " msgstr "Senha: " -#: boot.php:1660 +#: boot.php:1872 msgid "Remember me" msgstr "Lembre-se de mim" -#: boot.php:1663 +#: boot.php:1875 msgid "Or login using OpenID: " msgstr "Ou login usando OpendID:" -#: boot.php:1669 +#: boot.php:1881 msgid "Forgot your password?" msgstr "Esqueceu a sua senha?" -#: boot.php:1672 +#: boot.php:1884 msgid "Website Terms of Service" msgstr "Termos de Serviço do Website" -#: boot.php:1673 +#: boot.php:1885 msgid "terms of service" msgstr "termos de serviço" -#: boot.php:1675 +#: boot.php:1887 msgid "Website Privacy Policy" msgstr "Política de Privacidade do Website" -#: boot.php:1676 +#: boot.php:1888 msgid "privacy policy" msgstr "política de privacidade" diff --git a/view/lang/pt-br/strings.php b/view/lang/pt-br/strings.php index 2dddd531af..0663e5bb3d 100644 --- a/view/lang/pt-br/strings.php +++ b/view/lang/pt-br/strings.php @@ -5,170 +5,105 @@ function string_plural_select_pt_br($n){ return ($n > 1);; }} ; -$a->strings["Miscellaneous"] = "Miscelânea"; -$a->strings["Birthday:"] = "Aniversário:"; -$a->strings["Age: "] = "Idade: "; -$a->strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-DD ou MM-DD"; -$a->strings["never"] = "nunca"; -$a->strings["less than a second ago"] = "menos de um segundo atrás"; -$a->strings["year"] = "ano"; -$a->strings["years"] = "anos"; -$a->strings["month"] = "mês"; -$a->strings["months"] = "meses"; -$a->strings["week"] = "semana"; -$a->strings["weeks"] = "semanas"; -$a->strings["day"] = "dia"; -$a->strings["days"] = "dias"; -$a->strings["hour"] = "hora"; -$a->strings["hours"] = "horas"; -$a->strings["minute"] = "minuto"; -$a->strings["minutes"] = "minutos"; -$a->strings["second"] = "segundo"; -$a->strings["seconds"] = "segundos"; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s atrás"; -$a->strings["%s's birthday"] = "aniversário de %s"; -$a->strings["Happy Birthday %s"] = "Feliz aniversário, %s"; -$a->strings["Add New Contact"] = "Adicionar Contato Novo"; -$a->strings["Enter address or web location"] = "Forneça endereço ou localização web"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Por exemplo: joao@exemplo.com, http://exemplo.com/maria"; -$a->strings["Connect"] = "Conectar"; -$a->strings["%d invitation available"] = array( - 0 => "%d convite disponível", - 1 => "%d convites disponíveis", -); -$a->strings["Find People"] = "Pesquisar por pessoas"; -$a->strings["Enter name or interest"] = "Fornecer nome ou interesse"; -$a->strings["Connect/Follow"] = "Conectar-se/acompanhar"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Examplos: Robert Morgenstein, Fishing"; -$a->strings["Find"] = "Pesquisar"; -$a->strings["Friend Suggestions"] = "Sugestões de amigos"; -$a->strings["Similar Interests"] = "Interesses Parecidos"; -$a->strings["Random Profile"] = "Perfil Randômico"; -$a->strings["Invite Friends"] = "Convidar amigos"; -$a->strings["Networks"] = "Redes"; -$a->strings["All Networks"] = "Todas as redes"; -$a->strings["Saved Folders"] = "Pastas salvas"; -$a->strings["Everything"] = "Tudo"; -$a->strings["Categories"] = "Categorias"; -$a->strings["%d contact in common"] = array( - 0 => "%d contato em comum", - 1 => "%d contatos em comum", -); -$a->strings["show more"] = "exibir mais"; -$a->strings["Friendica Notification"] = "Notificação Friendica"; -$a->strings["Thank You,"] = "Obrigado,"; -$a->strings["%s Administrator"] = "%s Administrador"; -$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Administrador"; -$a->strings["noreply"] = "naoresponda"; -$a->strings["%s "] = "%s "; -$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify] Nova mensagem recebida em %s"; -$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s lhe enviou uma mensagem privativa em %2\$s."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s lhe enviou %2\$s."; -$a->strings["a private message"] = "uma mensagem privada"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Favor visitar %s para ver e/ou responder às suas mensagens privadas."; -$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s comentou uma [url=%2\$s] %3\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s comentou na %4\$s de [url=%2\$s]%3\$s [/url]"; -$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s comentou [url=%2\$s]sua %3\$s[/url]"; -$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notify] Comentário na conversa #%1\$d por %2\$s"; -$a->strings["%s commented on an item/conversation you have been following."] = "%s comentou um item/conversa que você está seguindo."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Favor visitar %s para ver e/ou responder à conversa."; -$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s publicou no mural do seu perfil"; -$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s publicou no mural do seu perfil em %2\$s"; -$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s publicou para [url=%2\$s]seu mural[/url]"; -$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s etiquetou você"; -$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s etiquetou você em %2\$s"; -$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]etiquetou você[/url]."; -$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s compartilhado uma nova publicação"; -$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s compartilhou uma nova publicação em %2\$s"; -$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]compartilhou uma publicação[/url]."; -$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s cutucou você"; -$a->strings["%1\$s poked you at %2\$s"] = "%1\$s cutucou você em %2\$s"; -$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]cutucou você[/url]."; -$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notify] %s etiquetou sua publicação"; -$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s etiquetou sua publicação em %2\$s"; -$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s etiquetou [url=%2\$s]sua publicação[/url]"; -$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notify] Você recebeu uma apresentação"; -$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Você recebeu uma apresentação de '%1\$s' em %2\$s"; -$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Você recebeu [url=%1\$s]uma apresentação[/url] de %2\$s."; -$a->strings["You may visit their profile at %s"] = "Você pode visitar o perfil deles em %s"; -$a->strings["Please visit %s to approve or reject the introduction."] = "Favor visitar %s para aprovar ou rejeitar a apresentação."; -$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Notificação] Uma nova pessoa está compartilhando com você"; -$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s está compartilhando com você via %2\$s"; -$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Notificação] Você tem um novo seguidor"; -$a->strings["You have a new follower at %2\$s : %1\$s"] = "Você tem um novo seguidor em %2\$s : %1\$s"; -$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notify] Você recebeu uma sugestão de amigo"; -$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Você recebeu uma sugestão de amigo de '%1\$s' em %2\$s"; -$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Você recebeu [url=%1\$s]uma sugestão de amigo[/url] de %2\$s em %3\$s"; -$a->strings["Name:"] = "Nome:"; -$a->strings["Photo:"] = "Foto:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Favor visitar %s para aprovar ou rejeitar a sugestão."; -$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Notificação] Conexão aceita"; -$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' aceitou o seu pedido de conexão no %2\$s"; -$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s Foi aceita [url=%1\$s] a conexão solicitada[/url]."; -$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "Vocês agora são amigos mútuos e podem trocar atualizações de status, fotos e e-mails livremente."; -$a->strings["Please visit %s if you wish to make any changes to this relationship."] = ""; -$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' optou por aceitá-lo um \"fã\", o que restringe algumas formas de comunicação - como mensagens privadas e algumas interações de perfil. Se esta é uma página de celebridade ou de uma comunidade, essas configurações foram aplicadas automaticamente."; -$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = ""; -$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Por favor, visite %s se você desejar fazer quaisquer alterações a este relacionamento."; -$a->strings["[Friendica System:Notify] registration request"] = "[Friendica: Notificação do Sistema] solicitação de cadastro"; -$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Você recebeu um pedido de cadastro de '%1\$s' em %2\$s"; -$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Você recebeu uma [url=%1\$s]solicitação de cadastro[/url] de %2\$s."; -$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Nome completo:\t%1\$s\\nLocal do Site:\t%2\$s\\nNome de Login:\t%3\$s (%4\$s)"; -$a->strings["Please visit %s to approve or reject the request."] = "Por favor, visite %s para aprovar ou rejeitar a solicitação."; $a->strings["Forums"] = "Fóruns"; $a->strings["External link to forum"] = "Link externo para fórum"; -$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ H:i"; -$a->strings["Starts:"] = "Início:"; -$a->strings["Finishes:"] = "Término:"; -$a->strings["Location:"] = "Localização:"; -$a->strings["Sun"] = "Dom"; -$a->strings["Mon"] = "Seg"; -$a->strings["Tue"] = "Ter"; -$a->strings["Wed"] = "Qua"; -$a->strings["Thu"] = "Qui"; -$a->strings["Fri"] = "Sex"; -$a->strings["Sat"] = "Sáb"; -$a->strings["Sunday"] = "Domingo"; -$a->strings["Monday"] = "Segunda"; -$a->strings["Tuesday"] = "Terça"; -$a->strings["Wednesday"] = "Quarta"; -$a->strings["Thursday"] = "Quinta"; -$a->strings["Friday"] = "Sexta"; -$a->strings["Saturday"] = "Sábado"; -$a->strings["Jan"] = "Jan"; -$a->strings["Feb"] = "Fev"; -$a->strings["Mar"] = "Mar"; -$a->strings["Apr"] = "Abr"; -$a->strings["May"] = "Maio"; -$a->strings["Jun"] = "Jun"; -$a->strings["Jul"] = "Jul"; -$a->strings["Aug"] = "Ago"; -$a->strings["Sept"] = "Set"; -$a->strings["Oct"] = "Out"; -$a->strings["Nov"] = "Nov"; -$a->strings["Dec"] = "Dez"; -$a->strings["January"] = "Janeiro"; -$a->strings["February"] = "Fevereiro"; -$a->strings["March"] = "Março"; -$a->strings["April"] = "Abril"; -$a->strings["June"] = "Junho"; -$a->strings["July"] = "Julho"; -$a->strings["August"] = "Agosto"; -$a->strings["September"] = "Setembro"; -$a->strings["October"] = "Outubro"; -$a->strings["November"] = "Novembro"; -$a->strings["December"] = "Dezembro"; -$a->strings["today"] = "hoje"; -$a->strings["l, F j"] = "l, F j"; -$a->strings["Edit event"] = "Editar o evento"; -$a->strings["link to source"] = "exibir a origem"; -$a->strings["Export"] = "Exportar"; -$a->strings["Export calendar as ical"] = "Exportar a agenda como iCal"; -$a->strings["Export calendar as csv"] = "Exportar a agenda como CSV"; -$a->strings["Welcome "] = "Bem-vindo(a) "; -$a->strings["Please upload a profile photo."] = "Por favor, envie uma foto para o perfil."; -$a->strings["Welcome back "] = "Bem-vindo(a) de volta "; -$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."] = "O token de segurança do formulário não estava correto. Isso provavelmente aconteceu porque o formulário ficou aberto por muito tempo (>3 horas) antes da sua submissão."; +$a->strings["show more"] = "exibir mais"; +$a->strings["System"] = "Sistema"; +$a->strings["Network"] = "Rede"; +$a->strings["Personal"] = "Pessoal"; +$a->strings["Home"] = "Pessoal"; +$a->strings["Introductions"] = "Apresentações"; +$a->strings["%s commented on %s's post"] = "%s comentou a publicação de %s"; +$a->strings["%s created a new post"] = "%s criou uma nova publicação"; +$a->strings["%s liked %s's post"] = "%s gostou da publicação de %s"; +$a->strings["%s disliked %s's post"] = "%s desgostou da publicação de %s"; +$a->strings["%s is attending %s's event"] = "%s comparecerá ao evento de %s"; +$a->strings["%s is not attending %s's event"] = "%s não comparecerá ao evento de %s"; +$a->strings["%s may attend %s's event"] = "%s talvez compareça ao evento de %s"; +$a->strings["%s is now friends with %s"] = "%s agora é amigo de %s"; +$a->strings["Friend Suggestion"] = "Sugestão de amizade"; +$a->strings["Friend/Connect Request"] = "Solicitação de amizade/conexão"; +$a->strings["New Follower"] = "Novo acompanhante"; +$a->strings["Wall Photos"] = "Fotos do mural"; +$a->strings["(no subject)"] = "(sem assunto)"; +$a->strings["noreply"] = "naoresponda"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gosta de %3\$s de %2\$s"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s não gosta de %3\$s de %2\$s"; +$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s vai a %3\$s de %2\$s"; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s não vai a %3\$s de %2\$s"; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s está pensando em ir a %3\$s de %2\$s"; +$a->strings["photo"] = "foto"; +$a->strings["status"] = "status"; +$a->strings["event"] = "evento"; +$a->strings["[no subject]"] = "[sem assunto]"; +$a->strings["Nothing new here"] = "Nada de novo aqui"; +$a->strings["Clear notifications"] = "Descartar notificações"; +$a->strings["@name, !forum, #tags, content"] = ""; +$a->strings["Logout"] = "Sair"; +$a->strings["End this session"] = "Terminar esta sessão"; +$a->strings["Status"] = "Status"; +$a->strings["Your posts and conversations"] = "Suas publicações e conversas"; +$a->strings["Profile"] = "Perfil "; +$a->strings["Your profile page"] = "Sua página de perfil"; +$a->strings["Photos"] = "Fotos"; +$a->strings["Your photos"] = "Suas fotos"; +$a->strings["Videos"] = "Vídeos"; +$a->strings["Your videos"] = "Seus vídeos"; +$a->strings["Events"] = "Eventos"; +$a->strings["Your events"] = "Seus eventos"; +$a->strings["Personal notes"] = "Suas anotações pessoais"; +$a->strings["Your personal notes"] = "Suas anotações pessoais"; +$a->strings["Login"] = "Entrar"; +$a->strings["Sign in"] = "Entrar"; +$a->strings["Home Page"] = "Página pessoal"; +$a->strings["Register"] = "Registrar"; +$a->strings["Create an account"] = "Criar uma conta"; +$a->strings["Help"] = "Ajuda"; +$a->strings["Help and documentation"] = "Ajuda e documentação"; +$a->strings["Apps"] = "Aplicativos"; +$a->strings["Addon applications, utilities, games"] = "Complementos, utilitários, jogos"; +$a->strings["Search"] = "Pesquisar"; +$a->strings["Search site content"] = "Pesquisar conteúdo no site"; +$a->strings["Full Text"] = ""; +$a->strings["Tags"] = ""; +$a->strings["Contacts"] = "Contatos"; +$a->strings["Community"] = "Comunidade"; +$a->strings["Conversations on this site"] = "Conversas neste site"; +$a->strings["Conversations on the network"] = "Conversas na rede"; +$a->strings["Events and Calendar"] = "Eventos e Agenda"; +$a->strings["Directory"] = "Diretório"; +$a->strings["People directory"] = "Diretório de pessoas"; +$a->strings["Information"] = "Informação"; +$a->strings["Information about this friendica instance"] = "Informação sobre esta instância do friendica"; +$a->strings["Conversations from your friends"] = "Conversas dos seus amigos"; +$a->strings["Network Reset"] = "Reiniciar Rede"; +$a->strings["Load Network page with no filters"] = "Carregar página Rede sem filtros"; +$a->strings["Friend Requests"] = "Requisições de Amizade"; +$a->strings["Notifications"] = "Notificações"; +$a->strings["See all notifications"] = "Ver todas notificações"; +$a->strings["Mark as seen"] = "Marcar como visto"; +$a->strings["Mark all system notifications seen"] = "Marcar todas as notificações de sistema como vistas"; +$a->strings["Messages"] = "Mensagens"; +$a->strings["Private mail"] = "Mensagem privada"; +$a->strings["Inbox"] = "Recebidas"; +$a->strings["Outbox"] = "Enviadas"; +$a->strings["New Message"] = "Nova mensagem"; +$a->strings["Manage"] = "Gerenciar"; +$a->strings["Manage other pages"] = "Gerenciar outras páginas"; +$a->strings["Delegations"] = "Delegações"; +$a->strings["Delegate Page Management"] = "Delegar Administração de Página"; +$a->strings["Settings"] = "Configurações"; +$a->strings["Account settings"] = "Configurações da conta"; +$a->strings["Profiles"] = "Perfis"; +$a->strings["Manage/Edit Profiles"] = "Administrar/Editar Perfis"; +$a->strings["Manage/edit friends and contacts"] = "Gerenciar/editar amigos e contatos"; +$a->strings["Admin"] = "Admin"; +$a->strings["Site setup and configuration"] = "Configurações do site"; +$a->strings["Navigation"] = "Navegação"; +$a->strings["Site map"] = "Mapa do Site"; +$a->strings["Click here to upgrade."] = "Clique aqui para atualização (upgrade)."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Essa ação excede o limite definido para o seu plano de assinatura."; +$a->strings["This action is not available under your subscription plan."] = "Essa ação não está disponível em seu plano de assinatura."; $a->strings["Male"] = "Masculino"; $a->strings["Female"] = "Feminino"; $a->strings["Currently Male"] = "Atualmente masculino"; @@ -230,170 +165,60 @@ $a->strings["Uncertain"] = "Incerto(a)"; $a->strings["It's complicated"] = "É complicado"; $a->strings["Don't care"] = "Não importa"; $a->strings["Ask me"] = "Pergunte-me"; -$a->strings["Embedded content"] = "Conteúdo incorporado"; -$a->strings["Embedding disabled"] = "A incorporação está desabilitada"; -$a->strings["Image/photo"] = "Imagem/foto"; -$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; -$a->strings["$1 wrote:"] = "$1 escreveu:"; -$a->strings["Encrypted content"] = "Conteúdo criptografado"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'"; +$a->strings["Welcome "] = "Bem-vindo(a) "; +$a->strings["Please upload a profile photo."] = "Por favor, envie uma foto para o perfil."; +$a->strings["Welcome back "] = "Bem-vindo(a) de volta "; +$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."] = "O token de segurança do formulário não estava correto. Isso provavelmente aconteceu porque o formulário ficou aberto por muito tempo (>3 horas) antes da sua submissão."; +$a->strings["Error decoding account file"] = "Erro ao decodificar arquivo de conta"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Erro! Nenhum arquivo de dados de versão! Esse não é um arquivo de conta do Friendica?"; +$a->strings["Error! Cannot check nickname"] = "Erro! Não consigo conferir o apelido (nickname)"; +$a->strings["User '%s' already exists on this server!"] = "User '%s' já existe nesse servidor!"; +$a->strings["User creation error"] = "Erro na criação do usuário"; +$a->strings["User profile creation error"] = "Erro na criação do perfil do Usuário"; +$a->strings["%d contact not imported"] = array( + 0 => "%d contato não foi importado", + 1 => "%d contatos não foram importados", +); +$a->strings["Done. You can now login with your username and password"] = "Feito. Você agora pode entrar com seu nome de usuário e senha."; +$a->strings["View Profile"] = "Ver Perfil"; +$a->strings["Connect/Follow"] = "Conectar-se/acompanhar"; +$a->strings["View Status"] = "Ver Status"; +$a->strings["View Photos"] = "Ver Fotos"; +$a->strings["Network Posts"] = "Publicações da Rede"; +$a->strings["View Contact"] = ""; +$a->strings["Drop Contact"] = "Excluir o contato"; +$a->strings["Send PM"] = "Enviar MP"; +$a->strings["Poke"] = "Cutucar"; +$a->strings["Organisation"] = ""; +$a->strings["News"] = ""; +$a->strings["Forum"] = "Fórum"; +$a->strings["Post to Email"] = "Enviar por e-mail"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Conectores desabilitados, desde \"%s\" está habilitado."; +$a->strings["Hide your profile details from unknown viewers?"] = "Ocultar os detalhes do seu perfil para pessoas desconhecidas?"; +$a->strings["Visible to everybody"] = "Visível para todos"; +$a->strings["show"] = "exibir"; +$a->strings["don't show"] = "não exibir"; +$a->strings["CC: email addresses"] = "CC: endereço de e-mail"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Por exemplo: joao@exemplo.com, maria@exemplo.com"; +$a->strings["Permissions"] = "Permissões"; +$a->strings["Close"] = "Fechar"; +$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "O limite diário de postagem de %d mensagens foi atingido. O post foi rejeitado."; +$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "O limite de postagem semanal de %d mensagens foi atingido. O post foi rejeitado."; +$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "O limite de postagem mensal de %d mensagens foi atingido. O post foi rejeitado."; $a->strings["Logged out."] = "Saiu."; $a->strings["Login failed."] = "Não foi possível autenticar."; $a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Foi encontrado um erro ao tentar conectar usando o OpenID que você forneceu. Por favor, verifique se sua ID está escrita corretamente."; $a->strings["The error message was:"] = "A mensagem de erro foi:"; -$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."] = "Um grupo com esse nome, anteriormente excluído, foi reativado. Permissões de itens já existentes poderão ser aplicadas a esse grupo e qualquer futuros membros. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente."; -$a->strings["Default privacy group for new contacts"] = "Grupo de privacidade padrão para novos contatos"; -$a->strings["Everybody"] = "Todos"; -$a->strings["edit"] = "editar"; -$a->strings["Groups"] = "Grupos"; -$a->strings["Edit groups"] = "Editar grupos"; -$a->strings["Edit group"] = "Editar grupo"; -$a->strings["Create a new group"] = "Criar um novo grupo"; -$a->strings["Group Name: "] = "Nome do grupo: "; -$a->strings["Contacts not in any group"] = "Contatos não estão dentro de nenhum grupo"; -$a->strings["add"] = "adicionar"; -$a->strings["Wall Photos"] = "Fotos do mural"; -$a->strings["(no subject)"] = "(sem assunto)"; -$a->strings["Passwords do not match. Password unchanged."] = "As senhas não correspondem. A senha não foi modificada."; -$a->strings["An invitation is required."] = "É necessário um convite."; -$a->strings["Invitation could not be verified."] = "Não foi possível verificar o convite."; -$a->strings["Invalid OpenID url"] = "A URL do OpenID é inválida"; -$a->strings["Please enter the required information."] = "Por favor, forneça a informação solicitada."; -$a->strings["Please use a shorter name."] = "Por favor, use um nome mais curto."; -$a->strings["Name too short."] = "O nome é muito curto."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Isso não parece ser o seu nome completo (Nome Sobrenome)."; -$a->strings["Your email domain is not among those allowed on this site."] = "O domínio do seu e-mail não está entre os permitidos neste site."; -$a->strings["Not a valid email address."] = "Não é um endereço de e-mail válido."; -$a->strings["Cannot use that email."] = "Não é possível usar esse e-mail."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = ""; -$a->strings["Nickname is already registered. Please choose another."] = "Esta identificação já foi registrada. Por favor, escolha outra."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Essa identificação já foi registrada e não pode ser reutilizada. Por favor, escolha outra."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRO GRAVE: Não foi possível gerar as chaves de segurança."; -$a->strings["An error occurred during registration. Please try again."] = "Ocorreu um erro durante o registro. Por favor, tente novamente."; -$a->strings["default"] = "padrão"; -$a->strings["An error occurred creating your default profile. Please try again."] = "Ocorreu um erro na criação do seu perfil padrão. Por favor, tente novamente."; -$a->strings["Profile Photos"] = "Fotos do perfil"; -$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\tCaro %1\$s,\n\t\t\tObrigado por se cadastrar em %2\$s. Sua conta foi criada.\n\t"; -$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\n\t\tOs dados de login são os seguintes:\n\t\t\tLocal do Site:\t%3\$s\n\t\t\tNome de Login:\t%1\$s\n\t\t\tSenha:\t%5\$s\n\n\t\tVocê pode alterar sua senha na página de \"Configurações\" da sua conta após fazer o login\n\n\t\tPor favor, dedique alguns minutos na página para rever as outras configurações da sua conta.\n\n\t\tTalvez você também queira incluir algumas informações básicas adicionais ao seu perfil padrão\n\t\t(na página de \"Perfis\") para que outras pessoas possam encontrá-lo com facilidade.\n\n\t\tRecomendamos que inclua seu nome completo, adicione uma foto do perfil,\n\t\tadicionar algumas \"palavras-chave\" (muito útil para fazer novas amizades) - e\n\t\ttalvez em que pais você mora; se você não quiser ser mais específico \n\t\tdo que isso.\n\n\t\tNós respeitamos plenamente seu direito à privacidade, e nenhum desses itens são necessários.\n\t\tSe você é novo por aqui e não conheço ninguém, eles podem ajuda-lo a fazer novas e interessantes amizades.\n\n\n\t\tObrigado e bem-vindo a %2\$s."; -$a->strings["Registration details for %s"] = "Detalhes do registro de %s"; -$a->strings["General Features"] = "Funcionalidades Gerais"; -$a->strings["Multiple Profiles"] = "Perfis Múltiplos"; -$a->strings["Ability to create multiple profiles"] = "Capacidade de criar perfis múltiplos"; -$a->strings["Photo Location"] = ""; -$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = ""; -$a->strings["Export Public Calendar"] = "Exportar a agenda pública"; -$a->strings["Ability for visitors to download the public calendar"] = "Visitantes podem baixar a agenda pública"; -$a->strings["Post Composition Features"] = "Funcionalidades de Composição de Publicações"; -$a->strings["Richtext Editor"] = "Editor Richtext"; -$a->strings["Enable richtext editor"] = "Habilite editor richtext"; -$a->strings["Post Preview"] = "Pré-visualização da Publicação"; -$a->strings["Allow previewing posts and comments before publishing them"] = "Permite pré-visualizar publicações e comentários antes de publicá-los"; -$a->strings["Auto-mention Forums"] = "Auto-menção Fóruns"; -$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Adiciona/Remove menções quando uma página de fórum é selecionada/deselecionada na janela ACL"; -$a->strings["Network Sidebar Widgets"] = "Widgets da Barra Lateral da Rede"; -$a->strings["Search by Date"] = "Buscar por Data"; -$a->strings["Ability to select posts by date ranges"] = "Capacidade de selecionar publicações por intervalos de data"; -$a->strings["List Forums"] = ""; -$a->strings["Enable widget to display the forums your are connected with"] = ""; -$a->strings["Group Filter"] = "Filtrar Grupo"; -$a->strings["Enable widget to display Network posts only from selected group"] = "Habilita widget para mostrar publicações da Rede somente de grupos selecionados"; -$a->strings["Network Filter"] = "Filtrar Rede"; -$a->strings["Enable widget to display Network posts only from selected network"] = "Habilita widget para mostrar publicações da Rede de redes selecionadas"; -$a->strings["Saved Searches"] = "Pesquisas salvas"; -$a->strings["Save search terms for re-use"] = "Guarde as palavras-chaves para reuso"; -$a->strings["Network Tabs"] = "Abas da Rede"; -$a->strings["Network Personal Tab"] = "Aba Pessoal da Rede"; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar aba para mostrar apenas as publicações da Rede que você tenha interagido"; -$a->strings["Network New Tab"] = "Aba Nova da Rede"; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Habilite aba para mostra apenas publicações da Rede novas (das últimas 12 horas)"; -$a->strings["Network Shared Links Tab"] = "Aba de Links Compartilhados da Rede"; -$a->strings["Enable tab to display only Network posts with links in them"] = "Habilite aba para mostrar somente publicações da Rede que contenham links"; -$a->strings["Post/Comment Tools"] = "Ferramentas de Publicação/Comentário"; -$a->strings["Multiple Deletion"] = "Deleção Multipla"; -$a->strings["Select and delete multiple posts/comments at once"] = "Selecione e delete múltiplas publicações/comentário imediatamente"; -$a->strings["Edit Sent Posts"] = "Editar Publicações Enviadas"; -$a->strings["Edit and correct posts and comments after sending"] = "Editar e corrigir publicações e comentários após envio"; -$a->strings["Tagging"] = "Etiquetagem"; -$a->strings["Ability to tag existing posts"] = "Capacidade de colocar etiquetas em publicações existentes"; -$a->strings["Post Categories"] = "Categorias de Publicações"; -$a->strings["Add categories to your posts"] = "Adicione Categorias ás Publicações"; -$a->strings["Ability to file posts under folders"] = "Capacidade de arquivar publicações em pastas"; -$a->strings["Dislike Posts"] = "Desgostar de publicações"; -$a->strings["Ability to dislike posts/comments"] = "Capacidade de desgostar de publicações/comentários"; -$a->strings["Star Posts"] = "Destacar publicações"; -$a->strings["Ability to mark special posts with a star indicator"] = "Capacidade de marcar publicações especiais com uma estrela indicadora"; -$a->strings["Mute Post Notifications"] = "Silenciar Notificações de Postagem"; -$a->strings["Ability to mute notifications for a thread"] = "Habilitar notificação silenciosa para a tarefa"; -$a->strings["Advanced Profile Settings"] = "Configurações de perfil avançadas"; -$a->strings["Show visitors public community forums at the Advanced Profile Page"] = ""; -$a->strings["Nothing new here"] = "Nada de novo aqui"; -$a->strings["Clear notifications"] = "Descartar notificações"; -$a->strings["@name, !forum, #tags, content"] = ""; -$a->strings["Logout"] = "Sair"; -$a->strings["End this session"] = "Terminar esta sessão"; -$a->strings["Status"] = "Status"; -$a->strings["Your posts and conversations"] = "Suas publicações e conversas"; -$a->strings["Profile"] = "Perfil "; -$a->strings["Your profile page"] = "Sua página de perfil"; -$a->strings["Photos"] = "Fotos"; -$a->strings["Your photos"] = "Suas fotos"; -$a->strings["Videos"] = "Vídeos"; -$a->strings["Your videos"] = "Seus vídeos"; -$a->strings["Events"] = "Eventos"; -$a->strings["Your events"] = "Seus eventos"; -$a->strings["Personal notes"] = "Suas anotações pessoais"; -$a->strings["Your personal notes"] = "Suas anotações pessoais"; -$a->strings["Login"] = "Entrar"; -$a->strings["Sign in"] = "Entrar"; -$a->strings["Home"] = "Pessoal"; -$a->strings["Home Page"] = "Página pessoal"; -$a->strings["Register"] = "Registrar"; -$a->strings["Create an account"] = "Criar uma conta"; -$a->strings["Help"] = "Ajuda"; -$a->strings["Help and documentation"] = "Ajuda e documentação"; -$a->strings["Apps"] = "Aplicativos"; -$a->strings["Addon applications, utilities, games"] = "Complementos, utilitários, jogos"; -$a->strings["Search"] = "Pesquisar"; -$a->strings["Search site content"] = "Pesquisar conteúdo no site"; -$a->strings["Full Text"] = ""; -$a->strings["Tags"] = ""; -$a->strings["Contacts"] = "Contatos"; -$a->strings["Community"] = "Comunidade"; -$a->strings["Conversations on this site"] = "Conversas neste site"; -$a->strings["Conversations on the network"] = "Conversas na rede"; -$a->strings["Events and Calendar"] = "Eventos e Agenda"; -$a->strings["Directory"] = "Diretório"; -$a->strings["People directory"] = "Diretório de pessoas"; -$a->strings["Information"] = "Informação"; -$a->strings["Information about this friendica instance"] = "Informação sobre esta instância do friendica"; -$a->strings["Network"] = "Rede"; -$a->strings["Conversations from your friends"] = "Conversas dos seus amigos"; -$a->strings["Network Reset"] = "Reiniciar Rede"; -$a->strings["Load Network page with no filters"] = "Carregar página Rede sem filtros"; -$a->strings["Introductions"] = "Apresentações"; -$a->strings["Friend Requests"] = "Requisições de Amizade"; -$a->strings["Notifications"] = "Notificações"; -$a->strings["See all notifications"] = "Ver todas notificações"; -$a->strings["Mark as seen"] = "Marcar como visto"; -$a->strings["Mark all system notifications seen"] = "Marcar todas as notificações de sistema como vistas"; -$a->strings["Messages"] = "Mensagens"; -$a->strings["Private mail"] = "Mensagem privada"; -$a->strings["Inbox"] = "Recebidas"; -$a->strings["Outbox"] = "Enviadas"; -$a->strings["New Message"] = "Nova mensagem"; -$a->strings["Manage"] = "Gerenciar"; -$a->strings["Manage other pages"] = "Gerenciar outras páginas"; -$a->strings["Delegations"] = "Delegações"; -$a->strings["Delegate Page Management"] = "Delegar Administração de Página"; -$a->strings["Settings"] = "Configurações"; -$a->strings["Account settings"] = "Configurações da conta"; -$a->strings["Profiles"] = "Perfis"; -$a->strings["Manage/Edit Profiles"] = "Administrar/Editar Perfis"; -$a->strings["Manage/edit friends and contacts"] = "Gerenciar/editar amigos e contatos"; -$a->strings["Admin"] = "Admin"; -$a->strings["Site setup and configuration"] = "Configurações do site"; -$a->strings["Navigation"] = "Navegação"; -$a->strings["Site map"] = "Mapa do Site"; +$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ H:i"; +$a->strings["Starts:"] = "Início:"; +$a->strings["Finishes:"] = "Término:"; +$a->strings["Location:"] = "Localização:"; +$a->strings["Image/photo"] = "Imagem/foto"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["$1 wrote:"] = "$1 escreveu:"; +$a->strings["Encrypted content"] = "Conteúdo criptografado"; +$a->strings["Invalid source protocol"] = ""; +$a->strings["Invalid link protocol"] = ""; $a->strings["Unknown | Not categorised"] = "Desconhecido | Não categorizado"; $a->strings["Block immediately"] = "Bloquear imediatamente"; $a->strings["Shady, spammer, self-marketer"] = "Dissimulado, spammer, propagandista"; @@ -420,14 +245,34 @@ $a->strings["Google+"] = "Google+"; $a->strings["pump.io"] = "pump.io"; $a->strings["Twitter"] = "Twitter"; $a->strings["Diaspora Connector"] = "Conector do Diáspora"; -$a->strings["GNU Social"] = "GNU Social"; +$a->strings["GNU Social Connector"] = ""; +$a->strings["pnut"] = ""; $a->strings["App.net"] = "App.net"; -$a->strings["Hubzilla/Redmatrix"] = "Hubzilla/Redmatrix"; -$a->strings["event"] = "evento"; -$a->strings["status"] = "status"; -$a->strings["photo"] = "foto"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gosta de %3\$s de %2\$s"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s não gosta de %3\$s de %2\$s"; +$a->strings["Add New Contact"] = "Adicionar Contato Novo"; +$a->strings["Enter address or web location"] = "Forneça endereço ou localização web"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Por exemplo: joao@exemplo.com, http://exemplo.com/maria"; +$a->strings["Connect"] = "Conectar"; +$a->strings["%d invitation available"] = array( + 0 => "%d convite disponível", + 1 => "%d convites disponíveis", +); +$a->strings["Find People"] = "Pesquisar por pessoas"; +$a->strings["Enter name or interest"] = "Fornecer nome ou interesse"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Examplos: Robert Morgenstein, Fishing"; +$a->strings["Find"] = "Pesquisar"; +$a->strings["Friend Suggestions"] = "Sugestões de amigos"; +$a->strings["Similar Interests"] = "Interesses Parecidos"; +$a->strings["Random Profile"] = "Perfil Randômico"; +$a->strings["Invite Friends"] = "Convidar amigos"; +$a->strings["Networks"] = "Redes"; +$a->strings["All Networks"] = "Todas as redes"; +$a->strings["Saved Folders"] = "Pastas salvas"; +$a->strings["Everything"] = "Tudo"; +$a->strings["Categories"] = "Categorias"; +$a->strings["%d contact in common"] = array( + 0 => "%d contato em comum", + 1 => "%d contatos em comum", +); $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"] = ""; @@ -456,13 +301,6 @@ $a->strings["Please wait"] = "Por favor, espere"; $a->strings["remove"] = "remover"; $a->strings["Delete Selected Items"] = "Excluir os itens selecionados"; $a->strings["Follow Thread"] = "Seguir o Thread"; -$a->strings["View Status"] = "Ver Status"; -$a->strings["View Profile"] = "Ver Perfil"; -$a->strings["View Photos"] = "Ver Fotos"; -$a->strings["Network Posts"] = "Publicações da Rede"; -$a->strings["Edit Contact"] = "Editar Contato"; -$a->strings["Send PM"] = "Enviar MP"; -$a->strings["Poke"] = "Cutucar"; $a->strings["%s likes this."] = "%s gostou disso."; $a->strings["%s doesn't like this."] = "%s não gostou disso."; $a->strings["%s attends."] = ""; @@ -478,7 +316,7 @@ $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["%2\$d people attend maybe"] = ""; $a->strings["%s anttend maybe."] = ""; $a->strings["Visible to everybody"] = "Visível para todos"; $a->strings["Please enter a link URL:"] = "Por favor, digite uma URL:"; @@ -528,30 +366,186 @@ $a->strings["Not Attending"] = array( 0 => "Não vai", 1 => "Não vão", ); -$a->strings["view full size"] = "ver na tela inteira"; -$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\tOs desenvolvedores de Friendica lançaram recentemente uma atualização %s,\n\t\t\tmas quando tentei instalá-la, algo deu terrivelmente errado.\n\t\t\tIsso precisa ser corrigido em breve e eu não posso fazer isso sozinho. Por favor, contate um\n\t\t\tdesenvolvedor da Friendica se você não pode me ajudar sozinho. Meu banco de dados pode ser inválido."; -$a->strings["The error message is\n[pre]%s[/pre]"] = "A mensagem de erro é\n[pre]%s[/pre]"; -$a->strings["Errors encountered creating database tables."] = "Foram encontrados erros durante a criação das tabelas do banco de dados."; -$a->strings["Errors encountered performing database changes."] = "Erros encontrados realizando mudanças no banco de dados."; -$a->strings["stopped following"] = "parou de acompanhar"; -$a->strings["Drop Contact"] = "Excluir o contato"; -$a->strings["Post to Email"] = "Enviar por e-mail"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Conectores desabilitados, desde \"%s\" está habilitado."; -$a->strings["Hide your profile details from unknown viewers?"] = "Ocultar os detalhes do seu perfil para pessoas desconhecidas?"; -$a->strings["Visible to everybody"] = "Visível para todos"; -$a->strings["show"] = "exibir"; -$a->strings["don't show"] = "não exibir"; -$a->strings["CC: email addresses"] = "CC: endereço de e-mail"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Por exemplo: joao@exemplo.com, maria@exemplo.com"; -$a->strings["Permissions"] = "Permissões"; -$a->strings["Close"] = "Fechar"; -$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "O limite diário de postagem de %d mensagens foi atingido. O post foi rejeitado."; -$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "O limite de postagem semanal de %d mensagens foi atingido. O post foi rejeitado."; -$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "O limite de postagem mensal de %d mensagens foi atingido. O post foi rejeitado."; -$a->strings["%s\\'s birthday"] = "Aniversário de %s\__DQ_"; -$a->strings["Sharing notification from Diaspora network"] = "Notificação de compartilhamento da rede Diaspora"; -$a->strings["Attachments:"] = "Anexos:"; +$a->strings["Miscellaneous"] = "Miscelânea"; +$a->strings["Birthday:"] = "Aniversário:"; +$a->strings["Age: "] = "Idade: "; +$a->strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-DD ou MM-DD"; +$a->strings["never"] = "nunca"; +$a->strings["less than a second ago"] = "menos de um segundo atrás"; +$a->strings["year"] = "ano"; +$a->strings["years"] = "anos"; +$a->strings["month"] = "mês"; +$a->strings["months"] = "meses"; +$a->strings["week"] = "semana"; +$a->strings["weeks"] = "semanas"; +$a->strings["day"] = "dia"; +$a->strings["days"] = "dias"; +$a->strings["hour"] = "hora"; +$a->strings["hours"] = "horas"; +$a->strings["minute"] = "minuto"; +$a->strings["minutes"] = "minutos"; +$a->strings["second"] = "segundo"; +$a->strings["seconds"] = "segundos"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s atrás"; +$a->strings["%s's birthday"] = "aniversário de %s"; +$a->strings["Happy Birthday %s"] = "Feliz aniversário, %s"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'"; +$a->strings["Friendica Notification"] = "Notificação Friendica"; +$a->strings["Thank You,"] = "Obrigado,"; +$a->strings["%s Administrator"] = "%s Administrador"; +$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Administrador"; +$a->strings["%s "] = "%s "; +$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify] Nova mensagem recebida em %s"; +$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s lhe enviou uma mensagem privativa em %2\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s lhe enviou %2\$s."; +$a->strings["a private message"] = "uma mensagem privada"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Favor visitar %s para ver e/ou responder às suas mensagens privadas."; +$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s comentou uma [url=%2\$s] %3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s comentou na %4\$s de [url=%2\$s]%3\$s [/url]"; +$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s comentou [url=%2\$s]sua %3\$s[/url]"; +$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notify] Comentário na conversa #%1\$d por %2\$s"; +$a->strings["%s commented on an item/conversation you have been following."] = "%s comentou um item/conversa que você está seguindo."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Favor visitar %s para ver e/ou responder à conversa."; +$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s publicou no mural do seu perfil"; +$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s publicou no mural do seu perfil em %2\$s"; +$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s publicou para [url=%2\$s]seu mural[/url]"; +$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s etiquetou você"; +$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s etiquetou você em %2\$s"; +$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]etiquetou você[/url]."; +$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s compartilhado uma nova publicação"; +$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s compartilhou uma nova publicação em %2\$s"; +$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]compartilhou uma publicação[/url]."; +$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s cutucou você"; +$a->strings["%1\$s poked you at %2\$s"] = "%1\$s cutucou você em %2\$s"; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]cutucou você[/url]."; +$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notify] %s etiquetou sua publicação"; +$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s etiquetou sua publicação em %2\$s"; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s etiquetou [url=%2\$s]sua publicação[/url]"; +$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notify] Você recebeu uma apresentação"; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Você recebeu uma apresentação de '%1\$s' em %2\$s"; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Você recebeu [url=%1\$s]uma apresentação[/url] de %2\$s."; +$a->strings["You may visit their profile at %s"] = "Você pode visitar o perfil deles em %s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "Favor visitar %s para aprovar ou rejeitar a apresentação."; +$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Notificação] Uma nova pessoa está compartilhando com você"; +$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s está compartilhando com você via %2\$s"; +$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Notificação] Você tem um novo seguidor"; +$a->strings["You have a new follower at %2\$s : %1\$s"] = "Você tem um novo seguidor em %2\$s : %1\$s"; +$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notify] Você recebeu uma sugestão de amigo"; +$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Você recebeu uma sugestão de amigo de '%1\$s' em %2\$s"; +$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Você recebeu [url=%1\$s]uma sugestão de amigo[/url] de %2\$s em %3\$s"; +$a->strings["Name:"] = "Nome:"; +$a->strings["Photo:"] = "Foto:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Favor visitar %s para aprovar ou rejeitar a sugestão."; +$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Notificação] Conexão aceita"; +$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' aceitou o seu pedido de conexão no %2\$s"; +$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s Foi aceita [url=%1\$s] a conexão solicitada[/url]."; +$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "Vocês agora são amigos mútuos e podem trocar atualizações de status, fotos e e-mails livremente."; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = ""; +$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' optou por aceitá-lo um \"fã\", o que restringe algumas formas de comunicação - como mensagens privadas e algumas interações de perfil. Se esta é uma página de celebridade ou de uma comunidade, essas configurações foram aplicadas automaticamente."; +$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = ""; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Por favor, visite %s se você desejar fazer quaisquer alterações a este relacionamento."; +$a->strings["[Friendica System:Notify] registration request"] = "[Friendica: Notificação do Sistema] solicitação de cadastro"; +$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Você recebeu um pedido de cadastro de '%1\$s' em %2\$s"; +$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Você recebeu uma [url=%1\$s]solicitação de cadastro[/url] de %2\$s."; +$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Nome completo:\t%1\$s\\nLocal do Site:\t%2\$s\\nNome de Login:\t%3\$s (%4\$s)"; +$a->strings["Please visit %s to approve or reject the request."] = "Por favor, visite %s para aprovar ou rejeitar a solicitação."; +$a->strings["all-day"] = ""; +$a->strings["Sun"] = "Dom"; +$a->strings["Mon"] = "Seg"; +$a->strings["Tue"] = "Ter"; +$a->strings["Wed"] = "Qua"; +$a->strings["Thu"] = "Qui"; +$a->strings["Fri"] = "Sex"; +$a->strings["Sat"] = "Sáb"; +$a->strings["Sunday"] = "Domingo"; +$a->strings["Monday"] = "Segunda"; +$a->strings["Tuesday"] = "Terça"; +$a->strings["Wednesday"] = "Quarta"; +$a->strings["Thursday"] = "Quinta"; +$a->strings["Friday"] = "Sexta"; +$a->strings["Saturday"] = "Sábado"; +$a->strings["Jan"] = "Jan"; +$a->strings["Feb"] = "Fev"; +$a->strings["Mar"] = "Mar"; +$a->strings["Apr"] = "Abr"; +$a->strings["May"] = "Maio"; +$a->strings["Jun"] = "Jun"; +$a->strings["Jul"] = "Jul"; +$a->strings["Aug"] = "Ago"; +$a->strings["Sept"] = "Set"; +$a->strings["Oct"] = "Out"; +$a->strings["Nov"] = "Nov"; +$a->strings["Dec"] = "Dez"; +$a->strings["January"] = "Janeiro"; +$a->strings["February"] = "Fevereiro"; +$a->strings["March"] = "Março"; +$a->strings["April"] = "Abril"; +$a->strings["June"] = "Junho"; +$a->strings["July"] = "Julho"; +$a->strings["August"] = "Agosto"; +$a->strings["September"] = "Setembro"; +$a->strings["October"] = "Outubro"; +$a->strings["November"] = "Novembro"; +$a->strings["December"] = "Dezembro"; +$a->strings["today"] = "hoje"; +$a->strings["No events to display"] = ""; +$a->strings["l, F j"] = "l, F j"; +$a->strings["Edit event"] = "Editar o evento"; +$a->strings["Delete event"] = ""; +$a->strings["link to source"] = "exibir a origem"; +$a->strings["Export"] = "Exportar"; +$a->strings["Export calendar as ical"] = "Exportar a agenda como iCal"; +$a->strings["Export calendar as csv"] = "Exportar a agenda como CSV"; +$a->strings["General Features"] = "Funcionalidades Gerais"; +$a->strings["Multiple Profiles"] = "Perfis Múltiplos"; +$a->strings["Ability to create multiple profiles"] = "Capacidade de criar perfis múltiplos"; +$a->strings["Photo Location"] = ""; +$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = ""; +$a->strings["Export Public Calendar"] = "Exportar a agenda pública"; +$a->strings["Ability for visitors to download the public calendar"] = "Visitantes podem baixar a agenda pública"; +$a->strings["Post Composition Features"] = "Funcionalidades de Composição de Publicações"; +$a->strings["Post Preview"] = "Pré-visualização da Publicação"; +$a->strings["Allow previewing posts and comments before publishing them"] = "Permite pré-visualizar publicações e comentários antes de publicá-los"; +$a->strings["Auto-mention Forums"] = "Auto-menção Fóruns"; +$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = ""; +$a->strings["Network Sidebar Widgets"] = "Widgets da Barra Lateral da Rede"; +$a->strings["Search by Date"] = "Buscar por Data"; +$a->strings["Ability to select posts by date ranges"] = "Capacidade de selecionar publicações por intervalos de data"; +$a->strings["List Forums"] = ""; +$a->strings["Enable widget to display the forums your are connected with"] = ""; +$a->strings["Group Filter"] = "Filtrar Grupo"; +$a->strings["Enable widget to display Network posts only from selected group"] = "Habilita widget para mostrar publicações da Rede somente de grupos selecionados"; +$a->strings["Network Filter"] = "Filtrar Rede"; +$a->strings["Enable widget to display Network posts only from selected network"] = "Habilita widget para mostrar publicações da Rede de redes selecionadas"; +$a->strings["Saved Searches"] = "Pesquisas salvas"; +$a->strings["Save search terms for re-use"] = "Guarde as palavras-chaves para reuso"; +$a->strings["Network Tabs"] = "Abas da Rede"; +$a->strings["Network Personal Tab"] = "Aba Pessoal da Rede"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar aba para mostrar apenas as publicações da Rede que você tenha interagido"; +$a->strings["Network New Tab"] = "Aba Nova da Rede"; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Habilite aba para mostra apenas publicações da Rede novas (das últimas 12 horas)"; +$a->strings["Network Shared Links Tab"] = "Aba de Links Compartilhados da Rede"; +$a->strings["Enable tab to display only Network posts with links in them"] = "Habilite aba para mostrar somente publicações da Rede que contenham links"; +$a->strings["Post/Comment Tools"] = "Ferramentas de Publicação/Comentário"; +$a->strings["Multiple Deletion"] = "Deleção Multipla"; +$a->strings["Select and delete multiple posts/comments at once"] = "Selecione e delete múltiplas publicações/comentário imediatamente"; +$a->strings["Edit Sent Posts"] = "Editar Publicações Enviadas"; +$a->strings["Edit and correct posts and comments after sending"] = "Editar e corrigir publicações e comentários após envio"; +$a->strings["Tagging"] = "Etiquetagem"; +$a->strings["Ability to tag existing posts"] = "Capacidade de colocar etiquetas em publicações existentes"; +$a->strings["Post Categories"] = "Categorias de Publicações"; +$a->strings["Add categories to your posts"] = "Adicione Categorias ás Publicações"; +$a->strings["Ability to file posts under folders"] = "Capacidade de arquivar publicações em pastas"; +$a->strings["Dislike Posts"] = "Desgostar de publicações"; +$a->strings["Ability to dislike posts/comments"] = "Capacidade de desgostar de publicações/comentários"; +$a->strings["Star Posts"] = "Destacar publicações"; +$a->strings["Ability to mark special posts with a star indicator"] = "Capacidade de marcar publicações especiais com uma estrela indicadora"; +$a->strings["Mute Post Notifications"] = "Silenciar Notificações de Postagem"; +$a->strings["Ability to mute notifications for a thread"] = "Habilitar notificação silenciosa para a tarefa"; +$a->strings["Advanced Profile Settings"] = "Configurações de perfil avançadas"; +$a->strings["Show visitors public community forums at the Advanced Profile Page"] = ""; $a->strings["Disallowed profile URL."] = "URL de perfil não permitida."; +$a->strings["Blocked domain"] = ""; $a->strings["Connect URL missing."] = "URL de conexão faltando."; $a->strings["This site is not configured to allow communications with other networks."] = "Este site não está configurado para permitir comunicações com outras redes."; $a->strings["No compatible communication protocols or feeds were discovered."] = "Não foi descoberto nenhum protocolo de comunicação ou fonte de notícias compatível."; @@ -563,7 +557,17 @@ $a->strings["Use mailto: in front of address to force email check."] = "Use mail $a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "O endereço de perfil especificado pertence a uma rede que foi desabilitada neste site."; $a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Perfil limitado. Essa pessoa não poderá receber notificações diretas/pessoais de você."; $a->strings["Unable to retrieve contact information."] = "Não foi possível recuperar a informação do contato."; -$a->strings["following"] = "acompanhando"; +$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."] = "Um grupo com esse nome, anteriormente excluído, foi reativado. Permissões de itens já existentes poderão ser aplicadas a esse grupo e qualquer futuros membros. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente."; +$a->strings["Default privacy group for new contacts"] = "Grupo de privacidade padrão para novos contatos"; +$a->strings["Everybody"] = "Todos"; +$a->strings["edit"] = "editar"; +$a->strings["Groups"] = "Grupos"; +$a->strings["Edit groups"] = "Editar grupos"; +$a->strings["Edit group"] = "Editar grupo"; +$a->strings["Create a new group"] = "Criar um novo grupo"; +$a->strings["Group Name: "] = "Nome do grupo: "; +$a->strings["Contacts not in any group"] = "Contatos não estão dentro de nenhum grupo"; +$a->strings["add"] = "adicionar"; $a->strings["Requested account is not available."] = "Conta solicitada não disponível"; $a->strings["Requested profile is not available."] = "Perfil solicitado não está disponível."; $a->strings["Edit profile"] = "Editar perfil"; @@ -574,11 +578,11 @@ $a->strings["Create New Profile"] = "Criar um novo perfil"; $a->strings["Profile Image"] = "Imagem do perfil"; $a->strings["visible to everybody"] = "visível para todos"; $a->strings["Edit visibility"] = "Editar a visibilidade"; -$a->strings["Forum"] = "Fórum"; $a->strings["Gender:"] = "Gênero:"; $a->strings["Status:"] = "Situação:"; $a->strings["Homepage:"] = "Página web:"; $a->strings["About:"] = "Sobre:"; +$a->strings["XMPP:"] = ""; $a->strings["Network:"] = "Rede:"; $a->strings["g A l F d"] = "G l d F"; $a->strings["F d"] = "F d"; @@ -617,25 +621,60 @@ $a->strings["Profile Details"] = "Detalhe do Perfil"; $a->strings["Photo Albums"] = "Álbuns de fotos"; $a->strings["Personal Notes"] = "Notas pessoais"; $a->strings["Only You Can See This"] = "Somente Você Pode Ver Isso"; +$a->strings["view full size"] = "ver na tela inteira"; +$a->strings["Embedded content"] = "Conteúdo incorporado"; +$a->strings["Embedding disabled"] = "A incorporação está desabilitada"; +$a->strings["Contact Photos"] = "Fotos dos contatos"; +$a->strings["Passwords do not match. Password unchanged."] = "As senhas não correspondem. A senha não foi modificada."; +$a->strings["An invitation is required."] = "É necessário um convite."; +$a->strings["Invitation could not be verified."] = "Não foi possível verificar o convite."; +$a->strings["Invalid OpenID url"] = "A URL do OpenID é inválida"; +$a->strings["Please enter the required information."] = "Por favor, forneça a informação solicitada."; +$a->strings["Please use a shorter name."] = "Por favor, use um nome mais curto."; +$a->strings["Name too short."] = "O nome é muito curto."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Isso não parece ser o seu nome completo (Nome Sobrenome)."; +$a->strings["Your email domain is not among those allowed on this site."] = "O domínio do seu e-mail não está entre os permitidos neste site."; +$a->strings["Not a valid email address."] = "Não é um endereço de e-mail válido."; +$a->strings["Cannot use that email."] = "Não é possível usar esse e-mail."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = ""; +$a->strings["Nickname is already registered. Please choose another."] = "Esta identificação já foi registrada. Por favor, escolha outra."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Essa identificação já foi registrada e não pode ser reutilizada. Por favor, escolha outra."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRO GRAVE: Não foi possível gerar as chaves de segurança."; +$a->strings["An error occurred during registration. Please try again."] = "Ocorreu um erro durante o registro. Por favor, tente novamente."; +$a->strings["default"] = "padrão"; +$a->strings["An error occurred creating your default profile. Please try again."] = "Ocorreu um erro na criação do seu perfil padrão. Por favor, tente novamente."; +$a->strings["Profile Photos"] = "Fotos do perfil"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = ""; +$a->strings["Registration at %s"] = ""; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tCaro %1\$s,\n\t\t\tObrigado por se cadastrar em %2\$s. Sua conta foi criada.\n\t"; +$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\n\t\tOs dados de login são os seguintes:\n\t\t\tLocal do Site:\t%3\$s\n\t\t\tNome de Login:\t%1\$s\n\t\t\tSenha:\t%5\$s\n\n\t\tVocê pode alterar sua senha na página de \"Configurações\" da sua conta após fazer o login\n\n\t\tPor favor, dedique alguns minutos na página para rever as outras configurações da sua conta.\n\n\t\tTalvez você também queira incluir algumas informações básicas adicionais ao seu perfil padrão\n\t\t(na página de \"Perfis\") para que outras pessoas possam encontrá-lo com facilidade.\n\n\t\tRecomendamos que inclua seu nome completo, adicione uma foto do perfil,\n\t\tadicionar algumas \"palavras-chave\" (muito útil para fazer novas amizades) - e\n\t\ttalvez em que pais você mora; se você não quiser ser mais específico \n\t\tdo que isso.\n\n\t\tNós respeitamos plenamente seu direito à privacidade, e nenhum desses itens são necessários.\n\t\tSe você é novo por aqui e não conheço ninguém, eles podem ajuda-lo a fazer novas e interessantes amizades.\n\n\n\t\tObrigado e bem-vindo a %2\$s."; +$a->strings["Registration details for %s"] = "Detalhes do registro de %s"; +$a->strings["There are no tables on MyISAM."] = ""; +$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\tOs desenvolvedores de Friendica lançaram recentemente uma atualização %s,\n\t\t\tmas quando tentei instalá-la, algo deu terrivelmente errado.\n\t\t\tIsso precisa ser corrigido em breve e eu não posso fazer isso sozinho. Por favor, contate um\n\t\t\tdesenvolvedor da Friendica se você não pode me ajudar sozinho. Meu banco de dados pode ser inválido."; +$a->strings["The error message is\n[pre]%s[/pre]"] = "A mensagem de erro é\n[pre]%s[/pre]"; +$a->strings["\nError %d occurred during database update:\n%s\n"] = ""; +$a->strings["Errors encountered performing database changes: "] = ""; +$a->strings[": Database update"] = ""; +$a->strings["%s: updating %s table."] = ""; +$a->strings["%s\\'s birthday"] = "Aniversário de %s\__DQ_"; +$a->strings["Sharing notification from Diaspora network"] = "Notificação de compartilhamento da rede Diaspora"; +$a->strings["Attachments:"] = "Anexos:"; $a->strings["[Name Withheld]"] = "[Nome não revelado]"; $a->strings["Item not found."] = "O item não foi encontrado."; $a->strings["Do you really want to delete this item?"] = "Você realmente deseja deletar esse item?"; $a->strings["Yes"] = "Sim"; $a->strings["Permission denied."] = "Permissão negada."; $a->strings["Archives"] = "Arquivos"; -$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s vai a %3\$s de %2\$s"; -$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s não vai a %3\$s de %2\$s"; -$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s está pensando em ir a %3\$s de %2\$s"; -$a->strings["[no subject]"] = "[sem assunto]"; -$a->strings["Click here to upgrade."] = "Clique aqui para atualização (upgrade)."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Essa ação excede o limite definido para o seu plano de assinatura."; -$a->strings["This action is not available under your subscription plan."] = "Essa ação não está disponível em seu plano de assinatura."; +$a->strings["%s is now following %s."] = ""; +$a->strings["following"] = "acompanhando"; +$a->strings["%s stopped following %s."] = ""; +$a->strings["stopped following"] = "parou de acompanhar"; $a->strings["newer"] = "mais recente"; $a->strings["older"] = "antigo"; -$a->strings["prev"] = "anterior"; $a->strings["first"] = "primeiro"; -$a->strings["last"] = "último"; +$a->strings["prev"] = "anterior"; $a->strings["next"] = "próximo"; +$a->strings["last"] = "último"; $a->strings["Loading more entries..."] = "Baixando mais entradas..."; $a->strings["The end"] = "Fim"; $a->strings["No contacts"] = "Nenhum contato"; @@ -689,390 +728,115 @@ $a->strings["comment"] = array( ); $a->strings["post"] = "publicação"; $a->strings["Item filed"] = "O item foi arquivado"; -$a->strings["Error decoding account file"] = "Erro ao decodificar arquivo de conta"; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Erro! Nenhum arquivo de dados de versão! Esse não é um arquivo de conta do Friendica?"; -$a->strings["Error! Cannot check nickname"] = "Erro! Não consigo conferir o apelido (nickname)"; -$a->strings["User '%s' already exists on this server!"] = "User '%s' já existe nesse servidor!"; -$a->strings["User creation error"] = "Erro na criação do usuário"; -$a->strings["User profile creation error"] = "Erro na criação do perfil do Usuário"; -$a->strings["%d contact not imported"] = array( - 0 => "%d contato não foi importado", - 1 => "%d contatos não foram importados", -); -$a->strings["Done. You can now login with your username and password"] = "Feito. Você agora pode entrar com seu nome de usuário e senha."; -$a->strings["System"] = "Sistema"; -$a->strings["Personal"] = "Pessoal"; -$a->strings["%s commented on %s's post"] = "%s comentou uma publicação de %s"; -$a->strings["%s created a new post"] = "%s criou uma nova publicação"; -$a->strings["%s liked %s's post"] = "%s gostou da publicação de %s"; -$a->strings["%s disliked %s's post"] = "%s desgostou da publicação de %s"; -$a->strings["%s is attending %s's event"] = "%s vai comparecer ao evento de %s"; -$a->strings["%s is not attending %s's event"] = "%s não vai comparecer ao evento de %s"; -$a->strings["%s may attend %s's event"] = "%s talvez compareça ao evento de %s"; -$a->strings["%s is now friends with %s"] = "%s agora é amigo de %s"; -$a->strings["Friend Suggestion"] = "Sugestão de amigo"; -$a->strings["Friend/Connect Request"] = "Solicitação de amizade/conexão"; -$a->strings["New Follower"] = "Novo acompanhante"; -$a->strings["Post successful."] = "Publicado com sucesso."; -$a->strings["[Embedded content - reload page to view]"] = "[Conteúdo incorporado - recarregue a página para ver]"; -$a->strings["Access denied."] = "Acesso negado."; -$a->strings["Welcome to %s"] = "Bem-vindo(a) a %s"; -$a->strings["No more system notifications."] = "Não fazer notificações de sistema."; -$a->strings["System Notifications"] = "Notificações de sistema"; -$a->strings["Remove term"] = "Remover o termo"; -$a->strings["Public access denied."] = "Acesso público negado."; -$a->strings["Only logged in users are permitted to perform a search."] = ""; -$a->strings["Too Many Requests"] = ""; -$a->strings["Only one search per minute is permitted for not logged in users."] = ""; -$a->strings["No results."] = "Nenhum resultado."; -$a->strings["Items tagged with: %s"] = ""; -$a->strings["Results for: %s"] = ""; -$a->strings["This is Friendica, version"] = "Este é o Friendica, versão"; -$a->strings["running at web location"] = "sendo executado no endereço web"; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Por favor, visite friendica.com para aprender mais sobre o projeto Friendica."; -$a->strings["Bug reports and issues: please visit"] = "Relate ou acompanhe um erro no"; -$a->strings["the bugtracker at github"] = "GitHub"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Sugestões, elogios, doações, etc. - favor enviar e-mail para \"Info\" arroba Friendica - ponto com"; -$a->strings["Installed plugins/addons/apps:"] = "Plugins/complementos/aplicações instaladas:"; -$a->strings["No installed plugins/addons/apps"] = "Nenhum plugin/complemento/aplicativo instalado"; -$a->strings["No valid account found."] = "Não foi encontrada nenhuma conta válida."; -$a->strings["Password reset request issued. Check your email."] = "A solicitação para reiniciar sua senha foi encaminhada. Verifique seu 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."] = "\n\t\tPrezado %1\$s,\n\t\t\tUma solicitação foi recebida recentemente em \"%2\$s\" para redefinir a\n\t\tsenha da sua conta. Para confirmar este pedido, por favor selecione o link de confirmação\n\t\tabaixo ou copie e cole-o na barra de endereço do seu navegador.\n\n\t\tSe NÃO foi você que solicitou esta alteração por favor, NÃO clique no link\n\t\tfornecido e ignore e/ou apague este e-mail.\n\n\t\tSua senha não será alterada a menos que possamos verificar que foi você que\n\t\temitiu esta solicitação."; -$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\n\t\tSiga este link para verificar sua identidade:\n\n\t\t%1\$s\n\n\t\tVocê então receberá uma mensagem de continuidade contendo a nova senha.\n\t\tVocê pode alterar sua senha na sua página de configurações após efetuar seu login.\n\n\t\tOs dados de login são os seguintes:\n\n\t\tLocalização do Site:\t%2\$s\n\t\tNome de Login:\t%3\$s"; -$a->strings["Password reset requested at %s"] = "Foi feita uma solicitação de reiniciação da senha em %s"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Não foi possível verificar a solicitação (você pode tê-la submetido anteriormente). A senha não foi reiniciada."; -$a->strings["Password Reset"] = "Redifinir a senha"; -$a->strings["Your password has been reset as requested."] = "Sua senha foi reiniciada, conforme solicitado."; -$a->strings["Your new password is"] = "Sua nova senha é"; -$a->strings["Save or copy your new password - and then"] = "Grave ou copie a sua nova senha e, então"; -$a->strings["click here to login"] = "clique aqui para entrar"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Sua senha pode ser alterada na página de Configurações após você entrar em seu perfil."; -$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\n\t\t\t\tCaro %1\$s,\n\t\t\t\t\tSua senha foi alterada conforme solicitado. Por favor, guarde essas\n\t\t\t\tinformações para seus registros (ou altere a sua senha imediatamente para\n\t\t\t\talgo que você se lembrará).\n\t\t\t"; -$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\n\t\t\t\tOs seus dados de login são os seguintes:\n\n\t\t\t\tLocalização do Site:\t%1\$s\n\t\t\t\tNome de Login:\t%2\$s\n\t\t\t\tSenha:\t%3\$s\n\n\t\t\t\tVocê pode alterar esta senha na sua página de configurações depois que efetuar o seu login.\n\t\t\t"; -$a->strings["Your password has been changed at %s"] = "Sua senha foi modifica às %s"; -$a->strings["Forgot your Password?"] = "Esqueceu a sua senha?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Digite o seu endereço de e-mail e clique em 'Reiniciar' para prosseguir com a reiniciação da sua senha. Após isso, verifique seu e-mail para mais instruções."; -$a->strings["Nickname or Email: "] = "Identificação ou e-mail: "; -$a->strings["Reset"] = "Reiniciar"; -$a->strings["No profile"] = "Nenhum perfil"; -$a->strings["Help:"] = "Ajuda:"; -$a->strings["Not Found"] = "Não encontrada"; -$a->strings["Page not found."] = "Página não encontrada."; -$a->strings["Invalid request."] = "Solicitação inválida."; -$a->strings["Image exceeds size limit of %s"] = ""; -$a->strings["Unable to process image."] = "Não foi possível processar a imagem."; -$a->strings["Image upload failed."] = "Não foi possível enviar a imagem."; -$a->strings["Remote privacy information not available."] = "Não existe informação disponível sobre a privacidade remota."; -$a->strings["Visible to:"] = "Visível para:"; -$a->strings["Global Directory"] = "Diretório global"; -$a->strings["Find on this site"] = "Pesquisar neste site"; -$a->strings["Results for:"] = ""; -$a->strings["Site Directory"] = "Diretório do site"; -$a->strings["No entries (some entries may be hidden)."] = "Nenhuma entrada (algumas entradas podem estar ocultas)."; -$a->strings["OpenID protocol error. No ID returned."] = "Erro no protocolo OpenID. Não foi retornada nenhuma ID."; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "A conta não foi encontrada e não são permitidos registros via OpenID nesse site."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este site excedeu o limite diário permitido para registros de novas contas.\nPor favor tente novamente amanhã."; -$a->strings["Import"] = "Importar"; -$a->strings["Move account"] = "Mover conta"; -$a->strings["You can import an account from another Friendica server."] = "Você pode importar um conta de outro sevidor 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."] = "Você precisa exportar sua conta de um servidor antigo e fazer o upload aqui. Nós recriaremos sua conta antiga aqui com todos os seus contatos. Nós também tentaremos informar seus amigos que você se mudou para cá."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Esta funcionalidade está em fase de testes. Não importamos contatos da rede OStatuss (GNU Social/Statusnet) nem da Diaspora."; -$a->strings["Account file"] = "Arquivo de conta"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Para exportar a sua conta, entre em \"Configurações->Exportar dados pessoais\" e selecione \"Exportar conta\""; -$a->strings["Visit %s's profile [%s]"] = "Visitar o perfil de %s [%s]"; -$a->strings["Edit contact"] = "Editar o contato"; -$a->strings["Contacts who are not members of a group"] = "Contatos que não são membros de um grupo"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Não foi encontrada nenhuma palavra-chave associada a você. Por favor, adicione algumas ao seu perfil padrão."; -$a->strings["is interested in:"] = "se interessa por:"; -$a->strings["Profile Match"] = "Correspondência de perfil"; -$a->strings["No matches"] = "Nenhuma correspondência"; -$a->strings["Export account"] = "Exportar conta"; -$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."] = "Exporta suas informações de conta e contatos. Use para fazer uma cópia de segurança de sua conta e/ou para movê-la para outro servidor."; -$a->strings["Export all"] = "Exportar tudo"; -$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportar as informações de sua conta, contatos e todos os seus items como JSON. Pode ser um arquivo muito grande, e pode levar bastante tempo. Use isto para fazer uma cópia de segurança completa da sua conta (fotos não são exportadas)"; -$a->strings["Export personal data"] = "Exportar dados pessoais"; -$a->strings["Total invitation limit exceeded."] = "Limite de convites totais excedido."; -$a->strings["%s : Not a valid email address."] = "%s : Não é um endereço de e-mail válido."; -$a->strings["Please join us on Friendica"] = "Por favor, junte-se à nós na Friendica"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite de convites ultrapassado. Favor contactar o administrador do sítio."; -$a->strings["%s : Message delivery failed."] = "%s : Não foi possível enviar a mensagem."; -$a->strings["%d message sent."] = array( - 0 => "%d mensagem enviada.", - 1 => "%d mensagens enviadas.", -); -$a->strings["You have no more invitations available"] = "Você não possui mais convites disponíveis"; -$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."] = "Visite %s para obter uma lista de sites públicos onde você pode se cadastrar. Membros da friendica podem se conectar, mesmo que estejam em sites separados. Além disso você também pode se conectar com membros de várias outras redes sociais."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Para aceitar esse convite, por favor cadastre-se em %s ou qualquer outro site friendica público."; -$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."] = "Os sites friendica estão todos interconectados para criar uma grande rede social com foco na privacidade e controlada por seus membros, que também podem se conectar com várias redes sociais tradicionais. Dê uma olhada em %s para uma lista de sites friendica onde você pode se cadastrar."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Desculpe, mas esse sistema não está configurado para conectar-se com outros sites públicos nem permite convidar novos membros."; -$a->strings["Send invitations"] = "Enviar convites."; -$a->strings["Enter email addresses, one per line:"] = "Digite os endereços de e-mail, um por linha:"; -$a->strings["Your message:"] = "Sua mensagem:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Você está convidado a se juntar a mim e outros amigos em friendica - e também nos ajudar a criar uma experiência social melhor na web."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Você preciso informar este código de convite: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Após você se registrar, por favor conecte-se comigo através da minha página de perfil em:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Para mais informações sobre o projeto Friendica e porque nós achamos que ele é importante, por favor visite-nos em http://friendica.com."; -$a->strings["Submit"] = "Enviar"; -$a->strings["Contact Photos"] = "Fotos dos contatos"; -$a->strings["Files"] = "Arquivos"; -$a->strings["System down for maintenance"] = "Sistema em manutenção"; -$a->strings["Permission denied"] = "Permissão negada"; -$a->strings["Invalid profile identifier."] = "Identificador de perfil inválido."; -$a->strings["Profile Visibility Editor"] = "Editor de visibilidade do perfil"; -$a->strings["Click on a contact to add or remove."] = "Clique em um contato para adicionar ou remover."; -$a->strings["Visible To"] = "Visível para"; -$a->strings["All Contacts (with secure profile access)"] = "Todos os contatos (com acesso a perfil seguro)"; -$a->strings["No contacts."] = "Nenhum contato."; -$a->strings["Tag removed"] = "A etiqueta foi removida"; -$a->strings["Remove Item Tag"] = "Remover a etiqueta do item"; -$a->strings["Select a tag to remove: "] = "Selecione uma etiqueta para remover: "; -$a->strings["Remove"] = "Remover"; -$a->strings["{0} wants to be your friend"] = "{0} deseja ser seu amigo"; -$a->strings["{0} sent you a message"] = "{0} lhe enviou uma mensagem"; -$a->strings["{0} requested registration"] = "{0} solicitou registro"; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Lamento, talvez seu envio seja maior do que as configurações do PHP permitem"; -$a->strings["Or - did you try to upload an empty file?"] = "Ou - você tentou enviar um arquivo vazio?"; -$a->strings["File exceeds size limit of %s"] = ""; -$a->strings["File upload failed."] = "Não foi possível enviar o arquivo."; $a->strings["No friends to display."] = "Nenhum amigo para exibir."; -$a->strings["Access to this profile has been restricted."] = "O acesso a este perfil está restrito."; -$a->strings["View"] = ""; -$a->strings["Previous"] = "Anterior"; -$a->strings["Next"] = "Próximo"; -$a->strings["User not found"] = ""; -$a->strings["This calendar format is not supported"] = "Esse formato de agenda não é contemplado"; -$a->strings["No exportable data found"] = ""; -$a->strings["calendar"] = "agenda"; -$a->strings["Resubscribing to OStatus contacts"] = ""; -$a->strings["Error"] = "Erro"; -$a->strings["Done"] = ""; -$a->strings["Keep this window open until done."] = ""; -$a->strings["No potential page delegates located."] = "Nenhuma página delegada potencial localizada."; -$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."] = "Delegados podem administrar todos os aspectos dessa página/conta exceto por configurações básicas da conta.\nFavor não delegar sua conta pessoal para ninguém que você não confie inteiramente."; -$a->strings["Existing Page Managers"] = "Administradores de Páginas Existentes"; -$a->strings["Existing Page Delegates"] = "Delegados de Páginas Existentes"; -$a->strings["Potential Delegates"] = "Delegados Potenciais"; -$a->strings["Add"] = "Adicionar"; -$a->strings["No entries."] = "Sem entradas."; -$a->strings["Credits"] = ""; -$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = ""; -$a->strings["- select -"] = "-selecione-"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está seguindo %2\$s's %3\$s"; -$a->strings["Item not available."] = "O item não está disponível."; -$a->strings["Item was not found."] = "O item não foi encontrado."; -$a->strings["Submit Request"] = "Enviar solicitação"; -$a->strings["You already added this contact."] = "Você já adicionou esse contato."; -$a->strings["Diaspora support isn't enabled. Contact can't be added."] = ""; -$a->strings["OStatus support is disabled. Contact can't be added."] = ""; -$a->strings["The network type couldn't be detected. Contact can't be added."] = ""; -$a->strings["Please answer the following:"] = "Por favor, entre com as informações solicitadas:"; -$a->strings["Does %s know you?"] = "%s conhece você?"; -$a->strings["No"] = "Não"; -$a->strings["Add a personal note:"] = "Adicione uma anotação pessoal:"; -$a->strings["Your Identity Address:"] = "Seu endereço de identificação:"; -$a->strings["Profile URL"] = "URL do perfil"; -$a->strings["Contact added"] = "O contato foi adicionado"; -$a->strings["You must be logged in to use addons. "] = "Você precisa estar logado para usar os addons."; -$a->strings["Applications"] = "Aplicativos"; -$a->strings["No installed applications."] = "Nenhum aplicativo instalado"; -$a->strings["Do you really want to delete this suggestion?"] = "Você realmente deseja deletar essa sugestão?"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Não existe nenhuma sugestão disponível. Se este for um site novo, por favor tente novamente em 24 horas."; -$a->strings["Ignore/Hide"] = "Ignorar/Ocultar"; -$a->strings["Not Extended"] = ""; -$a->strings["Item has been removed."] = "O item foi removido."; -$a->strings["No contacts in common."] = "Nenhum contato em comum."; -$a->strings["Common Friends"] = "Amigos em Comum"; -$a->strings["Welcome to Friendica"] = "Bemvindo ao Friendica"; -$a->strings["New Member Checklist"] = "Dicas para os novos membros"; -$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."] = "Gostaríamos de oferecer algumas dicas e links para ajudar a tornar a sua experiência agradável. Clique em qualquer item para visitar a página correspondente. Um link para essa página será visível em sua home page por duas semanas após o seu registro inicial e, então, desaparecerá discretamente."; -$a->strings["Getting Started"] = "Do Início"; -$a->strings["Friendica Walk-Through"] = "Passo-a-passo da friendica"; -$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Na sua página Início Rápido - encontre uma introdução rápida ao seu perfil e abas da rede, faça algumas conexões novas, e encontre alguns grupos entrar."; -$a->strings["Go to Your Settings"] = "Ir para as suas configurações"; -$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."] = "Em sua página Configurações - mude sua senha inicial. Também tome nota de seu Endereço de Identidade. Isso se parece com um endereço de e-mail - e será útil para se fazer amigos na rede social livre."; -$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."] = "Revise as outras configurações, em particular as relacionadas a privacidade. Não estar listado no diretório é o equivalente a não ter o seu número na lista telefônica. Normalmente é interessante você estar listado - a não ser que os seu amigos atuais e potenciais saibam exatamente como encontrar você."; -$a->strings["Upload Profile Photo"] = "Enviar foto do perfil"; -$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Envie uma foto para o seu perfil, caso ainda não tenha feito isso. Estudos indicam que pessoas que publicam fotos reais delas mesmas têm 10 vezes mais chances de encontrar novos amigos do que as que não o fazem."; -$a->strings["Edit Your Profile"] = "Editar seu perfil"; -$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Edite o seu perfil padrão a seu gosto. Revise as configurações de ocultação da sua lista de amigos e do seu perfil de visitantes desconhecidos."; -$a->strings["Profile Keywords"] = "Palavras-chave do perfil"; -$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Defina algumas palavras-chave públicas para o seu perfil padrão, que descrevam os seus interesses. Nós podemos encontrar outras pessoas com interesses similares e sugerir novas amizades."; -$a->strings["Connecting"] = "Conexões"; -$a->strings["Importing Emails"] = "Importação de e-mails"; -$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"] = "Forneça a informação de acesso ao seu e-mail na sua página de Configuração de Conector se você deseja importar e interagir com amigos ou listas de discussão da sua Caixa de Entrada de e-mail"; -$a->strings["Go to Your Contacts Page"] = "Ir para a sua página de contatos"; -$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."] = "Sua página de contatos é sua rota para o gerenciamento de amizades e conexão com amigos em outras redes. Geralmente você fornece o endereço deles ou a URL do site na janela de diálogo Adicionar Novo Contato."; -$a->strings["Go to Your Site's Directory"] = "Ir para o diretório do seu site"; -$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "A página de Diretório permite que você encontre outras pessoas nesta rede ou em outras redes federadas. Procure por um link Conectar ou Seguir no perfil que deseja acompanhar. Forneça o seu Endereço de Identidade próprio, se solicitado."; -$a->strings["Finding New People"] = "Pesquisar por novas pessoas"; -$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."] = "No painel lateral da página de Contatos existem várias ferramentas para encontrar novos amigos. Você pode descobrir pessoas com os mesmos interesses, procurar por nomes ou interesses e fornecer sugestões baseadas nos relacionamentos da rede. Em um site completamente novo, as sugestões de amizades geralmente começam a ser populadas dentro de 24 horas."; -$a->strings["Group Your Contacts"] = "Agrupe seus contatos"; -$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."] = "Após fazer novas amizades, organize-as em grupos de conversa privados, a partir da barra lateral na sua página de Contatos. A partir daí, você poderá interagir com cada grupo privativamente, na sua página de Rede."; -$a->strings["Why Aren't My Posts Public?"] = "Por que as minhas publicações não são públicas?"; -$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "A friendica respeita sua privacidade. Por padrão, suas publicações estarão visíveis apenas para as pessoas que você adicionou como amigos. Para mais informações, veja a página de ajuda, a partir do link acima."; -$a->strings["Getting Help"] = "Obtendo ajuda"; -$a->strings["Go to the Help Section"] = "Ir para a seção de ajuda"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Consulte nossas páginas de ajuda para mais detalhes sobre as características e recursos do programa."; -$a->strings["Remove My Account"] = "Remover minha conta"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Isso removerá completamente a sua conta. Uma vez feito isso, não será mais possível recuperá-la."; -$a->strings["Please enter your password for verification:"] = "Por favor, digite a sua senha para verificação:"; -$a->strings["Item not found"] = "O item não foi encontrado"; -$a->strings["Edit post"] = "Editar a publicação"; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( - 0 => "Aviso: Este grupo contém %s membro de uma rede insegura.", - 1 => "Aviso: Este grupo contém %s membros de uma rede insegura.", -); -$a->strings["Private messages to this group are at risk of public disclosure."] = "Mensagens privadas para este grupo correm o risco de sofrerem divulgação pública."; -$a->strings["No such group"] = "Este grupo não existe"; -$a->strings["Group is empty"] = "O grupo está vazio"; -$a->strings["Group: %s"] = "Grupo: %s"; -$a->strings["Private messages to this person are at risk of public disclosure."] = "Mensagens privadas para esta pessoa correm o risco de sofrerem divulgação pública."; -$a->strings["Invalid contact."] = "Contato inválido."; -$a->strings["Commented Order"] = "Ordem dos comentários"; -$a->strings["Sort by Comment Date"] = "Ordenar pela data do comentário"; -$a->strings["Posted Order"] = "Ordem das publicações"; -$a->strings["Sort by Post Date"] = "Ordenar pela data de publicação"; -$a->strings["Posts that mention or involve you"] = "Publicações que mencionem ou envolvam você"; -$a->strings["New"] = "Nova"; -$a->strings["Activity Stream - by date"] = "Fluxo de atividades - por data"; -$a->strings["Shared Links"] = "Links compartilhados"; -$a->strings["Interesting Links"] = "Links interessantes"; -$a->strings["Starred"] = "Destacada"; -$a->strings["Favourite Posts"] = "Publicações favoritas"; -$a->strings["Not available."] = "Não disponível."; -$a->strings["Time Conversion"] = "Conversão de tempo"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica oferece esse serviço para compartilhar eventos com outras redes e amigos em fusos horários desconhecidos."; -$a->strings["UTC time: %s"] = "Hora UTC: %s"; -$a->strings["Current timezone: %s"] = "Fuso horário atual: %s"; -$a->strings["Converted localtime: %s"] = "Horário local convertido: %s"; -$a->strings["Please select your timezone:"] = "Por favor, selecione seu fuso horário:"; -$a->strings["The post was created"] = "O texto foi criado"; -$a->strings["Group created."] = "O grupo foi criado."; -$a->strings["Could not create group."] = "Não foi possível criar o grupo."; -$a->strings["Group not found."] = "O grupo não foi encontrado."; -$a->strings["Group name changed."] = "O nome do grupo foi alterado."; -$a->strings["Save Group"] = "Salvar o grupo"; -$a->strings["Create a group of contacts/friends."] = "Criar um grupo de contatos/amigos."; -$a->strings["Group removed."] = "O grupo foi removido."; -$a->strings["Unable to remove group."] = "Não foi possível remover o grupo."; -$a->strings["Group Editor"] = "Editor de grupo"; -$a->strings["Members"] = "Membros"; -$a->strings["All Contacts"] = "Todos os contatos"; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "O número diário de mensagens do mural de %s foi excedido. Não foi possível enviar a mensagem."; -$a->strings["No recipient selected."] = "Não foi selecionado nenhum destinatário."; -$a->strings["Unable to check your home location."] = "Não foi possível verificar a sua localização."; -$a->strings["Message could not be sent."] = "Não foi possível enviar a mensagem."; -$a->strings["Message collection failure."] = "Falha na coleta de mensagens."; -$a->strings["Message sent."] = "A mensagem foi enviada."; -$a->strings["No recipient."] = "Nenhum destinatário."; -$a->strings["Send Private Message"] = "Enviar mensagem privada"; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Caso você deseje uma resposta de %s, por favor verifique se as configurações de privacidade em seu site permitem o recebimento de mensagens de remetentes desconhecidos."; -$a->strings["To:"] = "Para:"; -$a->strings["Subject:"] = "Assunto:"; -$a->strings["link"] = "ligação"; $a->strings["Authorize application connection"] = "Autorizar a conexão com a aplicação"; $a->strings["Return to your app and insert this Securty Code:"] = "Volte para a sua aplicação e digite este código de segurança:"; $a->strings["Please login to continue."] = "Por favor, autentique-se para continuar."; $a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?"; -$a->strings["Source (bbcode) text:"] = "Texto fonte (bbcode):"; -$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Texto fonte (Diaspora) a converter para BBcode:"; -$a->strings["Source input: "] = "Entrada fonte:"; -$a->strings["bb2html (raw HTML): "] = "bb2html (HTML puro):"; -$a->strings["bb2html: "] = "bb2html: "; -$a->strings["bb2html2bb: "] = "bb2html2bb: "; -$a->strings["bb2md: "] = "bb2md: "; -$a->strings["bb2md2html: "] = "bb2md2html: "; -$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; -$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; -$a->strings["Source input (Diaspora format): "] = "Fonte de entrada (formato Diaspora):"; -$a->strings["diaspora2bb: "] = "diaspora2bb: "; -$a->strings["Subscribing to OStatus contacts"] = ""; -$a->strings["No contact provided."] = ""; -$a->strings["Couldn't fetch information for contact."] = ""; -$a->strings["Couldn't fetch friends for contact."] = ""; -$a->strings["success"] = "sucesso"; -$a->strings["failed"] = ""; -$a->strings["ignored"] = "Ignorado"; -$a->strings["%1\$s welcomes %2\$s"] = "%1\$s dá as boas vinda à %2\$s"; -$a->strings["Tips for New Members"] = "Dicas para novos membros"; -$a->strings["Unable to locate contact information."] = "Não foi possível localizar informação do contato."; -$a->strings["Do you really want to delete this message?"] = "Você realmente deseja deletar essa mensagem?"; -$a->strings["Message deleted."] = "A mensagem foi excluída."; -$a->strings["Conversation removed."] = "A conversa foi removida."; -$a->strings["No messages."] = "Nenhuma mensagem."; -$a->strings["Message not available."] = "A mensagem não está disponível."; -$a->strings["Delete message"] = "Excluir a mensagem"; -$a->strings["Delete conversation"] = "Excluir conversa"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Não foi encontrada nenhuma comunicação segura. Você pode ser capaz de responder a partir da página de perfil do remetente."; -$a->strings["Send Reply"] = "Enviar resposta"; -$a->strings["Unknown sender - %s"] = "Remetente desconhecido - %s"; -$a->strings["You and %s"] = "Você e %s"; -$a->strings["%s and You"] = "%s e você"; -$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; -$a->strings["%d message"] = array( - 0 => "%d mensagem", - 1 => "%d mensagens", +$a->strings["No"] = "Não"; +$a->strings["You must be logged in to use addons. "] = "Você precisa estar logado para usar os addons."; +$a->strings["Applications"] = "Aplicativos"; +$a->strings["No installed applications."] = "Nenhum aplicativo instalado"; +$a->strings["Item not available."] = "O item não está disponível."; +$a->strings["Item was not found."] = "O item não foi encontrado."; +$a->strings["The post was created"] = "O texto foi criado"; +$a->strings["No contacts in common."] = "Nenhum contato em comum."; +$a->strings["Common Friends"] = "Amigos em Comum"; +$a->strings["%d contact edited."] = array( + 0 => "", + 1 => "", ); -$a->strings["Manage Identities and/or Pages"] = "Gerenciar identidades e/ou páginas"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Alterne entre diferentes identidades ou páginas de comunidade/grupo que dividem detalhes da sua conta ou que você tenha fornecido permissões de \"administração\""; -$a->strings["Select an identity to manage: "] = "Selecione uma identidade para gerenciar: "; -$a->strings["Contact settings applied."] = "As configurações do contato foram aplicadas."; -$a->strings["Contact update failed."] = "Não foi possível atualizar o contato."; -$a->strings["Contact not found."] = "O contato não foi encontrado."; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATENÇÃO: Isso é muito avançado, se você digitar informações incorretas, suas comunicações com esse contato pode parar de funcionar."; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Por favor, use o botão 'Voltar' do seu navegador agora, caso você não tenha certeza do que está fazendo."; -$a->strings["No mirroring"] = "Nenhum espelhamento"; -$a->strings["Mirror as forwarded posting"] = "Espelhar como postagem encaminhada"; -$a->strings["Mirror as my own posting"] = "Espelhar como minha própria postagem"; -$a->strings["Return to contact editor"] = "Voltar ao editor de contatos"; -$a->strings["Refetch contact data"] = ""; -$a->strings["Remote Self"] = "Eu remoto"; -$a->strings["Mirror postings from this contact"] = "Espelhar publicações deste contato"; -$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Marcar este contato como eu remoto: o Friendica replicará novas publicações desse usuário."; -$a->strings["Name"] = "Nome"; -$a->strings["Account Nickname"] = "Identificação da conta"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - sobrescreve Nome/Identificação"; -$a->strings["Account URL"] = "URL da conta"; -$a->strings["Friend Request URL"] = "URL da requisição de amizade"; -$a->strings["Friend Confirm URL"] = "URL da confirmação de amizade"; -$a->strings["Notification Endpoint URL"] = "URL do ponto final da notificação"; -$a->strings["Poll/Feed URL"] = "URL do captador/fonte de notícias"; -$a->strings["New photo from this URL"] = "Nova imagem desta URL"; -$a->strings["This introduction has already been accepted."] = "Esta apresentação já foi aceita."; -$a->strings["Profile location is not valid or does not contain profile information."] = "A localização do perfil não é válida ou não contém uma informação de perfil."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Aviso: a localização do perfil não possui nenhum nome identificável do seu dono."; -$a->strings["Warning: profile location has no profile photo."] = "Aviso: a localização do perfil não possui nenhuma foto do perfil."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "O parâmetro requerido %d não foi encontrado na localização fornecida", - 1 => "Os parâmetros requeridos %d não foram encontrados na localização fornecida", -); -$a->strings["Introduction complete."] = "A apresentação foi finalizada."; -$a->strings["Unrecoverable protocol error."] = "Ocorreu um erro irrecuperável de protocolo."; -$a->strings["Profile unavailable."] = "O perfil não está disponível."; -$a->strings["%s has received too many connection requests today."] = "%s recebeu solicitações de conexão em excesso hoje."; -$a->strings["Spam protection measures have been invoked."] = "As medidas de proteção contra spam foram ativadas."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Os amigos foram notificados para tentar novamente em 24 horas."; -$a->strings["Invalid locator"] = "Localizador inválido"; -$a->strings["Invalid email address."] = "Endereço de e-mail inválido."; -$a->strings["This account has not been configured for email. Request failed."] = "Essa conta não foi configurada para e-mails. Não foi possível atender à solicitação."; -$a->strings["You have already introduced yourself here."] = "Você já fez a sua apresentação aqui."; -$a->strings["Apparently you are already friends with %s."] = "Aparentemente você já é amigo de %s."; -$a->strings["Invalid profile URL."] = "URL de perfil inválida."; +$a->strings["Could not access contact record."] = "Não foi possível acessar o registro do contato."; +$a->strings["Could not locate selected profile."] = "Não foi possível localizar o perfil selecionado."; +$a->strings["Contact updated."] = "O contato foi atualizado."; $a->strings["Failed to update contact record."] = "Não foi possível atualizar o registro do contato."; -$a->strings["Your introduction has been sent."] = "A sua apresentação foi enviada."; -$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "A sua rede não permite inscrição a distância. Inscreva-se diretamente no seu sistema."; -$a->strings["Please login to confirm introduction."] = "Por favor, autentique-se para confirmar a apresentação."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "A identidade autenticada está incorreta. Por favor, entre como este perfil."; -$a->strings["Confirm"] = "Confirmar"; -$a->strings["Hide this contact"] = "Ocultar este contato"; -$a->strings["Welcome home %s."] = "Bem-vindo(a) à sua página pessoal %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Por favor, confirme sua solicitação de apresentação/conexão para %s."; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Por favor, digite seu 'Endereço de Identificação' a partir de uma das seguintes redes de comunicação suportadas:"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = ""; -$a->strings["Friend/Connection Request"] = "Solicitação de amizade/conexão"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Examplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - Por favor, não utilize esse formulário. Ao invés disso, digite %s na sua barra de pesquisa do Diaspora."; +$a->strings["Contact has been blocked"] = "O contato foi bloqueado"; +$a->strings["Contact has been unblocked"] = "O contato foi desbloqueado"; +$a->strings["Contact has been ignored"] = "O contato foi ignorado"; +$a->strings["Contact has been unignored"] = "O contato deixou de ser ignorado"; +$a->strings["Contact has been archived"] = "O contato foi arquivado"; +$a->strings["Contact has been unarchived"] = "O contato foi desarquivado"; +$a->strings["Drop contact"] = ""; +$a->strings["Do you really want to delete this contact?"] = "Você realmente deseja deletar esse contato?"; +$a->strings["Contact has been removed."] = "O contato foi removido."; +$a->strings["You are mutual friends with %s"] = "Você tem uma amizade mútua com %s"; +$a->strings["You are sharing with %s"] = "Você está compartilhando com %s"; +$a->strings["%s is sharing with you"] = "%s está compartilhando com você"; +$a->strings["Private communications are not available for this contact."] = "As comunicações privadas não estão disponíveis para este contato."; +$a->strings["Never"] = "Nunca"; +$a->strings["(Update was successful)"] = "(A atualização foi bem sucedida)"; +$a->strings["(Update was not successful)"] = "(A atualização não foi bem sucedida)"; +$a->strings["Suggest friends"] = "Sugerir amigos"; +$a->strings["Network type: %s"] = "Tipo de rede: %s"; +$a->strings["Communications lost with this contact!"] = "As comunicações com esse contato foram perdidas!"; +$a->strings["Fetch further information for feeds"] = "Pega mais informações para feeds"; +$a->strings["Disabled"] = "Desabilitado"; +$a->strings["Fetch information"] = "Buscar informações"; +$a->strings["Fetch information and keywords"] = "Buscar informação e palavras-chave"; +$a->strings["Contact"] = ""; +$a->strings["Submit"] = "Enviar"; +$a->strings["Profile Visibility"] = "Visibilidade do perfil"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, selecione o perfil que você gostaria de exibir para %s quando estiver visualizando seu perfil de modo seguro."; +$a->strings["Contact Information / Notes"] = "Informações sobre o contato / Anotações"; +$a->strings["Edit contact notes"] = "Editar as anotações do contato"; +$a->strings["Visit %s's profile [%s]"] = "Visitar o perfil de %s [%s]"; +$a->strings["Block/Unblock contact"] = "Bloquear/desbloquear o contato"; +$a->strings["Ignore contact"] = "Ignorar o contato"; +$a->strings["Repair URL settings"] = "Reparar as definições de URL"; +$a->strings["View conversations"] = "Ver as conversas"; +$a->strings["Last update:"] = "Última atualização:"; +$a->strings["Update public posts"] = "Atualizar publicações públicas"; +$a->strings["Update now"] = "Atualizar agora"; +$a->strings["Unblock"] = "Desbloquear"; +$a->strings["Block"] = "Bloquear"; +$a->strings["Unignore"] = "Deixar de ignorar"; +$a->strings["Ignore"] = "Ignorar"; +$a->strings["Currently blocked"] = "Atualmente bloqueado"; +$a->strings["Currently ignored"] = "Atualmente ignorado"; +$a->strings["Currently archived"] = "Atualmente arquivado"; +$a->strings["Hide this contact from others"] = "Ocultar este contato dos outros"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Respostas/gostadas associados às suas publicações ainda podem estar visíveis"; +$a->strings["Notification for new posts"] = "Notificações para novas publicações"; +$a->strings["Send a notification of every new post of this contact"] = "Envie uma notificação para todos as novas publicações deste contato"; +$a->strings["Blacklisted keywords"] = "Palavras-chave na Lista Negra"; +$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Lista de palavras-chave separadas por vírgulas que não devem ser convertidas para hashtags, quando \"Buscar informações e palavras-chave\" for selecionado."; +$a->strings["Profile URL"] = "URL do perfil"; +$a->strings["Actions"] = ""; +$a->strings["Contact Settings"] = ""; +$a->strings["Suggestions"] = "Sugestões"; +$a->strings["Suggest potential friends"] = "Sugerir amigos em potencial"; +$a->strings["All Contacts"] = "Todos os contatos"; +$a->strings["Show all contacts"] = "Exibe todos os contatos"; +$a->strings["Unblocked"] = "Desbloquear"; +$a->strings["Only show unblocked contacts"] = "Exibe somente contatos desbloqueados"; +$a->strings["Blocked"] = "Bloqueado"; +$a->strings["Only show blocked contacts"] = "Exibe somente contatos bloqueados"; +$a->strings["Ignored"] = "Ignorados"; +$a->strings["Only show ignored contacts"] = "Exibe somente contatos ignorados"; +$a->strings["Archived"] = "Arquivados"; +$a->strings["Only show archived contacts"] = "Exibe somente contatos arquivados"; +$a->strings["Hidden"] = "Ocultos"; +$a->strings["Only show hidden contacts"] = "Exibe somente contatos ocultos"; +$a->strings["Search your contacts"] = "Pesquisar seus contatos"; +$a->strings["Results for: %s"] = ""; +$a->strings["Update"] = "Atualizar"; +$a->strings["Archive"] = "Arquivar"; +$a->strings["Unarchive"] = "Desarquivar"; +$a->strings["Batch Actions"] = ""; +$a->strings["View all contacts"] = "Ver todos os contatos"; +$a->strings["View all common friends"] = ""; +$a->strings["Advanced Contact Settings"] = "Configurações avançadas do contato"; +$a->strings["Mutual Friendship"] = "Amizade mútua"; +$a->strings["is a fan of yours"] = "é um fã seu"; +$a->strings["you are a fan of"] = "você é um fã de"; +$a->strings["Edit contact"] = "Editar o contato"; +$a->strings["Toggle Blocked status"] = "Alternar o status de bloqueio"; +$a->strings["Toggle Ignored status"] = "Alternar o status de ignorado"; +$a->strings["Toggle Archive status"] = "Alternar o status de arquivamento"; +$a->strings["Delete contact"] = "Excluir o contato"; +$a->strings["No such group"] = "Este grupo não existe"; +$a->strings["Group is empty"] = "O grupo está vazio"; +$a->strings["Group: %s"] = "Grupo: %s"; $a->strings["This entry was edited"] = "Essa entrada foi editada"; $a->strings["%d comment"] = array( 0 => "%d comentário", @@ -1104,6 +868,7 @@ $a->strings["add tag"] = "adicionar etiqueta"; $a->strings["ignore thread"] = "ignorar tópico"; $a->strings["unignore thread"] = "deixar de ignorar tópico"; $a->strings["toggle ignore status"] = "alternar status ignorar"; +$a->strings["ignored"] = "Ignorado"; $a->strings["save to folder"] = "salvar na pasta"; $a->strings["I will attend"] = "Eu vou"; $a->strings["I will not attend"] = "Eu não vou"; @@ -1111,14 +876,847 @@ $a->strings["I might attend"] = "Eu estou pensando em ir"; $a->strings["to"] = "para"; $a->strings["Wall-to-Wall"] = "Mural-para-mural"; $a->strings["via Wall-To-Wall:"] = "via Mural-para-mural"; +$a->strings["Credits"] = ""; +$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = ""; +$a->strings["Contact settings applied."] = "As configurações do contato foram aplicadas."; +$a->strings["Contact update failed."] = "Não foi possível atualizar o contato."; +$a->strings["Contact not found."] = "O contato não foi encontrado."; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATENÇÃO: Isso é muito avançado, se você digitar informações incorretas, suas comunicações com esse contato pode parar de funcionar."; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Por favor, use o botão 'Voltar' do seu navegador agora, caso você não tenha certeza do que está fazendo."; +$a->strings["No mirroring"] = "Nenhum espelhamento"; +$a->strings["Mirror as forwarded posting"] = "Espelhar como postagem encaminhada"; +$a->strings["Mirror as my own posting"] = "Espelhar como minha própria postagem"; +$a->strings["Return to contact editor"] = "Voltar ao editor de contatos"; +$a->strings["Refetch contact data"] = ""; +$a->strings["Remote Self"] = "Eu remoto"; +$a->strings["Mirror postings from this contact"] = "Espelhar publicações deste contato"; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Marcar este contato como eu remoto: o Friendica replicará novas publicações desse usuário."; +$a->strings["Name"] = "Nome"; +$a->strings["Account Nickname"] = "Identificação da conta"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - sobrescreve Nome/Identificação"; +$a->strings["Account URL"] = "URL da conta"; +$a->strings["Friend Request URL"] = "URL da requisição de amizade"; +$a->strings["Friend Confirm URL"] = "URL da confirmação de amizade"; +$a->strings["Notification Endpoint URL"] = "URL do ponto final da notificação"; +$a->strings["Poll/Feed URL"] = "URL do captador/fonte de notícias"; +$a->strings["New photo from this URL"] = "Nova imagem desta URL"; +$a->strings["No potential page delegates located."] = "Nenhuma página delegada potencial localizada."; +$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."] = "Delegados podem administrar todos os aspectos dessa página/conta exceto por configurações básicas da conta.\nFavor não delegar sua conta pessoal para ninguém que você não confie inteiramente."; +$a->strings["Existing Page Managers"] = "Administradores de Páginas Existentes"; +$a->strings["Existing Page Delegates"] = "Delegados de Páginas Existentes"; +$a->strings["Potential Delegates"] = "Delegados Potenciais"; +$a->strings["Remove"] = "Remover"; +$a->strings["Add"] = "Adicionar"; +$a->strings["No entries."] = "Sem entradas."; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s dá as boas vinda à %2\$s"; +$a->strings["Public access denied."] = "Acesso público negado."; +$a->strings["Global Directory"] = "Diretório global"; +$a->strings["Find on this site"] = "Pesquisar neste site"; +$a->strings["Results for:"] = ""; +$a->strings["Site Directory"] = "Diretório do site"; +$a->strings["No entries (some entries may be hidden)."] = "Nenhuma entrada (algumas entradas podem estar ocultas)."; +$a->strings["Access to this profile has been restricted."] = "O acesso a este perfil está restrito."; +$a->strings["Item has been removed."] = "O item foi removido."; +$a->strings["Item not found"] = "O item não foi encontrado"; +$a->strings["Edit post"] = "Editar a publicação"; +$a->strings["Files"] = "Arquivos"; +$a->strings["Not Found"] = "Não encontrada"; +$a->strings["- select -"] = "-selecione-"; +$a->strings["Friend suggestion sent."] = "A sugestão de amigo foi enviada"; +$a->strings["Suggest Friends"] = "Sugerir amigos"; +$a->strings["Suggest a friend for %s"] = "Sugerir um amigo para %s"; +$a->strings["No profile"] = "Nenhum perfil"; +$a->strings["Help:"] = "Ajuda:"; +$a->strings["Page not found."] = "Página não encontrada."; +$a->strings["Welcome to %s"] = "Bem-vindo(a) a %s"; +$a->strings["Total invitation limit exceeded."] = "Limite de convites totais excedido."; +$a->strings["%s : Not a valid email address."] = "%s : Não é um endereço de e-mail válido."; +$a->strings["Please join us on Friendica"] = "Por favor, junte-se à nós na Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite de convites ultrapassado. Favor contactar o administrador do sítio."; +$a->strings["%s : Message delivery failed."] = "%s : Não foi possível enviar a mensagem."; +$a->strings["%d message sent."] = array( + 0 => "%d mensagem enviada.", + 1 => "%d mensagens enviadas.", +); +$a->strings["You have no more invitations available"] = "Você não possui mais convites disponíveis"; +$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."] = "Visite %s para obter uma lista de sites públicos onde você pode se cadastrar. Membros da friendica podem se conectar, mesmo que estejam em sites separados. Além disso você também pode se conectar com membros de várias outras redes sociais."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Para aceitar esse convite, por favor cadastre-se em %s ou qualquer outro site friendica público."; +$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."] = "Os sites friendica estão todos interconectados para criar uma grande rede social com foco na privacidade e controlada por seus membros, que também podem se conectar com várias redes sociais tradicionais. Dê uma olhada em %s para uma lista de sites friendica onde você pode se cadastrar."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Desculpe, mas esse sistema não está configurado para conectar-se com outros sites públicos nem permite convidar novos membros."; +$a->strings["Send invitations"] = "Enviar convites."; +$a->strings["Enter email addresses, one per line:"] = "Digite os endereços de e-mail, um por linha:"; +$a->strings["Your message:"] = "Sua mensagem:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Você está convidado a se juntar a mim e outros amigos em friendica - e também nos ajudar a criar uma experiência social melhor na web."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Você preciso informar este código de convite: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Após você se registrar, por favor conecte-se comigo através da minha página de perfil em:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Para mais informações sobre o projeto Friendica e porque nós achamos que ele é importante, por favor visite-nos em http://friendica.com."; +$a->strings["Time Conversion"] = "Conversão de tempo"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica oferece esse serviço para compartilhar eventos com outras redes e amigos em fusos horários desconhecidos."; +$a->strings["UTC time: %s"] = "Hora UTC: %s"; +$a->strings["Current timezone: %s"] = "Fuso horário atual: %s"; +$a->strings["Converted localtime: %s"] = "Horário local convertido: %s"; +$a->strings["Please select your timezone:"] = "Por favor, selecione seu fuso horário:"; +$a->strings["Remote privacy information not available."] = "Não existe informação disponível sobre a privacidade remota."; +$a->strings["Visible to:"] = "Visível para:"; +$a->strings["No valid account found."] = "Não foi encontrada nenhuma conta válida."; +$a->strings["Password reset request issued. Check your email."] = "A solicitação para reiniciar sua senha foi encaminhada. Verifique seu 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."] = "\n\t\tPrezado %1\$s,\n\t\t\tUma solicitação foi recebida recentemente em \"%2\$s\" para redefinir a\n\t\tsenha da sua conta. Para confirmar este pedido, por favor selecione o link de confirmação\n\t\tabaixo ou copie e cole-o na barra de endereço do seu navegador.\n\n\t\tSe NÃO foi você que solicitou esta alteração por favor, NÃO clique no link\n\t\tfornecido e ignore e/ou apague este e-mail.\n\n\t\tSua senha não será alterada a menos que possamos verificar que foi você que\n\t\temitiu esta solicitação."; +$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\n\t\tSiga este link para verificar sua identidade:\n\n\t\t%1\$s\n\n\t\tVocê então receberá uma mensagem de continuidade contendo a nova senha.\n\t\tVocê pode alterar sua senha na sua página de configurações após efetuar seu login.\n\n\t\tOs dados de login são os seguintes:\n\n\t\tLocalização do Site:\t%2\$s\n\t\tNome de Login:\t%3\$s"; +$a->strings["Password reset requested at %s"] = "Foi feita uma solicitação de reiniciação da senha em %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Não foi possível verificar a solicitação (você pode tê-la submetido anteriormente). A senha não foi reiniciada."; +$a->strings["Password Reset"] = "Redifinir a senha"; +$a->strings["Your password has been reset as requested."] = "Sua senha foi reiniciada, conforme solicitado."; +$a->strings["Your new password is"] = "Sua nova senha é"; +$a->strings["Save or copy your new password - and then"] = "Grave ou copie a sua nova senha e, então"; +$a->strings["click here to login"] = "clique aqui para entrar"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Sua senha pode ser alterada na página de Configurações após você entrar em seu perfil."; +$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\n\t\t\t\tCaro %1\$s,\n\t\t\t\t\tSua senha foi alterada conforme solicitado. Por favor, guarde essas\n\t\t\t\tinformações para seus registros (ou altere a sua senha imediatamente para\n\t\t\t\talgo que você se lembrará).\n\t\t\t"; +$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\n\t\t\t\tOs seus dados de login são os seguintes:\n\n\t\t\t\tLocalização do Site:\t%1\$s\n\t\t\t\tNome de Login:\t%2\$s\n\t\t\t\tSenha:\t%3\$s\n\n\t\t\t\tVocê pode alterar esta senha na sua página de configurações depois que efetuar o seu login.\n\t\t\t"; +$a->strings["Your password has been changed at %s"] = "Sua senha foi modifica às %s"; +$a->strings["Forgot your Password?"] = "Esqueceu a sua senha?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Digite o seu endereço de e-mail e clique em 'Reiniciar' para prosseguir com a reiniciação da sua senha. Após isso, verifique seu e-mail para mais instruções."; +$a->strings["Nickname or Email: "] = "Identificação ou e-mail: "; +$a->strings["Reset"] = "Reiniciar"; +$a->strings["System down for maintenance"] = "Sistema em manutenção"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Não foi encontrada nenhuma palavra-chave associada a você. Por favor, adicione algumas ao seu perfil padrão."; +$a->strings["is interested in:"] = "se interessa por:"; +$a->strings["Profile Match"] = "Correspondência de perfil"; +$a->strings["No matches"] = "Nenhuma correspondência"; +$a->strings["Mood"] = "Humor"; +$a->strings["Set your current mood and tell your friends"] = "Defina o seu humor e conte aos seus amigos"; +$a->strings["Welcome to Friendica"] = "Bemvindo ao Friendica"; +$a->strings["New Member Checklist"] = "Dicas para os novos membros"; +$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."] = "Gostaríamos de oferecer algumas dicas e links para ajudar a tornar a sua experiência agradável. Clique em qualquer item para visitar a página correspondente. Um link para essa página será visível em sua home page por duas semanas após o seu registro inicial e, então, desaparecerá discretamente."; +$a->strings["Getting Started"] = "Do Início"; +$a->strings["Friendica Walk-Through"] = "Passo-a-passo da friendica"; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Na sua página Início Rápido - encontre uma introdução rápida ao seu perfil e abas da rede, faça algumas conexões novas, e encontre alguns grupos entrar."; +$a->strings["Go to Your Settings"] = "Ir para as suas configurações"; +$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."] = "Em sua página Configurações - mude sua senha inicial. Também tome nota de seu Endereço de Identidade. Isso se parece com um endereço de e-mail - e será útil para se fazer amigos na rede social livre."; +$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."] = "Revise as outras configurações, em particular as relacionadas a privacidade. Não estar listado no diretório é o equivalente a não ter o seu número na lista telefônica. Normalmente é interessante você estar listado - a não ser que os seu amigos atuais e potenciais saibam exatamente como encontrar você."; +$a->strings["Upload Profile Photo"] = "Enviar foto do perfil"; +$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Envie uma foto para o seu perfil, caso ainda não tenha feito isso. Estudos indicam que pessoas que publicam fotos reais delas mesmas têm 10 vezes mais chances de encontrar novos amigos do que as que não o fazem."; +$a->strings["Edit Your Profile"] = "Editar seu perfil"; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Edite o seu perfil padrão a seu gosto. Revise as configurações de ocultação da sua lista de amigos e do seu perfil de visitantes desconhecidos."; +$a->strings["Profile Keywords"] = "Palavras-chave do perfil"; +$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Defina algumas palavras-chave públicas para o seu perfil padrão, que descrevam os seus interesses. Nós podemos encontrar outras pessoas com interesses similares e sugerir novas amizades."; +$a->strings["Connecting"] = "Conexões"; +$a->strings["Importing Emails"] = "Importação de e-mails"; +$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"] = "Forneça a informação de acesso ao seu e-mail na sua página de Configuração de Conector se você deseja importar e interagir com amigos ou listas de discussão da sua Caixa de Entrada de e-mail"; +$a->strings["Go to Your Contacts Page"] = "Ir para a sua página de contatos"; +$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."] = "Sua página de contatos é sua rota para o gerenciamento de amizades e conexão com amigos em outras redes. Geralmente você fornece o endereço deles ou a URL do site na janela de diálogo Adicionar Novo Contato."; +$a->strings["Go to Your Site's Directory"] = "Ir para o diretório do seu site"; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "A página de Diretório permite que você encontre outras pessoas nesta rede ou em outras redes federadas. Procure por um link Conectar ou Seguir no perfil que deseja acompanhar. Forneça o seu Endereço de Identidade próprio, se solicitado."; +$a->strings["Finding New People"] = "Pesquisar por novas pessoas"; +$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."] = "No painel lateral da página de Contatos existem várias ferramentas para encontrar novos amigos. Você pode descobrir pessoas com os mesmos interesses, procurar por nomes ou interesses e fornecer sugestões baseadas nos relacionamentos da rede. Em um site completamente novo, as sugestões de amizades geralmente começam a ser populadas dentro de 24 horas."; +$a->strings["Group Your Contacts"] = "Agrupe seus contatos"; +$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."] = "Após fazer novas amizades, organize-as em grupos de conversa privados, a partir da barra lateral na sua página de Contatos. A partir daí, você poderá interagir com cada grupo privativamente, na sua página de Rede."; +$a->strings["Why Aren't My Posts Public?"] = "Por que as minhas publicações não são públicas?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "A friendica respeita sua privacidade. Por padrão, suas publicações estarão visíveis apenas para as pessoas que você adicionou como amigos. Para mais informações, veja a página de ajuda, a partir do link acima."; +$a->strings["Getting Help"] = "Obtendo ajuda"; +$a->strings["Go to the Help Section"] = "Ir para a seção de ajuda"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Consulte nossas páginas de ajuda para mais detalhes sobre as características e recursos do programa."; +$a->strings["Contacts who are not members of a group"] = "Contatos que não são membros de um grupo"; +$a->strings["No more system notifications."] = "Não fazer notificações de sistema."; +$a->strings["System Notifications"] = "Notificações de sistema"; +$a->strings["Post successful."] = "Publicado com sucesso."; +$a->strings["Subscribing to OStatus contacts"] = ""; +$a->strings["No contact provided."] = ""; +$a->strings["Couldn't fetch information for contact."] = ""; +$a->strings["Couldn't fetch friends for contact."] = ""; +$a->strings["Done"] = ""; +$a->strings["success"] = "sucesso"; +$a->strings["failed"] = ""; +$a->strings["Keep this window open until done."] = ""; +$a->strings["Not Extended"] = ""; +$a->strings["Poke/Prod"] = "Cutucar/Incitar"; +$a->strings["poke, prod or do other things to somebody"] = "Cutuca, incita ou faz outras coisas com alguém"; +$a->strings["Recipient"] = "Destinatário"; +$a->strings["Choose what you wish to do to recipient"] = "Selecione o que você deseja fazer com o destinatário"; +$a->strings["Make this post private"] = "Fazer com que essa publicação se torne privada"; +$a->strings["Image uploaded but image cropping failed."] = "A imagem foi enviada, mas não foi possível cortá-la."; +$a->strings["Image size reduction [%s] failed."] = "Não foi possível reduzir o tamanho da imagem [%s]."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recarregue a página pressionando a tecla Shift ou limpe o cache do navegador caso a nova foto não apareça imediatamente"; +$a->strings["Unable to process image"] = "Não foi possível processar a imagem"; +$a->strings["Image exceeds size limit of %s"] = ""; +$a->strings["Unable to process image."] = "Não foi possível processar a imagem."; +$a->strings["Upload File:"] = "Enviar arquivo:"; +$a->strings["Select a profile:"] = "Selecione um perfil:"; +$a->strings["Upload"] = "Enviar"; +$a->strings["or"] = "ou"; +$a->strings["skip this step"] = "pule esta etapa"; +$a->strings["select a photo from your photo albums"] = "selecione uma foto de um álbum de fotos"; +$a->strings["Crop Image"] = "Cortar a imagem"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Por favor, ajuste o corte da imagem para a melhor visualização."; +$a->strings["Done Editing"] = "Encerrar a edição"; +$a->strings["Image uploaded successfully."] = "A imagem foi enviada com sucesso."; +$a->strings["Image upload failed."] = "Não foi possível enviar a imagem."; +$a->strings["Permission denied"] = "Permissão negada"; +$a->strings["Invalid profile identifier."] = "Identificador de perfil inválido."; +$a->strings["Profile Visibility Editor"] = "Editor de visibilidade do perfil"; +$a->strings["Click on a contact to add or remove."] = "Clique em um contato para adicionar ou remover."; +$a->strings["Visible To"] = "Visível para"; +$a->strings["All Contacts (with secure profile access)"] = "Todos os contatos (com acesso a perfil seguro)"; +$a->strings["Account approved."] = "A conta foi aprovada."; +$a->strings["Registration revoked for %s"] = "O registro de %s foi revogado"; +$a->strings["Please login."] = "Por favor, autentique-se."; +$a->strings["Remove My Account"] = "Remover minha conta"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Isso removerá completamente a sua conta. Uma vez feito isso, não será mais possível recuperá-la."; +$a->strings["Please enter your password for verification:"] = "Por favor, digite a sua senha para verificação:"; +$a->strings["Resubscribing to OStatus contacts"] = ""; +$a->strings["Error"] = "Erro"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está seguindo %2\$s's %3\$s"; +$a->strings["Do you really want to delete this suggestion?"] = "Você realmente deseja deletar essa sugestão?"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Não existe nenhuma sugestão disponível. Se este for um site novo, por favor tente novamente em 24 horas."; +$a->strings["Ignore/Hide"] = "Ignorar/Ocultar"; +$a->strings["Tag removed"] = "A etiqueta foi removida"; +$a->strings["Remove Item Tag"] = "Remover a etiqueta do item"; +$a->strings["Select a tag to remove: "] = "Selecione uma etiqueta para remover: "; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este site excedeu o limite diário permitido para registros de novas contas.\nPor favor tente novamente amanhã."; +$a->strings["Import"] = "Importar"; +$a->strings["Move account"] = "Mover conta"; +$a->strings["You can import an account from another Friendica server."] = "Você pode importar um conta de outro sevidor 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."] = "Você precisa exportar sua conta de um servidor antigo e fazer o upload aqui. Nós recriaremos sua conta antiga aqui com todos os seus contatos. Nós também tentaremos informar seus amigos que você se mudou para cá."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Esta funcionalidade está em fase de testes. Não importamos contatos da rede OStatuss (GNU Social/Statusnet) nem da Diaspora."; +$a->strings["Account file"] = "Arquivo de conta"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Para exportar a sua conta, entre em \"Configurações->Exportar dados pessoais\" e selecione \"Exportar conta\""; +$a->strings["[Embedded content - reload page to view]"] = "[Conteúdo incorporado - recarregue a página para ver]"; +$a->strings["No contacts."] = "Nenhum contato."; +$a->strings["Access denied."] = "Acesso negado."; +$a->strings["Invalid request."] = "Solicitação inválida."; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Lamento, talvez seu envio seja maior do que as configurações do PHP permitem"; +$a->strings["Or - did you try to upload an empty file?"] = "Ou - você tentou enviar um arquivo vazio?"; +$a->strings["File exceeds size limit of %s"] = ""; +$a->strings["File upload failed."] = "Não foi possível enviar o arquivo."; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "O número diário de mensagens do mural de %s foi excedido. Não foi possível enviar a mensagem."; +$a->strings["No recipient selected."] = "Não foi selecionado nenhum destinatário."; +$a->strings["Unable to check your home location."] = "Não foi possível verificar a sua localização."; +$a->strings["Message could not be sent."] = "Não foi possível enviar a mensagem."; +$a->strings["Message collection failure."] = "Falha na coleta de mensagens."; +$a->strings["Message sent."] = "A mensagem foi enviada."; +$a->strings["No recipient."] = "Nenhum destinatário."; +$a->strings["Send Private Message"] = "Enviar mensagem privada"; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Caso você deseje uma resposta de %s, por favor verifique se as configurações de privacidade em seu site permitem o recebimento de mensagens de remetentes desconhecidos."; +$a->strings["To:"] = "Para:"; +$a->strings["Subject:"] = "Assunto:"; +$a->strings["Source (bbcode) text:"] = "Texto fonte (bbcode):"; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Texto fonte (Diaspora) a converter para BBcode:"; +$a->strings["Source input: "] = "Entrada fonte:"; +$a->strings["bb2html (raw HTML): "] = "bb2html (HTML puro):"; +$a->strings["bb2html: "] = "bb2html: "; +$a->strings["bb2html2bb: "] = "bb2html2bb: "; +$a->strings["bb2md: "] = "bb2md: "; +$a->strings["bb2md2html: "] = "bb2md2html: "; +$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; +$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; +$a->strings["Source input (Diaspora format): "] = "Fonte de entrada (formato Diaspora):"; +$a->strings["diaspora2bb: "] = "diaspora2bb: "; +$a->strings["View"] = ""; +$a->strings["Previous"] = "Anterior"; +$a->strings["Next"] = "Próximo"; +$a->strings["list"] = ""; +$a->strings["User not found"] = ""; +$a->strings["This calendar format is not supported"] = "Esse formato de agenda não é contemplado"; +$a->strings["No exportable data found"] = ""; +$a->strings["calendar"] = "agenda"; +$a->strings["Not available."] = "Não disponível."; +$a->strings["No results."] = "Nenhum resultado."; +$a->strings["Profile not found."] = "O perfil não foi encontrado."; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Isso pode acontecer eventualmente se o contato foi solicitado por ambas as pessoas e ele já tinha sido aprovado."; +$a->strings["Response from remote site was not understood."] = "A resposta do site remoto não foi compreendida."; +$a->strings["Unexpected response from remote site: "] = "Resposta inesperada do site remoto: "; +$a->strings["Confirmation completed successfully."] = "A confirmação foi completada com sucesso."; +$a->strings["Remote site reported: "] = "O site remoto relatou: "; +$a->strings["Temporary failure. Please wait and try again."] = "Falha temporária. Por favor, aguarde e tente novamente."; +$a->strings["Introduction failed or was revoked."] = "Ocorreu uma falha na apresentação ou ela foi revogada."; +$a->strings["Unable to set contact photo."] = "Não foi possível definir a foto do contato."; +$a->strings["No user record found for '%s' "] = "Não foi encontrado nenhum registro de usuário para '%s' "; +$a->strings["Our site encryption key is apparently messed up."] = "A chave de criptografia do nosso site está, aparentemente, bagunçada."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Foi fornecida uma URL em branco ou não foi possível descriptografá-la."; +$a->strings["Contact record was not found for you on our site."] = "O registro do contato não foi encontrado para você em seu site."; +$a->strings["Site public key not available in contact record for URL %s."] = "A chave pública do site não está disponível no registro do contato para a URL %s"; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "O ID fornecido pelo seu sistema é uma duplicata em nosso sistema. Deve funcionar agora, se você tentar de novo."; +$a->strings["Unable to set your contact credentials on our system."] = "Não foi possível definir suas credenciais de contato no nosso sistema."; +$a->strings["Unable to update your contact profile details on our system"] = "Não foi possível atualizar os detalhes do seu perfil em nosso sistema."; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s se associou a %2\$s"; +$a->strings["This introduction has already been accepted."] = "Esta apresentação já foi aceita."; +$a->strings["Profile location is not valid or does not contain profile information."] = "A localização do perfil não é válida ou não contém uma informação de perfil."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Aviso: a localização do perfil não possui nenhum nome identificável do seu dono."; +$a->strings["Warning: profile location has no profile photo."] = "Aviso: a localização do perfil não possui nenhuma foto do perfil."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "O parâmetro requerido %d não foi encontrado na localização fornecida", + 1 => "Os parâmetros requeridos %d não foram encontrados na localização fornecida", +); +$a->strings["Introduction complete."] = "A apresentação foi finalizada."; +$a->strings["Unrecoverable protocol error."] = "Ocorreu um erro irrecuperável de protocolo."; +$a->strings["Profile unavailable."] = "O perfil não está disponível."; +$a->strings["%s has received too many connection requests today."] = "%s recebeu solicitações de conexão em excesso hoje."; +$a->strings["Spam protection measures have been invoked."] = "As medidas de proteção contra spam foram ativadas."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Os amigos foram notificados para tentar novamente em 24 horas."; +$a->strings["Invalid locator"] = "Localizador inválido"; +$a->strings["Invalid email address."] = "Endereço de e-mail inválido."; +$a->strings["This account has not been configured for email. Request failed."] = "Essa conta não foi configurada para e-mails. Não foi possível atender à solicitação."; +$a->strings["You have already introduced yourself here."] = "Você já fez a sua apresentação aqui."; +$a->strings["Apparently you are already friends with %s."] = "Aparentemente você já é amigo de %s."; +$a->strings["Invalid profile URL."] = "URL de perfil inválida."; +$a->strings["Your introduction has been sent."] = "A sua apresentação foi enviada."; +$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "A sua rede não permite inscrição a distância. Inscreva-se diretamente no seu sistema."; +$a->strings["Please login to confirm introduction."] = "Por favor, autentique-se para confirmar a apresentação."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "A identidade autenticada está incorreta. Por favor, entre como este perfil."; +$a->strings["Confirm"] = "Confirmar"; +$a->strings["Hide this contact"] = "Ocultar este contato"; +$a->strings["Welcome home %s."] = "Bem-vindo(a) à sua página pessoal %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Por favor, confirme sua solicitação de apresentação/conexão para %s."; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Por favor, digite seu 'Endereço de Identificação' a partir de uma das seguintes redes de comunicação suportadas:"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = ""; +$a->strings["Friend/Connection Request"] = "Solicitação de amizade/conexão"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Examplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Please answer the following:"] = "Por favor, entre com as informações solicitadas:"; +$a->strings["Does %s know you?"] = "%s conhece você?"; +$a->strings["Add a personal note:"] = "Adicione uma anotação pessoal:"; +$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."] = " - Por favor, não utilize esse formulário. Ao invés disso, digite %s na sua barra de pesquisa do Diaspora."; +$a->strings["Your Identity Address:"] = "Seu endereço de identificação:"; +$a->strings["Submit Request"] = "Enviar solicitação"; +$a->strings["People Search - %s"] = ""; +$a->strings["Forum Search - %s"] = ""; +$a->strings["Event can not end before it has started."] = "O evento não pode terminar antes de ter começado."; +$a->strings["Event title and start time are required."] = "O título do evento e a hora de início são obrigatórios."; +$a->strings["Create New Event"] = "Criar um novo evento"; +$a->strings["Event details"] = "Detalhes do evento"; +$a->strings["Starting date and Title are required."] = ""; +$a->strings["Event Starts:"] = "Início do evento:"; +$a->strings["Required"] = "Obrigatório"; +$a->strings["Finish date/time is not known or not relevant"] = "A data/hora de término não é conhecida ou não é relevante"; +$a->strings["Event Finishes:"] = "Término do evento:"; +$a->strings["Adjust for viewer timezone"] = "Ajustar para o fuso horário do visualizador"; +$a->strings["Description:"] = "Descrição:"; +$a->strings["Title:"] = "Título:"; +$a->strings["Share this event"] = "Compartilhar este evento"; +$a->strings["Failed to remove event"] = ""; +$a->strings["Event removed"] = ""; +$a->strings["You already added this contact."] = "Você já adicionou esse contato."; +$a->strings["Diaspora support isn't enabled. Contact can't be added."] = ""; +$a->strings["OStatus support is disabled. Contact can't be added."] = ""; +$a->strings["The network type couldn't be detected. Contact can't be added."] = ""; +$a->strings["Contact added"] = "O contato foi adicionado"; +$a->strings["This is Friendica, version"] = "Este é o Friendica, versão"; +$a->strings["running at web location"] = "sendo executado no endereço web"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Por favor, visite friendica.com para aprender mais sobre o projeto Friendica."; +$a->strings["Bug reports and issues: please visit"] = "Relate ou acompanhe um erro no"; +$a->strings["the bugtracker at github"] = "GitHub"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Sugestões, elogios, doações, etc. - favor enviar e-mail para \"Info\" arroba Friendica - ponto com"; +$a->strings["Installed plugins/addons/apps:"] = "Plugins/complementos/aplicações instaladas:"; +$a->strings["No installed plugins/addons/apps"] = "Nenhum plugin/complemento/aplicativo instalado"; +$a->strings["On this server the following remote servers are blocked."] = ""; +$a->strings["Reason for the block"] = ""; +$a->strings["Group created."] = "O grupo foi criado."; +$a->strings["Could not create group."] = "Não foi possível criar o grupo."; +$a->strings["Group not found."] = "O grupo não foi encontrado."; +$a->strings["Group name changed."] = "O nome do grupo foi alterado."; +$a->strings["Save Group"] = "Salvar o grupo"; +$a->strings["Create a group of contacts/friends."] = "Criar um grupo de contatos/amigos."; +$a->strings["Group removed."] = "O grupo foi removido."; +$a->strings["Unable to remove group."] = "Não foi possível remover o grupo."; +$a->strings["Delete Group"] = ""; +$a->strings["Group Editor"] = "Editor de grupo"; +$a->strings["Edit Group Name"] = ""; +$a->strings["Members"] = "Membros"; +$a->strings["Remove Contact"] = ""; +$a->strings["Add Contact"] = ""; +$a->strings["Manage Identities and/or Pages"] = "Gerenciar identidades e/ou páginas"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Alterne entre diferentes identidades ou páginas de comunidade/grupo que dividem detalhes da sua conta ou que você tenha fornecido permissões de \"administração\""; +$a->strings["Select an identity to manage: "] = "Selecione uma identidade para gerenciar: "; +$a->strings["Unable to locate contact information."] = "Não foi possível localizar informação do contato."; +$a->strings["Do you really want to delete this message?"] = "Você realmente deseja deletar essa mensagem?"; +$a->strings["Message deleted."] = "A mensagem foi excluída."; +$a->strings["Conversation removed."] = "A conversa foi removida."; +$a->strings["No messages."] = "Nenhuma mensagem."; +$a->strings["Message not available."] = "A mensagem não está disponível."; +$a->strings["Delete message"] = "Excluir a mensagem"; +$a->strings["Delete conversation"] = "Excluir conversa"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Não foi encontrada nenhuma comunicação segura. Você pode ser capaz de responder a partir da página de perfil do remetente."; +$a->strings["Send Reply"] = "Enviar resposta"; +$a->strings["Unknown sender - %s"] = "Remetente desconhecido - %s"; +$a->strings["You and %s"] = "Você e %s"; +$a->strings["%s and You"] = "%s e você"; +$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; +$a->strings["%d message"] = array( + 0 => "%d mensagem", + 1 => "%d mensagens", +); +$a->strings["Remove term"] = "Remover o termo"; +$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array( + 0 => "", + 1 => "", +); +$a->strings["Messages in this group won't be send to these receivers."] = ""; +$a->strings["Private messages to this person are at risk of public disclosure."] = "Mensagens privadas para esta pessoa correm o risco de sofrerem divulgação pública."; +$a->strings["Invalid contact."] = "Contato inválido."; +$a->strings["Commented Order"] = "Ordem dos comentários"; +$a->strings["Sort by Comment Date"] = "Ordenar pela data do comentário"; +$a->strings["Posted Order"] = "Ordem das publicações"; +$a->strings["Sort by Post Date"] = "Ordenar pela data de publicação"; +$a->strings["Posts that mention or involve you"] = "Publicações que mencionem ou envolvam você"; +$a->strings["New"] = "Nova"; +$a->strings["Activity Stream - by date"] = "Fluxo de atividades - por data"; +$a->strings["Shared Links"] = "Links compartilhados"; +$a->strings["Interesting Links"] = "Links interessantes"; +$a->strings["Starred"] = "Destacada"; +$a->strings["Favourite Posts"] = "Publicações favoritas"; +$a->strings["OpenID protocol error. No ID returned."] = "Erro no protocolo OpenID. Não foi retornada nenhuma ID."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "A conta não foi encontrada e não são permitidos registros via OpenID nesse site."; +$a->strings["Recent Photos"] = "Fotos recentes"; +$a->strings["Upload New Photos"] = "Enviar novas fotos"; +$a->strings["everybody"] = "todos"; +$a->strings["Contact information unavailable"] = "A informação de contato não está disponível"; +$a->strings["Album not found."] = "O álbum não foi encontrado."; +$a->strings["Delete Album"] = "Excluir o álbum"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Você realmente deseja deletar esse álbum de fotos e todas as suas fotos?"; +$a->strings["Delete Photo"] = "Excluir a foto"; +$a->strings["Do you really want to delete this photo?"] = "Você realmente deseja deletar essa foto?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s foi marcado em %2\$s por %3\$s"; +$a->strings["a photo"] = "uma foto"; +$a->strings["Image file is empty."] = "O arquivo de imagem está vazio."; +$a->strings["No photos selected"] = "Não foi selecionada nenhuma foto"; +$a->strings["Access to this item is restricted."] = "O acesso a este item é restrito."; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Você está usando %1$.2f Mbytes dos %2$.2f Mbytes liberados para armazenamento de fotos."; +$a->strings["Upload Photos"] = "Enviar fotos"; +$a->strings["New album name: "] = "Nome do novo álbum: "; +$a->strings["or existing album name: "] = "ou o nome de um álbum já existente: "; +$a->strings["Do not show a status post for this upload"] = "Não exiba uma publicação de status para este envio"; +$a->strings["Show to Groups"] = "Mostre para Grupos"; +$a->strings["Show to Contacts"] = "Mostre para Contatos"; +$a->strings["Private Photo"] = "Foto Privada"; +$a->strings["Public Photo"] = "Foto Pública"; +$a->strings["Edit Album"] = "Editar o álbum"; +$a->strings["Show Newest First"] = "Exibir as mais recentes primeiro"; +$a->strings["Show Oldest First"] = "Exibir as mais antigas primeiro"; +$a->strings["View Photo"] = "Ver a foto"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Permissão negada. O acesso a este item pode estar restrito."; +$a->strings["Photo not available"] = "A foto não está disponível"; +$a->strings["View photo"] = "Ver a imagem"; +$a->strings["Edit photo"] = "Editar a foto"; +$a->strings["Use as profile photo"] = "Usar como uma foto de perfil"; +$a->strings["View Full Size"] = "Ver no tamanho real"; +$a->strings["Tags: "] = "Etiquetas: "; +$a->strings["[Remove any tag]"] = "[Remover qualquer etiqueta]"; +$a->strings["New album name"] = "Novo nome para o álbum"; +$a->strings["Caption"] = "Legenda"; +$a->strings["Add a Tag"] = "Adicionar uma etiqueta"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Por exemplo: @joao, @Joao_da_Silva, @joao@exemplo.com, #Minas_Gerais, #acampamento"; +$a->strings["Do not rotate"] = ""; +$a->strings["Rotate CW (right)"] = "Rotacionar para direita"; +$a->strings["Rotate CCW (left)"] = "Rotacionar para esquerda"; +$a->strings["Private photo"] = "Foto privada"; +$a->strings["Public photo"] = "Foto pública"; +$a->strings["Map"] = ""; +$a->strings["View Album"] = "Ver álbum"; +$a->strings["Only logged in users are permitted to perform a probing."] = ""; +$a->strings["Tips for New Members"] = "Dicas para novos membros"; +$a->strings["Profile deleted."] = "O perfil foi excluído."; +$a->strings["Profile-"] = "Perfil-"; +$a->strings["New profile created."] = "O novo perfil foi criado."; +$a->strings["Profile unavailable to clone."] = "O perfil não está disponível para clonagem."; +$a->strings["Profile Name is required."] = "É necessário informar o nome do perfil."; +$a->strings["Marital Status"] = "Situação amorosa"; +$a->strings["Romantic Partner"] = "Parceiro romântico"; +$a->strings["Work/Employment"] = "Trabalho/emprego"; +$a->strings["Religion"] = "Religião"; +$a->strings["Political Views"] = "Posicionamento político"; +$a->strings["Gender"] = "Gênero"; +$a->strings["Sexual Preference"] = "Preferência sexual"; +$a->strings["XMPP"] = ""; +$a->strings["Homepage"] = "Página Principal"; +$a->strings["Interests"] = "Interesses"; +$a->strings["Address"] = "Endereço"; +$a->strings["Location"] = "Localização"; +$a->strings["Profile updated."] = "O perfil foi atualizado."; +$a->strings[" and "] = " e "; +$a->strings["public profile"] = "perfil público"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s mudou %2\$s para “%3\$s”"; +$a->strings[" - Visit %1\$s's %2\$s"] = " - Visite %2\$s de %1\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s foi atualizado %2\$s, mudando %3\$s."; +$a->strings["Hide contacts and friends:"] = "Esconder contatos e amigos:"; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Ocultar sua lista de contatos/amigos dos visitantes no seu perfil?"; +$a->strings["Show more profile fields:"] = ""; +$a->strings["Profile Actions"] = ""; +$a->strings["Edit Profile Details"] = "Editar os detalhes do perfil"; +$a->strings["Change Profile Photo"] = "Mudar Foto do Perfil"; +$a->strings["View this profile"] = "Ver este perfil"; +$a->strings["Create a new profile using these settings"] = "Criar um novo perfil usando estas configurações"; +$a->strings["Clone this profile"] = "Clonar este perfil"; +$a->strings["Delete this profile"] = "Excluir este perfil"; +$a->strings["Basic information"] = "Informação básica"; +$a->strings["Profile picture"] = "Foto do perfil"; +$a->strings["Preferences"] = "Preferências"; +$a->strings["Status information"] = "Informação de Status"; +$a->strings["Additional information"] = "Informações adicionais"; +$a->strings["Relation"] = ""; +$a->strings["Your Gender:"] = "Seu gênero:"; +$a->strings[" Marital Status:"] = " Situação amorosa:"; +$a->strings["Example: fishing photography software"] = "Exemplo: pesca fotografia software"; +$a->strings["Profile Name:"] = "Nome do perfil:"; +$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Este é o seu perfil público.
Ele pode estar visível para qualquer um que acesse a Internet."; +$a->strings["Your Full Name:"] = "Seu nome completo:"; +$a->strings["Title/Description:"] = "Título/Descrição:"; +$a->strings["Street Address:"] = "Endereço:"; +$a->strings["Locality/City:"] = "Localidade/Cidade:"; +$a->strings["Region/State:"] = "Região/Estado:"; +$a->strings["Postal/Zip Code:"] = "CEP:"; +$a->strings["Country:"] = "País:"; +$a->strings["Who: (if applicable)"] = "Quem: (se pertinente)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemplos: fulano123, Fulano de Tal, fulano@exemplo.com"; +$a->strings["Since [date]:"] = "Desde [data]:"; +$a->strings["Tell us about yourself..."] = "Fale um pouco sobre você..."; +$a->strings["XMPP (Jabber) address:"] = ""; +$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = ""; +$a->strings["Homepage URL:"] = "Endereço do site web:"; +$a->strings["Religious Views:"] = "Orientação religiosa:"; +$a->strings["Public Keywords:"] = "Palavras-chave públicas:"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Usado para sugerir amigos em potencial, pode ser visto pelos outros)"; +$a->strings["Private Keywords:"] = "Palavras-chave privadas:"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Usado na pesquisa de perfis, nunca é exibido para os outros)"; +$a->strings["Musical interests"] = "Preferências musicais"; +$a->strings["Books, literature"] = "Livros, literatura"; +$a->strings["Television"] = "Televisão"; +$a->strings["Film/dance/culture/entertainment"] = "Filme/dança/cultura/entretenimento"; +$a->strings["Hobbies/Interests"] = "Passatempos/Interesses"; +$a->strings["Love/romance"] = "Amor/romance"; +$a->strings["Work/employment"] = "Trabalho/emprego"; +$a->strings["School/education"] = "Escola/educação"; +$a->strings["Contact information and Social Networks"] = "Informações de contato e redes sociais"; +$a->strings["Edit/Manage Profiles"] = "Editar/Gerenciar perfis"; +$a->strings["Registration successful. Please check your email for further instructions."] = "O registro foi bem sucedido. Por favor, verifique seu e-mail para maiores informações."; +$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Falha ao enviar mensagem de email. Estes são os dados da sua conta:
login: %s
senha: %s

Você pode alterar sua senha após fazer o login."; +$a->strings["Registration successful."] = ""; +$a->strings["Your registration can not be processed."] = "Não foi possível processar o seu registro."; +$a->strings["Your registration is pending approval by the site owner."] = "A aprovação do seu registro está pendente junto ao administrador do site."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Você pode (opcionalmente) preencher este formulário via OpenID, fornecendo seu OpenID e clicando em 'Registrar'."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Se você não está familiarizado com o OpenID, por favor, deixe esse campo em branco e preencha os outros itens."; +$a->strings["Your OpenID (optional): "] = "Seu OpenID (opcional): "; +$a->strings["Include your profile in member directory?"] = "Incluir o seu perfil no diretório de membros?"; +$a->strings["Note for the admin"] = ""; +$a->strings["Leave a message for the admin, why you want to join this node"] = ""; +$a->strings["Membership on this site is by invitation only."] = "A associação a este site só pode ser feita mediante convite."; +$a->strings["Your invitation ID: "] = "A ID do seu convite: "; +$a->strings["Registration"] = "Registro"; +$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = ""; +$a->strings["Your Email Address: "] = "Seu endereço de e-mail: "; +$a->strings["New Password:"] = "Nova senha:"; +$a->strings["Leave empty for an auto generated password."] = ""; +$a->strings["Confirm:"] = "Confirme:"; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Selecione uma identificação para o perfil. Ela deve começar com um caractere alfabético. O endereço do seu perfil neste site será 'identificação@\$sitename'"; +$a->strings["Choose a nickname: "] = "Escolha uma identificação: "; +$a->strings["Import your profile to this friendica instance"] = "Importa seu perfil desta instância do friendica"; +$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["Items tagged with: %s"] = ""; +$a->strings["Account"] = "Conta"; +$a->strings["Additional features"] = "Funcionalidades adicionais"; +$a->strings["Display"] = "Tela"; +$a->strings["Social Networks"] = "Redes Sociais"; +$a->strings["Plugins"] = "Plugins"; +$a->strings["Connected apps"] = "Aplicações conectadas"; +$a->strings["Export personal data"] = "Exportar dados pessoais"; +$a->strings["Remove account"] = "Remover a conta"; +$a->strings["Missing some important data!"] = "Está faltando algum dado importante!"; +$a->strings["Failed to connect with email account using the settings provided."] = "Não foi possível conectar à conta de e-mail com as configurações fornecidas."; +$a->strings["Email settings updated."] = "As configurações de e-mail foram atualizadas."; +$a->strings["Features updated"] = "Funcionalidades atualizadas"; +$a->strings["Relocate message has been send to your contacts"] = "A mensagem de relocação foi enviada para seus contatos"; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Não é permitido uma senha em branco. A senha não foi modificada."; +$a->strings["Wrong password."] = "Senha errada."; +$a->strings["Password changed."] = "A senha foi modificada."; +$a->strings["Password update failed. Please try again."] = "Não foi possível atualizar a senha. Por favor, tente novamente."; +$a->strings[" Please use a shorter name."] = " Por favor, use um nome mais curto."; +$a->strings[" Name too short."] = " O nome é muito curto."; +$a->strings["Wrong Password"] = "Senha Errada"; +$a->strings[" Not valid email."] = " Não é um e-mail válido."; +$a->strings[" Cannot change to that email."] = " Não foi possível alterar para esse e-mail."; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "O fórum privado não possui permissões de privacidade. Utilizando o grupo de privacidade padrão."; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = "O fórum privado não possui permissões de privacidade e nenhum grupo de privacidade padrão."; +$a->strings["Settings updated."] = "As configurações foram atualizadas."; +$a->strings["Add application"] = "Adicionar aplicação"; +$a->strings["Save Settings"] = "Salvar configurações"; +$a->strings["Consumer Key"] = "Chave do consumidor"; +$a->strings["Consumer Secret"] = "Segredo do consumidor"; +$a->strings["Redirect"] = "Redirecionar"; +$a->strings["Icon url"] = "URL do ícone"; +$a->strings["You can't edit this application."] = "Você não pode editar esta aplicação."; +$a->strings["Connected Apps"] = "Aplicações conectadas"; +$a->strings["Client key starts with"] = "A chave do cliente inicia com"; +$a->strings["No name"] = "Sem nome"; +$a->strings["Remove authorization"] = "Remover autorização"; +$a->strings["No Plugin settings configured"] = "Não foi definida nenhuma configuração de plugin"; +$a->strings["Plugin Settings"] = "Configurações do plugin"; +$a->strings["Off"] = "Off"; +$a->strings["On"] = "On"; +$a->strings["Additional Features"] = "Funcionalidades Adicionais"; +$a->strings["General Social Media Settings"] = ""; +$a->strings["Disable intelligent shortening"] = ""; +$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = ""; +$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = ""; +$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = ""; +$a->strings["Default group for OStatus contacts"] = ""; +$a->strings["Your legacy GNU Social account"] = ""; +$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = ""; +$a->strings["Repair OStatus subscriptions"] = ""; +$a->strings["Built-in support for %s connectivity is %s"] = "O suporte interno para conectividade de %s está %s"; +$a->strings["enabled"] = "habilitado"; +$a->strings["disabled"] = "desabilitado"; +$a->strings["GNU Social (OStatus)"] = ""; +$a->strings["Email access is disabled on this site."] = "O acesso ao e-mail está desabilitado neste site."; +$a->strings["Email/Mailbox Setup"] = "Configurações do e-mail/caixa postal"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Caso você deseje se comunicar com contatos de e-mail usando este serviço (opcional), por favor especifique como se conectar à sua caixa postal."; +$a->strings["Last successful email check:"] = "Última checagem bem sucedida de e-mail:"; +$a->strings["IMAP server name:"] = "Nome do servidor IMAP:"; +$a->strings["IMAP port:"] = "Porta do IMAP:"; +$a->strings["Security:"] = "Segurança:"; +$a->strings["None"] = "Nenhuma"; +$a->strings["Email login name:"] = "Nome de usuário do e-mail:"; +$a->strings["Email password:"] = "Senha do e-mail:"; +$a->strings["Reply-to address:"] = "Endereço de resposta (Reply-to):"; +$a->strings["Send public posts to all email contacts:"] = "Enviar publicações públicas para todos os contatos de e-mail:"; +$a->strings["Action after import:"] = "Ação após a importação:"; +$a->strings["Move to folder"] = "Mover para pasta"; +$a->strings["Move to folder:"] = "Mover para pasta:"; +$a->strings["No special theme for mobile devices"] = "Nenhum tema especial para dispositivos móveis"; +$a->strings["Display Settings"] = "Configurações de exibição"; +$a->strings["Display Theme:"] = "Tema do perfil:"; +$a->strings["Mobile Theme:"] = "Tema para dispositivos móveis:"; +$a->strings["Suppress warning of insecure networks"] = ""; +$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = ""; +$a->strings["Update browser every xx seconds"] = "Atualizar o navegador a cada xx segundos"; +$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = ""; +$a->strings["Number of items to display per page:"] = "Número de itens a serem exibidos por página:"; +$a->strings["Maximum of 100 items"] = "Máximo de 100 itens"; +$a->strings["Number of items to display per page when viewed from mobile device:"] = "Número de itens a serem exibidos por página quando visualizando em um dispositivo móvel:"; +$a->strings["Don't show emoticons"] = "Não exibir emoticons"; +$a->strings["Calendar"] = "Agenda"; +$a->strings["Beginning of week:"] = ""; +$a->strings["Don't show notices"] = "Não mostra avisos"; +$a->strings["Infinite scroll"] = "rolamento infinito"; +$a->strings["Automatic updates only at the top of the network page"] = "Atualizações automáticas só na parte superior da página da rede"; +$a->strings["Bandwith Saver Mode"] = ""; +$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = ""; +$a->strings["General Theme Settings"] = ""; +$a->strings["Custom Theme Settings"] = ""; +$a->strings["Content Settings"] = ""; +$a->strings["Theme settings"] = "Configurações do tema"; +$a->strings["Account Types"] = ""; +$a->strings["Personal Page Subtypes"] = ""; +$a->strings["Community Forum Subtypes"] = ""; +$a->strings["Personal Page"] = ""; +$a->strings["This account is a regular personal profile"] = ""; +$a->strings["Organisation Page"] = ""; +$a->strings["This account is a profile for an organisation"] = ""; +$a->strings["News Page"] = ""; +$a->strings["This account is a news account/reflector"] = ""; +$a->strings["Community Forum"] = ""; +$a->strings["This account is a community forum where people can discuss with each other"] = ""; +$a->strings["Normal Account Page"] = "Página de conta normal"; +$a->strings["This account is a normal personal profile"] = "Essa conta é um perfil pessoal normal"; +$a->strings["Soapbox Page"] = "Página de vitrine"; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Aprova automaticamente todas as solicitações de conexão/amizade como fãs com permissão somente de leitura"; +$a->strings["Public Forum"] = ""; +$a->strings["Automatically approve all contact requests"] = ""; +$a->strings["Automatic Friend Page"] = "Página de amigo automático"; +$a->strings["Automatically approve all connection/friend requests as friends"] = "Aprovar automaticamente todas as solicitações de conexão/amizade como amigos"; +$a->strings["Private Forum [Experimental]"] = "Fórum privado [Experimental]"; +$a->strings["Private forum - approved members only"] = "Fórum privado - somente membros aprovados"; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opcional) Permitir o uso deste OpenID para entrar nesta conta"; +$a->strings["Publish your default profile in your local site directory?"] = "Publicar o seu perfil padrão no diretório local do seu site?"; +$a->strings["Your profile may be visible in public."] = ""; +$a->strings["Publish your default profile in the global social directory?"] = "Publicar o seu perfil padrão no diretório social global?"; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Ocultar visualização da sua lista de contatos/amigos no seu perfil padrão? "; +$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Se ativado, postar mensagens públicas no Diáspora e em outras redes não será possível."; +$a->strings["Allow friends to post to your profile page?"] = "Permitir aos amigos publicarem na sua página de perfil?"; +$a->strings["Allow friends to tag your posts?"] = "Permitir aos amigos etiquetarem suas publicações?"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Permitir que você seja sugerido como amigo em potencial para novos membros?"; +$a->strings["Permit unknown people to send you private mail?"] = "Permitir que pessoas desconhecidas lhe enviem mensagens privadas?"; +$a->strings["Profile is not published."] = "O perfil não está publicado."; +$a->strings["Your Identity Address is '%s' or '%s'."] = ""; +$a->strings["Automatically expire posts after this many days:"] = "Expirar automaticamente publicações após tantos dias:"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Se deixado em branco, as publicações não irão expirar. Publicações expiradas serão excluídas."; +$a->strings["Advanced expiration settings"] = "Configurações avançadas de expiração"; +$a->strings["Advanced Expiration"] = "Expiração avançada"; +$a->strings["Expire posts:"] = "Expirar publicações:"; +$a->strings["Expire personal notes:"] = "Expirar notas pessoais:"; +$a->strings["Expire starred posts:"] = "Expirar publicações destacadas:"; +$a->strings["Expire photos:"] = "Expirar fotos:"; +$a->strings["Only expire posts by others:"] = "Expirar somente as publicações de outras pessoas:"; +$a->strings["Account Settings"] = "Configurações da conta"; +$a->strings["Password Settings"] = "Configurações da senha"; +$a->strings["Leave password fields blank unless changing"] = "Deixe os campos de senha em branco, a não ser que você queira alterá-la"; +$a->strings["Current Password:"] = "Senha Atual:"; +$a->strings["Your current password to confirm the changes"] = "Sua senha atual para confirmar as mudanças"; +$a->strings["Password:"] = "Senha:"; +$a->strings["Basic Settings"] = "Configurações básicas"; +$a->strings["Email Address:"] = "Endereço de e-mail:"; +$a->strings["Your Timezone:"] = "Seu fuso horário:"; +$a->strings["Your Language:"] = "Seu idioma:"; +$a->strings["Set the language we use to show you friendica interface and to send you emails"] = ""; +$a->strings["Default Post Location:"] = "Localização padrão de suas publicações:"; +$a->strings["Use Browser Location:"] = "Usar localizador do navegador:"; +$a->strings["Security and Privacy Settings"] = "Configurações de segurança e privacidade"; +$a->strings["Maximum Friend Requests/Day:"] = "Número máximo de requisições de amizade por dia:"; +$a->strings["(to prevent spam abuse)"] = "(para prevenir abuso de spammers)"; +$a->strings["Default Post Permissions"] = "Permissões padrão de publicação"; +$a->strings["(click to open/close)"] = "(clique para abrir/fechar)"; +$a->strings["Default Private Post"] = "Publicação Privada Padrão"; +$a->strings["Default Public Post"] = "Publicação Pública Padrão"; +$a->strings["Default Permissions for New Posts"] = "Permissões Padrão para Publicações Novas"; +$a->strings["Maximum private messages per day from unknown people:"] = "Número máximo de mensagens privadas de pessoas desconhecidas, por dia:"; +$a->strings["Notification Settings"] = "Configurações de notificação"; +$a->strings["By default post a status message when:"] = "Por padrão, publicar uma mensagem de status quando:"; +$a->strings["accepting a friend request"] = "aceitar uma requisição de amizade"; +$a->strings["joining a forum/community"] = "associar-se a um fórum/comunidade"; +$a->strings["making an interesting profile change"] = "fazer uma modificação interessante em seu perfil"; +$a->strings["Send a notification email when:"] = "Enviar um e-mail de notificação sempre que:"; +$a->strings["You receive an introduction"] = "Você recebeu uma apresentação"; +$a->strings["Your introductions are confirmed"] = "Suas apresentações forem confirmadas"; +$a->strings["Someone writes on your profile wall"] = "Alguém escrever no mural do seu perfil"; +$a->strings["Someone writes a followup comment"] = "Alguém comentar a sua mensagem"; +$a->strings["You receive a private message"] = "Você recebeu uma mensagem privada"; +$a->strings["You receive a friend suggestion"] = "Você recebe uma suggestão de amigo"; +$a->strings["You are tagged in a post"] = "Você foi etiquetado em uma publicação"; +$a->strings["You are poked/prodded/etc. in a post"] = "Você está cutucado/incitado/etc. em uma publicação"; +$a->strings["Activate desktop notifications"] = ""; +$a->strings["Show desktop popup on new notifications"] = ""; +$a->strings["Text-only notification emails"] = "Emails de notificação apenas de texto"; +$a->strings["Send text only notification emails, without the html part"] = "Enviar e-mails de notificação apenas de texto, sem a parte html"; +$a->strings["Advanced Account/Page Type Settings"] = "Conta avançada/Configurações do tipo de página"; +$a->strings["Change the behaviour of this account for special situations"] = "Modificar o comportamento desta conta em situações especiais"; +$a->strings["Relocate"] = "Relocação"; +$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 você moveu esse perfil de outro servidor e algum dos seus contatos não recebe atualizações, pressione esse botão."; +$a->strings["Resend relocate message to contacts"] = "Reenviar mensagem de relocação para os contatos"; +$a->strings["Export account"] = "Exportar conta"; +$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."] = "Exporta suas informações de conta e contatos. Use para fazer uma cópia de segurança de sua conta e/ou para movê-la para outro servidor."; +$a->strings["Export all"] = "Exportar tudo"; +$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportar as informações de sua conta, contatos e todos os seus items como JSON. Pode ser um arquivo muito grande, e pode levar bastante tempo. Use isto para fazer uma cópia de segurança completa da sua conta (fotos não são exportadas)"; +$a->strings["Do you really want to delete this video?"] = ""; +$a->strings["Delete Video"] = ""; +$a->strings["No videos selected"] = "Nenhum vídeo selecionado"; +$a->strings["Recent Videos"] = "Vídeos Recentes"; +$a->strings["Upload New Videos"] = "Envie Novos Vídeos"; +$a->strings["Friendica Communications Server - Setup"] = "Servidor de Comunicações Friendica - Configuração"; +$a->strings["Could not connect to database."] = "Não foi possível conectar ao banco de dados."; +$a->strings["Could not create table."] = "Não foi possível criar tabela."; +$a->strings["Your Friendica site database has been installed."] = "O banco de dados do seu site Friendica foi instalado."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Você provavelmente precisará importar o arquivo \"database.sql\" manualmente, usando o phpmyadmin ou o mysql."; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Por favor, dê uma olhada no arquivo \"INSTALL.TXT\"."; +$a->strings["Database already in use."] = ""; +$a->strings["System check"] = "Checagem do sistema"; +$a->strings["Check again"] = "Checar novamente"; +$a->strings["Database connection"] = "Conexão de banco de dados"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "À fim de instalar o Friendica, você precisa saber como se conectar ao seu banco de dados."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Por favor, entre em contato com a sua hospedagem ou com o administrador do site caso você tenha alguma dúvida em relação a essas configurações."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "O banco de dados que você especificou abaixo já deve existir. Caso contrário, por favor crie-o antes de continuar."; +$a->strings["Database Server Name"] = "Nome do servidor de banco de dados"; +$a->strings["Database Login Name"] = "Nome do usuário do banco de dados"; +$a->strings["Database Login Password"] = "Senha do usuário do banco de dados"; +$a->strings["For security reasons the password must not be empty"] = ""; +$a->strings["Database Name"] = "Nome do banco de dados"; +$a->strings["Site administrator email address"] = "Endereço de email do administrador do site"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "O endereço de email da sua conta deve ser igual a este para que você possa utilizar o painel de administração web."; +$a->strings["Please select a default timezone for your website"] = "Por favor, selecione o fuso horário padrão para o seu site"; +$a->strings["Site settings"] = "Configurações do site"; +$a->strings["System Language:"] = ""; +$a->strings["Set the default language for your Friendica installation interface and to send emails."] = ""; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Não foi possível encontrar uma versão de linha de comando do PHP nos caminhos do seu servidor web."; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run the background processing. See 'Setup the poller'"] = ""; +$a->strings["PHP executable path"] = "Caminho para o executável do PhP"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Digite o caminho completo do executável PHP. Você pode deixar isso em branco para continuar com a instalação."; +$a->strings["Command line PHP"] = "PHP em linha de comando"; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "O executável do PHP não é o binário do php cli (could be cgi-fcgi version)"; +$a->strings["Found PHP version: "] = "Encontrado PHP versão:"; +$a->strings["PHP cli binary"] = "Binário cli do PHP"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "\"register_argc_argv\" não está habilitado na versão de linha de comando do PHP no seu sistema."; +$a->strings["This is required for message delivery to work."] = "Isto é necessário para o funcionamento do envio de mensagens."; +$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"] = "Erro: a função \"openssl_pkey_new\" no seu sistema não é capaz de gerar as chaves de criptografia"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se estiver usando o Windows, por favor dê uma olhada em \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Gerar chaves de encriptação"; +$a->strings["libCurl PHP module"] = "Módulo PHP libCurl"; +$a->strings["GD graphics PHP module"] = "Módulo PHP GD graphics"; +$a->strings["OpenSSL PHP module"] = "Módulo PHP OpenSSL"; +$a->strings["PDO or MySQLi PHP module"] = ""; +$a->strings["mb_string PHP module"] = "Módulo PHP mb_string "; +$a->strings["XML PHP module"] = ""; +$a->strings["iconv module"] = ""; +$a->strings["Apache mod_rewrite module"] = "Módulo mod_rewrite do Apache"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Erro: o módulo mod-rewrite do Apache é necessário, mas não está instalado."; +$a->strings["Error: libCURL PHP module required but not installed."] = "Erro: o módulo libCURL do PHP é necessário, mas não está instalado."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Erro: o módulo gráfico GD, com suporte a JPEG, do PHP é necessário, mas não está instalado."; +$a->strings["Error: openssl PHP module required but not installed."] = "Erro: o módulo openssl do PHP é necessário, mas não está instalado."; +$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = ""; +$a->strings["Error: The MySQL driver for PDO is not installed."] = ""; +$a->strings["Error: mb_string PHP module required but not installed."] = "Erro: o módulo mb_string PHP é necessário, mas não está instalado."; +$a->strings["Error: iconv PHP module required but not installed."] = ""; +$a->strings["Error, XML PHP module required but not installed."] = "Erro: o módulo XML do PHP é necessário, mas não está instalado."; +$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."] = "O instalador web precisa criar um arquivo chamado \".htconfig.php\" na pasta raiz da instalação e não está conseguindo."; +$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."] = "Geralmente isso está relacionado às definições de permissão, uma vez que o servidor web pode não estar conseguindo escrever os arquivos nesta pasta."; +$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."] = "Ao final desse procedimento, será fornecido um texto que deverá ser salvo em um arquivo de nome. htconfig.php, na pasta raiz da instalação do seu Friendica."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Você também pode pular esse procedimento e executar uma instalação manual. Por favor, dê uma olhada no arquivo \"INSTALL.TXT\" para instruções."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php tem permissão de escrita"; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica usa o engine de template Smarty3 para renderizar suas web views. Smarty3 compila templates para PHP para acelerar a renderização."; +$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."] = "Para guardar os templates compilados, o servidor web necessita de permissão de escrita no diretório view/smarty3/ no diretório raíz do Friendica."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Favor se certificar que o usuário sob o qual o servidor web roda (ex: www-data) tenha permissão de escrita nesse diretório."; +$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: como uma medida de segurança, você deve fornecer ao servidor web permissão de escrita em view/smarty3/ somente--não aos arquivos de template (.tpl) que ele contém."; +$a->strings["view/smarty3 is writable"] = "view/smarty3 tem escrita permitida"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "A reescrita de URLs definida no .htaccess não está funcionando. Por favor, verifique as configurações do seu servidor."; +$a->strings["Url rewrite is working"] = "A reescrita de URLs está funcionando"; +$a->strings["ImageMagick PHP extension is not installed"] = ""; +$a->strings["ImageMagick PHP extension is installed"] = ""; +$a->strings["ImageMagick supports GIF"] = ""; +$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Não foi possível gravar o arquivo de configuração \".htconfig.php\". Por favor, use o texto incluso para criar um arquivo de configuração na raiz da instalação do Friendika em seu servidor web."; +$a->strings["

What next

"] = "

A seguir

"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Você deve configurar [manualmente] uma tarefa agendada para o captador."; +$a->strings["Unable to locate original post."] = "Não foi possível localizar a publicação original."; +$a->strings["Empty post discarded."] = "A publicação em branco foi descartada."; +$a->strings["System error. Post not saved."] = "Erro no sistema. A publicação não foi salva."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Essa mensagem foi enviada a você por %s, um membro da rede social Friendica."; +$a->strings["You may visit them online at %s"] = "Você pode visitá-lo em %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Por favor, entre em contato com o remetente respondendo a esta publicação, caso você não queira mais receber estas mensagens."; +$a->strings["%s posted an update."] = "%s publicou uma atualização."; +$a->strings["Invalid request identifier."] = "Identificador de solicitação inválido"; +$a->strings["Discard"] = "Descartar"; +$a->strings["Network Notifications"] = "Notificações de rede"; +$a->strings["Personal Notifications"] = "Notificações pessoais"; +$a->strings["Home Notifications"] = "Notificações pessoais"; +$a->strings["Show Ignored Requests"] = "Exibir solicitações ignoradas"; +$a->strings["Hide Ignored Requests"] = "Ocultar solicitações ignoradas"; +$a->strings["Notification type: "] = "Tipo de notificação:"; +$a->strings["suggested by %s"] = "sugerido por %s"; +$a->strings["Post a new friend activity"] = "Publicar a adição de amigo"; +$a->strings["if applicable"] = "se aplicável"; +$a->strings["Approve"] = "Aprovar"; +$a->strings["Claims to be known to you: "] = "Alega ser conhecido por você: "; +$a->strings["yes"] = "sim"; +$a->strings["no"] = "não"; +$a->strings["Shall your connection be bidirectional or not?"] = ""; +$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = ""; +$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = ""; +$a->strings["Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = ""; +$a->strings["Friend"] = "Amigo"; +$a->strings["Sharer"] = "Compartilhador"; +$a->strings["Subscriber"] = ""; +$a->strings["No introductions."] = "Sem apresentações."; +$a->strings["Show unread"] = ""; +$a->strings["Show all"] = ""; +$a->strings["No more %s notifications."] = ""; +$a->strings["{0} wants to be your friend"] = "{0} deseja ser seu amigo"; +$a->strings["{0} sent you a message"] = "{0} lhe enviou uma mensagem"; +$a->strings["{0} requested registration"] = "{0} solicitou registro"; $a->strings["Theme settings updated."] = "As configurações do tema foram atualizadas."; $a->strings["Site"] = "Site"; $a->strings["Users"] = "Usuários"; -$a->strings["Plugins"] = "Plugins"; $a->strings["Themes"] = "Temas"; -$a->strings["Additional features"] = "Funcionalidades adicionais"; $a->strings["DB updates"] = "Atualizações do BD"; $a->strings["Inspect Queue"] = ""; +$a->strings["Server Blocklist"] = ""; $a->strings["Federation Statistics"] = ""; $a->strings["Logs"] = "Relatórios"; $a->strings["View Logs"] = ""; @@ -1127,9 +1725,27 @@ $a->strings["check webfinger"] = "verifica webfinger"; $a->strings["Plugin Features"] = "Recursos do plugin"; $a->strings["diagnostics"] = "diagnóstico"; $a->strings["User registrations waiting for confirmation"] = "Cadastros de novos usuários aguardando confirmação"; +$a->strings["The blocked domain"] = ""; +$a->strings["The reason why you blocked this domain."] = ""; +$a->strings["Delete domain"] = ""; +$a->strings["Check to delete this entry from the blocklist"] = ""; +$a->strings["Administration"] = "Administração"; +$a->strings["This page can be used to define a black list of servers from the federated network that are not allowed to interact with your node. For all entered domains you should also give a reason why you have blocked the remote server."] = ""; +$a->strings["The list of blocked servers will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily."] = ""; +$a->strings["Add new entry to block list"] = ""; +$a->strings["Server Domain"] = ""; +$a->strings["The domain of the new server to add to the block list. Do not include the protocol."] = ""; +$a->strings["Block reason"] = ""; +$a->strings["Add Entry"] = ""; +$a->strings["Save changes to the blocklist"] = ""; +$a->strings["Current Entries in the Blocklist"] = ""; +$a->strings["Delete entry from blocklist"] = ""; +$a->strings["Delete entry from blocklist?"] = ""; +$a->strings["Server added to blocklist."] = ""; +$a->strings["Site blocklist updated."] = ""; +$a->strings["unknown"] = ""; $a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = ""; $a->strings["The Auto Discovered Contact Directory feature is not enabled, it will improve the data displayed here."] = ""; -$a->strings["Administration"] = "Administração"; $a->strings["Currently this node is aware of %d nodes from the following platforms:"] = ""; $a->strings["ID"] = "ID"; $a->strings["Recipient Name"] = ""; @@ -1137,6 +1753,8 @@ $a->strings["Recipient Profile"] = ""; $a->strings["Created"] = ""; $a->strings["Last Tried"] = ""; $a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = ""; +$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the command php include/dbstructure.php toinnodb of your Friendica installation for an automatic conversion.
"] = ""; +$a->strings["You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB."] = ""; $a->strings["Normal Account"] = "Conta normal"; $a->strings["Soapbox Account"] = "Conta de vitrine"; $a->strings["Community/Celebrity Account"] = "Conta de comunidade/celebridade"; @@ -1150,15 +1768,11 @@ $a->strings["Pending registrations"] = "Registros pendentes"; $a->strings["Version"] = "Versão"; $a->strings["Active plugins"] = "Plugins ativos"; $a->strings["Can not parse base url. Must have at least ://"] = "Não foi possível analisar a URL. Ela deve conter pelo menos ://"; -$a->strings["RINO2 needs mcrypt php extension to work."] = ""; $a->strings["Site settings updated."] = "As configurações do site foram atualizadas."; -$a->strings["No special theme for mobile devices"] = "Nenhum tema especial para dispositivos móveis"; $a->strings["No community page"] = "Sem página de comunidade"; $a->strings["Public postings from users of this site"] = "Textos públicos de usuários deste sítio"; $a->strings["Global community page"] = "Página global da comunidade"; -$a->strings["Never"] = "Nunca"; $a->strings["At post arrival"] = "Na chegada da publicação"; -$a->strings["Disabled"] = "Desabilitado"; $a->strings["Users, Global Contacts"] = "Usuários, Contatos Globais"; $a->strings["Users, Global Contacts/fallback"] = "Usuários, Contatos Globais/plano B"; $a->strings["One month"] = "Um mês"; @@ -1172,8 +1786,6 @@ $a->strings["Open"] = "Aberto"; $a->strings["No SSL policy, links will track page SSL state"] = "Nenhuma política de SSL, os links irão rastrear o estado SSL da página"; $a->strings["Force all links to use SSL"] = "Forçar todos os links a utilizar SSL"; $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificado auto-assinado, usar SSL somente para links locais (não recomendado)"; -$a->strings["Save Settings"] = "Salvar configurações"; -$a->strings["Registration"] = "Registro"; $a->strings["File upload"] = "Envio de arquivo"; $a->strings["Policies"] = "Políticas"; $a->strings["Auto Discovered Contact Directory"] = ""; @@ -1200,8 +1812,6 @@ $a->strings["SSL link policy"] = "Política de link SSL"; $a->strings["Determines whether generated links should be forced to use SSL"] = "Determina se os links gerados devem ser forçados a utilizar SSL"; $a->strings["Force SSL"] = "Forçar SSL"; $a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Forçar todas as solicitações não-SSL para SSL - Atenção: em alguns sistemas isso pode levar a loops infinitos."; -$a->strings["Old style 'Share'"] = "Estilo antigo do 'Compartilhar' "; -$a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Desativa o elemento bbcode 'compartilhar' para repetir ítens."; $a->strings["Hide help entry from navigation menu"] = "Oculta a entrada 'Ajuda' do menu de navegação"; $a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Oculta a entrada de menu para as páginas de Ajuda do menu de navegação. Ainda será possível acessá-las chamando /help diretamente."; $a->strings["Single user instance"] = "Instância de usuário único"; @@ -1247,8 +1857,6 @@ $a->strings["OpenID support"] = "Suporte ao OpenID"; $a->strings["OpenID support for registration and logins."] = "Suporte ao OpenID para registros e autenticações."; $a->strings["Fullname check"] = "Verificar nome completo"; $a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Forçar os usuários a usar um espaço em branco entre o nome e o sobrenome, ao preencherem o nome completo no registro, como uma medida contra o spam"; -$a->strings["UTF-8 Regular expressions"] = "Expressões regulares UTF-8"; -$a->strings["Use PHP UTF8 regular expressions"] = "Use expressões regulares do PHP em UTF8"; $a->strings["Community Page Style"] = "Estilo da página de comunidade"; $a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "Tipo de página de comunidade para mostrar. 'Comunidade Global' mostra todos os textos públicos de uma rede aberta e distribuída que chega neste servidor."; $a->strings["Posts per user on community page"] = "Textos por usuário na página da comunidade"; @@ -1271,14 +1879,12 @@ $a->strings["Proxy user"] = "Usuário do proxy"; $a->strings["Proxy URL"] = "URL do proxy"; $a->strings["Network timeout"] = "Limite de tempo da rede"; $a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valor em segundos. Defina como 0 para ilimitado (não recomendado)."; -$a->strings["Delivery interval"] = "Intervalo de envio"; -$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Postergue o processo de entrega em background por essa quantidade de segundos visando reduzir a carga do sistema. Recomendado: 4-5 para servidores compartilhados (shared hosts), 2-3 para servidores privados virtuais (VPS). 0-1 para grandes servidores dedicados."; -$a->strings["Poll interval"] = "Intervalo da busca (polling)"; -$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Postergue o processo de entrega em background por essa quantidade de segundos visando reduzir a carga do sistema. Se 0, use intervalo de entrega."; $a->strings["Maximum Load Average"] = "Média de Carga Máxima"; $a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carga do sistema máxima antes que os processos de entrega e busca sejam postergados - padrão 50."; $a->strings["Maximum Load Average (Frontend)"] = ""; $a->strings["Maximum system load before the frontend quits service - default 50."] = ""; +$a->strings["Minimal Memory"] = ""; +$a->strings["Minimal free memory in MB for the poller. Needs access to /proc/meminfo - default 0 (deactivated)."] = ""; $a->strings["Maximum table size for optimization"] = ""; $a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = ""; $a->strings["Minimum level of fragmentation"] = ""; @@ -1295,10 +1901,6 @@ $a->strings["Search the local directory"] = ""; $a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = ""; $a->strings["Publish server information"] = ""; $a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details."] = ""; -$a->strings["Use MySQL full text engine"] = "Use o engine de texto completo (full text) do MySQL"; -$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Ativa a engine de texto completo (full text). Acelera a busca - mas só pode buscar apenas por 4 ou mais caracteres."; -$a->strings["Suppress Language"] = "Retira idioma"; -$a->strings["Suppress language information in meta information about a posting."] = "Retira informações sobre idioma nas meta informações sobre uma publicação."; $a->strings["Suppress Tags"] = "Suprime etiquetas"; $a->strings["Suppress showing a list of hashtags at the end of the posting."] = "suprime mostrar uma lista de hashtags no final de cada texto."; $a->strings["Path to item cache"] = "Diretório do cache de item"; @@ -1307,32 +1909,26 @@ $a->strings["Cache duration in seconds"] = "Duração do cache em segundos"; $a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "Por quanto tempo os arquivos de cache devem ser mantidos? O valor padrão é 86400 segundos (um dia). Para desativar o cache, defina o valor para -1."; $a->strings["Maximum numbers of comments per post"] = "O número máximo de comentários por post"; $a->strings["How much comments should be shown for each post? Default value is 100."] = "Quanto comentários devem ser mostradas em cada post? O valor padrão é 100."; -$a->strings["Path for lock file"] = "Diretório do arquivo de trava"; -$a->strings["The lock file is used to avoid multiple pollers at one time. Only define a folder here."] = ""; $a->strings["Temp path"] = "Diretório Temp"; $a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = ""; $a->strings["Base path to installation"] = "Diretório base para instalação"; $a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = ""; $a->strings["Disable picture proxy"] = "Disabilitar proxy de imagem"; $a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "O proxy de imagem aumenta o desempenho e privacidade. Ele não deve ser usado em sistemas com largura de banda muito baixa."; -$a->strings["Enable old style pager"] = "Habilita estilo antigo de paginação"; -$a->strings["The old style pager has page numbers but slows down massively the page speed."] = "O estilo antigo de paginação tem número de páginas mas dimunui muito a velocidade das páginas."; $a->strings["Only search in tags"] = "Somente pesquisa nas estiquetas"; $a->strings["On large systems the text search can slow down the system extremely."] = "Em grandes sistemas a pesquisa de texto pode deixar o sistema muito lento."; $a->strings["New base url"] = "Nova URL 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["Embedly API key"] = ""; -$a->strings["Embedly is used to fetch additional data for web pages. This is an optional parameter."] = ""; -$a->strings["Enable 'worker' background processing"] = ""; -$a->strings["The worker background processing limits the number of parallel background jobs to a maximum number and respects the system load."] = ""; $a->strings["Maximum number of parallel workers"] = ""; $a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = ""; $a->strings["Don't use 'proc_open' with the worker"] = ""; $a->strings["Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosters. If this is enabled you should increase the frequency of poller calls in your crontab."] = ""; $a->strings["Enable fastlane"] = ""; $a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = ""; +$a->strings["Enable frontend worker"] = ""; +$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = ""; $a->strings["Update has been marked successful"] = "A atualização foi marcada como bem sucedida"; $a->strings["Database structure update %s was successfully applied."] = "A atualização da estrutura do banco de dados %s foi aplicada com sucesso."; $a->strings["Executing of database structure update %s failed with error: %s"] = "A execução da atualização da estrutura do banco de dados %s falhou com o erro: %s"; @@ -1362,17 +1958,14 @@ $a->strings["User '%s' blocked"] = "O usuário '%s' foi bloqueado"; $a->strings["Register date"] = "Data de registro"; $a->strings["Last login"] = "Última entrada"; $a->strings["Last item"] = "Último item"; -$a->strings["Account"] = "Conta"; $a->strings["Add User"] = "Adicionar usuário"; $a->strings["select all"] = "selecionar todos"; $a->strings["User registrations waiting for confirm"] = "Registros de usuário aguardando confirmação"; $a->strings["User waiting for permanent deletion"] = "Usuário aguardando por fim permanente da conta."; $a->strings["Request date"] = "Solicitar data"; $a->strings["No registrations."] = "Nenhum registro."; -$a->strings["Approve"] = "Aprovar"; +$a->strings["Note from the user"] = ""; $a->strings["Deny"] = "Negar"; -$a->strings["Block"] = "Bloquear"; -$a->strings["Unblock"] = "Desbloquear"; $a->strings["Site admin"] = "Administração do site"; $a->strings["Account expired"] = "Conta expirou"; $a->strings["New User"] = "Novo usuário"; @@ -1399,6 +1992,8 @@ $a->strings["No themes found on the system. They should be paced in %1\$s"] = "" $a->strings["[Experimental]"] = "[Esperimental]"; $a->strings["[Unsupported]"] = "[Não suportado]"; $a->strings["Log settings updated."] = "As configurações de relatórios foram atualizadas."; +$a->strings["PHP log currently enabled."] = ""; +$a->strings["PHP log currently disabled."] = ""; $a->strings["Clear"] = "Limpar"; $a->strings["Enable Debugging"] = "Habilitar depuração"; $a->strings["Log file"] = "Arquivo do relatório"; @@ -1406,563 +2001,16 @@ $a->strings["Must be writable by web server. Relative to your Friendica top-leve $a->strings["Log level"] = "Nível do relatório"; $a->strings["PHP logging"] = ""; $a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = ""; -$a->strings["Off"] = "Off"; -$a->strings["On"] = "On"; $a->strings["Lock feature %s"] = "Bloquear funcionalidade %s"; $a->strings["Manage Additional Features"] = "Gerenciar funcionalidades adicionais"; -$a->strings["%d contact edited."] = array( - 0 => "", - 1 => "", -); -$a->strings["Could not access contact record."] = "Não foi possível acessar o registro do contato."; -$a->strings["Could not locate selected profile."] = "Não foi possível localizar o perfil selecionado."; -$a->strings["Contact updated."] = "O contato foi atualizado."; -$a->strings["Contact has been blocked"] = "O contato foi bloqueado"; -$a->strings["Contact has been unblocked"] = "O contato foi desbloqueado"; -$a->strings["Contact has been ignored"] = "O contato foi ignorado"; -$a->strings["Contact has been unignored"] = "O contato deixou de ser ignorado"; -$a->strings["Contact has been archived"] = "O contato foi arquivado"; -$a->strings["Contact has been unarchived"] = "O contato foi desarquivado"; -$a->strings["Drop contact"] = ""; -$a->strings["Do you really want to delete this contact?"] = "Você realmente deseja deletar esse contato?"; -$a->strings["Contact has been removed."] = "O contato foi removido."; -$a->strings["You are mutual friends with %s"] = "Você tem uma amizade mútua com %s"; -$a->strings["You are sharing with %s"] = "Você está compartilhando com %s"; -$a->strings["%s is sharing with you"] = "%s está compartilhando com você"; -$a->strings["Private communications are not available for this contact."] = "As comunicações privadas não estão disponíveis para este contato."; -$a->strings["(Update was successful)"] = "(A atualização foi bem sucedida)"; -$a->strings["(Update was not successful)"] = "(A atualização não foi bem sucedida)"; -$a->strings["Suggest friends"] = "Sugerir amigos"; -$a->strings["Network type: %s"] = "Tipo de rede: %s"; -$a->strings["Communications lost with this contact!"] = "As comunicações com esse contato foram perdidas!"; -$a->strings["Fetch further information for feeds"] = "Pega mais informações para feeds"; -$a->strings["Fetch information"] = "Buscar informações"; -$a->strings["Fetch information and keywords"] = "Buscar informação e palavras-chave"; -$a->strings["Contact"] = ""; -$a->strings["Profile Visibility"] = "Visibilidade do perfil"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, selecione o perfil que você gostaria de exibir para %s quando estiver visualizando seu perfil de modo seguro."; -$a->strings["Contact Information / Notes"] = "Informações sobre o contato / Anotações"; -$a->strings["Edit contact notes"] = "Editar as anotações do contato"; -$a->strings["Block/Unblock contact"] = "Bloquear/desbloquear o contato"; -$a->strings["Ignore contact"] = "Ignorar o contato"; -$a->strings["Repair URL settings"] = "Reparar as definições de URL"; -$a->strings["View conversations"] = "Ver as conversas"; -$a->strings["Last update:"] = "Última atualização:"; -$a->strings["Update public posts"] = "Atualizar publicações públicas"; -$a->strings["Update now"] = "Atualizar agora"; -$a->strings["Unignore"] = "Deixar de ignorar"; -$a->strings["Ignore"] = "Ignorar"; -$a->strings["Currently blocked"] = "Atualmente bloqueado"; -$a->strings["Currently ignored"] = "Atualmente ignorado"; -$a->strings["Currently archived"] = "Atualmente arquivado"; -$a->strings["Hide this contact from others"] = "Ocultar este contato dos outros"; -$a->strings["Replies/likes to your public posts may still be visible"] = "Respostas/gostadas associados às suas publicações ainda podem estar visíveis"; -$a->strings["Notification for new posts"] = "Notificações para novas publicações"; -$a->strings["Send a notification of every new post of this contact"] = "Envie uma notificação para todos as novas publicações deste contato"; -$a->strings["Blacklisted keywords"] = "Palavras-chave na Lista Negra"; -$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Lista de palavras-chave separadas por vírgulas que não devem ser convertidas para hashtags, quando \"Buscar informações e palavras-chave\" for selecionado."; -$a->strings["Actions"] = ""; -$a->strings["Contact Settings"] = ""; -$a->strings["Suggestions"] = "Sugestões"; -$a->strings["Suggest potential friends"] = "Sugerir amigos em potencial"; -$a->strings["Show all contacts"] = "Exibe todos os contatos"; -$a->strings["Unblocked"] = "Desbloquear"; -$a->strings["Only show unblocked contacts"] = "Exibe somente contatos desbloqueados"; -$a->strings["Blocked"] = "Bloqueado"; -$a->strings["Only show blocked contacts"] = "Exibe somente contatos bloqueados"; -$a->strings["Ignored"] = "Ignorados"; -$a->strings["Only show ignored contacts"] = "Exibe somente contatos ignorados"; -$a->strings["Archived"] = "Arquivados"; -$a->strings["Only show archived contacts"] = "Exibe somente contatos arquivados"; -$a->strings["Hidden"] = "Ocultos"; -$a->strings["Only show hidden contacts"] = "Exibe somente contatos ocultos"; -$a->strings["Search your contacts"] = "Pesquisar seus contatos"; -$a->strings["Update"] = "Atualizar"; -$a->strings["Archive"] = "Arquivar"; -$a->strings["Unarchive"] = "Desarquivar"; -$a->strings["Batch Actions"] = ""; -$a->strings["View all contacts"] = "Ver todos os contatos"; -$a->strings["View all common friends"] = ""; -$a->strings["Advanced Contact Settings"] = "Configurações avançadas do contato"; -$a->strings["Mutual Friendship"] = "Amizade mútua"; -$a->strings["is a fan of yours"] = "é um fã seu"; -$a->strings["you are a fan of"] = "você é um fã de"; -$a->strings["Toggle Blocked status"] = "Alternar o status de bloqueio"; -$a->strings["Toggle Ignored status"] = "Alternar o status de ignorado"; -$a->strings["Toggle Archive status"] = "Alternar o status de arquivamento"; -$a->strings["Delete contact"] = "Excluir o contato"; -$a->strings["Profile not found."] = "O perfil não foi encontrado."; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Isso pode acontecer eventualmente se o contato foi solicitado por ambas as pessoas e ele já tinha sido aprovado."; -$a->strings["Response from remote site was not understood."] = "A resposta do site remoto não foi compreendida."; -$a->strings["Unexpected response from remote site: "] = "Resposta inesperada do site remoto: "; -$a->strings["Confirmation completed successfully."] = "A confirmação foi completada com sucesso."; -$a->strings["Remote site reported: "] = "O site remoto relatou: "; -$a->strings["Temporary failure. Please wait and try again."] = "Falha temporária. Por favor, aguarde e tente novamente."; -$a->strings["Introduction failed or was revoked."] = "Ocorreu uma falha na apresentação ou ela foi revogada."; -$a->strings["Unable to set contact photo."] = "Não foi possível definir a foto do contato."; -$a->strings["No user record found for '%s' "] = "Não foi encontrado nenhum registro de usuário para '%s' "; -$a->strings["Our site encryption key is apparently messed up."] = "A chave de criptografia do nosso site está, aparentemente, bagunçada."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Foi fornecida uma URL em branco ou não foi possível descriptografá-la."; -$a->strings["Contact record was not found for you on our site."] = "O registro do contato não foi encontrado para você em seu site."; -$a->strings["Site public key not available in contact record for URL %s."] = "A chave pública do site não está disponível no registro do contato para a URL %s"; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "O ID fornecido pelo seu sistema é uma duplicata em nosso sistema. Deve funcionar agora, se você tentar de novo."; -$a->strings["Unable to set your contact credentials on our system."] = "Não foi possível definir suas credenciais de contato no nosso sistema."; -$a->strings["Unable to update your contact profile details on our system"] = "Não foi possível atualizar os detalhes do seu perfil em nosso sistema."; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s se associou a %2\$s"; -$a->strings["People Search - %s"] = ""; -$a->strings["Forum Search - %s"] = ""; -$a->strings["Event can not end before it has started."] = "O evento não pode terminar antes de ter começado."; -$a->strings["Event title and start time are required."] = "O título do evento e a hora de início são obrigatórios."; -$a->strings["Create New Event"] = "Criar um novo evento"; -$a->strings["Event details"] = "Detalhes do evento"; -$a->strings["Starting date and Title are required."] = ""; -$a->strings["Event Starts:"] = "Início do evento:"; -$a->strings["Required"] = "Obrigatório"; -$a->strings["Finish date/time is not known or not relevant"] = "A data/hora de término não é conhecida ou não é relevante"; -$a->strings["Event Finishes:"] = "Término do evento:"; -$a->strings["Adjust for viewer timezone"] = "Ajustar para o fuso horário do visualizador"; -$a->strings["Description:"] = "Descrição:"; -$a->strings["Title:"] = "Título:"; -$a->strings["Share this event"] = "Compartilhar este evento"; -$a->strings["Friend suggestion sent."] = "A sugestão de amigo foi enviada"; -$a->strings["Suggest Friends"] = "Sugerir amigos"; -$a->strings["Suggest a friend for %s"] = "Sugerir um amigo para %s"; -$a->strings["Unable to locate original post."] = "Não foi possível localizar a publicação original."; -$a->strings["Empty post discarded."] = "A publicação em branco foi descartada."; -$a->strings["System error. Post not saved."] = "Erro no sistema. A publicação não foi salva."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Essa mensagem foi enviada a você por %s, um membro da rede social Friendica."; -$a->strings["You may visit them online at %s"] = "Você pode visitá-lo em %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Por favor, entre em contato com o remetente respondendo a esta publicação, caso você não queira mais receber estas mensagens."; -$a->strings["%s posted an update."] = "%s publicou uma atualização."; -$a->strings["Mood"] = "Humor"; -$a->strings["Set your current mood and tell your friends"] = "Defina o seu humor e conte aos seus amigos"; -$a->strings["Poke/Prod"] = "Cutucar/Incitar"; -$a->strings["poke, prod or do other things to somebody"] = "Cutuca, incita ou faz outras coisas com alguém"; -$a->strings["Recipient"] = "Destinatário"; -$a->strings["Choose what you wish to do to recipient"] = "Selecione o que você deseja fazer com o destinatário"; -$a->strings["Make this post private"] = "Fazer com que essa publicação se torne privada"; -$a->strings["Image uploaded but image cropping failed."] = "A imagem foi enviada, mas não foi possível cortá-la."; -$a->strings["Image size reduction [%s] failed."] = "Não foi possível reduzir o tamanho da imagem [%s]."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recarregue a página pressionando a tecla Shift ou limpe o cache do navegador caso a nova foto não apareça imediatamente"; -$a->strings["Unable to process image"] = "Não foi possível processar a imagem"; -$a->strings["Upload File:"] = "Enviar arquivo:"; -$a->strings["Select a profile:"] = "Selecione um perfil:"; -$a->strings["Upload"] = "Enviar"; -$a->strings["or"] = "ou"; -$a->strings["skip this step"] = "pule esta etapa"; -$a->strings["select a photo from your photo albums"] = "selecione uma foto de um álbum de fotos"; -$a->strings["Crop Image"] = "Cortar a imagem"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Por favor, ajuste o corte da imagem para a melhor visualização."; -$a->strings["Done Editing"] = "Encerrar a edição"; -$a->strings["Image uploaded successfully."] = "A imagem foi enviada com sucesso."; -$a->strings["Profile deleted."] = "O perfil foi excluído."; -$a->strings["Profile-"] = "Perfil-"; -$a->strings["New profile created."] = "O novo perfil foi criado."; -$a->strings["Profile unavailable to clone."] = "O perfil não está disponível para clonagem."; -$a->strings["Profile Name is required."] = "É necessário informar o nome do perfil."; -$a->strings["Marital Status"] = "Situação amorosa"; -$a->strings["Romantic Partner"] = "Parceiro romântico"; -$a->strings["Work/Employment"] = "Trabalho/emprego"; -$a->strings["Religion"] = "Religião"; -$a->strings["Political Views"] = "Posicionamento político"; -$a->strings["Gender"] = "Gênero"; -$a->strings["Sexual Preference"] = "Preferência sexual"; -$a->strings["Homepage"] = "Página Principal"; -$a->strings["Interests"] = "Interesses"; -$a->strings["Address"] = "Endereço"; -$a->strings["Location"] = "Localização"; -$a->strings["Profile updated."] = "O perfil foi atualizado."; -$a->strings[" and "] = " e "; -$a->strings["public profile"] = "perfil público"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s mudou %2\$s para “%3\$s”"; -$a->strings[" - Visit %1\$s's %2\$s"] = " - Visite %2\$s de %1\$s"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s foi atualizado %2\$s, mudando %3\$s."; -$a->strings["Hide contacts and friends:"] = "Esconder contatos e amigos:"; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Ocultar sua lista de contatos/amigos dos visitantes no seu perfil?"; -$a->strings["Show more profile fields:"] = ""; -$a->strings["Profile Actions"] = ""; -$a->strings["Edit Profile Details"] = "Editar os detalhes do perfil"; -$a->strings["Change Profile Photo"] = "Mudar Foto do Perfil"; -$a->strings["View this profile"] = "Ver este perfil"; -$a->strings["Create a new profile using these settings"] = "Criar um novo perfil usando estas configurações"; -$a->strings["Clone this profile"] = "Clonar este perfil"; -$a->strings["Delete this profile"] = "Excluir este perfil"; -$a->strings["Basic information"] = "Informação básica"; -$a->strings["Profile picture"] = "Foto do perfil"; -$a->strings["Preferences"] = "Preferências"; -$a->strings["Status information"] = "Informação de Status"; -$a->strings["Additional information"] = "Informações adicionais"; -$a->strings["Relation"] = ""; -$a->strings["Your Gender:"] = "Seu gênero:"; -$a->strings[" Marital Status:"] = " Situação amorosa:"; -$a->strings["Example: fishing photography software"] = "Exemplo: pesca fotografia software"; -$a->strings["Profile Name:"] = "Nome do perfil:"; -$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Este é o seu perfil público.
Ele pode estar visível para qualquer um que acesse a Internet."; -$a->strings["Your Full Name:"] = "Seu nome completo:"; -$a->strings["Title/Description:"] = "Título/Descrição:"; -$a->strings["Street Address:"] = "Endereço:"; -$a->strings["Locality/City:"] = "Localidade/Cidade:"; -$a->strings["Region/State:"] = "Região/Estado:"; -$a->strings["Postal/Zip Code:"] = "CEP:"; -$a->strings["Country:"] = "País:"; -$a->strings["Who: (if applicable)"] = "Quem: (se pertinente)"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemplos: fulano123, Fulano de Tal, fulano@exemplo.com"; -$a->strings["Since [date]:"] = "Desde [data]:"; -$a->strings["Tell us about yourself..."] = "Fale um pouco sobre você..."; -$a->strings["Homepage URL:"] = "Endereço do site web:"; -$a->strings["Religious Views:"] = "Orientação religiosa:"; -$a->strings["Public Keywords:"] = "Palavras-chave públicas:"; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Usado para sugerir amigos em potencial, pode ser visto pelos outros)"; -$a->strings["Private Keywords:"] = "Palavras-chave privadas:"; -$a->strings["(Used for searching profiles, never shown to others)"] = "(Usado na pesquisa de perfis, nunca é exibido para os outros)"; -$a->strings["Musical interests"] = "Preferências musicais"; -$a->strings["Books, literature"] = "Livros, literatura"; -$a->strings["Television"] = "Televisão"; -$a->strings["Film/dance/culture/entertainment"] = "Filme/dança/cultura/entretenimento"; -$a->strings["Hobbies/Interests"] = "Passatempos/Interesses"; -$a->strings["Love/romance"] = "Amor/romance"; -$a->strings["Work/employment"] = "Trabalho/emprego"; -$a->strings["School/education"] = "Escola/educação"; -$a->strings["Contact information and Social Networks"] = "Informações de contato e redes sociais"; -$a->strings["Edit/Manage Profiles"] = "Editar/Gerenciar perfis"; -$a->strings["Registration successful. Please check your email for further instructions."] = "O registro foi bem sucedido. Por favor, verifique seu e-mail para maiores informações."; -$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Falha ao enviar mensagem de email. Estes são os dados da sua conta:
login: %s
senha: %s

Você pode alterar sua senha após fazer o login."; -$a->strings["Registration successful."] = ""; -$a->strings["Your registration can not be processed."] = "Não foi possível processar o seu registro."; -$a->strings["Your registration is pending approval by the site owner."] = "A aprovação do seu registro está pendente junto ao administrador do site."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Você pode (opcionalmente) preencher este formulário via OpenID, fornecendo seu OpenID e clicando em 'Registrar'."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Se você não está familiarizado com o OpenID, por favor, deixe esse campo em branco e preencha os outros itens."; -$a->strings["Your OpenID (optional): "] = "Seu OpenID (opcional): "; -$a->strings["Include your profile in member directory?"] = "Incluir o seu perfil no diretório de membros?"; -$a->strings["Membership on this site is by invitation only."] = "A associação a este site só pode ser feita mediante convite."; -$a->strings["Your invitation ID: "] = "A ID do seu convite: "; -$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = ""; -$a->strings["Your Email Address: "] = "Seu endereço de e-mail: "; -$a->strings["New Password:"] = "Nova senha:"; -$a->strings["Leave empty for an auto generated password."] = ""; -$a->strings["Confirm:"] = "Confirme:"; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Selecione uma identificação para o perfil. Ela deve começar com um caractere alfabético. O endereço do seu perfil neste site será 'identificação@\$sitename'"; -$a->strings["Choose a nickname: "] = "Escolha uma identificação: "; -$a->strings["Import your profile to this friendica instance"] = "Importa seu perfil desta instância do friendica"; -$a->strings["Account approved."] = "A conta foi aprovada."; -$a->strings["Registration revoked for %s"] = "O registro de %s foi revogado"; -$a->strings["Please login."] = "Por favor, autentique-se."; -$a->strings["everybody"] = "todos"; -$a->strings["Display"] = "Tela"; -$a->strings["Social Networks"] = "Redes Sociais"; -$a->strings["Connected apps"] = "Aplicações conectadas"; -$a->strings["Remove account"] = "Remover a conta"; -$a->strings["Missing some important data!"] = "Está faltando algum dado importante!"; -$a->strings["Failed to connect with email account using the settings provided."] = "Não foi possível conectar à conta de e-mail com as configurações fornecidas."; -$a->strings["Email settings updated."] = "As configurações de e-mail foram atualizadas."; -$a->strings["Features updated"] = "Funcionalidades atualizadas"; -$a->strings["Relocate message has been send to your contacts"] = "A mensagem de relocação foi enviada para seus contatos"; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "Não é permitido uma senha em branco. A senha não foi modificada."; -$a->strings["Wrong password."] = "Senha errada."; -$a->strings["Password changed."] = "A senha foi modificada."; -$a->strings["Password update failed. Please try again."] = "Não foi possível atualizar a senha. Por favor, tente novamente."; -$a->strings[" Please use a shorter name."] = " Por favor, use um nome mais curto."; -$a->strings[" Name too short."] = " O nome é muito curto."; -$a->strings["Wrong Password"] = "Senha Errada"; -$a->strings[" Not valid email."] = " Não é um e-mail válido."; -$a->strings[" Cannot change to that email."] = " Não foi possível alterar para esse e-mail."; -$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "O fórum privado não possui permissões de privacidade. Utilizando o grupo de privacidade padrão."; -$a->strings["Private forum has no privacy permissions and no default privacy group."] = "O fórum privado não possui permissões de privacidade e nenhum grupo de privacidade padrão."; -$a->strings["Settings updated."] = "As configurações foram atualizadas."; -$a->strings["Add application"] = "Adicionar aplicação"; -$a->strings["Consumer Key"] = "Chave do consumidor"; -$a->strings["Consumer Secret"] = "Segredo do consumidor"; -$a->strings["Redirect"] = "Redirecionar"; -$a->strings["Icon url"] = "URL do ícone"; -$a->strings["You can't edit this application."] = "Você não pode editar esta aplicação."; -$a->strings["Connected Apps"] = "Aplicações conectadas"; -$a->strings["Client key starts with"] = "A chave do cliente inicia com"; -$a->strings["No name"] = "Sem nome"; -$a->strings["Remove authorization"] = "Remover autorização"; -$a->strings["No Plugin settings configured"] = "Não foi definida nenhuma configuração de plugin"; -$a->strings["Plugin Settings"] = "Configurações do plugin"; -$a->strings["Additional Features"] = "Funcionalidades Adicionais"; -$a->strings["General Social Media Settings"] = ""; -$a->strings["Disable intelligent shortening"] = ""; -$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = ""; -$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = ""; -$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = ""; -$a->strings["Default group for OStatus contacts"] = ""; -$a->strings["Your legacy GNU Social account"] = ""; -$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = ""; -$a->strings["Repair OStatus subscriptions"] = ""; -$a->strings["Built-in support for %s connectivity is %s"] = "O suporte interno para conectividade de %s está %s"; -$a->strings["enabled"] = "habilitado"; -$a->strings["disabled"] = "desabilitado"; -$a->strings["GNU Social (OStatus)"] = ""; -$a->strings["Email access is disabled on this site."] = "O acesso ao e-mail está desabilitado neste site."; -$a->strings["Email/Mailbox Setup"] = "Configurações do e-mail/caixa postal"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Caso você deseje se comunicar com contatos de e-mail usando este serviço (opcional), por favor especifique como se conectar à sua caixa postal."; -$a->strings["Last successful email check:"] = "Última checagem bem sucedida de e-mail:"; -$a->strings["IMAP server name:"] = "Nome do servidor IMAP:"; -$a->strings["IMAP port:"] = "Porta do IMAP:"; -$a->strings["Security:"] = "Segurança:"; -$a->strings["None"] = "Nenhuma"; -$a->strings["Email login name:"] = "Nome de usuário do e-mail:"; -$a->strings["Email password:"] = "Senha do e-mail:"; -$a->strings["Reply-to address:"] = "Endereço de resposta (Reply-to):"; -$a->strings["Send public posts to all email contacts:"] = "Enviar publicações públicas para todos os contatos de e-mail:"; -$a->strings["Action after import:"] = "Ação após a importação:"; -$a->strings["Move to folder"] = "Mover para pasta"; -$a->strings["Move to folder:"] = "Mover para pasta:"; -$a->strings["Display Settings"] = "Configurações de exibição"; -$a->strings["Display Theme:"] = "Tema do perfil:"; -$a->strings["Mobile Theme:"] = "Tema para dispositivos móveis:"; -$a->strings["Update browser every xx seconds"] = "Atualizar o navegador a cada xx segundos"; -$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = ""; -$a->strings["Number of items to display per page:"] = "Número de itens a serem exibidos por página:"; -$a->strings["Maximum of 100 items"] = "Máximo de 100 itens"; -$a->strings["Number of items to display per page when viewed from mobile device:"] = "Número de itens a serem exibidos por página quando visualizando em um dispositivo móvel:"; -$a->strings["Don't show emoticons"] = "Não exibir emoticons"; -$a->strings["Calendar"] = "Agenda"; -$a->strings["Beginning of week:"] = ""; -$a->strings["Don't show notices"] = "Não mostra avisos"; -$a->strings["Infinite scroll"] = "rolamento infinito"; -$a->strings["Automatic updates only at the top of the network page"] = "Atualizações automáticas só na parte superior da página da rede"; -$a->strings["General Theme Settings"] = ""; -$a->strings["Custom Theme Settings"] = ""; -$a->strings["Content Settings"] = ""; -$a->strings["Theme settings"] = "Configurações do tema"; -$a->strings["User Types"] = "Tipos de Usuários"; -$a->strings["Community Types"] = "Tipos de Comunidades"; -$a->strings["Normal Account Page"] = "Página de conta normal"; -$a->strings["This account is a normal personal profile"] = "Essa conta é um perfil pessoal normal"; -$a->strings["Soapbox Page"] = "Página de vitrine"; -$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Aprova automaticamente todas as solicitações de conexão/amizade como fãs com permissão somente de leitura"; -$a->strings["Community Forum/Celebrity Account"] = "Conta de fórum de comunidade/celebridade"; -$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Aprova automaticamente todas as solicitações de conexão/amizade como fãs com permissão de leitura e escrita"; -$a->strings["Automatic Friend Page"] = "Página de amigo automático"; -$a->strings["Automatically approve all connection/friend requests as friends"] = "Aprovar automaticamente todas as solicitações de conexão/amizade como amigos"; -$a->strings["Private Forum [Experimental]"] = "Fórum privado [Experimental]"; -$a->strings["Private forum - approved members only"] = "Fórum privado - somente membros aprovados"; -$a->strings["OpenID:"] = "OpenID:"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opcional) Permitir o uso deste OpenID para entrar nesta conta"; -$a->strings["Publish your default profile in your local site directory?"] = "Publicar o seu perfil padrão no diretório local do seu site?"; -$a->strings["Publish your default profile in the global social directory?"] = "Publicar o seu perfil padrão no diretório social global?"; -$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Ocultar visualização da sua lista de contatos/amigos no seu perfil padrão? "; -$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Se ativado, postar mensagens públicas no Diáspora e em outras redes não será possível."; -$a->strings["Allow friends to post to your profile page?"] = "Permitir aos amigos publicarem na sua página de perfil?"; -$a->strings["Allow friends to tag your posts?"] = "Permitir aos amigos etiquetarem suas publicações?"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Permitir que você seja sugerido como amigo em potencial para novos membros?"; -$a->strings["Permit unknown people to send you private mail?"] = "Permitir que pessoas desconhecidas lhe enviem mensagens privadas?"; -$a->strings["Profile is not published."] = "O perfil não está publicado."; -$a->strings["Your Identity Address is '%s' or '%s'."] = ""; -$a->strings["Automatically expire posts after this many days:"] = "Expirar automaticamente publicações após tantos dias:"; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Se deixado em branco, as publicações não irão expirar. Publicações expiradas serão excluídas."; -$a->strings["Advanced expiration settings"] = "Configurações avançadas de expiração"; -$a->strings["Advanced Expiration"] = "Expiração avançada"; -$a->strings["Expire posts:"] = "Expirar publicações:"; -$a->strings["Expire personal notes:"] = "Expirar notas pessoais:"; -$a->strings["Expire starred posts:"] = "Expirar publicações destacadas:"; -$a->strings["Expire photos:"] = "Expirar fotos:"; -$a->strings["Only expire posts by others:"] = "Expirar somente as publicações de outras pessoas:"; -$a->strings["Account Settings"] = "Configurações da conta"; -$a->strings["Password Settings"] = "Configurações da senha"; -$a->strings["Leave password fields blank unless changing"] = "Deixe os campos de senha em branco, a não ser que você queira alterá-la"; -$a->strings["Current Password:"] = "Senha Atual:"; -$a->strings["Your current password to confirm the changes"] = "Sua senha atual para confirmar as mudanças"; -$a->strings["Password:"] = "Senha:"; -$a->strings["Basic Settings"] = "Configurações básicas"; -$a->strings["Email Address:"] = "Endereço de e-mail:"; -$a->strings["Your Timezone:"] = "Seu fuso horário:"; -$a->strings["Your Language:"] = "Seu idioma:"; -$a->strings["Set the language we use to show you friendica interface and to send you emails"] = ""; -$a->strings["Default Post Location:"] = "Localização padrão de suas publicações:"; -$a->strings["Use Browser Location:"] = "Usar localizador do navegador:"; -$a->strings["Security and Privacy Settings"] = "Configurações de segurança e privacidade"; -$a->strings["Maximum Friend Requests/Day:"] = "Número máximo de requisições de amizade por dia:"; -$a->strings["(to prevent spam abuse)"] = "(para prevenir abuso de spammers)"; -$a->strings["Default Post Permissions"] = "Permissões padrão de publicação"; -$a->strings["(click to open/close)"] = "(clique para abrir/fechar)"; -$a->strings["Show to Groups"] = "Mostre para Grupos"; -$a->strings["Show to Contacts"] = "Mostre para Contatos"; -$a->strings["Default Private Post"] = "Publicação Privada Padrão"; -$a->strings["Default Public Post"] = "Publicação Pública Padrão"; -$a->strings["Default Permissions for New Posts"] = "Permissões Padrão para Publicações Novas"; -$a->strings["Maximum private messages per day from unknown people:"] = "Número máximo de mensagens privadas de pessoas desconhecidas, por dia:"; -$a->strings["Notification Settings"] = "Configurações de notificação"; -$a->strings["By default post a status message when:"] = "Por padrão, publicar uma mensagem de status quando:"; -$a->strings["accepting a friend request"] = "aceitar uma requisição de amizade"; -$a->strings["joining a forum/community"] = "associar-se a um fórum/comunidade"; -$a->strings["making an interesting profile change"] = "fazer uma modificação interessante em seu perfil"; -$a->strings["Send a notification email when:"] = "Enviar um e-mail de notificação sempre que:"; -$a->strings["You receive an introduction"] = "Você recebeu uma apresentação"; -$a->strings["Your introductions are confirmed"] = "Suas apresentações forem confirmadas"; -$a->strings["Someone writes on your profile wall"] = "Alguém escrever no mural do seu perfil"; -$a->strings["Someone writes a followup comment"] = "Alguém comentar a sua mensagem"; -$a->strings["You receive a private message"] = "Você recebeu uma mensagem privada"; -$a->strings["You receive a friend suggestion"] = "Você recebe uma suggestão de amigo"; -$a->strings["You are tagged in a post"] = "Você foi etiquetado em uma publicação"; -$a->strings["You are poked/prodded/etc. in a post"] = "Você está cutucado/incitado/etc. em uma publicação"; -$a->strings["Activate desktop notifications"] = ""; -$a->strings["Show desktop popup on new notifications"] = ""; -$a->strings["Text-only notification emails"] = "Emails de notificação apenas de texto"; -$a->strings["Send text only notification emails, without the html part"] = "Enviar e-mails de notificação apenas de texto, sem a parte html"; -$a->strings["Advanced Account/Page Type Settings"] = "Conta avançada/Configurações do tipo de página"; -$a->strings["Change the behaviour of this account for special situations"] = "Modificar o comportamento desta conta em situações especiais"; -$a->strings["Relocate"] = "Relocação"; -$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 você moveu esse perfil de outro servidor e algum dos seus contatos não recebe atualizações, pressione esse botão."; -$a->strings["Resend relocate message to contacts"] = "Reenviar mensagem de relocação para os contatos"; -$a->strings["Do you really want to delete this video?"] = ""; -$a->strings["Delete Video"] = ""; -$a->strings["No videos selected"] = "Nenhum vídeo selecionado"; -$a->strings["Access to this item is restricted."] = "O acesso a este item é restrito."; -$a->strings["View Album"] = "Ver álbum"; -$a->strings["Recent Videos"] = "Vídeos Recentes"; -$a->strings["Upload New Videos"] = "Envie Novos Vídeos"; -$a->strings["Friendica Communications Server - Setup"] = "Servidor de Comunicações Friendica - Configuração"; -$a->strings["Could not connect to database."] = "Não foi possível conectar ao banco de dados."; -$a->strings["Could not create table."] = "Não foi possível criar tabela."; -$a->strings["Your Friendica site database has been installed."] = "O banco de dados do seu site Friendica foi instalado."; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Você provavelmente precisará importar o arquivo \"database.sql\" manualmente, usando o phpmyadmin ou o mysql."; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Por favor, dê uma olhada no arquivo \"INSTALL.TXT\"."; -$a->strings["Database already in use."] = ""; -$a->strings["System check"] = "Checagem do sistema"; -$a->strings["Check again"] = "Checar novamente"; -$a->strings["Database connection"] = "Conexão de banco de dados"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "À fim de instalar o Friendica, você precisa saber como se conectar ao seu banco de dados."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Por favor, entre em contato com a sua hospedagem ou com o administrador do site caso você tenha alguma dúvida em relação a essas configurações."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "O banco de dados que você especificou abaixo já deve existir. Caso contrário, por favor crie-o antes de continuar."; -$a->strings["Database Server Name"] = "Nome do servidor de banco de dados"; -$a->strings["Database Login Name"] = "Nome do usuário do banco de dados"; -$a->strings["Database Login Password"] = "Senha do usuário do banco de dados"; -$a->strings["Database Name"] = "Nome do banco de dados"; -$a->strings["Site administrator email address"] = "Endereço de email do administrador do site"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "O endereço de email da sua conta deve ser igual a este para que você possa utilizar o painel de administração web."; -$a->strings["Please select a default timezone for your website"] = "Por favor, selecione o fuso horário padrão para o seu site"; -$a->strings["Site settings"] = "Configurações do site"; -$a->strings["System Language:"] = ""; -$a->strings["Set the default language for your Friendica installation interface and to send emails."] = ""; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Não foi possível encontrar uma versão de linha de comando do PHP nos caminhos do seu servidor web."; -$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Setup the poller'"] = ""; -$a->strings["PHP executable path"] = "Caminho para o executável do PhP"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Digite o caminho completo do executável PHP. Você pode deixar isso em branco para continuar com a instalação."; -$a->strings["Command line PHP"] = "PHP em linha de comando"; -$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "O executável do PHP não é o binário do php cli (could be cgi-fcgi version)"; -$a->strings["Found PHP version: "] = "Encontrado PHP versão:"; -$a->strings["PHP cli binary"] = "Binário cli do PHP"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "\"register_argc_argv\" não está habilitado na versão de linha de comando do PHP no seu sistema."; -$a->strings["This is required for message delivery to work."] = "Isto é necessário para o funcionamento do envio de mensagens."; -$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"] = "Erro: a função \"openssl_pkey_new\" no seu sistema não é capaz de gerar as chaves de criptografia"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se estiver usando o Windows, por favor dê uma olhada em \"http://www.php.net/manual/en/openssl.installation.php\"."; -$a->strings["Generate encryption keys"] = "Gerar chaves de encriptação"; -$a->strings["libCurl PHP module"] = "Módulo PHP libCurl"; -$a->strings["GD graphics PHP module"] = "Módulo PHP GD graphics"; -$a->strings["OpenSSL PHP module"] = "Módulo PHP OpenSSL"; -$a->strings["mysqli PHP module"] = "Módulo PHP mysqli"; -$a->strings["mb_string PHP module"] = "Módulo PHP mb_string "; -$a->strings["mcrypt PHP module"] = ""; -$a->strings["XML PHP module"] = ""; -$a->strings["iconv module"] = ""; -$a->strings["Apache mod_rewrite module"] = "Módulo mod_rewrite do Apache"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Erro: o módulo mod-rewrite do Apache é necessário, mas não está instalado."; -$a->strings["Error: libCURL PHP module required but not installed."] = "Erro: o módulo libCURL do PHP é necessário, mas não está instalado."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Erro: o módulo gráfico GD, com suporte a JPEG, do PHP é necessário, mas não está instalado."; -$a->strings["Error: openssl PHP module required but not installed."] = "Erro: o módulo openssl do PHP é necessário, mas não está instalado."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Erro: o módulo mysqli do PHP é necessário, mas não está instalado."; -$a->strings["Error: mb_string PHP module required but not installed."] = "Erro: o módulo mb_string PHP é necessário, mas não está instalado."; -$a->strings["Error: mcrypt PHP module required but not installed."] = "Erro: o módulo mcrypt do PHP é necessário, mas não está instalado."; -$a->strings["Error: iconv PHP module required but not installed."] = ""; -$a->strings["If you are using php_cli, please make sure that mcrypt module is enabled in its config file"] = ""; -$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = ""; -$a->strings["mcrypt_create_iv() function"] = ""; -$a->strings["Error, XML PHP module required but not installed."] = "Erro: o módulo XML do PHP é necessário, mas não está instalado."; -$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."] = "O instalador web precisa criar um arquivo chamado \".htconfig.php\" na pasta raiz da instalação e não está conseguindo."; -$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."] = "Geralmente isso está relacionado às definições de permissão, uma vez que o servidor web pode não estar conseguindo escrever os arquivos nesta pasta."; -$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."] = "Ao final desse procedimento, será fornecido um texto que deverá ser salvo em um arquivo de nome. htconfig.php, na pasta raiz da instalação do seu Friendica."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Você também pode pular esse procedimento e executar uma instalação manual. Por favor, dê uma olhada no arquivo \"INSTALL.TXT\" para instruções."; -$a->strings[".htconfig.php is writable"] = ".htconfig.php tem permissão de escrita"; -$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica usa o engine de template Smarty3 para renderizar suas web views. Smarty3 compila templates para PHP para acelerar a renderização."; -$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."] = "Para guardar os templates compilados, o servidor web necessita de permissão de escrita no diretório view/smarty3/ no diretório raíz do Friendica."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Favor se certificar que o usuário sob o qual o servidor web roda (ex: www-data) tenha permissão de escrita nesse diretório."; -$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: como uma medida de segurança, você deve fornecer ao servidor web permissão de escrita em view/smarty3/ somente--não aos arquivos de template (.tpl) que ele contém."; -$a->strings["view/smarty3 is writable"] = "view/smarty3 tem escrita permitida"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "A reescrita de URLs definida no .htaccess não está funcionando. Por favor, verifique as configurações do seu servidor."; -$a->strings["Url rewrite is working"] = "A reescrita de URLs está funcionando"; -$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."] = "Não foi possível gravar o arquivo de configuração \".htconfig.php\". Por favor, use o texto incluso para criar um arquivo de configuração na raiz da instalação do Friendika em seu servidor web."; -$a->strings["

What next

"] = "

A seguir

"; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Você deve configurar [manualmente] uma tarefa agendada para o captador."; -$a->strings["Invalid request identifier."] = "Identificador de solicitação inválido"; -$a->strings["Discard"] = "Descartar"; -$a->strings["Network Notifications"] = "Notificações de rede"; -$a->strings["Personal Notifications"] = "Notificações pessoais"; -$a->strings["Home Notifications"] = "Notificações pessoais"; -$a->strings["Show Ignored Requests"] = "Exibir solicitações ignoradas"; -$a->strings["Hide Ignored Requests"] = "Ocultar solicitações ignoradas"; -$a->strings["Notification type: "] = "Tipo de notificação:"; -$a->strings["suggested by %s"] = "sugerido por %s"; -$a->strings["Post a new friend activity"] = "Publicar a adição de amigo"; -$a->strings["if applicable"] = "se aplicável"; -$a->strings["Claims to be known to you: "] = "Alega ser conhecido por você: "; -$a->strings["yes"] = "sim"; -$a->strings["no"] = "não"; -$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Fan/Admirer\" means that you allow to read but you do not want to read theirs. Approve as: "] = "Sua conexão deve ser bidirecional ou não? \"Amigo\" implica que você permite ler e se inscreve nos textos dele. \"Fan / admirador\" significa que você permite ler, mas você não quer ler os textos dele. Aprovar como:"; -$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Sharer\" means that you allow to read but you do not want to read theirs. Approve as: "] = "Sua conexão deve ser bidirecional ou não? \"Amigo\" implica que você permite a leitura e assina o textos dele. \"Compartilhador\" significa que você permite a leitura mas você não quer ler os textos dele. Aprova como:"; -$a->strings["Friend"] = "Amigo"; -$a->strings["Sharer"] = "Compartilhador"; -$a->strings["Fan/Admirer"] = "Fã/Admirador"; -$a->strings["No introductions."] = "Sem apresentações."; -$a->strings["Show unread"] = ""; -$a->strings["Show all"] = ""; -$a->strings["No more %s notifications."] = ""; -$a->strings["Recent Photos"] = "Fotos recentes"; -$a->strings["Upload New Photos"] = "Enviar novas fotos"; -$a->strings["Contact information unavailable"] = "A informação de contato não está disponível"; -$a->strings["Album not found."] = "O álbum não foi encontrado."; -$a->strings["Delete Album"] = "Excluir o álbum"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Você realmente deseja deletar esse álbum de fotos e todas as suas fotos?"; -$a->strings["Delete Photo"] = "Excluir a foto"; -$a->strings["Do you really want to delete this photo?"] = "Você realmente deseja deletar essa foto?"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s foi marcado em %2\$s por %3\$s"; -$a->strings["a photo"] = "uma foto"; -$a->strings["Image file is empty."] = "O arquivo de imagem está vazio."; -$a->strings["No photos selected"] = "Não foi selecionada nenhuma foto"; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Você está usando %1$.2f Mbytes dos %2$.2f Mbytes liberados para armazenamento de fotos."; -$a->strings["Upload Photos"] = "Enviar fotos"; -$a->strings["New album name: "] = "Nome do novo álbum: "; -$a->strings["or existing album name: "] = "ou o nome de um álbum já existente: "; -$a->strings["Do not show a status post for this upload"] = "Não exiba uma publicação de status para este envio"; -$a->strings["Private Photo"] = "Foto Privada"; -$a->strings["Public Photo"] = "Foto Pública"; -$a->strings["Edit Album"] = "Editar o álbum"; -$a->strings["Show Newest First"] = "Exibir as mais recentes primeiro"; -$a->strings["Show Oldest First"] = "Exibir as mais antigas primeiro"; -$a->strings["View Photo"] = "Ver a foto"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Permissão negada. O acesso a este item pode estar restrito."; -$a->strings["Photo not available"] = "A foto não está disponível"; -$a->strings["View photo"] = "Ver a imagem"; -$a->strings["Edit photo"] = "Editar a foto"; -$a->strings["Use as profile photo"] = "Usar como uma foto de perfil"; -$a->strings["View Full Size"] = "Ver no tamanho real"; -$a->strings["Tags: "] = "Etiquetas: "; -$a->strings["[Remove any tag]"] = "[Remover qualquer etiqueta]"; -$a->strings["New album name"] = "Novo nome para o álbum"; -$a->strings["Caption"] = "Legenda"; -$a->strings["Add a Tag"] = "Adicionar uma etiqueta"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Por exemplo: @joao, @Joao_da_Silva, @joao@exemplo.com, #Minas_Gerais, #acampamento"; -$a->strings["Do not rotate"] = ""; -$a->strings["Rotate CW (right)"] = "Rotacionar para direita"; -$a->strings["Rotate CCW (left)"] = "Rotacionar para esquerda"; -$a->strings["Private photo"] = "Foto privada"; -$a->strings["Public photo"] = "Foto pública"; -$a->strings["Map"] = ""; $a->strings["via"] = "via"; -$a->strings["Repeat the image"] = "Lado a lado"; -$a->strings["Will repeat your image to fill the background."] = "Repete a imagem para preencher o plano de fundo."; -$a->strings["Stretch"] = "Esticar"; -$a->strings["Will stretch to width/height of the image."] = "Estica até a largura/altura da imagem."; -$a->strings["Resize fill and-clip"] = "Preencher e cortar"; -$a->strings["Resize to fill and retain aspect ratio."] = "Redimensiona para preencher o plano de fundo, mantendo proporções."; -$a->strings["Resize best fit"] = "Ajustar"; -$a->strings["Resize to best fit and retain aspect ratio."] = "Redimensiona para ajustar ao plano de fundo, mantendo proporções."; +$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"] = "Variações"; $a->strings["Default"] = "Padrão"; $a->strings["Note: "] = "Observação:"; $a->strings["Check image permissions if all users are allowed to visit the image"] = ""; @@ -1973,48 +2021,32 @@ $a->strings["Link color"] = "Cor do link"; $a->strings["Set the background color"] = "Escolher a cor de fundo"; $a->strings["Content background transparency"] = "Transparência do fundo do conteúdo"; $a->strings["Set the background image"] = "Escolher a imagem de fundo"; +$a->strings["Repeat the image"] = "Lado a lado"; +$a->strings["Will repeat your image to fill the background."] = "Repete a imagem para preencher o plano de fundo."; +$a->strings["Stretch"] = "Esticar"; +$a->strings["Will stretch to width/height of the image."] = "Estica até a largura/altura da imagem."; +$a->strings["Resize fill and-clip"] = "Preencher e cortar"; +$a->strings["Resize to fill and retain aspect ratio."] = "Redimensiona para preencher o plano de fundo, mantendo proporções."; +$a->strings["Resize best fit"] = "Ajustar"; +$a->strings["Resize to best fit and retain aspect ratio."] = "Redimensiona para ajustar ao plano de fundo, mantendo proporções."; $a->strings["Guest"] = "Convidado"; $a->strings["Visitor"] = "Visitante"; -$a->strings["Set resize level for images in posts and comments (width and height)"] = "Configure o nível de redimensionamento para imagens em publicações e comentários (largura e altura)"; -$a->strings["Set font-size for posts and comments"] = "Escolha o tamanho da fonte para publicações e comentários"; -$a->strings["Set theme width"] = "Configure a largura do tema"; -$a->strings["Color scheme"] = "Esquema de cores"; $a->strings["Alignment"] = "Alinhamento"; $a->strings["Left"] = "Esquerda"; $a->strings["Center"] = "Centro"; +$a->strings["Color scheme"] = "Esquema de cores"; $a->strings["Posts font size"] = "Tamanho da fonte para publicações"; $a->strings["Textareas font size"] = "Tamanho da fonte para campos texto"; -$a->strings["Set line-height for posts and comments"] = "Escolha comprimento da linha para publicações e comentários"; -$a->strings["Set colour scheme"] = "Configure o esquema de cores"; -$a->strings["Community Profiles"] = "Profiles Comunitários"; -$a->strings["Last users"] = "Últimos usuários"; -$a->strings["Find Friends"] = "Encontrar amigos"; -$a->strings["Local Directory"] = "Diretório Local"; -$a->strings["Quick Start"] = ""; -$a->strings["Connect Services"] = "Conectar serviços"; $a->strings["Comma separated list of helper forums"] = ""; $a->strings["Set style"] = "escolha estilo"; $a->strings["Community Pages"] = "Páginas da Comunidade"; +$a->strings["Community Profiles"] = "Profiles Comunitários"; $a->strings["Help or @NewHere ?"] = "Ajuda ou @NewHere ?"; -$a->strings["Your contacts"] = "Seus contatos"; -$a->strings["Your personal photos"] = "Suas fotos pessoais"; -$a->strings["Last likes"] = "Últimas gostadas"; -$a->strings["Last photos"] = "Últimas fotos"; -$a->strings["Earth Layers"] = "Camadas da Terra"; -$a->strings["Set zoomfactor for Earth Layers"] = "Configure o zoom para Camadas da Terra"; -$a->strings["Set longitude (X) for Earth Layers"] = "Configure longitude (X) para Camadas da Terra"; -$a->strings["Set latitude (Y) for Earth Layers"] = "Configure latitude (Y) para Camadas da Terra"; -$a->strings["Show/hide boxes at right-hand column:"] = "Mostre/esconda caixas na coluna à direita:"; -$a->strings["Set resolution for middle column"] = "Escolha a resolução para a coluna do meio"; -$a->strings["Set color scheme"] = "Configure o esquema de cores"; -$a->strings["Set zoomfactor for Earth Layer"] = "Configure o zoom para Camadas da Terra"; -$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"] = "Variações"; +$a->strings["Connect Services"] = "Conectar serviços"; +$a->strings["Find Friends"] = "Encontrar amigos"; +$a->strings["Last users"] = "Últimos usuários"; +$a->strings["Local Directory"] = "Diretório Local"; +$a->strings["Quick Start"] = ""; $a->strings["toggle mobile"] = "habilita mobile"; $a->strings["Delete this item?"] = "Excluir este item?"; $a->strings["show fewer"] = "exibir menos"; From e76253113427dc729e31bc176cca01eebde085ff Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Sat, 27 May 2017 21:47:54 -0400 Subject: [PATCH 048/125] Restore missing include --- mod/profiles.php | 1 + 1 file changed, 1 insertion(+) diff --git a/mod/profiles.php b/mod/profiles.php index 60a1fe818a..01030914c4 100644 --- a/mod/profiles.php +++ b/mod/profiles.php @@ -4,6 +4,7 @@ use Friendica\App; use Friendica\Network\Probe; require_once 'include/Contact.php'; +require_once 'include/socgraph.php'; function profiles_init(App $a) { From 860887557ae279e02b97fa1692ca4a4e765d05bf Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 28 May 2017 05:38:12 +0000 Subject: [PATCH 049/125] Some more logging for the probing --- src/Network/Probe.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/Network/Probe.php b/src/Network/Probe.php index 5606332849..28075989df 100644 --- a/src/Network/Probe.php +++ b/src/Network/Probe.php @@ -83,6 +83,7 @@ class Probe { $ret = z_fetch_url($ssl_url, false, $redirects, array('timeout' => $xrd_timeout, 'accept_content' => 'application/xrd+xml')); if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) { + logger("Probing timeout for ".$ssl_url, LOGGER_DEBUG); return false; } $xml = $ret['body']; @@ -92,12 +93,14 @@ class Probe { if (!is_object($xrd)) { $ret = z_fetch_url($url, false, $redirects, array('timeout' => $xrd_timeout, 'accept_content' => 'application/xrd+xml')); if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) { + logger("Probing timeout for ".$url, LOGGER_DEBUG); return false; } $xml = $ret['body']; $xrd = parse_xml_string($xml, false); } if (!is_object($xrd)) { + logger("No xrd object found for ".$host, LOGGER_DEBUG); return false; } @@ -133,6 +136,8 @@ class Probe { self::$baseurl = "http://".$host; + logger("Probing successful for ".$host, LOGGER_DEBUG); + return $xrd_data; } @@ -404,6 +409,7 @@ class Probe { $lrdd = self::xrd($host); } if (!$lrdd) { + logger('No XRD data was found for '.$uri, LOGGER_DEBUG); return self::feed($uri); } $nick = array_pop($path_parts); @@ -435,6 +441,7 @@ class Probe { $lrdd = self::xrd($host); if (!$lrdd) { + logger('No XRD data was found for '.$uri, LOGGER_DEBUG); return self::mail($uri, $uid); } $addr = $uri; From 104acec09cc9f1b371a109cb75c7471e69b1d81f Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 28 May 2017 08:39:41 +0000 Subject: [PATCH 050/125] The database structure is now checked ad the admin summary page --- include/dbstructure.php | 10 ++++++++++ mod/admin.php | 13 +++++++++---- 2 files changed, 19 insertions(+), 4 deletions(-) diff --git a/include/dbstructure.php b/include/dbstructure.php index c9c37c9390..413395905d 100644 --- a/include/dbstructure.php +++ b/include/dbstructure.php @@ -8,6 +8,10 @@ require_once("include/text.php"); define('NEW_UPDATE_ROUTINE_VERSION', 1170); +const DB_UPDATE_NOT_CHECKED = 0; // Database check wasn't executed before +const DB_UPDATE_SUCCESSFUL = 1; // Database check was successful +const DB_UPDATE_FAILED = 2; // Database check failed + /* * Converts all tables from MyISAM to InnoDB */ @@ -480,6 +484,12 @@ function update_structure($verbose, $action, $tables=null, $definition=null) { Config::set('system', 'maintenance_reason', ''); } + if ($errors) { + Config::set('system', 'dbupdate', DB_UPDATE_FAILED); + } else { + Config::set('system', 'dbupdate', DB_UPDATE_SUCCESSFUL); + } + return $errors; } diff --git a/mod/admin.php b/mod/admin.php index d9f2d95760..d9684d6a4f 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -545,11 +545,16 @@ function admin_page_summary(App $a) { $showwarning = true; $warningtext[] = sprintf(t('Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the command php include/dbstructure.php toinnodb of your Friendica installation for an automatic conversion.
'), 'https://dev.mysql.com/doc/refman/5.7/en/converting-tables-to-innodb.html'); } - // MySQL >= 5.7.4 doesn't support the IGNORE keyword in ALTER TABLE statements - if ((version_compare($db->server_info(), '5.7.4') >= 0) AND - !(strpos($db->server_info(), 'MariaDB') !== false)) { - $warningtext[] = t('You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB.'); + + if (Config::get('system', 'dbupdate', DB_UPDATE_NOT_CHECKED) == DB_UPDATE_NOT_CHECKED) { + require_once("include/dbstructure.php"); + update_structure(false, true); } + if (Config::get('system', 'dbupdate') == DB_UPDATE_FAILED) { + $showwarning = true; + $warningtext[] = t('The database update failed. Please run "php include/dbstructure.php update" from the command line and have a look at the errors that might appear.'); + } + $r = q("SELECT `page-flags`, COUNT(`uid`) AS `count` FROM `user` GROUP BY `page-flags`"); $accounts = array( array(t('Normal Account'), 0), From 6c096f4ebd3c87e8c2d36e8e700a6948ce14f91c Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sun, 28 May 2017 11:10:48 +0200 Subject: [PATCH 051/125] regenerated master messages.po file --- util/messages.po | 11908 +++++++++++++++++++++++---------------------- 1 file changed, 5955 insertions(+), 5953 deletions(-) diff --git a/util/messages.po b/util/messages.po index 3da18ca6b2..9f845714e6 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: 2017-05-03 07:08+0200\n" +"POT-Creation-Date: 2017-05-28 11:09+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,901 +18,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" -#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1093 -#: view/theme/vier/theme.php:254 -msgid "Forums" -msgstr "" - -#: include/ForumManager.php:116 view/theme/vier/theme.php:256 -msgid "External link to forum" -msgstr "" - -#: include/ForumManager.php:119 include/contact_widgets.php:269 -#: include/items.php:2450 mod/content.php:624 object/Item.php:420 -#: view/theme/vier/theme.php:259 boot.php:1000 -msgid "show more" -msgstr "" - -#: include/NotificationsManager.php:153 -msgid "System" -msgstr "" - -#: include/NotificationsManager.php:160 include/nav.php:158 mod/admin.php:517 -#: view/theme/frio/theme.php:253 -msgid "Network" -msgstr "" - -#: include/NotificationsManager.php:167 mod/network.php:832 -#: mod/profiles.php:696 -msgid "Personal" -msgstr "" - -#: include/NotificationsManager.php:174 include/nav.php:105 -#: include/nav.php:161 -msgid "Home" -msgstr "" - -#: include/NotificationsManager.php:181 include/nav.php:166 -msgid "Introductions" -msgstr "" - -#: include/NotificationsManager.php:239 include/NotificationsManager.php:251 -#, php-format -msgid "%s commented on %s's post" -msgstr "" - -#: include/NotificationsManager.php:250 -#, php-format -msgid "%s created a new post" -msgstr "" - -#: include/NotificationsManager.php:265 -#, php-format -msgid "%s liked %s's post" -msgstr "" - -#: include/NotificationsManager.php:278 -#, php-format -msgid "%s disliked %s's post" -msgstr "" - -#: include/NotificationsManager.php:291 -#, php-format -msgid "%s is attending %s's event" -msgstr "" - -#: include/NotificationsManager.php:304 -#, php-format -msgid "%s is not attending %s's event" -msgstr "" - -#: include/NotificationsManager.php:317 -#, php-format -msgid "%s may attend %s's event" -msgstr "" - -#: include/NotificationsManager.php:334 -#, php-format -msgid "%s is now friends with %s" -msgstr "" - -#: include/NotificationsManager.php:770 -msgid "Friend Suggestion" -msgstr "" - -#: include/NotificationsManager.php:803 -msgid "Friend/Connect Request" -msgstr "" - -#: include/NotificationsManager.php:803 -msgid "New Follower" -msgstr "" - -#: include/Photo.php:1038 include/Photo.php:1054 include/Photo.php:1062 -#: include/Photo.php:1087 include/message.php:146 mod/wall_upload.php:249 -#: mod/item.php:467 -msgid "Wall Photos" -msgstr "" - -#: include/delivery.php:427 -msgid "(no subject)" -msgstr "" - -#: include/delivery.php:439 include/enotify.php:43 -msgid "noreply" -msgstr "" - -#: include/like.php:27 include/conversation.php:153 include/diaspora.php:1576 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "" - -#: include/like.php:31 include/like.php:36 include/conversation.php:156 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "" - -#: include/like.php:41 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "" - -#: include/like.php:46 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "" - -#: include/like.php:51 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "" - -#: include/like.php:178 include/conversation.php:141 -#: include/conversation.php:293 include/text.php:1872 mod/subthread.php:88 -#: mod/tagger.php:62 -msgid "photo" -msgstr "" - -#: include/like.php:178 include/conversation.php:136 -#: include/conversation.php:146 include/conversation.php:288 -#: include/conversation.php:297 include/diaspora.php:1580 mod/subthread.php:88 -#: mod/tagger.php:62 -msgid "status" -msgstr "" - -#: include/like.php:180 include/conversation.php:133 -#: include/conversation.php:285 include/text.php:1870 -msgid "event" -msgstr "" - -#: include/message.php:15 include/message.php:169 -msgid "[no subject]" -msgstr "" - -#: include/nav.php:35 mod/navigation.php:19 -msgid "Nothing new here" -msgstr "" - -#: include/nav.php:39 mod/navigation.php:23 -msgid "Clear notifications" -msgstr "" - -#: include/nav.php:40 include/text.php:1083 -msgid "@name, !forum, #tags, content" -msgstr "" - -#: include/nav.php:78 view/theme/frio/theme.php:243 boot.php:1867 -msgid "Logout" -msgstr "" - -#: include/nav.php:78 view/theme/frio/theme.php:243 -msgid "End this session" -msgstr "" - -#: include/nav.php:81 include/identity.php:769 mod/contacts.php:645 -#: mod/contacts.php:841 view/theme/frio/theme.php:246 -msgid "Status" -msgstr "" - -#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:246 -msgid "Your posts and conversations" -msgstr "" - -#: include/nav.php:82 include/identity.php:622 include/identity.php:744 -#: include/identity.php:777 mod/contacts.php:647 mod/contacts.php:849 -#: mod/newmember.php:32 mod/profperm.php:105 view/theme/frio/theme.php:247 -msgid "Profile" -msgstr "" - -#: include/nav.php:82 view/theme/frio/theme.php:247 -msgid "Your profile page" -msgstr "" - -#: include/nav.php:83 include/identity.php:785 mod/fbrowser.php:31 -#: view/theme/frio/theme.php:248 -msgid "Photos" -msgstr "" - -#: include/nav.php:83 view/theme/frio/theme.php:248 -msgid "Your photos" -msgstr "" - -#: include/nav.php:84 include/identity.php:793 include/identity.php:796 -#: view/theme/frio/theme.php:249 -msgid "Videos" -msgstr "" - -#: include/nav.php:84 view/theme/frio/theme.php:249 -msgid "Your videos" -msgstr "" - -#: include/nav.php:85 include/nav.php:149 include/identity.php:805 -#: include/identity.php:816 mod/cal.php:270 mod/events.php:374 -#: view/theme/frio/theme.php:250 view/theme/frio/theme.php:254 -msgid "Events" -msgstr "" - -#: include/nav.php:85 view/theme/frio/theme.php:250 -msgid "Your events" -msgstr "" - -#: include/nav.php:86 -msgid "Personal notes" -msgstr "" - -#: include/nav.php:86 -msgid "Your personal notes" -msgstr "" - -#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1868 -msgid "Login" -msgstr "" - -#: include/nav.php:95 -msgid "Sign in" -msgstr "" - -#: include/nav.php:105 -msgid "Home Page" -msgstr "" - -#: include/nav.php:109 mod/register.php:289 boot.php:1844 -msgid "Register" -msgstr "" - -#: include/nav.php:109 -msgid "Create an account" -msgstr "" - -#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:297 -msgid "Help" -msgstr "" - -#: include/nav.php:115 -msgid "Help and documentation" -msgstr "" - -#: include/nav.php:119 -msgid "Apps" -msgstr "" - -#: include/nav.php:119 -msgid "Addon applications, utilities, games" -msgstr "" - -#: include/nav.php:123 include/text.php:1080 mod/search.php:149 -msgid "Search" -msgstr "" - -#: include/nav.php:123 -msgid "Search site content" -msgstr "" - -#: include/nav.php:126 include/text.php:1088 -msgid "Full Text" -msgstr "" - -#: include/nav.php:127 include/text.php:1089 -msgid "Tags" -msgstr "" - -#: include/nav.php:128 include/nav.php:192 include/identity.php:838 -#: include/identity.php:841 include/text.php:1090 mod/contacts.php:800 -#: mod/contacts.php:861 mod/viewcontacts.php:121 view/theme/frio/theme.php:257 -msgid "Contacts" -msgstr "" - -#: include/nav.php:143 include/nav.php:145 mod/community.php:32 -msgid "Community" -msgstr "" - -#: include/nav.php:143 -msgid "Conversations on this site" -msgstr "" - -#: include/nav.php:145 -msgid "Conversations on the network" -msgstr "" - -#: include/nav.php:149 include/identity.php:808 include/identity.php:819 -#: view/theme/frio/theme.php:254 -msgid "Events and Calendar" -msgstr "" - -#: include/nav.php:152 -msgid "Directory" -msgstr "" - -#: include/nav.php:152 -msgid "People directory" -msgstr "" - -#: include/nav.php:154 -msgid "Information" -msgstr "" - -#: include/nav.php:154 -msgid "Information about this friendica instance" -msgstr "" - -#: include/nav.php:158 view/theme/frio/theme.php:253 -msgid "Conversations from your friends" -msgstr "" - -#: include/nav.php:159 -msgid "Network Reset" -msgstr "" - -#: include/nav.php:159 -msgid "Load Network page with no filters" -msgstr "" - -#: include/nav.php:166 -msgid "Friend Requests" -msgstr "" - -#: include/nav.php:169 mod/notifications.php:96 -msgid "Notifications" -msgstr "" - -#: include/nav.php:170 -msgid "See all notifications" -msgstr "" - -#: include/nav.php:171 mod/settings.php:906 -msgid "Mark as seen" -msgstr "" - -#: include/nav.php:171 -msgid "Mark all system notifications seen" -msgstr "" - -#: include/nav.php:175 mod/message.php:179 view/theme/frio/theme.php:255 -msgid "Messages" -msgstr "" - -#: include/nav.php:175 view/theme/frio/theme.php:255 -msgid "Private mail" -msgstr "" - -#: include/nav.php:176 -msgid "Inbox" -msgstr "" - -#: include/nav.php:177 -msgid "Outbox" -msgstr "" - -#: include/nav.php:178 mod/message.php:16 -msgid "New Message" -msgstr "" - -#: include/nav.php:181 -msgid "Manage" -msgstr "" - -#: include/nav.php:181 -msgid "Manage other pages" -msgstr "" - -#: include/nav.php:184 mod/settings.php:81 -msgid "Delegations" -msgstr "" - -#: include/nav.php:184 mod/delegate.php:130 -msgid "Delegate Page Management" -msgstr "" - -#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111 -#: mod/admin.php:1618 mod/admin.php:1894 view/theme/frio/theme.php:256 -msgid "Settings" -msgstr "" - -#: include/nav.php:186 view/theme/frio/theme.php:256 -msgid "Account settings" -msgstr "" - -#: include/nav.php:189 include/identity.php:290 -msgid "Profiles" -msgstr "" - -#: include/nav.php:189 -msgid "Manage/Edit Profiles" -msgstr "" - -#: include/nav.php:192 view/theme/frio/theme.php:257 -msgid "Manage/edit friends and contacts" -msgstr "" - -#: include/nav.php:197 mod/admin.php:196 -msgid "Admin" -msgstr "" - -#: include/nav.php:197 -msgid "Site setup and configuration" -msgstr "" - -#: include/nav.php:200 -msgid "Navigation" -msgstr "" - -#: include/nav.php:200 -msgid "Site map" -msgstr "" - -#: include/plugin.php:530 include/plugin.php:532 -msgid "Click here to upgrade." -msgstr "" - -#: include/plugin.php:538 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "" - -#: include/plugin.php:543 -msgid "This action is not available under your subscription plan." -msgstr "" - -#: include/profile_selectors.php:6 -msgid "Male" -msgstr "" - -#: include/profile_selectors.php:6 -msgid "Female" -msgstr "" - -#: include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "" - -#: include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "" - -#: include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "" - -#: include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "" - -#: include/profile_selectors.php:6 -msgid "Transgender" -msgstr "" - -#: include/profile_selectors.php:6 -msgid "Intersex" -msgstr "" - -#: include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "" - -#: include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "" - -#: include/profile_selectors.php:6 -msgid "Neuter" -msgstr "" - -#: include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "" - -#: include/profile_selectors.php:6 -msgid "Other" -msgstr "" - -#: include/profile_selectors.php:6 include/conversation.php:1547 -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "" -msgstr[1] "" - -#: include/profile_selectors.php:23 -msgid "Males" -msgstr "" - -#: include/profile_selectors.php:23 -msgid "Females" -msgstr "" - -#: include/profile_selectors.php:23 -msgid "Gay" -msgstr "" - -#: include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "" - -#: include/profile_selectors.php:23 -msgid "No Preference" -msgstr "" - -#: include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "" - -#: include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "" - -#: include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "" - -#: include/profile_selectors.php:23 -msgid "Virgin" -msgstr "" - -#: include/profile_selectors.php:23 -msgid "Deviant" -msgstr "" - -#: include/profile_selectors.php:23 -msgid "Fetish" -msgstr "" - -#: include/profile_selectors.php:23 -msgid "Oodles" -msgstr "" - -#: include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "" - -#: include/profile_selectors.php:42 -msgid "Single" -msgstr "" - -#: include/profile_selectors.php:42 -msgid "Lonely" -msgstr "" - -#: include/profile_selectors.php:42 -msgid "Available" -msgstr "" - -#: include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "" - -#: include/profile_selectors.php:42 -msgid "Has crush" -msgstr "" - -#: include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "" - -#: include/profile_selectors.php:42 -msgid "Dating" -msgstr "" - -#: include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "" - -#: include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "" - -#: include/profile_selectors.php:42 include/user.php:263 include/user.php:267 -msgid "Friends" -msgstr "" - -#: include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "" - -#: include/profile_selectors.php:42 -msgid "Casual" -msgstr "" - -#: include/profile_selectors.php:42 -msgid "Engaged" -msgstr "" - -#: include/profile_selectors.php:42 -msgid "Married" -msgstr "" - -#: include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "" - -#: include/profile_selectors.php:42 -msgid "Partners" -msgstr "" - -#: include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "" - -#: include/profile_selectors.php:42 -msgid "Common law" -msgstr "" - -#: include/profile_selectors.php:42 -msgid "Happy" -msgstr "" - -#: include/profile_selectors.php:42 -msgid "Not looking" -msgstr "" - -#: include/profile_selectors.php:42 -msgid "Swinger" -msgstr "" - -#: include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "" - -#: include/profile_selectors.php:42 -msgid "Separated" -msgstr "" - -#: include/profile_selectors.php:42 -msgid "Unstable" -msgstr "" - -#: include/profile_selectors.php:42 -msgid "Divorced" -msgstr "" - -#: include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "" - -#: include/profile_selectors.php:42 -msgid "Widowed" -msgstr "" - -#: include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "" - -#: include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "" - -#: include/profile_selectors.php:42 -msgid "Don't care" -msgstr "" - -#: include/profile_selectors.php:42 -msgid "Ask me" -msgstr "" - -#: include/security.php:61 -msgid "Welcome " -msgstr "" - -#: include/security.php:62 -msgid "Please upload a profile photo." -msgstr "" - -#: include/security.php:65 -msgid "Welcome back " -msgstr "" - -#: include/security.php:429 -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/uimport.php:91 -msgid "Error decoding account file" -msgstr "" - -#: include/uimport.php:97 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "" - -#: include/uimport.php:113 include/uimport.php:124 -msgid "Error! Cannot check nickname" -msgstr "" - -#: include/uimport.php:117 include/uimport.php:128 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "" - -#: include/uimport.php:150 -msgid "User creation error" -msgstr "" - -#: include/uimport.php:170 -msgid "User profile creation error" -msgstr "" - -#: include/uimport.php:219 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "" -msgstr[1] "" - -#: include/uimport.php:289 -msgid "Done. You can now login with your username and password" -msgstr "" - -#: include/Contact.php:395 include/Contact.php:408 include/Contact.php:453 -#: include/conversation.php:1004 include/conversation.php:1020 -#: mod/allfriends.php:68 mod/directory.php:157 mod/match.php:73 -#: mod/suggest.php:82 mod/dirfind.php:209 -msgid "View Profile" -msgstr "" - -#: include/Contact.php:409 include/contact_widgets.php:32 -#: include/conversation.php:1017 mod/allfriends.php:69 mod/contacts.php:610 -#: mod/match.php:74 mod/suggest.php:83 mod/dirfind.php:210 mod/follow.php:106 -msgid "Connect/Follow" -msgstr "" - -#: include/Contact.php:452 include/conversation.php:1003 -msgid "View Status" -msgstr "" - -#: include/Contact.php:454 include/conversation.php:1005 -msgid "View Photos" -msgstr "" - -#: include/Contact.php:455 include/conversation.php:1006 -msgid "Network Posts" -msgstr "" - -#: include/Contact.php:456 include/conversation.php:1007 -msgid "View Contact" -msgstr "" - -#: include/Contact.php:457 -msgid "Drop Contact" -msgstr "" - -#: include/Contact.php:458 include/conversation.php:1008 -msgid "Send PM" -msgstr "" - -#: include/Contact.php:459 include/conversation.php:1012 -msgid "Poke" -msgstr "" - -#: include/Contact.php:840 -msgid "Organisation" -msgstr "" - -#: include/Contact.php:843 -msgid "News" -msgstr "" - -#: include/Contact.php:846 -msgid "Forum" -msgstr "" - -#: include/acl_selectors.php:353 -msgid "Post to Email" -msgstr "" - -#: include/acl_selectors.php:358 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "" - -#: include/acl_selectors.php:359 mod/settings.php:1188 -msgid "Hide your profile details from unknown viewers?" -msgstr "" - -#: include/acl_selectors.php:365 -msgid "Visible to everybody" -msgstr "" - -#: include/acl_selectors.php:366 view/theme/vier/config.php:108 -msgid "show" -msgstr "" - -#: include/acl_selectors.php:367 view/theme/vier/config.php:108 -msgid "don't show" -msgstr "" - -#: include/acl_selectors.php:373 mod/editpost.php:123 -msgid "CC: email addresses" -msgstr "" - -#: include/acl_selectors.php:374 mod/editpost.php:130 -msgid "Example: bob@example.com, mary@example.com" -msgstr "" - -#: include/acl_selectors.php:376 mod/events.php:508 mod/photos.php:1196 -#: mod/photos.php:1593 -msgid "Permissions" -msgstr "" - -#: include/acl_selectors.php:377 -msgid "Close" -msgstr "" - -#: include/api.php:1089 -#, php-format -msgid "Daily posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: include/api.php:1110 -#, php-format -msgid "Weekly posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: include/api.php:1131 -#, php-format -msgid "Monthly posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: include/auth.php:51 -msgid "Logged out." -msgstr "" - -#: include/auth.php:122 include/auth.php:184 mod/openid.php:110 -msgid "Login failed." -msgstr "" - -#: include/auth.php:138 include/user.php:75 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "" - -#: include/auth.php:138 include/user.php:75 -msgid "The error message was:" -msgstr "" - -#: include/bb2diaspora.php:230 include/event.php:17 mod/localtime.php:12 -msgid "l F d, Y \\@ g:i A" -msgstr "" - -#: include/bb2diaspora.php:236 include/event.php:34 include/event.php:54 -#: include/event.php:525 -msgid "Starts:" -msgstr "" - -#: include/bb2diaspora.php:244 include/event.php:37 include/event.php:60 -#: include/event.php:526 -msgid "Finishes:" -msgstr "" - -#: include/bb2diaspora.php:253 include/event.php:41 include/event.php:67 -#: include/event.php:527 include/identity.php:336 mod/contacts.php:636 -#: mod/directory.php:139 mod/events.php:493 mod/notifications.php:244 -msgid "Location:" -msgstr "" - -#: include/bbcode.php:380 include/bbcode.php:1132 include/bbcode.php:1133 -msgid "Image/photo" -msgstr "" - -#: include/bbcode.php:497 -#, php-format -msgid "%2$s %3$s" -msgstr "" - -#: include/bbcode.php:1089 include/bbcode.php:1111 -msgid "$1 wrote:" -msgstr "" - -#: include/bbcode.php:1141 include/bbcode.php:1142 -msgid "Encrypted content" -msgstr "" - -#: include/bbcode.php:1257 -msgid "Invalid source protocol" -msgstr "" - -#: include/bbcode.php:1267 -msgid "Invalid link protocol" -msgstr "" - #: include/contact_selectors.php:32 msgid "Unknown | Not categorised" msgstr "" @@ -937,19 +42,19 @@ msgstr "" msgid "Reputable, has my trust" msgstr "" -#: include/contact_selectors.php:56 mod/admin.php:980 +#: include/contact_selectors.php:56 mod/admin.php:986 msgid "Frequently" msgstr "" -#: include/contact_selectors.php:57 mod/admin.php:981 +#: include/contact_selectors.php:57 mod/admin.php:987 msgid "Hourly" msgstr "" -#: include/contact_selectors.php:58 mod/admin.php:982 +#: include/contact_selectors.php:58 mod/admin.php:988 msgid "Twice daily" msgstr "" -#: include/contact_selectors.php:59 mod/admin.php:983 +#: include/contact_selectors.php:59 mod/admin.php:989 msgid "Daily" msgstr "" @@ -974,12 +79,12 @@ msgid "RSS/Atom" msgstr "" #: include/contact_selectors.php:79 include/contact_selectors.php:86 -#: mod/admin.php:1490 mod/admin.php:1503 mod/admin.php:1516 mod/admin.php:1534 +#: mod/admin.php:1496 mod/admin.php:1509 mod/admin.php:1522 mod/admin.php:1540 msgid "Email" msgstr "" #: include/contact_selectors.php:80 mod/dfrn_request.php:888 -#: mod/settings.php:848 +#: mod/settings.php:849 msgid "Diaspora" msgstr "" @@ -1031,1055 +136,6 @@ msgstr "" msgid "App.net" msgstr "" -#: include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "" - -#: include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "" - -#: include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "" - -#: include/contact_widgets.php:10 include/identity.php:224 -#: mod/allfriends.php:85 mod/match.php:89 mod/suggest.php:101 -#: mod/dirfind.php:207 -msgid "Connect" -msgstr "" - -#: include/contact_widgets.php:24 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "" -msgstr[1] "" - -#: include/contact_widgets.php:30 -msgid "Find People" -msgstr "" - -#: include/contact_widgets.php:31 -msgid "Enter name or interest" -msgstr "" - -#: include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "" - -#: include/contact_widgets.php:34 mod/contacts.php:806 mod/directory.php:206 -msgid "Find" -msgstr "" - -#: include/contact_widgets.php:35 mod/suggest.php:114 -#: view/theme/vier/theme.php:201 -msgid "Friend Suggestions" -msgstr "" - -#: include/contact_widgets.php:36 view/theme/vier/theme.php:200 -msgid "Similar Interests" -msgstr "" - -#: include/contact_widgets.php:37 -msgid "Random Profile" -msgstr "" - -#: include/contact_widgets.php:38 view/theme/vier/theme.php:202 -msgid "Invite Friends" -msgstr "" - -#: include/contact_widgets.php:125 -msgid "Networks" -msgstr "" - -#: include/contact_widgets.php:128 -msgid "All Networks" -msgstr "" - -#: include/contact_widgets.php:160 include/features.php:104 -msgid "Saved Folders" -msgstr "" - -#: include/contact_widgets.php:163 include/contact_widgets.php:198 -msgid "Everything" -msgstr "" - -#: include/contact_widgets.php:195 -msgid "Categories" -msgstr "" - -#: include/contact_widgets.php:264 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "" -msgstr[1] "" - -#: include/conversation.php:159 -#, php-format -msgid "%1$s attends %2$s's %3$s" -msgstr "" - -#: include/conversation.php:162 -#, php-format -msgid "%1$s doesn't attend %2$s's %3$s" -msgstr "" - -#: include/conversation.php:165 -#, php-format -msgid "%1$s attends maybe %2$s's %3$s" -msgstr "" - -#: include/conversation.php:198 mod/dfrn_confirm.php:478 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "" - -#: include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "" - -#: include/conversation.php:260 mod/mood.php:63 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "" - -#: include/conversation.php:307 mod/tagger.php:95 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "" - -#: include/conversation.php:334 -msgid "post/item" -msgstr "" - -#: include/conversation.php:335 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "" - -#: include/conversation.php:614 mod/content.php:372 mod/photos.php:1662 -#: mod/profiles.php:340 -msgid "Likes" -msgstr "" - -#: include/conversation.php:614 mod/content.php:372 mod/photos.php:1662 -#: mod/profiles.php:344 -msgid "Dislikes" -msgstr "" - -#: include/conversation.php:615 include/conversation.php:1541 -#: mod/content.php:373 mod/photos.php:1663 -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "" -msgstr[1] "" - -#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1663 -msgid "Not attending" -msgstr "" - -#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1663 -msgid "Might attend" -msgstr "" - -#: include/conversation.php:747 mod/content.php:453 mod/content.php:759 -#: mod/photos.php:1728 object/Item.php:137 -msgid "Select" -msgstr "" - -#: include/conversation.php:748 mod/contacts.php:816 mod/contacts.php:1015 -#: mod/content.php:454 mod/content.php:760 mod/photos.php:1729 -#: mod/settings.php:744 mod/admin.php:1508 object/Item.php:138 -msgid "Delete" -msgstr "" - -#: include/conversation.php:791 mod/content.php:487 mod/content.php:915 -#: mod/content.php:916 object/Item.php:356 object/Item.php:357 -#, php-format -msgid "View %s's profile @ %s" -msgstr "" - -#: include/conversation.php:803 object/Item.php:344 -msgid "Categories:" -msgstr "" - -#: include/conversation.php:804 object/Item.php:345 -msgid "Filed under:" -msgstr "" - -#: include/conversation.php:811 mod/content.php:497 mod/content.php:928 -#: object/Item.php:370 -#, php-format -msgid "%s from %s" -msgstr "" - -#: include/conversation.php:827 mod/content.php:513 -msgid "View in context" -msgstr "" - -#: include/conversation.php:829 include/conversation.php:1298 -#: mod/content.php:515 mod/content.php:953 mod/editpost.php:114 -#: mod/wallmessage.php:140 mod/message.php:337 mod/message.php:522 -#: mod/photos.php:1627 object/Item.php:395 -msgid "Please wait" -msgstr "" - -#: include/conversation.php:906 -msgid "remove" -msgstr "" - -#: include/conversation.php:910 -msgid "Delete Selected Items" -msgstr "" - -#: include/conversation.php:1002 -msgid "Follow Thread" -msgstr "" - -#: include/conversation.php:1139 -#, php-format -msgid "%s likes this." -msgstr "" - -#: include/conversation.php:1142 -#, php-format -msgid "%s doesn't like this." -msgstr "" - -#: include/conversation.php:1145 -#, php-format -msgid "%s attends." -msgstr "" - -#: include/conversation.php:1148 -#, php-format -msgid "%s doesn't attend." -msgstr "" - -#: include/conversation.php:1151 -#, php-format -msgid "%s attends maybe." -msgstr "" - -#: include/conversation.php:1162 -msgid "and" -msgstr "" - -#: include/conversation.php:1168 -#, php-format -msgid ", and %d other people" -msgstr "" - -#: include/conversation.php:1177 -#, php-format -msgid "%2$d people like this" -msgstr "" - -#: include/conversation.php:1178 -#, php-format -msgid "%s like this." -msgstr "" - -#: include/conversation.php:1181 -#, php-format -msgid "%2$d people don't like this" -msgstr "" - -#: include/conversation.php:1182 -#, php-format -msgid "%s don't like this." -msgstr "" - -#: include/conversation.php:1185 -#, php-format -msgid "%2$d people attend" -msgstr "" - -#: include/conversation.php:1186 -#, php-format -msgid "%s attend." -msgstr "" - -#: include/conversation.php:1189 -#, php-format -msgid "%2$d people don't attend" -msgstr "" - -#: include/conversation.php:1190 -#, php-format -msgid "%s don't attend." -msgstr "" - -#: include/conversation.php:1193 -#, php-format -msgid "%2$d people attend maybe" -msgstr "" - -#: include/conversation.php:1194 -#, php-format -msgid "%s anttend maybe." -msgstr "" - -#: include/conversation.php:1223 include/conversation.php:1239 -msgid "Visible to everybody" -msgstr "" - -#: include/conversation.php:1224 include/conversation.php:1240 -#: mod/wallmessage.php:114 mod/wallmessage.php:121 mod/message.php:271 -#: mod/message.php:278 mod/message.php:418 mod/message.php:425 -msgid "Please enter a link URL:" -msgstr "" - -#: include/conversation.php:1225 include/conversation.php:1241 -msgid "Please enter a video link/URL:" -msgstr "" - -#: include/conversation.php:1226 include/conversation.php:1242 -msgid "Please enter an audio link/URL:" -msgstr "" - -#: include/conversation.php:1227 include/conversation.php:1243 -msgid "Tag term:" -msgstr "" - -#: include/conversation.php:1228 include/conversation.php:1244 -#: mod/filer.php:30 -msgid "Save to Folder:" -msgstr "" - -#: include/conversation.php:1229 include/conversation.php:1245 -msgid "Where are you right now?" -msgstr "" - -#: include/conversation.php:1230 -msgid "Delete item(s)?" -msgstr "" - -#: include/conversation.php:1279 -msgid "Share" -msgstr "" - -#: include/conversation.php:1280 mod/editpost.php:100 mod/wallmessage.php:138 -#: mod/message.php:335 mod/message.php:519 -msgid "Upload photo" -msgstr "" - -#: include/conversation.php:1281 mod/editpost.php:101 -msgid "upload photo" -msgstr "" - -#: include/conversation.php:1282 mod/editpost.php:102 -msgid "Attach file" -msgstr "" - -#: include/conversation.php:1283 mod/editpost.php:103 -msgid "attach file" -msgstr "" - -#: include/conversation.php:1284 mod/editpost.php:104 mod/wallmessage.php:139 -#: mod/message.php:336 mod/message.php:520 -msgid "Insert web link" -msgstr "" - -#: include/conversation.php:1285 mod/editpost.php:105 -msgid "web link" -msgstr "" - -#: include/conversation.php:1286 mod/editpost.php:106 -msgid "Insert video link" -msgstr "" - -#: include/conversation.php:1287 mod/editpost.php:107 -msgid "video link" -msgstr "" - -#: include/conversation.php:1288 mod/editpost.php:108 -msgid "Insert audio link" -msgstr "" - -#: include/conversation.php:1289 mod/editpost.php:109 -msgid "audio link" -msgstr "" - -#: include/conversation.php:1290 mod/editpost.php:110 -msgid "Set your location" -msgstr "" - -#: include/conversation.php:1291 mod/editpost.php:111 -msgid "set location" -msgstr "" - -#: include/conversation.php:1292 mod/editpost.php:112 -msgid "Clear browser location" -msgstr "" - -#: include/conversation.php:1293 mod/editpost.php:113 -msgid "clear location" -msgstr "" - -#: include/conversation.php:1295 mod/editpost.php:127 -msgid "Set title" -msgstr "" - -#: include/conversation.php:1297 mod/editpost.php:129 -msgid "Categories (comma-separated list)" -msgstr "" - -#: include/conversation.php:1299 mod/editpost.php:115 -msgid "Permission settings" -msgstr "" - -#: include/conversation.php:1300 mod/editpost.php:144 -msgid "permissions" -msgstr "" - -#: include/conversation.php:1308 mod/editpost.php:124 -msgid "Public post" -msgstr "" - -#: include/conversation.php:1313 mod/content.php:737 mod/editpost.php:135 -#: mod/events.php:503 mod/photos.php:1647 mod/photos.php:1689 -#: mod/photos.php:1769 object/Item.php:714 -msgid "Preview" -msgstr "" - -#: include/conversation.php:1317 include/items.php:2167 mod/contacts.php:455 -#: mod/editpost.php:138 mod/fbrowser.php:100 mod/fbrowser.php:135 -#: mod/suggest.php:32 mod/tagrm.php:11 mod/tagrm.php:96 -#: mod/dfrn_request.php:894 mod/follow.php:124 mod/message.php:209 -#: mod/photos.php:245 mod/photos.php:337 mod/settings.php:682 -#: mod/settings.php:708 mod/videos.php:132 -msgid "Cancel" -msgstr "" - -#: include/conversation.php:1323 -msgid "Post to Groups" -msgstr "" - -#: include/conversation.php:1324 -msgid "Post to Contacts" -msgstr "" - -#: include/conversation.php:1325 -msgid "Private post" -msgstr "" - -#: include/conversation.php:1330 include/identity.php:264 mod/editpost.php:142 -msgid "Message" -msgstr "" - -#: include/conversation.php:1331 mod/editpost.php:143 -msgid "Browser" -msgstr "" - -#: include/conversation.php:1513 -msgid "View all" -msgstr "" - -#: include/conversation.php:1535 -msgid "Like" -msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" - -#: include/conversation.php:1538 -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "" -msgstr[1] "" - -#: include/conversation.php:1544 -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "" -msgstr[1] "" - -#: include/datetime.php:66 include/datetime.php:68 mod/profiles.php:698 -msgid "Miscellaneous" -msgstr "" - -#: include/datetime.php:196 include/identity.php:644 -msgid "Birthday:" -msgstr "" - -#: include/datetime.php:198 mod/profiles.php:721 -msgid "Age: " -msgstr "" - -#: include/datetime.php:200 -msgid "YYYY-MM-DD or MM-DD" -msgstr "" - -#: include/datetime.php:370 -msgid "never" -msgstr "" - -#: include/datetime.php:376 -msgid "less than a second ago" -msgstr "" - -#: include/datetime.php:379 -msgid "year" -msgstr "" - -#: include/datetime.php:379 -msgid "years" -msgstr "" - -#: include/datetime.php:380 include/event.php:519 mod/cal.php:279 -#: mod/events.php:384 -msgid "month" -msgstr "" - -#: include/datetime.php:380 -msgid "months" -msgstr "" - -#: include/datetime.php:381 include/event.php:520 mod/cal.php:280 -#: mod/events.php:385 -msgid "week" -msgstr "" - -#: include/datetime.php:381 -msgid "weeks" -msgstr "" - -#: include/datetime.php:382 include/event.php:521 mod/cal.php:281 -#: mod/events.php:386 -msgid "day" -msgstr "" - -#: include/datetime.php:382 -msgid "days" -msgstr "" - -#: include/datetime.php:383 -msgid "hour" -msgstr "" - -#: include/datetime.php:383 -msgid "hours" -msgstr "" - -#: include/datetime.php:384 -msgid "minute" -msgstr "" - -#: include/datetime.php:384 -msgid "minutes" -msgstr "" - -#: include/datetime.php:385 -msgid "second" -msgstr "" - -#: include/datetime.php:385 -msgid "seconds" -msgstr "" - -#: include/datetime.php:394 -#, php-format -msgid "%1$d %2$s ago" -msgstr "" - -#: include/datetime.php:620 -#, php-format -msgid "%s's birthday" -msgstr "" - -#: include/datetime.php:621 include/dfrn.php:1252 -#, php-format -msgid "Happy Birthday %s" -msgstr "" - -#: include/dba_pdo.php:72 include/dba.php:47 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "" - -#: include/enotify.php:24 -msgid "Friendica Notification" -msgstr "" - -#: include/enotify.php:27 -msgid "Thank You," -msgstr "" - -#: include/enotify.php:30 -#, php-format -msgid "%s Administrator" -msgstr "" - -#: include/enotify.php:32 -#, php-format -msgid "%1$s, %2$s Administrator" -msgstr "" - -#: include/enotify.php:70 -#, php-format -msgid "%s " -msgstr "" - -#: include/enotify.php:83 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "" - -#: include/enotify.php:85 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "" - -#: include/enotify.php:86 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "" - -#: include/enotify.php:86 -msgid "a private message" -msgstr "" - -#: include/enotify.php:88 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "" - -#: include/enotify.php:134 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "" - -#: include/enotify.php:141 -#, php-format -msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" -msgstr "" - -#: include/enotify.php:149 -#, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "" - -#: include/enotify.php:159 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "" - -#: include/enotify.php:161 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "" - -#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192 -#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "" - -#: include/enotify.php:171 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "" - -#: include/enotify.php:173 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "" - -#: include/enotify.php:174 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "" - -#: include/enotify.php:185 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "" - -#: include/enotify.php:187 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "" - -#: include/enotify.php:188 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "" - -#: include/enotify.php:199 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" -msgstr "" - -#: include/enotify.php:201 -#, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "" - -#: include/enotify.php:202 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "" - -#: include/enotify.php:213 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "" - -#: include/enotify.php:215 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "" - -#: include/enotify.php:216 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "" - -#: include/enotify.php:231 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "" - -#: include/enotify.php:233 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "" - -#: include/enotify.php:234 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "" - -#: include/enotify.php:245 -msgid "[Friendica:Notify] Introduction received" -msgstr "" - -#: include/enotify.php:247 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "" - -#: include/enotify.php:248 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "" - -#: include/enotify.php:252 include/enotify.php:295 -#, php-format -msgid "You may visit their profile at %s" -msgstr "" - -#: include/enotify.php:254 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "" - -#: include/enotify.php:262 -msgid "[Friendica:Notify] A new person is sharing with you" -msgstr "" - -#: include/enotify.php:264 include/enotify.php:265 -#, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "" - -#: include/enotify.php:271 -msgid "[Friendica:Notify] You have a new follower" -msgstr "" - -#: include/enotify.php:273 include/enotify.php:274 -#, php-format -msgid "You have a new follower at %2$s : %1$s" -msgstr "" - -#: include/enotify.php:285 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "" - -#: include/enotify.php:287 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "" - -#: include/enotify.php:288 -#, php-format -msgid "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "" - -#: include/enotify.php:293 -msgid "Name:" -msgstr "" - -#: include/enotify.php:294 -msgid "Photo:" -msgstr "" - -#: include/enotify.php:297 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "" - -#: include/enotify.php:305 include/enotify.php:319 -msgid "[Friendica:Notify] Connection accepted" -msgstr "" - -#: include/enotify.php:307 include/enotify.php:321 -#, php-format -msgid "'%1$s' has accepted your connection request at %2$s" -msgstr "" - -#: include/enotify.php:308 include/enotify.php:322 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." -msgstr "" - -#: include/enotify.php:312 -msgid "" -"You are now mutual friends and may exchange status updates, photos, and " -"email without restriction." -msgstr "" - -#: include/enotify.php:314 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "" - -#: include/enotify.php:326 -#, php-format -msgid "" -"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " -"communication - such as private messaging and some profile interactions. If " -"this is a celebrity or community page, these settings were applied " -"automatically." -msgstr "" - -#: include/enotify.php:328 -#, php-format -msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future." -msgstr "" - -#: include/enotify.php:330 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "" - -#: include/enotify.php:340 -msgid "[Friendica System:Notify] registration request" -msgstr "" - -#: include/enotify.php:342 -#, php-format -msgid "You've received a registration request from '%1$s' at %2$s" -msgstr "" - -#: include/enotify.php:343 -#, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." -msgstr "" - -#: include/enotify.php:347 -#, php-format -msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" -msgstr "" - -#: include/enotify.php:350 -#, php-format -msgid "Please visit %s to approve or reject the request." -msgstr "" - -#: include/event.php:474 -msgid "all-day" -msgstr "" - -#: include/event.php:476 -msgid "Sun" -msgstr "" - -#: include/event.php:477 -msgid "Mon" -msgstr "" - -#: include/event.php:478 -msgid "Tue" -msgstr "" - -#: include/event.php:479 -msgid "Wed" -msgstr "" - -#: include/event.php:480 -msgid "Thu" -msgstr "" - -#: include/event.php:481 -msgid "Fri" -msgstr "" - -#: include/event.php:482 -msgid "Sat" -msgstr "" - -#: include/event.php:484 include/text.php:1198 mod/settings.php:981 -msgid "Sunday" -msgstr "" - -#: include/event.php:485 include/text.php:1198 mod/settings.php:981 -msgid "Monday" -msgstr "" - -#: include/event.php:486 include/text.php:1198 -msgid "Tuesday" -msgstr "" - -#: include/event.php:487 include/text.php:1198 -msgid "Wednesday" -msgstr "" - -#: include/event.php:488 include/text.php:1198 -msgid "Thursday" -msgstr "" - -#: include/event.php:489 include/text.php:1198 -msgid "Friday" -msgstr "" - -#: include/event.php:490 include/text.php:1198 -msgid "Saturday" -msgstr "" - -#: include/event.php:492 -msgid "Jan" -msgstr "" - -#: include/event.php:493 -msgid "Feb" -msgstr "" - -#: include/event.php:494 -msgid "Mar" -msgstr "" - -#: include/event.php:495 -msgid "Apr" -msgstr "" - -#: include/event.php:496 include/event.php:509 include/text.php:1202 -msgid "May" -msgstr "" - -#: include/event.php:497 -msgid "Jun" -msgstr "" - -#: include/event.php:498 -msgid "Jul" -msgstr "" - -#: include/event.php:499 -msgid "Aug" -msgstr "" - -#: include/event.php:500 -msgid "Sept" -msgstr "" - -#: include/event.php:501 -msgid "Oct" -msgstr "" - -#: include/event.php:502 -msgid "Nov" -msgstr "" - -#: include/event.php:503 -msgid "Dec" -msgstr "" - -#: include/event.php:505 include/text.php:1202 -msgid "January" -msgstr "" - -#: include/event.php:506 include/text.php:1202 -msgid "February" -msgstr "" - -#: include/event.php:507 include/text.php:1202 -msgid "March" -msgstr "" - -#: include/event.php:508 include/text.php:1202 -msgid "April" -msgstr "" - -#: include/event.php:510 include/text.php:1202 -msgid "June" -msgstr "" - -#: include/event.php:511 include/text.php:1202 -msgid "July" -msgstr "" - -#: include/event.php:512 include/text.php:1202 -msgid "August" -msgstr "" - -#: include/event.php:513 include/text.php:1202 -msgid "September" -msgstr "" - -#: include/event.php:514 include/text.php:1202 -msgid "October" -msgstr "" - -#: include/event.php:515 include/text.php:1202 -msgid "November" -msgstr "" - -#: include/event.php:516 include/text.php:1202 -msgid "December" -msgstr "" - -#: include/event.php:518 mod/cal.php:278 mod/events.php:383 -msgid "today" -msgstr "" - -#: include/event.php:523 -msgid "No events to display" -msgstr "" - -#: include/event.php:636 -msgid "l, F j" -msgstr "" - -#: include/event.php:658 -msgid "Edit event" -msgstr "" - -#: include/event.php:659 -msgid "Delete event" -msgstr "" - -#: include/event.php:685 include/text.php:1600 include/text.php:1607 -msgid "link to source" -msgstr "" - -#: include/event.php:939 -msgid "Export" -msgstr "" - -#: include/event.php:940 -msgid "Export calendar as ical" -msgstr "" - -#: include/event.php:941 -msgid "Export calendar as csv" -msgstr "" - #: include/features.php:65 msgid "General Features" msgstr "" @@ -2167,7 +223,7 @@ msgstr "" msgid "Enable widget to display Network posts only from selected network" msgstr "" -#: include/features.php:86 mod/network.php:206 mod/search.php:34 +#: include/features.php:86 mod/network.php:209 mod/search.php:37 msgid "Saved Searches" msgstr "" @@ -2239,6 +295,10 @@ msgstr "" msgid "Add categories to your posts" msgstr "" +#: include/features.php:104 include/contact_widgets.php:162 +msgid "Saved Folders" +msgstr "" + #: include/features.php:104 msgid "Ability to file posts under folders" msgstr "" @@ -2275,66 +335,6 @@ msgstr "" msgid "Show visitors public community forums at the Advanced Profile Page" msgstr "" -#: include/follow.php:81 mod/dfrn_request.php:512 -msgid "Disallowed profile URL." -msgstr "" - -#: include/follow.php:86 mod/dfrn_request.php:518 mod/friendica.php:114 -#: mod/admin.php:279 mod/admin.php:297 -msgid "Blocked domain" -msgstr "" - -#: include/follow.php:91 -msgid "Connect URL missing." -msgstr "" - -#: include/follow.php:119 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "" - -#: include/follow.php:120 include/follow.php:134 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "" - -#: include/follow.php:132 -msgid "The profile address specified does not provide adequate information." -msgstr "" - -#: include/follow.php:137 -msgid "An author or name was not found." -msgstr "" - -#: include/follow.php:140 -msgid "No browser URL could be matched to this address." -msgstr "" - -#: include/follow.php:143 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "" - -#: include/follow.php:144 -msgid "Use mailto: in front of address to force email check." -msgstr "" - -#: include/follow.php:150 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "" - -#: include/follow.php:155 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "" - -#: include/follow.php:256 -msgid "Unable to retrieve contact information." -msgstr "" - #: include/group.php:25 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -2354,7 +354,7 @@ msgstr "" msgid "edit" msgstr "" -#: include/group.php:287 mod/newmember.php:61 +#: include/group.php:287 mod/newmember.php:39 msgid "Groups" msgstr "" @@ -2370,7 +370,7 @@ msgstr "" msgid "Create a new group" msgstr "" -#: include/group.php:293 mod/group.php:99 mod/group.php:196 +#: include/group.php:293 mod/group.php:100 mod/group.php:197 msgid "Group Name: " msgstr "" @@ -2378,247 +378,1994 @@ msgstr "" msgid "Contacts not in any group" msgstr "" -#: include/group.php:297 mod/network.php:207 +#: include/group.php:297 mod/network.php:210 msgid "add" msgstr "" -#: include/identity.php:43 -msgid "Requested account is not available." +#: include/ForumManager.php:116 include/text.php:1094 include/nav.php:133 +#: view/theme/vier/theme.php:256 +msgid "Forums" msgstr "" -#: include/identity.php:52 mod/profile.php:21 -msgid "Requested profile is not available." +#: include/ForumManager.php:118 view/theme/vier/theme.php:258 +msgid "External link to forum" msgstr "" -#: include/identity.php:96 include/identity.php:319 include/identity.php:740 -msgid "Edit profile" +#: include/ForumManager.php:121 include/contact_widgets.php:271 +#: include/items.php:2432 mod/content.php:625 object/Item.php:417 +#: view/theme/vier/theme.php:261 src/App.php:506 +msgid "show more" msgstr "" -#: include/identity.php:259 -msgid "Atom feed" +#: include/NotificationsManager.php:153 +msgid "System" msgstr "" -#: include/identity.php:290 -msgid "Manage/edit profiles" +#: include/NotificationsManager.php:160 include/nav.php:160 mod/admin.php:518 +#: view/theme/frio/theme.php:255 +msgid "Network" msgstr "" -#: include/identity.php:295 include/identity.php:321 mod/profiles.php:787 -msgid "Change profile photo" +#: include/NotificationsManager.php:167 mod/network.php:835 +#: mod/profiles.php:699 +msgid "Personal" msgstr "" -#: include/identity.php:296 mod/profiles.php:788 -msgid "Create New Profile" +#: include/NotificationsManager.php:174 include/nav.php:107 +#: include/nav.php:163 +msgid "Home" msgstr "" -#: include/identity.php:306 mod/profiles.php:777 -msgid "Profile Image" +#: include/NotificationsManager.php:181 include/nav.php:168 +msgid "Introductions" msgstr "" -#: include/identity.php:309 mod/profiles.php:779 -msgid "visible to everybody" -msgstr "" - -#: include/identity.php:310 mod/profiles.php:684 mod/profiles.php:780 -msgid "Edit visibility" -msgstr "" - -#: include/identity.php:338 include/identity.php:633 mod/directory.php:141 -#: mod/notifications.php:250 -msgid "Gender:" -msgstr "" - -#: include/identity.php:341 include/identity.php:651 mod/directory.php:143 -msgid "Status:" -msgstr "" - -#: include/identity.php:343 include/identity.php:667 mod/directory.php:145 -msgid "Homepage:" -msgstr "" - -#: include/identity.php:345 include/identity.php:687 mod/contacts.php:640 -#: mod/directory.php:147 mod/notifications.php:246 -msgid "About:" -msgstr "" - -#: include/identity.php:347 mod/contacts.php:638 -msgid "XMPP:" -msgstr "" - -#: include/identity.php:433 mod/contacts.php:55 mod/notifications.php:258 -msgid "Network:" -msgstr "" - -#: include/identity.php:462 include/identity.php:552 -msgid "g A l F d" -msgstr "" - -#: include/identity.php:463 include/identity.php:553 -msgid "F d" -msgstr "" - -#: include/identity.php:514 include/identity.php:599 -msgid "[today]" -msgstr "" - -#: include/identity.php:526 -msgid "Birthday Reminders" -msgstr "" - -#: include/identity.php:527 -msgid "Birthdays this week:" -msgstr "" - -#: include/identity.php:586 -msgid "[No description]" -msgstr "" - -#: include/identity.php:610 -msgid "Event Reminders" -msgstr "" - -#: include/identity.php:611 -msgid "Events this week:" -msgstr "" - -#: include/identity.php:631 mod/settings.php:1286 -msgid "Full Name:" -msgstr "" - -#: include/identity.php:636 -msgid "j F, Y" -msgstr "" - -#: include/identity.php:637 -msgid "j F" -msgstr "" - -#: include/identity.php:648 -msgid "Age:" -msgstr "" - -#: include/identity.php:659 +#: include/NotificationsManager.php:239 include/NotificationsManager.php:251 #, php-format -msgid "for %1$d %2$s" +msgid "%s commented on %s's post" msgstr "" -#: include/identity.php:663 mod/profiles.php:703 -msgid "Sexual Preference:" +#: include/NotificationsManager.php:250 +#, php-format +msgid "%s created a new post" msgstr "" -#: include/identity.php:671 mod/profiles.php:730 -msgid "Hometown:" +#: include/NotificationsManager.php:265 +#, php-format +msgid "%s liked %s's post" msgstr "" -#: include/identity.php:675 mod/contacts.php:642 mod/follow.php:137 -#: mod/notifications.php:248 -msgid "Tags:" +#: include/NotificationsManager.php:278 +#, php-format +msgid "%s disliked %s's post" msgstr "" -#: include/identity.php:679 mod/profiles.php:731 -msgid "Political Views:" +#: include/NotificationsManager.php:291 +#, php-format +msgid "%s is attending %s's event" msgstr "" -#: include/identity.php:683 -msgid "Religion:" +#: include/NotificationsManager.php:304 +#, php-format +msgid "%s is not attending %s's event" msgstr "" -#: include/identity.php:691 -msgid "Hobbies/Interests:" +#: include/NotificationsManager.php:317 +#, php-format +msgid "%s may attend %s's event" msgstr "" -#: include/identity.php:695 mod/profiles.php:735 -msgid "Likes:" +#: include/NotificationsManager.php:334 +#, php-format +msgid "%s is now friends with %s" msgstr "" -#: include/identity.php:699 mod/profiles.php:736 -msgid "Dislikes:" +#: include/NotificationsManager.php:770 +msgid "Friend Suggestion" msgstr "" -#: include/identity.php:703 -msgid "Contact information and Social Networks:" +#: include/NotificationsManager.php:803 +msgid "Friend/Connect Request" msgstr "" -#: include/identity.php:707 -msgid "Musical interests:" +#: include/NotificationsManager.php:803 +msgid "New Follower" msgstr "" -#: include/identity.php:711 -msgid "Books, literature:" +#: include/acl_selectors.php:355 +msgid "Post to Email" msgstr "" -#: include/identity.php:715 -msgid "Television:" +#: include/acl_selectors.php:360 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." msgstr "" -#: include/identity.php:719 -msgid "Film/dance/culture/entertainment:" +#: include/acl_selectors.php:361 mod/settings.php:1189 +msgid "Hide your profile details from unknown viewers?" msgstr "" -#: include/identity.php:723 -msgid "Love/Romance:" +#: include/acl_selectors.php:367 +msgid "Visible to everybody" msgstr "" -#: include/identity.php:727 -msgid "Work/employment:" +#: include/acl_selectors.php:368 view/theme/vier/config.php:109 +msgid "show" msgstr "" -#: include/identity.php:731 -msgid "School/education:" +#: include/acl_selectors.php:369 view/theme/vier/config.php:109 +msgid "don't show" msgstr "" -#: include/identity.php:736 -msgid "Forums:" +#: include/acl_selectors.php:375 mod/editpost.php:125 +msgid "CC: email addresses" msgstr "" -#: include/identity.php:745 mod/events.php:506 -msgid "Basic" +#: include/acl_selectors.php:376 mod/editpost.php:132 +msgid "Example: bob@example.com, mary@example.com" msgstr "" -#: include/identity.php:746 mod/contacts.php:878 mod/events.php:507 -#: mod/admin.php:1059 -msgid "Advanced" +#: include/acl_selectors.php:378 mod/events.php:511 mod/photos.php:1198 +#: mod/photos.php:1595 +msgid "Permissions" msgstr "" -#: include/identity.php:772 mod/contacts.php:844 mod/follow.php:145 -msgid "Status Messages and Posts" +#: include/acl_selectors.php:379 +msgid "Close" msgstr "" -#: include/identity.php:780 mod/contacts.php:852 -msgid "Profile Details" +#: include/auth.php:52 +msgid "Logged out." msgstr "" -#: include/identity.php:788 mod/photos.php:93 -msgid "Photo Albums" +#: include/auth.php:123 include/auth.php:185 mod/openid.php:110 +msgid "Login failed." msgstr "" -#: include/identity.php:827 mod/notes.php:47 -msgid "Personal Notes" +#: include/auth.php:139 include/user.php:75 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." msgstr "" -#: include/identity.php:830 -msgid "Only You Can See This" +#: include/auth.php:139 include/user.php:75 +msgid "The error message was:" +msgstr "" + +#: include/bb2diaspora.php:233 include/event.php:19 mod/localtime.php:13 +msgid "l F d, Y \\@ g:i A" +msgstr "" + +#: include/bb2diaspora.php:239 include/event.php:36 include/event.php:56 +#: include/event.php:459 +msgid "Starts:" +msgstr "" + +#: include/bb2diaspora.php:247 include/event.php:39 include/event.php:62 +#: include/event.php:460 +msgid "Finishes:" +msgstr "" + +#: include/bb2diaspora.php:256 include/event.php:43 include/event.php:69 +#: include/event.php:461 include/identity.php:342 mod/directory.php:135 +#: mod/events.php:496 mod/notifications.php:246 mod/contacts.php:639 +msgid "Location:" +msgstr "" + +#: include/contact_widgets.php:8 +msgid "Add New Contact" +msgstr "" + +#: include/contact_widgets.php:9 +msgid "Enter address or web location" +msgstr "" + +#: include/contact_widgets.php:10 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "" + +#: include/contact_widgets.php:12 include/identity.php:230 +#: mod/allfriends.php:87 mod/dirfind.php:209 mod/match.php:92 +#: mod/suggest.php:103 +msgid "Connect" +msgstr "" + +#: include/contact_widgets.php:26 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "" +msgstr[1] "" + +#: include/contact_widgets.php:32 +msgid "Find People" +msgstr "" + +#: include/contact_widgets.php:33 +msgid "Enter name or interest" +msgstr "" + +#: include/contact_widgets.php:34 include/conversation.php:1018 +#: include/Contact.php:389 mod/allfriends.php:71 mod/dirfind.php:212 +#: mod/follow.php:108 mod/match.php:77 mod/suggest.php:85 mod/contacts.php:613 +msgid "Connect/Follow" +msgstr "" + +#: include/contact_widgets.php:35 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "" + +#: include/contact_widgets.php:36 mod/directory.php:202 mod/contacts.php:809 +msgid "Find" +msgstr "" + +#: include/contact_widgets.php:37 mod/suggest.php:116 +#: view/theme/vier/theme.php:203 +msgid "Friend Suggestions" +msgstr "" + +#: include/contact_widgets.php:38 view/theme/vier/theme.php:202 +msgid "Similar Interests" +msgstr "" + +#: include/contact_widgets.php:39 +msgid "Random Profile" +msgstr "" + +#: include/contact_widgets.php:40 view/theme/vier/theme.php:204 +msgid "Invite Friends" +msgstr "" + +#: include/contact_widgets.php:127 +msgid "Networks" +msgstr "" + +#: include/contact_widgets.php:130 +msgid "All Networks" +msgstr "" + +#: include/contact_widgets.php:165 include/contact_widgets.php:200 +msgid "Everything" +msgstr "" + +#: include/contact_widgets.php:197 +msgid "Categories" +msgstr "" + +#: include/contact_widgets.php:266 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:134 include/conversation.php:286 +#: include/like.php:183 include/text.php:1871 +msgid "event" +msgstr "" + +#: include/conversation.php:137 include/conversation.php:147 +#: include/conversation.php:289 include/conversation.php:298 +#: include/like.php:181 include/diaspora.php:1653 mod/subthread.php:89 +#: mod/tagger.php:63 +msgid "status" +msgstr "" + +#: include/conversation.php:142 include/conversation.php:294 +#: include/like.php:181 include/text.php:1873 mod/subthread.php:89 +#: mod/tagger.php:63 +msgid "photo" +msgstr "" + +#: include/conversation.php:154 include/like.php:30 include/diaspora.php:1649 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "" + +#: include/conversation.php:157 include/like.php:34 include/like.php:39 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "" + +#: include/conversation.php:160 +#, php-format +msgid "%1$s attends %2$s's %3$s" +msgstr "" + +#: include/conversation.php:163 +#, php-format +msgid "%1$s doesn't attend %2$s's %3$s" +msgstr "" + +#: include/conversation.php:166 +#, php-format +msgid "%1$s attends maybe %2$s's %3$s" +msgstr "" + +#: include/conversation.php:199 mod/dfrn_confirm.php:480 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "" + +#: include/conversation.php:240 +#, php-format +msgid "%1$s poked %2$s" +msgstr "" + +#: include/conversation.php:261 mod/mood.php:64 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "" + +#: include/conversation.php:308 mod/tagger.php:96 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "" + +#: include/conversation.php:335 +msgid "post/item" +msgstr "" + +#: include/conversation.php:336 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "" + +#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1664 +#: mod/profiles.php:344 +msgid "Likes" +msgstr "" + +#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1664 +#: mod/profiles.php:348 +msgid "Dislikes" +msgstr "" + +#: include/conversation.php:616 include/conversation.php:1542 +#: mod/content.php:374 mod/photos.php:1665 +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:616 mod/content.php:374 mod/photos.php:1665 +msgid "Not attending" +msgstr "" + +#: include/conversation.php:616 mod/content.php:374 mod/photos.php:1665 +msgid "Might attend" +msgstr "" + +#: include/conversation.php:748 mod/content.php:454 mod/content.php:760 +#: mod/photos.php:1730 object/Item.php:137 +msgid "Select" +msgstr "" + +#: include/conversation.php:749 mod/content.php:455 mod/content.php:761 +#: mod/photos.php:1731 mod/admin.php:1514 mod/contacts.php:819 +#: mod/contacts.php:1018 mod/settings.php:745 object/Item.php:138 +msgid "Delete" +msgstr "" + +#: include/conversation.php:792 mod/content.php:488 mod/content.php:916 +#: mod/content.php:917 object/Item.php:353 object/Item.php:354 +#, php-format +msgid "View %s's profile @ %s" +msgstr "" + +#: include/conversation.php:804 object/Item.php:341 +msgid "Categories:" +msgstr "" + +#: include/conversation.php:805 object/Item.php:342 +msgid "Filed under:" +msgstr "" + +#: include/conversation.php:812 mod/content.php:498 mod/content.php:929 +#: object/Item.php:367 +#, php-format +msgid "%s from %s" +msgstr "" + +#: include/conversation.php:828 mod/content.php:514 +msgid "View in context" +msgstr "" + +#: include/conversation.php:830 include/conversation.php:1299 +#: mod/content.php:516 mod/content.php:954 mod/editpost.php:116 +#: mod/message.php:339 mod/message.php:524 mod/photos.php:1629 +#: mod/wallmessage.php:142 object/Item.php:392 +msgid "Please wait" +msgstr "" + +#: include/conversation.php:907 +msgid "remove" +msgstr "" + +#: include/conversation.php:911 +msgid "Delete Selected Items" +msgstr "" + +#: include/conversation.php:1003 +msgid "Follow Thread" +msgstr "" + +#: include/conversation.php:1004 include/Contact.php:432 +msgid "View Status" +msgstr "" + +#: include/conversation.php:1005 include/conversation.php:1021 +#: include/Contact.php:375 include/Contact.php:388 include/Contact.php:433 +#: mod/allfriends.php:70 mod/directory.php:153 mod/dirfind.php:211 +#: mod/match.php:76 mod/suggest.php:84 +msgid "View Profile" +msgstr "" + +#: include/conversation.php:1006 include/Contact.php:434 +msgid "View Photos" +msgstr "" + +#: include/conversation.php:1007 include/Contact.php:435 +msgid "Network Posts" +msgstr "" + +#: include/conversation.php:1008 include/Contact.php:436 +msgid "View Contact" +msgstr "" + +#: include/conversation.php:1009 include/Contact.php:438 +msgid "Send PM" +msgstr "" + +#: include/conversation.php:1013 include/Contact.php:439 +msgid "Poke" +msgstr "" + +#: include/conversation.php:1140 +#, php-format +msgid "%s likes this." +msgstr "" + +#: include/conversation.php:1143 +#, php-format +msgid "%s doesn't like this." +msgstr "" + +#: include/conversation.php:1146 +#, php-format +msgid "%s attends." +msgstr "" + +#: include/conversation.php:1149 +#, php-format +msgid "%s doesn't attend." +msgstr "" + +#: include/conversation.php:1152 +#, php-format +msgid "%s attends maybe." +msgstr "" + +#: include/conversation.php:1163 +msgid "and" +msgstr "" + +#: include/conversation.php:1169 +#, php-format +msgid ", and %d other people" +msgstr "" + +#: include/conversation.php:1178 +#, php-format +msgid "%2$d people like this" +msgstr "" + +#: include/conversation.php:1179 +#, php-format +msgid "%s like this." +msgstr "" + +#: include/conversation.php:1182 +#, php-format +msgid "%2$d people don't like this" +msgstr "" + +#: include/conversation.php:1183 +#, php-format +msgid "%s don't like this." +msgstr "" + +#: include/conversation.php:1186 +#, php-format +msgid "%2$d people attend" +msgstr "" + +#: include/conversation.php:1187 +#, php-format +msgid "%s attend." +msgstr "" + +#: include/conversation.php:1190 +#, php-format +msgid "%2$d people don't attend" +msgstr "" + +#: include/conversation.php:1191 +#, php-format +msgid "%s don't attend." +msgstr "" + +#: include/conversation.php:1194 +#, php-format +msgid "%2$d people attend maybe" +msgstr "" + +#: include/conversation.php:1195 +#, php-format +msgid "%s anttend maybe." +msgstr "" + +#: include/conversation.php:1224 include/conversation.php:1240 +msgid "Visible to everybody" +msgstr "" + +#: include/conversation.php:1225 include/conversation.php:1241 +#: mod/message.php:273 mod/message.php:280 mod/message.php:420 +#: mod/message.php:427 mod/wallmessage.php:116 mod/wallmessage.php:123 +msgid "Please enter a link URL:" +msgstr "" + +#: include/conversation.php:1226 include/conversation.php:1242 +msgid "Please enter a video link/URL:" +msgstr "" + +#: include/conversation.php:1227 include/conversation.php:1243 +msgid "Please enter an audio link/URL:" +msgstr "" + +#: include/conversation.php:1228 include/conversation.php:1244 +msgid "Tag term:" +msgstr "" + +#: include/conversation.php:1229 include/conversation.php:1245 +#: mod/filer.php:31 +msgid "Save to Folder:" +msgstr "" + +#: include/conversation.php:1230 include/conversation.php:1246 +msgid "Where are you right now?" +msgstr "" + +#: include/conversation.php:1231 +msgid "Delete item(s)?" +msgstr "" + +#: include/conversation.php:1280 +msgid "Share" +msgstr "" + +#: include/conversation.php:1281 mod/editpost.php:102 mod/message.php:337 +#: mod/message.php:521 mod/wallmessage.php:140 +msgid "Upload photo" +msgstr "" + +#: include/conversation.php:1282 mod/editpost.php:103 +msgid "upload photo" +msgstr "" + +#: include/conversation.php:1283 mod/editpost.php:104 +msgid "Attach file" +msgstr "" + +#: include/conversation.php:1284 mod/editpost.php:105 +msgid "attach file" +msgstr "" + +#: include/conversation.php:1285 mod/editpost.php:106 mod/message.php:338 +#: mod/message.php:522 mod/wallmessage.php:141 +msgid "Insert web link" +msgstr "" + +#: include/conversation.php:1286 mod/editpost.php:107 +msgid "web link" +msgstr "" + +#: include/conversation.php:1287 mod/editpost.php:108 +msgid "Insert video link" +msgstr "" + +#: include/conversation.php:1288 mod/editpost.php:109 +msgid "video link" +msgstr "" + +#: include/conversation.php:1289 mod/editpost.php:110 +msgid "Insert audio link" +msgstr "" + +#: include/conversation.php:1290 mod/editpost.php:111 +msgid "audio link" +msgstr "" + +#: include/conversation.php:1291 mod/editpost.php:112 +msgid "Set your location" +msgstr "" + +#: include/conversation.php:1292 mod/editpost.php:113 +msgid "set location" +msgstr "" + +#: include/conversation.php:1293 mod/editpost.php:114 +msgid "Clear browser location" +msgstr "" + +#: include/conversation.php:1294 mod/editpost.php:115 +msgid "clear location" +msgstr "" + +#: include/conversation.php:1296 mod/editpost.php:129 +msgid "Set title" +msgstr "" + +#: include/conversation.php:1298 mod/editpost.php:131 +msgid "Categories (comma-separated list)" +msgstr "" + +#: include/conversation.php:1300 mod/editpost.php:117 +msgid "Permission settings" +msgstr "" + +#: include/conversation.php:1301 mod/editpost.php:146 +msgid "permissions" +msgstr "" + +#: include/conversation.php:1309 mod/editpost.php:126 +msgid "Public post" +msgstr "" + +#: include/conversation.php:1314 mod/content.php:738 mod/editpost.php:137 +#: mod/events.php:506 mod/photos.php:1649 mod/photos.php:1691 +#: mod/photos.php:1771 object/Item.php:711 +msgid "Preview" +msgstr "" + +#: include/conversation.php:1318 include/items.php:2165 mod/editpost.php:140 +#: mod/fbrowser.php:102 mod/fbrowser.php:137 mod/follow.php:126 +#: mod/message.php:211 mod/photos.php:247 mod/photos.php:339 +#: mod/suggest.php:34 mod/tagrm.php:13 mod/tagrm.php:98 mod/videos.php:134 +#: mod/dfrn_request.php:894 mod/contacts.php:458 mod/settings.php:683 +#: mod/settings.php:709 +msgid "Cancel" +msgstr "" + +#: include/conversation.php:1324 +msgid "Post to Groups" +msgstr "" + +#: include/conversation.php:1325 +msgid "Post to Contacts" +msgstr "" + +#: include/conversation.php:1326 +msgid "Private post" +msgstr "" + +#: include/conversation.php:1331 include/identity.php:270 mod/editpost.php:144 +msgid "Message" +msgstr "" + +#: include/conversation.php:1332 mod/editpost.php:145 +msgid "Browser" +msgstr "" + +#: include/conversation.php:1514 +msgid "View all" +msgstr "" + +#: include/conversation.php:1536 +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:1539 +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:1545 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:1548 include/profile_selectors.php:6 +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "" +msgstr[1] "" + +#: include/datetime.php:66 include/datetime.php:68 mod/profiles.php:701 +msgid "Miscellaneous" +msgstr "" + +#: include/datetime.php:196 include/identity.php:656 +msgid "Birthday:" +msgstr "" + +#: include/datetime.php:198 mod/profiles.php:724 +msgid "Age: " +msgstr "" + +#: include/datetime.php:200 +msgid "YYYY-MM-DD or MM-DD" +msgstr "" + +#: include/datetime.php:370 +msgid "never" +msgstr "" + +#: include/datetime.php:376 +msgid "less than a second ago" +msgstr "" + +#: include/datetime.php:379 +msgid "year" +msgstr "" + +#: include/datetime.php:379 +msgid "years" +msgstr "" + +#: include/datetime.php:380 include/event.php:453 mod/cal.php:281 +#: mod/events.php:387 +msgid "month" +msgstr "" + +#: include/datetime.php:380 +msgid "months" +msgstr "" + +#: include/datetime.php:381 include/event.php:454 mod/cal.php:282 +#: mod/events.php:388 +msgid "week" +msgstr "" + +#: include/datetime.php:381 +msgid "weeks" +msgstr "" + +#: include/datetime.php:382 include/event.php:455 mod/cal.php:283 +#: mod/events.php:389 +msgid "day" +msgstr "" + +#: include/datetime.php:382 +msgid "days" +msgstr "" + +#: include/datetime.php:383 +msgid "hour" +msgstr "" + +#: include/datetime.php:383 +msgid "hours" +msgstr "" + +#: include/datetime.php:384 +msgid "minute" +msgstr "" + +#: include/datetime.php:384 +msgid "minutes" +msgstr "" + +#: include/datetime.php:385 +msgid "second" +msgstr "" + +#: include/datetime.php:385 +msgid "seconds" +msgstr "" + +#: include/datetime.php:394 +#, php-format +msgid "%1$d %2$s ago" +msgstr "" + +#: include/datetime.php:620 +#, php-format +msgid "%s's birthday" +msgstr "" + +#: include/datetime.php:621 include/dfrn.php:1254 +#, php-format +msgid "Happy Birthday %s" +msgstr "" + +#: include/delivery.php:428 +msgid "(no subject)" +msgstr "" + +#: include/delivery.php:440 include/enotify.php:46 +msgid "noreply" +msgstr "" + +#: include/dfrn.php:1253 +#, php-format +msgid "%s\\'s birthday" +msgstr "" + +#: include/event.php:408 +msgid "all-day" +msgstr "" + +#: include/event.php:410 +msgid "Sun" +msgstr "" + +#: include/event.php:411 +msgid "Mon" +msgstr "" + +#: include/event.php:412 +msgid "Tue" +msgstr "" + +#: include/event.php:413 +msgid "Wed" +msgstr "" + +#: include/event.php:414 +msgid "Thu" +msgstr "" + +#: include/event.php:415 +msgid "Fri" +msgstr "" + +#: include/event.php:416 +msgid "Sat" +msgstr "" + +#: include/event.php:418 include/text.php:1199 mod/settings.php:982 +msgid "Sunday" +msgstr "" + +#: include/event.php:419 include/text.php:1199 mod/settings.php:982 +msgid "Monday" +msgstr "" + +#: include/event.php:420 include/text.php:1199 +msgid "Tuesday" +msgstr "" + +#: include/event.php:421 include/text.php:1199 +msgid "Wednesday" +msgstr "" + +#: include/event.php:422 include/text.php:1199 +msgid "Thursday" +msgstr "" + +#: include/event.php:423 include/text.php:1199 +msgid "Friday" +msgstr "" + +#: include/event.php:424 include/text.php:1199 +msgid "Saturday" +msgstr "" + +#: include/event.php:426 +msgid "Jan" +msgstr "" + +#: include/event.php:427 +msgid "Feb" +msgstr "" + +#: include/event.php:428 +msgid "Mar" +msgstr "" + +#: include/event.php:429 +msgid "Apr" +msgstr "" + +#: include/event.php:430 include/event.php:443 include/text.php:1203 +msgid "May" +msgstr "" + +#: include/event.php:431 +msgid "Jun" +msgstr "" + +#: include/event.php:432 +msgid "Jul" +msgstr "" + +#: include/event.php:433 +msgid "Aug" +msgstr "" + +#: include/event.php:434 +msgid "Sept" +msgstr "" + +#: include/event.php:435 +msgid "Oct" +msgstr "" + +#: include/event.php:436 +msgid "Nov" +msgstr "" + +#: include/event.php:437 +msgid "Dec" +msgstr "" + +#: include/event.php:439 include/text.php:1203 +msgid "January" +msgstr "" + +#: include/event.php:440 include/text.php:1203 +msgid "February" +msgstr "" + +#: include/event.php:441 include/text.php:1203 +msgid "March" +msgstr "" + +#: include/event.php:442 include/text.php:1203 +msgid "April" +msgstr "" + +#: include/event.php:444 include/text.php:1203 +msgid "June" +msgstr "" + +#: include/event.php:445 include/text.php:1203 +msgid "July" +msgstr "" + +#: include/event.php:446 include/text.php:1203 +msgid "August" +msgstr "" + +#: include/event.php:447 include/text.php:1203 +msgid "September" +msgstr "" + +#: include/event.php:448 include/text.php:1203 +msgid "October" +msgstr "" + +#: include/event.php:449 include/text.php:1203 +msgid "November" +msgstr "" + +#: include/event.php:450 include/text.php:1203 +msgid "December" +msgstr "" + +#: include/event.php:452 mod/cal.php:280 mod/events.php:386 +msgid "today" +msgstr "" + +#: include/event.php:457 +msgid "No events to display" +msgstr "" + +#: include/event.php:570 +msgid "l, F j" +msgstr "" + +#: include/event.php:592 +msgid "Edit event" +msgstr "" + +#: include/event.php:593 +msgid "Delete event" +msgstr "" + +#: include/event.php:619 include/text.php:1601 include/text.php:1608 +msgid "link to source" +msgstr "" + +#: include/event.php:873 +msgid "Export" +msgstr "" + +#: include/event.php:874 +msgid "Export calendar as ical" +msgstr "" + +#: include/event.php:875 +msgid "Export calendar as csv" +msgstr "" + +#: include/follow.php:84 mod/dfrn_request.php:514 +msgid "Disallowed profile URL." +msgstr "" + +#: include/follow.php:89 mod/friendica.php:115 mod/dfrn_request.php:520 +#: mod/admin.php:280 mod/admin.php:298 +msgid "Blocked domain" +msgstr "" + +#: include/follow.php:94 +msgid "Connect URL missing." +msgstr "" + +#: include/follow.php:122 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "" + +#: include/follow.php:123 include/follow.php:137 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "" + +#: include/follow.php:135 +msgid "The profile address specified does not provide adequate information." +msgstr "" + +#: include/follow.php:140 +msgid "An author or name was not found." +msgstr "" + +#: include/follow.php:143 +msgid "No browser URL could be matched to this address." +msgstr "" + +#: include/follow.php:146 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "" + +#: include/follow.php:147 +msgid "Use mailto: in front of address to force email check." +msgstr "" + +#: include/follow.php:153 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "" + +#: include/follow.php:158 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "" + +#: include/follow.php:259 +msgid "Unable to retrieve contact information." +msgstr "" + +#: include/like.php:44 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "" + +#: include/like.php:49 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "" + +#: include/like.php:54 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "" + +#: include/photos.php:57 include/photos.php:66 mod/fbrowser.php:42 +#: mod/fbrowser.php:63 mod/photos.php:189 mod/photos.php:1125 +#: mod/photos.php:1258 mod/photos.php:1279 mod/photos.php:1841 +#: mod/photos.php:1855 +msgid "Contact Photos" +msgstr "" + +#: include/security.php:63 +msgid "Welcome " +msgstr "" + +#: include/security.php:64 +msgid "Please upload a profile photo." +msgstr "" + +#: include/security.php:67 +msgid "Welcome back " +msgstr "" + +#: include/security.php:431 +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/text.php:308 +msgid "newer" +msgstr "" + +#: include/text.php:309 +msgid "older" +msgstr "" + +#: include/text.php:314 +msgid "first" +msgstr "" + +#: include/text.php:315 +msgid "prev" +msgstr "" + +#: include/text.php:349 +msgid "next" +msgstr "" + +#: include/text.php:350 +msgid "last" +msgstr "" + +#: include/text.php:404 +msgid "Loading more entries..." +msgstr "" + +#: include/text.php:405 +msgid "The end" +msgstr "" + +#: include/text.php:956 +msgid "No contacts" +msgstr "" + +#: include/text.php:981 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "" +msgstr[1] "" + +#: include/text.php:994 +msgid "View Contacts" +msgstr "" + +#: include/text.php:1081 include/nav.php:125 mod/search.php:152 +msgid "Search" +msgstr "" + +#: include/text.php:1082 mod/editpost.php:101 mod/filer.php:32 +#: mod/notes.php:64 +msgid "Save" +msgstr "" + +#: include/text.php:1084 include/nav.php:42 +msgid "@name, !forum, #tags, content" +msgstr "" + +#: include/text.php:1089 include/nav.php:128 +msgid "Full Text" +msgstr "" + +#: include/text.php:1090 include/nav.php:129 +msgid "Tags" +msgstr "" + +#: include/text.php:1091 include/nav.php:130 include/nav.php:194 +#: include/identity.php:853 include/identity.php:856 mod/viewcontacts.php:124 +#: mod/contacts.php:803 mod/contacts.php:864 view/theme/frio/theme.php:259 +msgid "Contacts" +msgstr "" + +#: include/text.php:1145 +msgid "poke" +msgstr "" + +#: include/text.php:1145 +msgid "poked" +msgstr "" + +#: include/text.php:1146 +msgid "ping" +msgstr "" + +#: include/text.php:1146 +msgid "pinged" +msgstr "" + +#: include/text.php:1147 +msgid "prod" +msgstr "" + +#: include/text.php:1147 +msgid "prodded" +msgstr "" + +#: include/text.php:1148 +msgid "slap" +msgstr "" + +#: include/text.php:1148 +msgid "slapped" +msgstr "" + +#: include/text.php:1149 +msgid "finger" +msgstr "" + +#: include/text.php:1149 +msgid "fingered" +msgstr "" + +#: include/text.php:1150 +msgid "rebuff" +msgstr "" + +#: include/text.php:1150 +msgid "rebuffed" +msgstr "" + +#: include/text.php:1164 +msgid "happy" +msgstr "" + +#: include/text.php:1165 +msgid "sad" +msgstr "" + +#: include/text.php:1166 +msgid "mellow" +msgstr "" + +#: include/text.php:1167 +msgid "tired" +msgstr "" + +#: include/text.php:1168 +msgid "perky" +msgstr "" + +#: include/text.php:1169 +msgid "angry" +msgstr "" + +#: include/text.php:1170 +msgid "stupified" +msgstr "" + +#: include/text.php:1171 +msgid "puzzled" +msgstr "" + +#: include/text.php:1172 +msgid "interested" +msgstr "" + +#: include/text.php:1173 +msgid "bitter" +msgstr "" + +#: include/text.php:1174 +msgid "cheerful" +msgstr "" + +#: include/text.php:1175 +msgid "alive" +msgstr "" + +#: include/text.php:1176 +msgid "annoyed" +msgstr "" + +#: include/text.php:1177 +msgid "anxious" +msgstr "" + +#: include/text.php:1178 +msgid "cranky" +msgstr "" + +#: include/text.php:1179 +msgid "disturbed" +msgstr "" + +#: include/text.php:1180 +msgid "frustrated" +msgstr "" + +#: include/text.php:1181 +msgid "motivated" +msgstr "" + +#: include/text.php:1182 +msgid "relaxed" +msgstr "" + +#: include/text.php:1183 +msgid "surprised" +msgstr "" + +#: include/text.php:1393 mod/videos.php:388 +msgid "View Video" +msgstr "" + +#: include/text.php:1425 +msgid "bytes" +msgstr "" + +#: include/text.php:1457 include/text.php:1469 +msgid "Click to open/close" +msgstr "" + +#: include/text.php:1595 +msgid "View on separate page" +msgstr "" + +#: include/text.php:1596 +msgid "view on separate page" +msgstr "" + +#: include/text.php:1875 +msgid "activity" +msgstr "" + +#: include/text.php:1877 mod/content.php:624 object/Item.php:416 +#: object/Item.php:428 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "" + +#: include/text.php:1878 +msgid "post" +msgstr "" + +#: include/text.php:2046 +msgid "Item filed" +msgstr "" + +#: include/Contact.php:437 +msgid "Drop Contact" +msgstr "" + +#: include/Contact.php:819 +msgid "Organisation" +msgstr "" + +#: include/Contact.php:822 +msgid "News" +msgstr "" + +#: include/Contact.php:825 +msgid "Forum" +msgstr "" + +#: include/bbcode.php:419 include/bbcode.php:1178 include/bbcode.php:1179 +msgid "Image/photo" +msgstr "" + +#: include/bbcode.php:536 +#, php-format +msgid "%2$s %3$s" +msgstr "" + +#: include/bbcode.php:1135 include/bbcode.php:1157 +msgid "$1 wrote:" +msgstr "" + +#: include/bbcode.php:1187 include/bbcode.php:1188 +msgid "Encrypted content" +msgstr "" + +#: include/bbcode.php:1303 +msgid "Invalid source protocol" +msgstr "" + +#: include/bbcode.php:1313 +msgid "Invalid link protocol" +msgstr "" + +#: include/enotify.php:27 +msgid "Friendica Notification" +msgstr "" + +#: include/enotify.php:30 +msgid "Thank You," +msgstr "" + +#: include/enotify.php:33 +#, php-format +msgid "%s Administrator" +msgstr "" + +#: include/enotify.php:35 +#, php-format +msgid "%1$s, %2$s Administrator" +msgstr "" + +#: include/enotify.php:73 +#, php-format +msgid "%s " +msgstr "" + +#: include/enotify.php:86 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "" + +#: include/enotify.php:88 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "" + +#: include/enotify.php:89 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "" + +#: include/enotify.php:89 +msgid "a private message" +msgstr "" + +#: include/enotify.php:91 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "" + +#: include/enotify.php:137 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "" + +#: include/enotify.php:144 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "" + +#: include/enotify.php:152 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +msgstr "" + +#: include/enotify.php:162 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "" + +#: include/enotify.php:164 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "" + +#: include/enotify.php:167 include/enotify.php:181 include/enotify.php:195 +#: include/enotify.php:209 include/enotify.php:227 include/enotify.php:241 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "" + +#: include/enotify.php:174 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "" + +#: include/enotify.php:176 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "" + +#: include/enotify.php:177 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "" + +#: include/enotify.php:188 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "" + +#: include/enotify.php:190 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "" + +#: include/enotify.php:191 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "" + +#: include/enotify.php:202 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "" + +#: include/enotify.php:204 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "" + +#: include/enotify.php:205 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "" + +#: include/enotify.php:216 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "" + +#: include/enotify.php:218 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "" + +#: include/enotify.php:219 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "" + +#: include/enotify.php:234 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "" + +#: include/enotify.php:236 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "" + +#: include/enotify.php:237 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "" + +#: include/enotify.php:248 +msgid "[Friendica:Notify] Introduction received" +msgstr "" + +#: include/enotify.php:250 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "" + +#: include/enotify.php:251 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "" + +#: include/enotify.php:255 include/enotify.php:298 +#, php-format +msgid "You may visit their profile at %s" +msgstr "" + +#: include/enotify.php:257 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "" + +#: include/enotify.php:265 +msgid "[Friendica:Notify] A new person is sharing with you" +msgstr "" + +#: include/enotify.php:267 include/enotify.php:268 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "" + +#: include/enotify.php:274 +msgid "[Friendica:Notify] You have a new follower" +msgstr "" + +#: include/enotify.php:276 include/enotify.php:277 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "" + +#: include/enotify.php:288 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "" + +#: include/enotify.php:290 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "" + +#: include/enotify.php:291 +#, php-format +msgid "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "" + +#: include/enotify.php:296 +msgid "Name:" +msgstr "" + +#: include/enotify.php:297 +msgid "Photo:" +msgstr "" + +#: include/enotify.php:300 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "" + +#: include/enotify.php:308 include/enotify.php:322 +msgid "[Friendica:Notify] Connection accepted" +msgstr "" + +#: include/enotify.php:310 include/enotify.php:324 +#, php-format +msgid "'%1$s' has accepted your connection request at %2$s" +msgstr "" + +#: include/enotify.php:311 include/enotify.php:325 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "" + +#: include/enotify.php:315 +msgid "" +"You are now mutual friends and may exchange status updates, photos, and " +"email without restriction." +msgstr "" + +#: include/enotify.php:317 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "" + +#: include/enotify.php:329 +#, php-format +msgid "" +"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " +"communication - such as private messaging and some profile interactions. If " +"this is a celebrity or community page, these settings were applied " +"automatically." +msgstr "" + +#: include/enotify.php:331 +#, 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:333 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "" + +#: include/enotify.php:343 +msgid "[Friendica System:Notify] registration request" +msgstr "" + +#: include/enotify.php:345 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "" + +#: include/enotify.php:346 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "" + +#: include/enotify.php:350 +#, php-format +msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" +msgstr "" + +#: include/enotify.php:353 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "" + +#: include/message.php:14 include/message.php:168 +msgid "[no subject]" +msgstr "" + +#: include/message.php:145 include/Photo.php:1075 include/Photo.php:1091 +#: include/Photo.php:1099 include/Photo.php:1124 mod/wall_upload.php:249 +#: mod/item.php:468 +msgid "Wall Photos" +msgstr "" + +#: include/nav.php:37 mod/navigation.php:21 +msgid "Nothing new here" +msgstr "" + +#: include/nav.php:41 mod/navigation.php:25 +msgid "Clear notifications" +msgstr "" + +#: include/nav.php:80 view/theme/frio/theme.php:245 boot.php:862 +msgid "Logout" +msgstr "" + +#: include/nav.php:80 view/theme/frio/theme.php:245 +msgid "End this session" +msgstr "" + +#: include/nav.php:83 include/identity.php:784 mod/contacts.php:648 +#: mod/contacts.php:844 view/theme/frio/theme.php:248 +msgid "Status" +msgstr "" + +#: include/nav.php:83 include/nav.php:163 view/theme/frio/theme.php:248 +msgid "Your posts and conversations" +msgstr "" + +#: include/nav.php:84 include/identity.php:632 include/identity.php:759 +#: include/identity.php:792 mod/newmember.php:20 mod/profperm.php:107 +#: mod/contacts.php:650 mod/contacts.php:852 view/theme/frio/theme.php:249 +msgid "Profile" +msgstr "" + +#: include/nav.php:84 view/theme/frio/theme.php:249 +msgid "Your profile page" +msgstr "" + +#: include/nav.php:85 include/identity.php:800 mod/fbrowser.php:33 +#: view/theme/frio/theme.php:250 +msgid "Photos" +msgstr "" + +#: include/nav.php:85 view/theme/frio/theme.php:250 +msgid "Your photos" +msgstr "" + +#: include/nav.php:86 include/identity.php:808 include/identity.php:811 +#: view/theme/frio/theme.php:251 +msgid "Videos" +msgstr "" + +#: include/nav.php:86 view/theme/frio/theme.php:251 +msgid "Your videos" +msgstr "" + +#: include/nav.php:87 include/nav.php:151 include/identity.php:820 +#: include/identity.php:831 mod/cal.php:272 mod/events.php:377 +#: view/theme/frio/theme.php:252 view/theme/frio/theme.php:256 +msgid "Events" +msgstr "" + +#: include/nav.php:87 view/theme/frio/theme.php:252 +msgid "Your events" +msgstr "" + +#: include/nav.php:88 +msgid "Personal notes" +msgstr "" + +#: include/nav.php:88 +msgid "Your personal notes" +msgstr "" + +#: include/nav.php:97 mod/bookmarklet.php:14 boot.php:863 +msgid "Login" +msgstr "" + +#: include/nav.php:97 +msgid "Sign in" +msgstr "" + +#: include/nav.php:107 +msgid "Home Page" +msgstr "" + +#: include/nav.php:111 mod/register.php:291 boot.php:839 +msgid "Register" +msgstr "" + +#: include/nav.php:111 +msgid "Create an account" +msgstr "" + +#: include/nav.php:117 mod/help.php:50 view/theme/vier/theme.php:299 +msgid "Help" +msgstr "" + +#: include/nav.php:117 +msgid "Help and documentation" +msgstr "" + +#: include/nav.php:121 +msgid "Apps" +msgstr "" + +#: include/nav.php:121 +msgid "Addon applications, utilities, games" +msgstr "" + +#: include/nav.php:125 +msgid "Search site content" +msgstr "" + +#: include/nav.php:145 include/nav.php:147 mod/community.php:32 +msgid "Community" +msgstr "" + +#: include/nav.php:145 +msgid "Conversations on this site" +msgstr "" + +#: include/nav.php:147 +msgid "Conversations on the network" +msgstr "" + +#: include/nav.php:151 include/identity.php:823 include/identity.php:834 +#: view/theme/frio/theme.php:256 +msgid "Events and Calendar" +msgstr "" + +#: include/nav.php:154 +msgid "Directory" +msgstr "" + +#: include/nav.php:154 +msgid "People directory" +msgstr "" + +#: include/nav.php:156 +msgid "Information" +msgstr "" + +#: include/nav.php:156 +msgid "Information about this friendica instance" +msgstr "" + +#: include/nav.php:160 view/theme/frio/theme.php:255 +msgid "Conversations from your friends" +msgstr "" + +#: include/nav.php:161 +msgid "Network Reset" +msgstr "" + +#: include/nav.php:161 +msgid "Load Network page with no filters" +msgstr "" + +#: include/nav.php:168 +msgid "Friend Requests" +msgstr "" + +#: include/nav.php:171 mod/notifications.php:98 +msgid "Notifications" +msgstr "" + +#: include/nav.php:172 +msgid "See all notifications" +msgstr "" + +#: include/nav.php:173 mod/settings.php:907 +msgid "Mark as seen" +msgstr "" + +#: include/nav.php:173 +msgid "Mark all system notifications seen" +msgstr "" + +#: include/nav.php:177 mod/message.php:181 view/theme/frio/theme.php:257 +msgid "Messages" +msgstr "" + +#: include/nav.php:177 view/theme/frio/theme.php:257 +msgid "Private mail" +msgstr "" + +#: include/nav.php:178 +msgid "Inbox" +msgstr "" + +#: include/nav.php:179 +msgid "Outbox" +msgstr "" + +#: include/nav.php:180 mod/message.php:18 +msgid "New Message" +msgstr "" + +#: include/nav.php:183 +msgid "Manage" +msgstr "" + +#: include/nav.php:183 +msgid "Manage other pages" +msgstr "" + +#: include/nav.php:186 mod/settings.php:83 +msgid "Delegations" +msgstr "" + +#: include/nav.php:186 mod/delegate.php:132 +msgid "Delegate Page Management" +msgstr "" + +#: include/nav.php:188 mod/newmember.php:15 mod/admin.php:1624 +#: mod/admin.php:1900 mod/settings.php:113 view/theme/frio/theme.php:258 +msgid "Settings" +msgstr "" + +#: include/nav.php:188 view/theme/frio/theme.php:258 +msgid "Account settings" +msgstr "" + +#: include/nav.php:191 include/identity.php:296 +msgid "Profiles" +msgstr "" + +#: include/nav.php:191 +msgid "Manage/Edit Profiles" +msgstr "" + +#: include/nav.php:194 view/theme/frio/theme.php:259 +msgid "Manage/edit friends and contacts" +msgstr "" + +#: include/nav.php:199 mod/admin.php:197 +msgid "Admin" +msgstr "" + +#: include/nav.php:199 +msgid "Site setup and configuration" +msgstr "" + +#: include/nav.php:202 +msgid "Navigation" +msgstr "" + +#: include/nav.php:202 +msgid "Site map" msgstr "" #: include/network.php:687 msgid "view full size" msgstr "" -#: include/oembed.php:255 +#: include/oembed.php:256 msgid "Embedded content" msgstr "" -#: include/oembed.php:263 +#: include/oembed.php:264 msgid "Embedding disabled" msgstr "" -#: include/photos.php:57 include/photos.php:66 mod/fbrowser.php:40 -#: mod/fbrowser.php:61 mod/photos.php:187 mod/photos.php:1123 -#: mod/photos.php:1256 mod/photos.php:1277 mod/photos.php:1839 -#: mod/photos.php:1853 -msgid "Contact Photos" +#: include/uimport.php:85 +msgid "Error decoding account file" msgstr "" -#: include/user.php:39 mod/settings.php:375 +#: include/uimport.php:91 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "" + +#: include/uimport.php:108 include/uimport.php:119 +msgid "Error! Cannot check nickname" +msgstr "" + +#: include/uimport.php:112 include/uimport.php:123 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "" + +#: include/uimport.php:145 +msgid "User creation error" +msgstr "" + +#: include/uimport.php:166 +msgid "User profile creation error" +msgstr "" + +#: include/uimport.php:215 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "" +msgstr[1] "" + +#: include/uimport.php:281 +msgid "Done. You can now login with your username and password" +msgstr "" + +#: include/user.php:39 mod/settings.php:377 msgid "Passwords do not match. Password unchanged." msgstr "" @@ -2684,24 +2431,28 @@ msgstr "" msgid "An error occurred during registration. Please try again." msgstr "" -#: include/user.php:239 view/theme/duepuntozero/config.php:43 +#: include/user.php:237 view/theme/duepuntozero/config.php:46 msgid "default" msgstr "" -#: include/user.php:249 +#: include/user.php:247 msgid "An error occurred creating your default profile. Please try again." msgstr "" -#: include/user.php:309 include/user.php:317 include/user.php:325 -#: mod/profile_photo.php:74 mod/profile_photo.php:82 mod/profile_photo.php:90 -#: mod/profile_photo.php:215 mod/profile_photo.php:310 -#: mod/profile_photo.php:320 mod/photos.php:71 mod/photos.php:187 -#: mod/photos.php:774 mod/photos.php:1256 mod/photos.php:1277 -#: mod/photos.php:1863 +#: include/user.php:260 include/user.php:264 include/profile_selectors.php:42 +msgid "Friends" +msgstr "" + +#: include/user.php:306 include/user.php:314 include/user.php:322 +#: include/api.php:3697 mod/photos.php:73 mod/photos.php:189 +#: mod/photos.php:776 mod/photos.php:1258 mod/photos.php:1279 +#: mod/photos.php:1865 mod/profile_photo.php:74 mod/profile_photo.php:82 +#: mod/profile_photo.php:90 mod/profile_photo.php:214 +#: mod/profile_photo.php:309 mod/profile_photo.php:319 msgid "Profile Photos" msgstr "" -#: include/user.php:400 +#: include/user.php:397 #, php-format msgid "" "\n" @@ -2711,12 +2462,12 @@ msgid "" "\t" msgstr "" -#: include/user.php:410 +#: include/user.php:407 #, php-format msgid "Registration at %s" msgstr "" -#: include/user.php:420 +#: include/user.php:417 #, php-format msgid "" "\n" @@ -2725,7 +2476,7 @@ msgid "" "\t" msgstr "" -#: include/user.php:424 +#: include/user.php:421 #, php-format msgid "" "\n" @@ -2760,16 +2511,36 @@ msgid "" "\t\tThank you and welcome to %2$s." msgstr "" -#: include/user.php:456 mod/admin.php:1308 +#: include/user.php:453 mod/admin.php:1314 #, php-format msgid "Registration details for %s" msgstr "" -#: include/dbstructure.php:20 +#: include/api.php:1102 +#, php-format +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/api.php:1123 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/api.php:1144 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/dba.php:57 include/dba_pdo.php:75 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "" + +#: include/dbstructure.php:25 msgid "There are no tables on MyISAM." msgstr "" -#: include/dbstructure.php:61 +#: include/dbstructure.php:66 #, php-format msgid "" "\n" @@ -2780,14 +2551,14 @@ msgid "" "might be invalid." msgstr "" -#: include/dbstructure.php:66 +#: include/dbstructure.php:71 #, php-format msgid "" "The error message is\n" "[pre]%s[/pre]" msgstr "" -#: include/dbstructure.php:190 +#: include/dbstructure.php:195 #, php-format msgid "" "\n" @@ -2795,1198 +2566,1796 @@ msgid "" "%s\n" msgstr "" -#: include/dbstructure.php:193 +#: include/dbstructure.php:198 msgid "Errors encountered performing database changes: " msgstr "" -#: include/dbstructure.php:201 +#: include/dbstructure.php:206 msgid ": Database update" msgstr "" -#: include/dbstructure.php:425 +#: include/dbstructure.php:438 #, php-format msgid "%s: updating %s table." msgstr "" -#: include/dfrn.php:1251 -#, php-format -msgid "%s\\'s birthday" -msgstr "" - -#: include/diaspora.php:2137 +#: include/diaspora.php:2214 msgid "Sharing notification from Diaspora network" msgstr "" -#: include/diaspora.php:3146 +#: include/diaspora.php:3234 msgid "Attachments:" msgstr "" -#: include/items.php:1738 mod/dfrn_confirm.php:736 mod/dfrn_request.php:759 +#: include/identity.php:45 +msgid "Requested account is not available." +msgstr "" + +#: include/identity.php:54 mod/profile.php:22 +msgid "Requested profile is not available." +msgstr "" + +#: include/identity.php:98 include/identity.php:325 include/identity.php:755 +msgid "Edit profile" +msgstr "" + +#: include/identity.php:265 +msgid "Atom feed" +msgstr "" + +#: include/identity.php:296 +msgid "Manage/edit profiles" +msgstr "" + +#: include/identity.php:301 include/identity.php:327 mod/profiles.php:790 +msgid "Change profile photo" +msgstr "" + +#: include/identity.php:302 mod/profiles.php:791 +msgid "Create New Profile" +msgstr "" + +#: include/identity.php:312 mod/profiles.php:780 +msgid "Profile Image" +msgstr "" + +#: include/identity.php:315 mod/profiles.php:782 +msgid "visible to everybody" +msgstr "" + +#: include/identity.php:316 mod/profiles.php:687 mod/profiles.php:783 +msgid "Edit visibility" +msgstr "" + +#: include/identity.php:344 include/identity.php:644 mod/directory.php:137 +#: mod/notifications.php:252 +msgid "Gender:" +msgstr "" + +#: include/identity.php:347 include/identity.php:665 mod/directory.php:139 +msgid "Status:" +msgstr "" + +#: include/identity.php:349 include/identity.php:682 mod/directory.php:141 +msgid "Homepage:" +msgstr "" + +#: include/identity.php:351 include/identity.php:702 mod/directory.php:143 +#: mod/notifications.php:248 mod/contacts.php:643 +msgid "About:" +msgstr "" + +#: include/identity.php:353 mod/contacts.php:641 +msgid "XMPP:" +msgstr "" + +#: include/identity.php:439 mod/notifications.php:260 mod/contacts.php:58 +msgid "Network:" +msgstr "" + +#: include/identity.php:468 include/identity.php:558 +msgid "g A l F d" +msgstr "" + +#: include/identity.php:469 include/identity.php:559 +msgid "F d" +msgstr "" + +#: include/identity.php:520 include/identity.php:609 +msgid "[today]" +msgstr "" + +#: include/identity.php:532 +msgid "Birthday Reminders" +msgstr "" + +#: include/identity.php:533 +msgid "Birthdays this week:" +msgstr "" + +#: include/identity.php:595 +msgid "[No description]" +msgstr "" + +#: include/identity.php:620 +msgid "Event Reminders" +msgstr "" + +#: include/identity.php:621 +msgid "Events this week:" +msgstr "" + +#: include/identity.php:641 mod/settings.php:1287 +msgid "Full Name:" +msgstr "" + +#: include/identity.php:648 +msgid "j F, Y" +msgstr "" + +#: include/identity.php:649 +msgid "j F" +msgstr "" + +#: include/identity.php:661 +msgid "Age:" +msgstr "" + +#: include/identity.php:674 +#, php-format +msgid "for %1$d %2$s" +msgstr "" + +#: include/identity.php:678 mod/profiles.php:706 +msgid "Sexual Preference:" +msgstr "" + +#: include/identity.php:686 mod/profiles.php:733 +msgid "Hometown:" +msgstr "" + +#: include/identity.php:690 mod/follow.php:139 mod/notifications.php:250 +#: mod/contacts.php:645 +msgid "Tags:" +msgstr "" + +#: include/identity.php:694 mod/profiles.php:734 +msgid "Political Views:" +msgstr "" + +#: include/identity.php:698 +msgid "Religion:" +msgstr "" + +#: include/identity.php:706 +msgid "Hobbies/Interests:" +msgstr "" + +#: include/identity.php:710 mod/profiles.php:738 +msgid "Likes:" +msgstr "" + +#: include/identity.php:714 mod/profiles.php:739 +msgid "Dislikes:" +msgstr "" + +#: include/identity.php:718 +msgid "Contact information and Social Networks:" +msgstr "" + +#: include/identity.php:722 +msgid "Musical interests:" +msgstr "" + +#: include/identity.php:726 +msgid "Books, literature:" +msgstr "" + +#: include/identity.php:730 +msgid "Television:" +msgstr "" + +#: include/identity.php:734 +msgid "Film/dance/culture/entertainment:" +msgstr "" + +#: include/identity.php:738 +msgid "Love/Romance:" +msgstr "" + +#: include/identity.php:742 +msgid "Work/employment:" +msgstr "" + +#: include/identity.php:746 +msgid "School/education:" +msgstr "" + +#: include/identity.php:751 +msgid "Forums:" +msgstr "" + +#: include/identity.php:760 mod/events.php:509 +msgid "Basic" +msgstr "" + +#: include/identity.php:761 mod/events.php:510 mod/admin.php:1065 +#: mod/contacts.php:881 +msgid "Advanced" +msgstr "" + +#: include/identity.php:787 mod/follow.php:147 mod/contacts.php:847 +msgid "Status Messages and Posts" +msgstr "" + +#: include/identity.php:795 mod/contacts.php:855 +msgid "Profile Details" +msgstr "" + +#: include/identity.php:803 mod/photos.php:95 +msgid "Photo Albums" +msgstr "" + +#: include/identity.php:842 mod/notes.php:49 +msgid "Personal Notes" +msgstr "" + +#: include/identity.php:845 +msgid "Only You Can See This" +msgstr "" + +#: include/items.php:1736 mod/dfrn_confirm.php:738 mod/dfrn_request.php:759 msgid "[Name Withheld]" msgstr "" -#: include/items.php:2123 mod/display.php:103 mod/display.php:279 -#: mod/display.php:484 mod/notice.php:15 mod/viewsrc.php:15 mod/admin.php:247 -#: mod/admin.php:1565 mod/admin.php:1816 +#: include/items.php:2121 mod/display.php:105 mod/display.php:280 +#: mod/display.php:485 mod/notice.php:17 mod/viewsrc.php:16 mod/admin.php:248 +#: mod/admin.php:1571 mod/admin.php:1822 msgid "Item not found." msgstr "" -#: include/items.php:2162 +#: include/items.php:2160 msgid "Do you really want to delete this item?" msgstr "" -#: include/items.php:2164 mod/api.php:105 mod/contacts.php:452 -#: mod/suggest.php:29 mod/dfrn_request.php:880 mod/follow.php:113 -#: mod/message.php:206 mod/profiles.php:640 mod/profiles.php:643 -#: mod/profiles.php:670 mod/register.php:245 mod/settings.php:1171 -#: mod/settings.php:1177 mod/settings.php:1184 mod/settings.php:1188 -#: mod/settings.php:1193 mod/settings.php:1198 mod/settings.php:1203 -#: mod/settings.php:1208 mod/settings.php:1234 mod/settings.php:1235 -#: mod/settings.php:1236 mod/settings.php:1237 mod/settings.php:1238 +#: include/items.php:2162 mod/api.php:107 mod/follow.php:115 +#: mod/message.php:208 mod/register.php:247 mod/suggest.php:31 +#: mod/dfrn_request.php:880 mod/contacts.php:455 mod/profiles.php:643 +#: mod/profiles.php:646 mod/profiles.php:673 mod/settings.php:1172 +#: mod/settings.php:1178 mod/settings.php:1185 mod/settings.php:1189 +#: mod/settings.php:1194 mod/settings.php:1199 mod/settings.php:1204 +#: mod/settings.php:1209 mod/settings.php:1235 mod/settings.php:1236 +#: mod/settings.php:1237 mod/settings.php:1238 mod/settings.php:1239 msgid "Yes" msgstr "" -#: include/items.php:2327 mod/allfriends.php:12 mod/api.php:26 mod/api.php:31 -#: mod/attach.php:33 mod/common.php:18 mod/contacts.php:360 -#: mod/crepair.php:102 mod/delegate.php:12 mod/display.php:481 -#: mod/editpost.php:10 mod/fsuggest.php:79 mod/invite.php:15 -#: mod/invite.php:103 mod/mood.php:115 mod/nogroup.php:27 mod/notes.php:23 -#: mod/ostatus_subscribe.php:9 mod/poke.php:154 mod/profile_photo.php:19 -#: mod/profile_photo.php:180 mod/profile_photo.php:191 -#: mod/profile_photo.php:204 mod/regmod.php:113 mod/repair_ostatus.php:9 -#: mod/suggest.php:58 mod/uimport.php:24 mod/viewcontacts.php:46 -#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wallmessage.php:9 -#: mod/wallmessage.php:33 mod/wallmessage.php:73 mod/wallmessage.php:97 -#: mod/cal.php:299 mod/dfrn_confirm.php:61 mod/dirfind.php:11 -#: mod/events.php:185 mod/follow.php:11 mod/follow.php:74 mod/follow.php:158 -#: mod/group.php:19 mod/manage.php:102 mod/message.php:46 mod/message.php:171 -#: mod/network.php:4 mod/photos.php:166 mod/photos.php:1109 -#: mod/profiles.php:168 mod/profiles.php:607 mod/register.php:42 -#: mod/settings.php:22 mod/settings.php:130 mod/settings.php:668 -#: mod/wall_upload.php:101 mod/wall_upload.php:104 mod/item.php:196 -#: mod/item.php:208 mod/notifications.php:71 index.php:407 +#: include/items.php:2309 mod/allfriends.php:14 mod/api.php:28 mod/api.php:33 +#: mod/attach.php:35 mod/cal.php:301 mod/common.php:20 mod/crepair.php:105 +#: mod/delegate.php:14 mod/dfrn_confirm.php:63 mod/dirfind.php:15 +#: mod/display.php:482 mod/editpost.php:12 mod/events.php:188 +#: mod/follow.php:13 mod/follow.php:76 mod/follow.php:160 mod/fsuggest.php:80 +#: mod/group.php:20 mod/invite.php:17 mod/invite.php:105 mod/manage.php:103 +#: mod/message.php:48 mod/message.php:173 mod/mood.php:116 mod/network.php:7 +#: mod/nogroup.php:29 mod/notes.php:25 mod/notifications.php:73 +#: mod/ostatus_subscribe.php:11 mod/photos.php:168 mod/photos.php:1111 +#: mod/poke.php:155 mod/register.php:44 mod/repair_ostatus.php:11 +#: mod/suggest.php:60 mod/viewcontacts.php:49 mod/wall_attach.php:69 +#: mod/wall_attach.php:72 mod/wall_upload.php:101 mod/wall_upload.php:104 +#: mod/wallmessage.php:11 mod/wallmessage.php:35 mod/wallmessage.php:75 +#: mod/wallmessage.php:99 mod/item.php:197 mod/item.php:209 mod/regmod.php:106 +#: mod/uimport.php:26 mod/contacts.php:363 mod/profile_photo.php:19 +#: mod/profile_photo.php:179 mod/profile_photo.php:190 +#: mod/profile_photo.php:203 mod/profiles.php:172 mod/profiles.php:610 +#: mod/settings.php:24 mod/settings.php:132 mod/settings.php:669 index.php:410 msgid "Permission denied." msgstr "" -#: include/items.php:2444 +#: include/items.php:2426 msgid "Archives" msgstr "" -#: include/ostatus.php:1947 +#: include/ostatus.php:1962 #, php-format msgid "%s is now following %s." msgstr "" -#: include/ostatus.php:1948 +#: include/ostatus.php:1963 msgid "following" msgstr "" -#: include/ostatus.php:1951 +#: include/ostatus.php:1966 #, php-format msgid "%s stopped following %s." msgstr "" -#: include/ostatus.php:1952 +#: include/ostatus.php:1967 msgid "stopped following" msgstr "" -#: include/text.php:307 -msgid "newer" +#: include/plugin.php:531 include/plugin.php:533 +msgid "Click here to upgrade." msgstr "" -#: include/text.php:308 -msgid "older" +#: include/plugin.php:539 +msgid "This action exceeds the limits set by your subscription plan." msgstr "" -#: include/text.php:313 -msgid "first" +#: include/plugin.php:544 +msgid "This action is not available under your subscription plan." msgstr "" -#: include/text.php:314 -msgid "prev" +#: include/profile_selectors.php:6 +msgid "Male" msgstr "" -#: include/text.php:348 -msgid "next" +#: include/profile_selectors.php:6 +msgid "Female" msgstr "" -#: include/text.php:349 -msgid "last" +#: include/profile_selectors.php:6 +msgid "Currently Male" msgstr "" -#: include/text.php:403 -msgid "Loading more entries..." +#: include/profile_selectors.php:6 +msgid "Currently Female" msgstr "" -#: include/text.php:404 -msgid "The end" +#: include/profile_selectors.php:6 +msgid "Mostly Male" msgstr "" -#: include/text.php:955 -msgid "No contacts" +#: include/profile_selectors.php:6 +msgid "Mostly Female" msgstr "" -#: include/text.php:980 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "" -msgstr[1] "" - -#: include/text.php:993 -msgid "View Contacts" +#: include/profile_selectors.php:6 +msgid "Transgender" msgstr "" -#: include/text.php:1081 mod/editpost.php:99 mod/filer.php:31 mod/notes.php:62 -msgid "Save" +#: include/profile_selectors.php:6 +msgid "Intersex" msgstr "" -#: include/text.php:1144 -msgid "poke" +#: include/profile_selectors.php:6 +msgid "Transsexual" msgstr "" -#: include/text.php:1144 -msgid "poked" +#: include/profile_selectors.php:6 +msgid "Hermaphrodite" msgstr "" -#: include/text.php:1145 -msgid "ping" +#: include/profile_selectors.php:6 +msgid "Neuter" msgstr "" -#: include/text.php:1145 -msgid "pinged" +#: include/profile_selectors.php:6 +msgid "Non-specific" msgstr "" -#: include/text.php:1146 -msgid "prod" +#: include/profile_selectors.php:6 +msgid "Other" msgstr "" -#: include/text.php:1146 -msgid "prodded" +#: include/profile_selectors.php:23 +msgid "Males" msgstr "" -#: include/text.php:1147 -msgid "slap" +#: include/profile_selectors.php:23 +msgid "Females" msgstr "" -#: include/text.php:1147 -msgid "slapped" +#: include/profile_selectors.php:23 +msgid "Gay" msgstr "" -#: include/text.php:1148 -msgid "finger" +#: include/profile_selectors.php:23 +msgid "Lesbian" msgstr "" -#: include/text.php:1148 -msgid "fingered" +#: include/profile_selectors.php:23 +msgid "No Preference" msgstr "" -#: include/text.php:1149 -msgid "rebuff" +#: include/profile_selectors.php:23 +msgid "Bisexual" msgstr "" -#: include/text.php:1149 -msgid "rebuffed" +#: include/profile_selectors.php:23 +msgid "Autosexual" msgstr "" -#: include/text.php:1163 -msgid "happy" +#: include/profile_selectors.php:23 +msgid "Abstinent" msgstr "" -#: include/text.php:1164 -msgid "sad" +#: include/profile_selectors.php:23 +msgid "Virgin" msgstr "" -#: include/text.php:1165 -msgid "mellow" +#: include/profile_selectors.php:23 +msgid "Deviant" msgstr "" -#: include/text.php:1166 -msgid "tired" +#: include/profile_selectors.php:23 +msgid "Fetish" msgstr "" -#: include/text.php:1167 -msgid "perky" +#: include/profile_selectors.php:23 +msgid "Oodles" msgstr "" -#: include/text.php:1168 -msgid "angry" +#: include/profile_selectors.php:23 +msgid "Nonsexual" msgstr "" -#: include/text.php:1169 -msgid "stupified" +#: include/profile_selectors.php:42 +msgid "Single" msgstr "" -#: include/text.php:1170 -msgid "puzzled" +#: include/profile_selectors.php:42 +msgid "Lonely" msgstr "" -#: include/text.php:1171 -msgid "interested" +#: include/profile_selectors.php:42 +msgid "Available" msgstr "" -#: include/text.php:1172 -msgid "bitter" +#: include/profile_selectors.php:42 +msgid "Unavailable" msgstr "" -#: include/text.php:1173 -msgid "cheerful" +#: include/profile_selectors.php:42 +msgid "Has crush" msgstr "" -#: include/text.php:1174 -msgid "alive" +#: include/profile_selectors.php:42 +msgid "Infatuated" msgstr "" -#: include/text.php:1175 -msgid "annoyed" +#: include/profile_selectors.php:42 +msgid "Dating" msgstr "" -#: include/text.php:1176 -msgid "anxious" +#: include/profile_selectors.php:42 +msgid "Unfaithful" msgstr "" -#: include/text.php:1177 -msgid "cranky" +#: include/profile_selectors.php:42 +msgid "Sex Addict" msgstr "" -#: include/text.php:1178 -msgid "disturbed" +#: include/profile_selectors.php:42 +msgid "Friends/Benefits" msgstr "" -#: include/text.php:1179 -msgid "frustrated" +#: include/profile_selectors.php:42 +msgid "Casual" msgstr "" -#: include/text.php:1180 -msgid "motivated" +#: include/profile_selectors.php:42 +msgid "Engaged" msgstr "" -#: include/text.php:1181 -msgid "relaxed" +#: include/profile_selectors.php:42 +msgid "Married" msgstr "" -#: include/text.php:1182 -msgid "surprised" +#: include/profile_selectors.php:42 +msgid "Imaginarily married" msgstr "" -#: include/text.php:1392 mod/videos.php:386 -msgid "View Video" +#: include/profile_selectors.php:42 +msgid "Partners" msgstr "" -#: include/text.php:1424 -msgid "bytes" +#: include/profile_selectors.php:42 +msgid "Cohabiting" msgstr "" -#: include/text.php:1456 include/text.php:1468 -msgid "Click to open/close" +#: include/profile_selectors.php:42 +msgid "Common law" msgstr "" -#: include/text.php:1594 -msgid "View on separate page" +#: include/profile_selectors.php:42 +msgid "Happy" msgstr "" -#: include/text.php:1595 -msgid "view on separate page" +#: include/profile_selectors.php:42 +msgid "Not looking" msgstr "" -#: include/text.php:1874 -msgid "activity" +#: include/profile_selectors.php:42 +msgid "Swinger" msgstr "" -#: include/text.php:1876 mod/content.php:623 object/Item.php:419 -#: object/Item.php:431 -msgid "comment" -msgid_plural "comments" -msgstr[0] "" -msgstr[1] "" - -#: include/text.php:1877 -msgid "post" +#: include/profile_selectors.php:42 +msgid "Betrayed" msgstr "" -#: include/text.php:2045 -msgid "Item filed" +#: include/profile_selectors.php:42 +msgid "Separated" msgstr "" -#: mod/allfriends.php:46 +#: include/profile_selectors.php:42 +msgid "Unstable" +msgstr "" + +#: include/profile_selectors.php:42 +msgid "Divorced" +msgstr "" + +#: include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "" + +#: include/profile_selectors.php:42 +msgid "Widowed" +msgstr "" + +#: include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "" + +#: include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "" + +#: include/profile_selectors.php:42 +msgid "Don't care" +msgstr "" + +#: include/profile_selectors.php:42 +msgid "Ask me" +msgstr "" + +#: mod/allfriends.php:48 msgid "No friends to display." msgstr "" -#: mod/api.php:76 mod/api.php:102 +#: mod/api.php:78 mod/api.php:104 msgid "Authorize application connection" msgstr "" -#: mod/api.php:77 +#: mod/api.php:79 msgid "Return to your app and insert this Securty Code:" msgstr "" -#: mod/api.php:89 +#: mod/api.php:91 msgid "Please login to continue." msgstr "" -#: mod/api.php:104 +#: mod/api.php:106 msgid "" "Do you want to authorize this application to access your posts and contacts, " "and/or create new posts for you?" msgstr "" -#: mod/api.php:106 mod/dfrn_request.php:880 mod/follow.php:113 -#: mod/profiles.php:640 mod/profiles.php:644 mod/profiles.php:670 -#: mod/register.php:246 mod/settings.php:1171 mod/settings.php:1177 -#: mod/settings.php:1184 mod/settings.php:1188 mod/settings.php:1193 -#: mod/settings.php:1198 mod/settings.php:1203 mod/settings.php:1208 -#: mod/settings.php:1234 mod/settings.php:1235 mod/settings.php:1236 -#: mod/settings.php:1237 mod/settings.php:1238 +#: mod/api.php:108 mod/follow.php:115 mod/register.php:248 +#: mod/dfrn_request.php:880 mod/profiles.php:643 mod/profiles.php:647 +#: mod/profiles.php:673 mod/settings.php:1172 mod/settings.php:1178 +#: mod/settings.php:1185 mod/settings.php:1189 mod/settings.php:1194 +#: mod/settings.php:1199 mod/settings.php:1204 mod/settings.php:1209 +#: mod/settings.php:1235 mod/settings.php:1236 mod/settings.php:1237 +#: mod/settings.php:1238 mod/settings.php:1239 msgid "No" msgstr "" -#: mod/apps.php:7 index.php:254 +#: mod/apps.php:9 index.php:257 msgid "You must be logged in to use addons. " msgstr "" -#: mod/apps.php:11 +#: mod/apps.php:14 msgid "Applications" msgstr "" -#: mod/apps.php:14 +#: mod/apps.php:17 msgid "No installed applications." msgstr "" -#: mod/attach.php:8 +#: mod/attach.php:10 msgid "Item not available." msgstr "" -#: mod/attach.php:20 +#: mod/attach.php:22 msgid "Item was not found." msgstr "" -#: mod/bookmarklet.php:41 +#: mod/babel.php:18 +msgid "Source (bbcode) text:" +msgstr "" + +#: mod/babel.php:25 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "" + +#: mod/babel.php:33 +msgid "Source input: " +msgstr "" + +#: mod/babel.php:37 +msgid "bb2html (raw HTML): " +msgstr "" + +#: mod/babel.php:41 +msgid "bb2html: " +msgstr "" + +#: mod/babel.php:45 +msgid "bb2html2bb: " +msgstr "" + +#: mod/babel.php:49 +msgid "bb2md: " +msgstr "" + +#: mod/babel.php:53 +msgid "bb2md2html: " +msgstr "" + +#: mod/babel.php:57 +msgid "bb2dia2bb: " +msgstr "" + +#: mod/babel.php:61 +msgid "bb2md2html2bb: " +msgstr "" + +#: mod/babel.php:67 +msgid "Source input (Diaspora format): " +msgstr "" + +#: mod/babel.php:71 +msgid "diaspora2bb: " +msgstr "" + +#: mod/bookmarklet.php:43 msgid "The post was created" msgstr "" -#: mod/common.php:91 +#: mod/cal.php:145 mod/display.php:329 mod/profile.php:156 +msgid "Access to this profile has been restricted." +msgstr "" + +#: mod/cal.php:273 mod/events.php:378 +msgid "View" +msgstr "" + +#: mod/cal.php:274 mod/events.php:380 +msgid "Previous" +msgstr "" + +#: mod/cal.php:275 mod/events.php:381 mod/install.php:203 +msgid "Next" +msgstr "" + +#: mod/cal.php:284 mod/events.php:390 +msgid "list" +msgstr "" + +#: mod/cal.php:294 +msgid "User not found" +msgstr "" + +#: mod/cal.php:310 +msgid "This calendar format is not supported" +msgstr "" + +#: mod/cal.php:312 +msgid "No exportable data found" +msgstr "" + +#: mod/cal.php:327 +msgid "calendar" +msgstr "" + +#: mod/common.php:93 msgid "No contacts in common." msgstr "" -#: mod/common.php:141 mod/contacts.php:871 +#: mod/common.php:143 mod/contacts.php:874 msgid "Common Friends" msgstr "" -#: mod/contacts.php:134 -#, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited." -msgstr[0] "" -msgstr[1] "" - -#: mod/contacts.php:169 mod/contacts.php:378 -msgid "Could not access contact record." -msgstr "" - -#: mod/contacts.php:183 -msgid "Could not locate selected profile." -msgstr "" - -#: mod/contacts.php:216 -msgid "Contact updated." -msgstr "" - -#: mod/contacts.php:218 mod/dfrn_request.php:593 -msgid "Failed to update contact record." -msgstr "" - -#: mod/contacts.php:399 -msgid "Contact has been blocked" -msgstr "" - -#: mod/contacts.php:399 -msgid "Contact has been unblocked" -msgstr "" - -#: mod/contacts.php:410 -msgid "Contact has been ignored" -msgstr "" - -#: mod/contacts.php:410 -msgid "Contact has been unignored" -msgstr "" - -#: mod/contacts.php:422 -msgid "Contact has been archived" -msgstr "" - -#: mod/contacts.php:422 -msgid "Contact has been unarchived" -msgstr "" - -#: mod/contacts.php:447 -msgid "Drop contact" -msgstr "" - -#: mod/contacts.php:450 mod/contacts.php:809 -msgid "Do you really want to delete this contact?" -msgstr "" - -#: mod/contacts.php:469 -msgid "Contact has been removed." -msgstr "" - -#: mod/contacts.php:506 -#, php-format -msgid "You are mutual friends with %s" -msgstr "" - -#: mod/contacts.php:510 -#, php-format -msgid "You are sharing with %s" -msgstr "" - -#: mod/contacts.php:515 -#, php-format -msgid "%s is sharing with you" -msgstr "" - -#: mod/contacts.php:535 -msgid "Private communications are not available for this contact." -msgstr "" - -#: mod/contacts.php:538 mod/admin.php:978 -msgid "Never" -msgstr "" - -#: mod/contacts.php:542 -msgid "(Update was successful)" -msgstr "" - -#: mod/contacts.php:542 -msgid "(Update was not successful)" -msgstr "" - -#: mod/contacts.php:544 mod/contacts.php:972 -msgid "Suggest friends" -msgstr "" - -#: mod/contacts.php:548 -#, php-format -msgid "Network type: %s" -msgstr "" - -#: mod/contacts.php:561 -msgid "Communications lost with this contact!" -msgstr "" - -#: mod/contacts.php:564 -msgid "Fetch further information for feeds" -msgstr "" - -#: mod/contacts.php:565 mod/admin.php:987 -msgid "Disabled" -msgstr "" - -#: mod/contacts.php:565 -msgid "Fetch information" -msgstr "" - -#: mod/contacts.php:565 -msgid "Fetch information and keywords" -msgstr "" - -#: mod/contacts.php:583 -msgid "Contact" -msgstr "" - -#: mod/contacts.php:585 mod/content.php:728 mod/crepair.php:156 -#: mod/fsuggest.php:108 mod/invite.php:142 mod/localtime.php:45 -#: mod/mood.php:138 mod/poke.php:203 mod/events.php:505 mod/manage.php:155 -#: mod/message.php:338 mod/message.php:521 mod/photos.php:1141 -#: mod/photos.php:1271 mod/photos.php:1597 mod/photos.php:1646 -#: mod/photos.php:1688 mod/photos.php:1768 mod/profiles.php:681 -#: mod/install.php:242 mod/install.php:282 object/Item.php:705 -#: view/theme/duepuntozero/config.php:61 view/theme/frio/config.php:64 -#: view/theme/quattro/config.php:67 view/theme/vier/config.php:112 -msgid "Submit" -msgstr "" - -#: mod/contacts.php:586 -msgid "Profile Visibility" -msgstr "" - -#: mod/contacts.php:587 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "" - -#: mod/contacts.php:588 -msgid "Contact Information / Notes" -msgstr "" - -#: mod/contacts.php:589 -msgid "Edit contact notes" -msgstr "" - -#: mod/contacts.php:594 mod/contacts.php:938 mod/nogroup.php:43 -#: mod/viewcontacts.php:102 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "" - -#: mod/contacts.php:595 -msgid "Block/Unblock contact" -msgstr "" - -#: mod/contacts.php:596 -msgid "Ignore contact" -msgstr "" - -#: mod/contacts.php:597 -msgid "Repair URL settings" -msgstr "" - -#: mod/contacts.php:598 -msgid "View conversations" -msgstr "" - -#: mod/contacts.php:604 -msgid "Last update:" -msgstr "" - -#: mod/contacts.php:606 -msgid "Update public posts" -msgstr "" - -#: mod/contacts.php:608 mod/contacts.php:982 -msgid "Update now" -msgstr "" - -#: mod/contacts.php:613 mod/contacts.php:813 mod/contacts.php:991 -#: mod/admin.php:1510 -msgid "Unblock" -msgstr "" - -#: mod/contacts.php:613 mod/contacts.php:813 mod/contacts.php:991 -#: mod/admin.php:1509 -msgid "Block" -msgstr "" - -#: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999 -msgid "Unignore" -msgstr "" - -#: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999 -#: mod/notifications.php:60 mod/notifications.php:179 -#: mod/notifications.php:263 -msgid "Ignore" -msgstr "" - -#: mod/contacts.php:618 -msgid "Currently blocked" -msgstr "" - -#: mod/contacts.php:619 -msgid "Currently ignored" -msgstr "" - -#: mod/contacts.php:620 -msgid "Currently archived" -msgstr "" - -#: mod/contacts.php:621 mod/notifications.php:172 mod/notifications.php:251 -msgid "Hide this contact from others" -msgstr "" - -#: mod/contacts.php:621 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "" - -#: mod/contacts.php:622 -msgid "Notification for new posts" -msgstr "" - -#: mod/contacts.php:622 -msgid "Send a notification of every new post of this contact" -msgstr "" - -#: mod/contacts.php:625 -msgid "Blacklisted keywords" -msgstr "" - -#: mod/contacts.php:625 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "" - -#: mod/contacts.php:632 mod/follow.php:129 mod/notifications.php:255 -msgid "Profile URL" -msgstr "" - -#: mod/contacts.php:643 -msgid "Actions" -msgstr "" - -#: mod/contacts.php:646 -msgid "Contact Settings" -msgstr "" - -#: mod/contacts.php:692 -msgid "Suggestions" -msgstr "" - -#: mod/contacts.php:695 -msgid "Suggest potential friends" -msgstr "" - -#: mod/contacts.php:700 mod/group.php:212 -msgid "All Contacts" -msgstr "" - -#: mod/contacts.php:703 -msgid "Show all contacts" -msgstr "" - -#: mod/contacts.php:708 -msgid "Unblocked" -msgstr "" - -#: mod/contacts.php:711 -msgid "Only show unblocked contacts" -msgstr "" - -#: mod/contacts.php:717 -msgid "Blocked" -msgstr "" - -#: mod/contacts.php:720 -msgid "Only show blocked contacts" -msgstr "" - -#: mod/contacts.php:726 -msgid "Ignored" -msgstr "" - -#: mod/contacts.php:729 -msgid "Only show ignored contacts" -msgstr "" - -#: mod/contacts.php:735 -msgid "Archived" -msgstr "" - -#: mod/contacts.php:738 -msgid "Only show archived contacts" -msgstr "" - -#: mod/contacts.php:744 -msgid "Hidden" -msgstr "" - -#: mod/contacts.php:747 -msgid "Only show hidden contacts" -msgstr "" - -#: mod/contacts.php:804 -msgid "Search your contacts" -msgstr "" - -#: mod/contacts.php:805 mod/network.php:151 mod/search.php:227 -#, php-format -msgid "Results for: %s" -msgstr "" - -#: mod/contacts.php:812 mod/settings.php:160 mod/settings.php:707 -msgid "Update" -msgstr "" - -#: mod/contacts.php:815 mod/contacts.php:1007 -msgid "Archive" -msgstr "" - -#: mod/contacts.php:815 mod/contacts.php:1007 -msgid "Unarchive" -msgstr "" - -#: mod/contacts.php:818 -msgid "Batch Actions" -msgstr "" - -#: mod/contacts.php:864 -msgid "View all contacts" -msgstr "" - -#: mod/contacts.php:874 -msgid "View all common friends" -msgstr "" - -#: mod/contacts.php:881 -msgid "Advanced Contact Settings" -msgstr "" - -#: mod/contacts.php:915 -msgid "Mutual Friendship" -msgstr "" - -#: mod/contacts.php:919 -msgid "is a fan of yours" -msgstr "" - -#: mod/contacts.php:923 -msgid "you are a fan of" -msgstr "" - -#: mod/contacts.php:939 mod/nogroup.php:44 -msgid "Edit contact" -msgstr "" - -#: mod/contacts.php:993 -msgid "Toggle Blocked status" -msgstr "" - -#: mod/contacts.php:1001 -msgid "Toggle Ignored status" +#: mod/community.php:18 mod/directory.php:33 mod/display.php:201 +#: mod/photos.php:981 mod/search.php:96 mod/search.php:102 mod/videos.php:200 +#: mod/viewcontacts.php:39 mod/webfinger.php:10 mod/dfrn_request.php:804 +#: mod/probe.php:9 +msgid "Public access denied." msgstr "" -#: mod/contacts.php:1009 -msgid "Toggle Archive status" +#: mod/community.php:23 +msgid "Not available." msgstr "" -#: mod/contacts.php:1017 -msgid "Delete contact" +#: mod/community.php:50 mod/search.php:222 +msgid "No results." msgstr "" -#: mod/content.php:119 mod/network.php:475 +#: mod/content.php:120 mod/network.php:478 msgid "No such group" msgstr "" -#: mod/content.php:130 mod/group.php:213 mod/network.php:502 +#: mod/content.php:131 mod/group.php:214 mod/network.php:505 msgid "Group is empty" msgstr "" -#: mod/content.php:135 mod/network.php:506 +#: mod/content.php:136 mod/network.php:509 #, php-format msgid "Group: %s" msgstr "" -#: mod/content.php:325 object/Item.php:96 +#: mod/content.php:326 object/Item.php:96 msgid "This entry was edited" msgstr "" -#: mod/content.php:621 object/Item.php:417 +#: mod/content.php:622 object/Item.php:414 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "" msgstr[1] "" -#: mod/content.php:638 mod/photos.php:1429 object/Item.php:117 +#: mod/content.php:639 mod/photos.php:1431 object/Item.php:117 msgid "Private Message" msgstr "" -#: mod/content.php:702 mod/photos.php:1625 object/Item.php:274 +#: mod/content.php:703 mod/photos.php:1627 object/Item.php:271 msgid "I like this (toggle)" msgstr "" -#: mod/content.php:702 object/Item.php:274 +#: mod/content.php:703 object/Item.php:271 msgid "like" msgstr "" -#: mod/content.php:703 mod/photos.php:1626 object/Item.php:275 +#: mod/content.php:704 mod/photos.php:1628 object/Item.php:272 msgid "I don't like this (toggle)" msgstr "" -#: mod/content.php:703 object/Item.php:275 +#: mod/content.php:704 object/Item.php:272 msgid "dislike" msgstr "" -#: mod/content.php:705 object/Item.php:278 +#: mod/content.php:706 object/Item.php:275 msgid "Share this" msgstr "" -#: mod/content.php:705 object/Item.php:278 +#: mod/content.php:706 object/Item.php:275 msgid "share" msgstr "" -#: mod/content.php:725 mod/photos.php:1643 mod/photos.php:1685 -#: mod/photos.php:1765 object/Item.php:702 +#: mod/content.php:726 mod/photos.php:1645 mod/photos.php:1687 +#: mod/photos.php:1767 object/Item.php:699 msgid "This is you" msgstr "" -#: mod/content.php:727 mod/content.php:950 mod/photos.php:1645 -#: mod/photos.php:1687 mod/photos.php:1767 object/Item.php:392 -#: object/Item.php:704 +#: mod/content.php:728 mod/content.php:951 mod/photos.php:1647 +#: mod/photos.php:1689 mod/photos.php:1769 object/Item.php:389 +#: object/Item.php:701 msgid "Comment" msgstr "" -#: mod/content.php:729 object/Item.php:706 +#: mod/content.php:729 mod/crepair.php:159 mod/events.php:508 +#: mod/fsuggest.php:109 mod/install.php:244 mod/install.php:284 +#: mod/invite.php:144 mod/localtime.php:46 mod/manage.php:156 +#: mod/message.php:340 mod/message.php:523 mod/mood.php:139 +#: mod/photos.php:1143 mod/photos.php:1273 mod/photos.php:1599 +#: mod/photos.php:1648 mod/photos.php:1690 mod/photos.php:1770 +#: mod/poke.php:204 mod/contacts.php:588 mod/profiles.php:684 +#: object/Item.php:702 view/theme/duepuntozero/config.php:64 +#: view/theme/frio/config.php:67 view/theme/quattro/config.php:70 +#: view/theme/vier/config.php:113 +msgid "Submit" +msgstr "" + +#: mod/content.php:730 object/Item.php:703 msgid "Bold" msgstr "" -#: mod/content.php:730 object/Item.php:707 +#: mod/content.php:731 object/Item.php:704 msgid "Italic" msgstr "" -#: mod/content.php:731 object/Item.php:708 +#: mod/content.php:732 object/Item.php:705 msgid "Underline" msgstr "" -#: mod/content.php:732 object/Item.php:709 +#: mod/content.php:733 object/Item.php:706 msgid "Quote" msgstr "" -#: mod/content.php:733 object/Item.php:710 +#: mod/content.php:734 object/Item.php:707 msgid "Code" msgstr "" -#: mod/content.php:734 object/Item.php:711 +#: mod/content.php:735 object/Item.php:708 msgid "Image" msgstr "" -#: mod/content.php:735 object/Item.php:712 +#: mod/content.php:736 object/Item.php:709 msgid "Link" msgstr "" -#: mod/content.php:736 object/Item.php:713 +#: mod/content.php:737 object/Item.php:710 msgid "Video" msgstr "" -#: mod/content.php:746 mod/settings.php:743 object/Item.php:122 +#: mod/content.php:747 mod/settings.php:744 object/Item.php:122 #: object/Item.php:124 msgid "Edit" msgstr "" -#: mod/content.php:772 object/Item.php:238 +#: mod/content.php:773 object/Item.php:238 msgid "add star" msgstr "" -#: mod/content.php:773 object/Item.php:239 +#: mod/content.php:774 object/Item.php:239 msgid "remove star" msgstr "" -#: mod/content.php:774 object/Item.php:240 +#: mod/content.php:775 object/Item.php:240 msgid "toggle star status" msgstr "" -#: mod/content.php:777 object/Item.php:243 +#: mod/content.php:778 object/Item.php:243 msgid "starred" msgstr "" -#: mod/content.php:778 mod/content.php:800 object/Item.php:263 +#: mod/content.php:779 mod/content.php:801 object/Item.php:260 msgid "add tag" msgstr "" -#: mod/content.php:789 object/Item.php:251 +#: mod/content.php:790 object/Item.php:248 msgid "ignore thread" msgstr "" -#: mod/content.php:790 object/Item.php:252 +#: mod/content.php:791 object/Item.php:249 msgid "unignore thread" msgstr "" -#: mod/content.php:791 object/Item.php:253 +#: mod/content.php:792 object/Item.php:250 msgid "toggle ignore status" msgstr "" -#: mod/content.php:794 mod/ostatus_subscribe.php:73 object/Item.php:256 +#: mod/content.php:795 mod/ostatus_subscribe.php:75 object/Item.php:253 msgid "ignored" msgstr "" -#: mod/content.php:805 object/Item.php:141 +#: mod/content.php:806 object/Item.php:141 msgid "save to folder" msgstr "" -#: mod/content.php:853 object/Item.php:212 +#: mod/content.php:854 object/Item.php:212 msgid "I will attend" msgstr "" -#: mod/content.php:853 object/Item.php:212 +#: mod/content.php:854 object/Item.php:212 msgid "I will not attend" msgstr "" -#: mod/content.php:853 object/Item.php:212 +#: mod/content.php:854 object/Item.php:212 msgid "I might attend" msgstr "" -#: mod/content.php:917 object/Item.php:358 +#: mod/content.php:918 object/Item.php:355 msgid "to" msgstr "" -#: mod/content.php:918 object/Item.php:360 +#: mod/content.php:919 object/Item.php:357 msgid "Wall-to-Wall" msgstr "" -#: mod/content.php:919 object/Item.php:361 +#: mod/content.php:920 object/Item.php:358 msgid "via Wall-To-Wall:" msgstr "" -#: mod/credits.php:16 +#: mod/credits.php:19 msgid "Credits" msgstr "" -#: mod/credits.php:17 +#: mod/credits.php:20 msgid "" "Friendica is a community project, that would not be possible without the " "help of many people. Here is a list of those who have contributed to the " "code or the translation of Friendica. Thank you all!" msgstr "" -#: mod/crepair.php:89 +#: mod/crepair.php:92 msgid "Contact settings applied." msgstr "" -#: mod/crepair.php:91 +#: mod/crepair.php:94 msgid "Contact update failed." msgstr "" -#: mod/crepair.php:116 mod/fsuggest.php:21 mod/fsuggest.php:93 -#: mod/dfrn_confirm.php:126 +#: mod/crepair.php:119 mod/dfrn_confirm.php:128 mod/fsuggest.php:22 +#: mod/fsuggest.php:94 msgid "Contact not found." msgstr "" -#: mod/crepair.php:122 +#: mod/crepair.php:125 msgid "" "WARNING: This is highly advanced and if you enter incorrect " "information your communications with this contact may stop working." msgstr "" -#: mod/crepair.php:123 +#: mod/crepair.php:126 msgid "" "Please use your browser 'Back' button now if you are " "uncertain what to do on this page." msgstr "" -#: mod/crepair.php:136 mod/crepair.php:138 +#: mod/crepair.php:139 mod/crepair.php:141 msgid "No mirroring" msgstr "" -#: mod/crepair.php:136 +#: mod/crepair.php:139 msgid "Mirror as forwarded posting" msgstr "" -#: mod/crepair.php:136 mod/crepair.php:138 +#: mod/crepair.php:139 mod/crepair.php:141 msgid "Mirror as my own posting" msgstr "" -#: mod/crepair.php:152 +#: mod/crepair.php:155 msgid "Return to contact editor" msgstr "" -#: mod/crepair.php:154 +#: mod/crepair.php:157 msgid "Refetch contact data" msgstr "" -#: mod/crepair.php:158 +#: mod/crepair.php:161 msgid "Remote Self" msgstr "" -#: mod/crepair.php:161 +#: mod/crepair.php:164 msgid "Mirror postings from this contact" msgstr "" -#: mod/crepair.php:163 +#: mod/crepair.php:166 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." msgstr "" -#: mod/crepair.php:167 mod/settings.php:683 mod/settings.php:709 -#: mod/admin.php:1490 mod/admin.php:1503 mod/admin.php:1516 mod/admin.php:1532 +#: mod/crepair.php:170 mod/admin.php:1496 mod/admin.php:1509 +#: mod/admin.php:1522 mod/admin.php:1538 mod/settings.php:684 +#: mod/settings.php:710 msgid "Name" msgstr "" -#: mod/crepair.php:168 +#: mod/crepair.php:171 msgid "Account Nickname" msgstr "" -#: mod/crepair.php:169 +#: mod/crepair.php:172 msgid "@Tagname - overrides Name/Nickname" msgstr "" -#: mod/crepair.php:170 +#: mod/crepair.php:173 msgid "Account URL" msgstr "" -#: mod/crepair.php:171 +#: mod/crepair.php:174 msgid "Friend Request URL" msgstr "" -#: mod/crepair.php:172 +#: mod/crepair.php:175 msgid "Friend Confirm URL" msgstr "" -#: mod/crepair.php:173 +#: mod/crepair.php:176 msgid "Notification Endpoint URL" msgstr "" -#: mod/crepair.php:174 +#: mod/crepair.php:177 msgid "Poll/Feed URL" msgstr "" -#: mod/crepair.php:175 +#: mod/crepair.php:178 msgid "New photo from this URL" msgstr "" -#: mod/delegate.php:101 +#: mod/delegate.php:103 msgid "No potential page delegates located." msgstr "" -#: mod/delegate.php:132 +#: mod/delegate.php:134 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 +#: mod/delegate.php:135 msgid "Existing Page Managers" msgstr "" -#: mod/delegate.php:135 +#: mod/delegate.php:137 msgid "Existing Page Delegates" msgstr "" -#: mod/delegate.php:137 +#: mod/delegate.php:139 msgid "Potential Delegates" msgstr "" -#: mod/delegate.php:139 mod/tagrm.php:95 +#: mod/delegate.php:141 mod/tagrm.php:97 msgid "Remove" msgstr "" -#: mod/delegate.php:140 +#: mod/delegate.php:142 msgid "Add" msgstr "" -#: mod/delegate.php:141 +#: mod/delegate.php:143 msgid "No entries." msgstr "" +#: mod/dfrn_confirm.php:72 mod/profiles.php:23 mod/profiles.php:139 +#: mod/profiles.php:186 mod/profiles.php:622 +msgid "Profile not found." +msgstr "" + +#: mod/dfrn_confirm.php:129 +msgid "" +"This may occasionally happen if contact was requested by both persons and it " +"has already been approved." +msgstr "" + +#: mod/dfrn_confirm.php:246 +msgid "Response from remote site was not understood." +msgstr "" + +#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260 +msgid "Unexpected response from remote site: " +msgstr "" + +#: mod/dfrn_confirm.php:269 +msgid "Confirmation completed successfully." +msgstr "" + +#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292 +msgid "Remote site reported: " +msgstr "" + +#: mod/dfrn_confirm.php:283 +msgid "Temporary failure. Please wait and try again." +msgstr "" + +#: mod/dfrn_confirm.php:290 +msgid "Introduction failed or was revoked." +msgstr "" + +#: mod/dfrn_confirm.php:420 +msgid "Unable to set contact photo." +msgstr "" + +#: mod/dfrn_confirm.php:561 +#, php-format +msgid "No user record found for '%s' " +msgstr "" + +#: mod/dfrn_confirm.php:571 +msgid "Our site encryption key is apparently messed up." +msgstr "" + +#: mod/dfrn_confirm.php:582 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "" + +#: mod/dfrn_confirm.php:604 +msgid "Contact record was not found for you on our site." +msgstr "" + +#: mod/dfrn_confirm.php:618 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "" + +#: mod/dfrn_confirm.php:638 +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:649 +msgid "Unable to set your contact credentials on our system." +msgstr "" + +#: mod/dfrn_confirm.php:711 +msgid "Unable to update your contact profile details on our system" +msgstr "" + +#: mod/dfrn_confirm.php:783 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "" + #: mod/dfrn_poll.php:104 mod/dfrn_poll.php:539 #, php-format msgid "%1$s welcomes %2$s" msgstr "" -#: mod/directory.php:37 mod/display.php:200 mod/viewcontacts.php:36 -#: mod/community.php:18 mod/dfrn_request.php:804 mod/photos.php:979 -#: mod/probe.php:9 mod/search.php:93 mod/search.php:99 mod/videos.php:198 -#: mod/webfinger.php:8 -msgid "Public access denied." -msgstr "" - -#: mod/directory.php:199 view/theme/vier/theme.php:199 +#: mod/directory.php:195 view/theme/vier/theme.php:201 msgid "Global Directory" msgstr "" -#: mod/directory.php:201 +#: mod/directory.php:197 msgid "Find on this site" msgstr "" -#: mod/directory.php:203 +#: mod/directory.php:199 msgid "Results for:" msgstr "" -#: mod/directory.php:205 +#: mod/directory.php:201 msgid "Site Directory" msgstr "" -#: mod/directory.php:212 +#: mod/directory.php:208 msgid "No entries (some entries may be hidden)." msgstr "" -#: mod/display.php:328 mod/cal.php:143 mod/profile.php:155 -msgid "Access to this profile has been restricted." +#: mod/dirfind.php:39 +#, php-format +msgid "People Search - %s" msgstr "" -#: mod/display.php:479 +#: mod/dirfind.php:50 +#, php-format +msgid "Forum Search - %s" +msgstr "" + +#: mod/dirfind.php:247 mod/match.php:112 +msgid "No matches" +msgstr "" + +#: mod/display.php:480 msgid "Item has been removed." msgstr "" -#: mod/editpost.php:17 mod/editpost.php:27 +#: mod/editpost.php:19 mod/editpost.php:29 msgid "Item not found" msgstr "" -#: mod/editpost.php:32 +#: mod/editpost.php:34 msgid "Edit post" msgstr "" -#: mod/fbrowser.php:132 +#: mod/events.php:96 mod/events.php:98 +msgid "Event can not end before it has started." +msgstr "" + +#: mod/events.php:105 mod/events.php:107 +msgid "Event title and start time are required." +msgstr "" + +#: mod/events.php:379 +msgid "Create New Event" +msgstr "" + +#: mod/events.php:484 +msgid "Event details" +msgstr "" + +#: mod/events.php:485 +msgid "Starting date and Title are required." +msgstr "" + +#: mod/events.php:486 mod/events.php:487 +msgid "Event Starts:" +msgstr "" + +#: mod/events.php:486 mod/events.php:498 mod/profiles.php:712 +msgid "Required" +msgstr "" + +#: mod/events.php:488 mod/events.php:504 +msgid "Finish date/time is not known or not relevant" +msgstr "" + +#: mod/events.php:490 mod/events.php:491 +msgid "Event Finishes:" +msgstr "" + +#: mod/events.php:492 mod/events.php:505 +msgid "Adjust for viewer timezone" +msgstr "" + +#: mod/events.php:494 +msgid "Description:" +msgstr "" + +#: mod/events.php:498 mod/events.php:500 +msgid "Title:" +msgstr "" + +#: mod/events.php:501 mod/events.php:502 +msgid "Share this event" +msgstr "" + +#: mod/events.php:531 +msgid "Failed to remove event" +msgstr "" + +#: mod/events.php:533 +msgid "Event removed" +msgstr "" + +#: mod/fbrowser.php:134 msgid "Files" msgstr "" -#: mod/fetch.php:12 mod/fetch.php:39 mod/fetch.php:48 mod/help.php:53 -#: mod/p.php:16 mod/p.php:43 mod/p.php:52 index.php:298 +#: mod/fetch.php:15 mod/fetch.php:42 mod/fetch.php:51 mod/help.php:56 +#: mod/p.php:19 mod/p.php:46 mod/p.php:55 index.php:301 msgid "Not Found" msgstr "" -#: mod/filer.php:30 +#: mod/filer.php:31 msgid "- select -" msgstr "" -#: mod/fsuggest.php:64 +#: mod/follow.php:21 mod/dfrn_request.php:893 +msgid "Submit Request" +msgstr "" + +#: mod/follow.php:32 +msgid "You already added this contact." +msgstr "" + +#: mod/follow.php:41 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "" + +#: mod/follow.php:48 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "" + +#: mod/follow.php:55 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "" + +#: mod/follow.php:114 mod/dfrn_request.php:879 +msgid "Please answer the following:" +msgstr "" + +#: mod/follow.php:115 mod/dfrn_request.php:880 +#, php-format +msgid "Does %s know you?" +msgstr "" + +#: mod/follow.php:116 mod/dfrn_request.php:884 +msgid "Add a personal note:" +msgstr "" + +#: mod/follow.php:122 mod/dfrn_request.php:890 +msgid "Your Identity Address:" +msgstr "" + +#: mod/follow.php:131 mod/notifications.php:257 mod/contacts.php:635 +msgid "Profile URL" +msgstr "" + +#: mod/follow.php:188 +msgid "Contact added" +msgstr "" + +#: mod/friendica.php:69 +msgid "This is Friendica, version" +msgstr "" + +#: mod/friendica.php:70 +msgid "running at web location" +msgstr "" + +#: mod/friendica.php:74 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "" + +#: mod/friendica.php:78 +msgid "Bug reports and issues: please visit" +msgstr "" + +#: mod/friendica.php:78 +msgid "the bugtracker at github" +msgstr "" + +#: mod/friendica.php:81 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "" + +#: mod/friendica.php:95 +msgid "Installed plugins/addons/apps:" +msgstr "" + +#: mod/friendica.php:109 +msgid "No installed plugins/addons/apps" +msgstr "" + +#: mod/friendica.php:114 +msgid "On this server the following remote servers are blocked." +msgstr "" + +#: mod/friendica.php:115 mod/admin.php:281 mod/admin.php:299 +msgid "Reason for the block" +msgstr "" + +#: mod/fsuggest.php:65 msgid "Friend suggestion sent." msgstr "" -#: mod/fsuggest.php:98 +#: mod/fsuggest.php:99 msgid "Suggest Friends" msgstr "" -#: mod/fsuggest.php:100 +#: mod/fsuggest.php:101 #, php-format msgid "Suggest a friend for %s" msgstr "" -#: mod/hcard.php:11 +#: mod/group.php:30 +msgid "Group created." +msgstr "" + +#: mod/group.php:36 +msgid "Could not create group." +msgstr "" + +#: mod/group.php:50 mod/group.php:155 +msgid "Group not found." +msgstr "" + +#: mod/group.php:64 +msgid "Group name changed." +msgstr "" + +#: mod/group.php:77 mod/profperm.php:22 index.php:409 +msgid "Permission denied" +msgstr "" + +#: mod/group.php:94 +msgid "Save Group" +msgstr "" + +#: mod/group.php:99 +msgid "Create a group of contacts/friends." +msgstr "" + +#: mod/group.php:124 +msgid "Group removed." +msgstr "" + +#: mod/group.php:126 +msgid "Unable to remove group." +msgstr "" + +#: mod/group.php:190 +msgid "Delete Group" +msgstr "" + +#: mod/group.php:196 +msgid "Group Editor" +msgstr "" + +#: mod/group.php:201 +msgid "Edit Group Name" +msgstr "" + +#: mod/group.php:211 +msgid "Members" +msgstr "" + +#: mod/group.php:213 mod/contacts.php:703 +msgid "All Contacts" +msgstr "" + +#: mod/group.php:227 +msgid "Remove Contact" +msgstr "" + +#: mod/group.php:251 +msgid "Add Contact" +msgstr "" + +#: mod/group.php:263 mod/profperm.php:109 +msgid "Click on a contact to add or remove." +msgstr "" + +#: mod/hcard.php:13 msgid "No profile" msgstr "" -#: mod/help.php:41 +#: mod/help.php:44 msgid "Help:" msgstr "" -#: mod/help.php:56 index.php:301 +#: mod/help.php:59 index.php:304 msgid "Page not found." msgstr "" -#: mod/home.php:39 +#: mod/home.php:41 #, php-format msgid "Welcome to %s" msgstr "" -#: mod/invite.php:28 +#: mod/install.php:108 +msgid "Friendica Communications Server - Setup" +msgstr "" + +#: mod/install.php:114 +msgid "Could not connect to database." +msgstr "" + +#: mod/install.php:118 +msgid "Could not create table." +msgstr "" + +#: mod/install.php:124 +msgid "Your Friendica site database has been installed." +msgstr "" + +#: mod/install.php:129 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "" + +#: mod/install.php:130 mod/install.php:202 mod/install.php:549 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "" + +#: mod/install.php:142 +msgid "Database already in use." +msgstr "" + +#: mod/install.php:199 +msgid "System check" +msgstr "" + +#: mod/install.php:204 +msgid "Check again" +msgstr "" + +#: mod/install.php:223 +msgid "Database connection" +msgstr "" + +#: mod/install.php:224 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "" + +#: mod/install.php:225 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "" + +#: mod/install.php:226 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "" + +#: mod/install.php:230 +msgid "Database Server Name" +msgstr "" + +#: mod/install.php:231 +msgid "Database Login Name" +msgstr "" + +#: mod/install.php:232 +msgid "Database Login Password" +msgstr "" + +#: mod/install.php:232 +msgid "For security reasons the password must not be empty" +msgstr "" + +#: mod/install.php:233 +msgid "Database Name" +msgstr "" + +#: mod/install.php:234 mod/install.php:275 +msgid "Site administrator email address" +msgstr "" + +#: mod/install.php:234 mod/install.php:275 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "" + +#: mod/install.php:238 mod/install.php:278 +msgid "Please select a default timezone for your website" +msgstr "" + +#: mod/install.php:265 +msgid "Site settings" +msgstr "" + +#: mod/install.php:279 +msgid "System Language:" +msgstr "" + +#: mod/install.php:279 +msgid "" +"Set the default language for your Friendica installation interface and to " +"send emails." +msgstr "" + +#: mod/install.php:319 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "" + +#: mod/install.php:320 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run the background processing. See 'Setup the poller'" +msgstr "" + +#: mod/install.php:324 +msgid "PHP executable path" +msgstr "" + +#: mod/install.php:324 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "" + +#: mod/install.php:329 +msgid "Command line PHP" +msgstr "" + +#: mod/install.php:338 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "" + +#: mod/install.php:339 +msgid "Found PHP version: " +msgstr "" + +#: mod/install.php:341 +msgid "PHP cli binary" +msgstr "" + +#: mod/install.php:352 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "" + +#: mod/install.php:353 +msgid "This is required for message delivery to work." +msgstr "" + +#: mod/install.php:355 +msgid "PHP register_argc_argv" +msgstr "" + +#: mod/install.php:378 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "" + +#: mod/install.php:379 +msgid "" +"If running under Windows, please see \"http://www.php.net/manual/en/openssl." +"installation.php\"." +msgstr "" + +#: mod/install.php:381 +msgid "Generate encryption keys" +msgstr "" + +#: mod/install.php:388 +msgid "libCurl PHP module" +msgstr "" + +#: mod/install.php:389 +msgid "GD graphics PHP module" +msgstr "" + +#: mod/install.php:390 +msgid "OpenSSL PHP module" +msgstr "" + +#: mod/install.php:391 +msgid "PDO or MySQLi PHP module" +msgstr "" + +#: mod/install.php:392 +msgid "mb_string PHP module" +msgstr "" + +#: mod/install.php:393 +msgid "XML PHP module" +msgstr "" + +#: mod/install.php:394 +msgid "iconv module" +msgstr "" + +#: mod/install.php:398 mod/install.php:400 +msgid "Apache mod_rewrite module" +msgstr "" + +#: mod/install.php:398 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "" + +#: mod/install.php:406 +msgid "Error: libCURL PHP module required but not installed." +msgstr "" + +#: mod/install.php:410 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "" + +#: mod/install.php:414 +msgid "Error: openssl PHP module required but not installed." +msgstr "" + +#: mod/install.php:418 +msgid "Error: PDO or MySQLi PHP module required but not installed." +msgstr "" + +#: mod/install.php:422 +msgid "Error: The MySQL driver for PDO is not installed." +msgstr "" + +#: mod/install.php:426 +msgid "Error: mb_string PHP module required but not installed." +msgstr "" + +#: mod/install.php:430 +msgid "Error: iconv PHP module required but not installed." +msgstr "" + +#: mod/install.php:440 +msgid "Error, XML PHP module required but not installed." +msgstr "" + +#: mod/install.php:452 +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:453 +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:454 +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:455 +msgid "" +"You can alternatively skip this procedure and perform a manual installation. " +"Please see the file \"INSTALL.txt\" for instructions." +msgstr "" + +#: mod/install.php:458 +msgid ".htconfig.php is writable" +msgstr "" + +#: mod/install.php:468 +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:469 +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:470 +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:471 +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:474 +msgid "view/smarty3 is writable" +msgstr "" + +#: mod/install.php:490 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "" + +#: mod/install.php:492 +msgid "Url rewrite is working" +msgstr "" + +#: mod/install.php:511 +msgid "ImageMagick PHP extension is not installed" +msgstr "" + +#: mod/install.php:513 +msgid "ImageMagick PHP extension is installed" +msgstr "" + +#: mod/install.php:515 +msgid "ImageMagick supports GIF" +msgstr "" + +#: mod/install.php:522 +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:547 +msgid "

What next

" +msgstr "" + +#: mod/install.php:548 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +msgstr "" + +#: mod/invite.php:30 msgid "Total invitation limit exceeded." msgstr "" -#: mod/invite.php:51 +#: mod/invite.php:53 #, php-format msgid "%s : Not a valid email address." msgstr "" -#: mod/invite.php:76 +#: mod/invite.php:78 msgid "Please join us on Friendica" msgstr "" -#: mod/invite.php:87 +#: mod/invite.php:89 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "" -#: mod/invite.php:91 +#: mod/invite.php:93 #, php-format msgid "%s : Message delivery failed." msgstr "" -#: mod/invite.php:95 +#: mod/invite.php:97 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." msgstr[0] "" msgstr[1] "" -#: mod/invite.php:114 +#: mod/invite.php:116 msgid "You have no more invitations available" msgstr "" -#: mod/invite.php:122 +#: mod/invite.php:124 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -3994,14 +4363,14 @@ msgid "" "other social networks." msgstr "" -#: mod/invite.php:124 +#: mod/invite.php:126 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "" -#: mod/invite.php:125 +#: mod/invite.php:127 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -4010,92 +4379,92 @@ msgid "" "sites you can join." msgstr "" -#: mod/invite.php:128 +#: mod/invite.php:130 msgid "" "Our apologies. This system is not currently configured to connect with other " "public sites or invite members." msgstr "" -#: mod/invite.php:134 +#: mod/invite.php:136 msgid "Send invitations" msgstr "" -#: mod/invite.php:135 +#: mod/invite.php:137 msgid "Enter email addresses, one per line:" msgstr "" -#: mod/invite.php:136 mod/wallmessage.php:135 mod/message.php:332 -#: mod/message.php:515 +#: mod/invite.php:138 mod/message.php:334 mod/message.php:517 +#: mod/wallmessage.php:137 msgid "Your message:" msgstr "" -#: mod/invite.php:137 +#: mod/invite.php:139 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "" -#: mod/invite.php:139 +#: mod/invite.php:141 msgid "You will need to supply this invitation code: $invite_code" msgstr "" -#: mod/invite.php:139 +#: mod/invite.php:141 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "" -#: mod/invite.php:141 +#: mod/invite.php:143 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendica.com" msgstr "" -#: mod/localtime.php:24 +#: mod/localtime.php:25 msgid "Time Conversion" msgstr "" -#: mod/localtime.php:26 +#: mod/localtime.php:27 msgid "" "Friendica provides this service for sharing events with other networks and " "friends in unknown timezones." msgstr "" -#: mod/localtime.php:30 +#: mod/localtime.php:31 #, php-format msgid "UTC time: %s" msgstr "" -#: mod/localtime.php:33 +#: mod/localtime.php:34 #, php-format msgid "Current timezone: %s" msgstr "" -#: mod/localtime.php:36 +#: mod/localtime.php:37 #, php-format msgid "Converted localtime: %s" msgstr "" -#: mod/localtime.php:41 +#: mod/localtime.php:42 msgid "Please select your timezone:" msgstr "" -#: mod/lockview.php:32 mod/lockview.php:40 +#: mod/lockview.php:33 mod/lockview.php:41 msgid "Remote privacy information not available." msgstr "" -#: mod/lockview.php:49 +#: mod/lockview.php:50 msgid "Visible to:" msgstr "" -#: mod/lostpass.php:19 +#: mod/lostpass.php:21 msgid "No valid account found." msgstr "" -#: mod/lostpass.php:35 +#: mod/lostpass.php:37 msgid "Password reset request issued. Check your email." msgstr "" -#: mod/lostpass.php:41 +#: mod/lostpass.php:43 #, php-format msgid "" "\n" @@ -4112,7 +4481,7 @@ msgid "" "\t\tissued this request." msgstr "" -#: mod/lostpass.php:52 +#: mod/lostpass.php:54 #, php-format msgid "" "\n" @@ -4130,44 +4499,44 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "" -#: mod/lostpass.php:71 +#: mod/lostpass.php:73 #, php-format msgid "Password reset requested at %s" msgstr "" -#: mod/lostpass.php:91 +#: mod/lostpass.php:93 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "" -#: mod/lostpass.php:110 boot.php:1882 +#: mod/lostpass.php:112 boot.php:877 msgid "Password Reset" msgstr "" -#: mod/lostpass.php:111 +#: mod/lostpass.php:113 msgid "Your password has been reset as requested." msgstr "" -#: mod/lostpass.php:112 +#: mod/lostpass.php:114 msgid "Your new password is" msgstr "" -#: mod/lostpass.php:113 +#: mod/lostpass.php:115 msgid "Save or copy your new password - and then" msgstr "" -#: mod/lostpass.php:114 +#: mod/lostpass.php:116 msgid "click here to login" msgstr "" -#: mod/lostpass.php:115 +#: mod/lostpass.php:117 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "" -#: mod/lostpass.php:125 +#: mod/lostpass.php:127 #, php-format msgid "" "\n" @@ -4179,7 +4548,7 @@ msgid "" "\t\t\t" msgstr "" -#: mod/lostpass.php:131 +#: mod/lostpass.php:133 #, php-format msgid "" "\n" @@ -4194,58 +4563,240 @@ msgid "" "\t\t\t" msgstr "" -#: mod/lostpass.php:147 +#: mod/lostpass.php:149 #, php-format msgid "Your password has been changed at %s" msgstr "" -#: mod/lostpass.php:159 +#: mod/lostpass.php:161 msgid "Forgot your Password?" msgstr "" -#: mod/lostpass.php:160 +#: mod/lostpass.php:162 msgid "" "Enter your email address and submit to have your password reset. Then check " "your email for further instructions." msgstr "" -#: mod/lostpass.php:161 boot.php:1870 +#: mod/lostpass.php:163 boot.php:865 msgid "Nickname or Email: " msgstr "" -#: mod/lostpass.php:162 +#: mod/lostpass.php:164 msgid "Reset" msgstr "" -#: mod/maintenance.php:20 +#: mod/maintenance.php:21 msgid "System down for maintenance" msgstr "" -#: mod/match.php:35 +#: mod/manage.php:152 +msgid "Manage Identities and/or Pages" +msgstr "" + +#: mod/manage.php:153 +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:154 +msgid "Select an identity to manage: " +msgstr "" + +#: mod/match.php:38 msgid "No keywords to match. Please add keywords to your default profile." msgstr "" -#: mod/match.php:88 +#: mod/match.php:91 msgid "is interested in:" msgstr "" -#: mod/match.php:102 +#: mod/match.php:105 msgid "Profile Match" msgstr "" -#: mod/match.php:109 mod/dirfind.php:245 -msgid "No matches" +#: mod/message.php:62 mod/wallmessage.php:52 +msgid "No recipient selected." msgstr "" -#: mod/mood.php:134 +#: mod/message.php:66 +msgid "Unable to locate contact information." +msgstr "" + +#: mod/message.php:69 mod/wallmessage.php:58 +msgid "Message could not be sent." +msgstr "" + +#: mod/message.php:72 mod/wallmessage.php:61 +msgid "Message collection failure." +msgstr "" + +#: mod/message.php:75 mod/wallmessage.php:64 +msgid "Message sent." +msgstr "" + +#: mod/message.php:206 +msgid "Do you really want to delete this message?" +msgstr "" + +#: mod/message.php:226 +msgid "Message deleted." +msgstr "" + +#: mod/message.php:257 +msgid "Conversation removed." +msgstr "" + +#: mod/message.php:324 mod/wallmessage.php:128 +msgid "Send Private Message" +msgstr "" + +#: mod/message.php:325 mod/message.php:512 mod/wallmessage.php:130 +msgid "To:" +msgstr "" + +#: mod/message.php:330 mod/message.php:514 mod/wallmessage.php:131 +msgid "Subject:" +msgstr "" + +#: mod/message.php:366 +msgid "No messages." +msgstr "" + +#: mod/message.php:405 +msgid "Message not available." +msgstr "" + +#: mod/message.php:479 +msgid "Delete message" +msgstr "" + +#: mod/message.php:505 mod/message.php:593 +msgid "Delete conversation" +msgstr "" + +#: mod/message.php:507 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "" + +#: mod/message.php:511 +msgid "Send Reply" +msgstr "" + +#: mod/message.php:563 +#, php-format +msgid "Unknown sender - %s" +msgstr "" + +#: mod/message.php:565 +#, php-format +msgid "You and %s" +msgstr "" + +#: mod/message.php:567 +#, php-format +msgid "%s and You" +msgstr "" + +#: mod/message.php:596 +msgid "D, d M Y - g:i A" +msgstr "" + +#: mod/message.php:599 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "" +msgstr[1] "" + +#: mod/mood.php:135 msgid "Mood" msgstr "" -#: mod/mood.php:135 +#: mod/mood.php:136 msgid "Set your current mood and tell your friends" msgstr "" -#: mod/newmember.php:6 +#: mod/network.php:154 mod/search.php:230 mod/contacts.php:808 +#, php-format +msgid "Results for: %s" +msgstr "" + +#: mod/network.php:200 mod/search.php:28 +msgid "Remove term" +msgstr "" + +#: mod/network.php:407 +#, php-format +msgid "" +"Warning: This group contains %s member from a network that doesn't allow non " +"public messages." +msgid_plural "" +"Warning: This group contains %s members from a network that doesn't allow " +"non public messages." +msgstr[0] "" +msgstr[1] "" + +#: mod/network.php:410 +msgid "Messages in this group won't be send to these receivers." +msgstr "" + +#: mod/network.php:538 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "" + +#: mod/network.php:543 +msgid "Invalid contact." +msgstr "" + +#: mod/network.php:816 +msgid "Commented Order" +msgstr "" + +#: mod/network.php:819 +msgid "Sort by Comment Date" +msgstr "" + +#: mod/network.php:824 +msgid "Posted Order" +msgstr "" + +#: mod/network.php:827 +msgid "Sort by Post Date" +msgstr "" + +#: mod/network.php:838 +msgid "Posts that mention or involve you" +msgstr "" + +#: mod/network.php:846 +msgid "New" +msgstr "" + +#: mod/network.php:849 +msgid "Activity Stream - by date" +msgstr "" + +#: mod/network.php:857 +msgid "Shared Links" +msgstr "" + +#: mod/network.php:860 +msgid "Interesting Links" +msgstr "" + +#: mod/network.php:868 +msgid "Starred" +msgstr "" + +#: mod/network.php:871 +msgid "Favourite Posts" +msgstr "" + +#: mod/newmember.php:7 msgid "Welcome to Friendica" msgstr "" @@ -4253,7 +4804,7 @@ msgstr "" msgid "New Member Checklist" msgstr "" -#: mod/newmember.php:12 +#: mod/newmember.php:10 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 " @@ -4261,33 +4812,33 @@ msgid "" "registration and then will quietly disappear." msgstr "" -#: mod/newmember.php:14 +#: mod/newmember.php:11 msgid "Getting Started" msgstr "" -#: mod/newmember.php:18 +#: mod/newmember.php:13 msgid "Friendica Walk-Through" msgstr "" -#: mod/newmember.php:18 +#: mod/newmember.php:13 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 +#: mod/newmember.php:17 msgid "Go to Your Settings" msgstr "" -#: mod/newmember.php:26 +#: mod/newmember.php:17 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 +#: mod/newmember.php:18 msgid "" "Review the other settings, particularly the privacy settings. An unpublished " "directory listing is like having an unlisted phone number. In general, you " @@ -4295,81 +4846,81 @@ msgid "" "potential friends know exactly how to find you." msgstr "" -#: mod/newmember.php:36 mod/profile_photo.php:256 mod/profiles.php:700 +#: mod/newmember.php:22 mod/profile_photo.php:255 mod/profiles.php:703 msgid "Upload Profile Photo" msgstr "" -#: mod/newmember.php:36 +#: mod/newmember.php:22 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 +#: mod/newmember.php:23 msgid "Edit Your Profile" msgstr "" -#: mod/newmember.php:38 +#: mod/newmember.php:23 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 +#: mod/newmember.php:24 msgid "Profile Keywords" msgstr "" -#: mod/newmember.php:40 +#: mod/newmember.php:24 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 +#: mod/newmember.php:26 msgid "Connecting" msgstr "" -#: mod/newmember.php:51 +#: mod/newmember.php:32 msgid "Importing Emails" msgstr "" -#: mod/newmember.php:51 +#: mod/newmember.php:32 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "" -#: mod/newmember.php:53 +#: mod/newmember.php:35 msgid "Go to Your Contacts Page" msgstr "" -#: mod/newmember.php:53 +#: mod/newmember.php:35 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "" -#: mod/newmember.php:55 +#: mod/newmember.php:36 msgid "Go to Your Site's Directory" msgstr "" -#: mod/newmember.php:55 +#: mod/newmember.php:36 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "" -#: mod/newmember.php:57 +#: mod/newmember.php:37 msgid "Finding New People" msgstr "" -#: mod/newmember.php:57 +#: mod/newmember.php:37 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 " @@ -4378,643 +4929,851 @@ msgid "" "hours." msgstr "" -#: mod/newmember.php:65 +#: mod/newmember.php:41 msgid "Group Your Contacts" msgstr "" -#: mod/newmember.php:65 +#: mod/newmember.php:41 msgid "" "Once you have made some friends, organize them into private conversation " "groups from the sidebar of your Contacts page and then you can interact with " "each group privately on your Network page." msgstr "" -#: mod/newmember.php:68 +#: mod/newmember.php:44 msgid "Why Aren't My Posts Public?" msgstr "" -#: mod/newmember.php:68 +#: mod/newmember.php:44 msgid "" "Friendica respects your privacy. By default, your posts will only show up to " "people you've added as friends. For more information, see the help section " "from the link above." msgstr "" -#: mod/newmember.php:73 +#: mod/newmember.php:48 msgid "Getting Help" msgstr "" -#: mod/newmember.php:77 +#: mod/newmember.php:50 msgid "Go to the Help Section" msgstr "" -#: mod/newmember.php:77 +#: mod/newmember.php:50 msgid "" "Our help pages may be consulted for detail on other program " "features and resources." msgstr "" -#: mod/nogroup.php:65 +#: mod/nogroup.php:45 mod/viewcontacts.php:105 mod/contacts.php:597 +#: mod/contacts.php:941 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "" + +#: mod/nogroup.php:46 mod/contacts.php:942 +msgid "Edit contact" +msgstr "" + +#: mod/nogroup.php:67 msgid "Contacts who are not members of a group" msgstr "" -#: mod/notify.php:65 -msgid "No more system notifications." +#: mod/notifications.php:37 +msgid "Invalid request identifier." msgstr "" -#: mod/notify.php:69 mod/notifications.php:111 +#: mod/notifications.php:46 mod/notifications.php:182 +#: mod/notifications.php:229 +msgid "Discard" +msgstr "" + +#: mod/notifications.php:62 mod/notifications.php:181 +#: mod/notifications.php:265 mod/contacts.php:617 mod/contacts.php:817 +#: mod/contacts.php:1002 +msgid "Ignore" +msgstr "" + +#: mod/notifications.php:107 +msgid "Network Notifications" +msgstr "" + +#: mod/notifications.php:113 mod/notify.php:72 msgid "System Notifications" msgstr "" -#: mod/oexchange.php:21 +#: mod/notifications.php:119 +msgid "Personal Notifications" +msgstr "" + +#: mod/notifications.php:125 +msgid "Home Notifications" +msgstr "" + +#: mod/notifications.php:154 +msgid "Show Ignored Requests" +msgstr "" + +#: mod/notifications.php:154 +msgid "Hide Ignored Requests" +msgstr "" + +#: mod/notifications.php:166 mod/notifications.php:236 +msgid "Notification type: " +msgstr "" + +#: mod/notifications.php:169 +#, php-format +msgid "suggested by %s" +msgstr "" + +#: mod/notifications.php:174 mod/notifications.php:253 mod/contacts.php:624 +msgid "Hide this contact from others" +msgstr "" + +#: mod/notifications.php:175 mod/notifications.php:254 +msgid "Post a new friend activity" +msgstr "" + +#: mod/notifications.php:175 mod/notifications.php:254 +msgid "if applicable" +msgstr "" + +#: mod/notifications.php:178 mod/notifications.php:263 mod/admin.php:1512 +msgid "Approve" +msgstr "" + +#: mod/notifications.php:197 +msgid "Claims to be known to you: " +msgstr "" + +#: mod/notifications.php:198 +msgid "yes" +msgstr "" + +#: mod/notifications.php:198 +msgid "no" +msgstr "" + +#: mod/notifications.php:199 mod/notifications.php:204 +msgid "Shall your connection be bidirectional or not?" +msgstr "" + +#: mod/notifications.php:200 mod/notifications.php:205 +#, php-format +msgid "" +"Accepting %s as a friend allows %s to subscribe to your posts, and you will " +"also receive updates from them in your news feed." +msgstr "" + +#: mod/notifications.php:201 +#, php-format +msgid "" +"Accepting %s as a subscriber allows them to subscribe to your posts, but you " +"will not receive updates from them in your news feed." +msgstr "" + +#: mod/notifications.php:206 +#, php-format +msgid "" +"Accepting %s as a sharer allows them to subscribe to your posts, but you " +"will not receive updates from them in your news feed." +msgstr "" + +#: mod/notifications.php:217 +msgid "Friend" +msgstr "" + +#: mod/notifications.php:218 +msgid "Sharer" +msgstr "" + +#: mod/notifications.php:218 +msgid "Subscriber" +msgstr "" + +#: mod/notifications.php:274 +msgid "No introductions." +msgstr "" + +#: mod/notifications.php:315 +msgid "Show unread" +msgstr "" + +#: mod/notifications.php:315 +msgid "Show all" +msgstr "" + +#: mod/notifications.php:321 +#, php-format +msgid "No more %s notifications." +msgstr "" + +#: mod/notify.php:68 +msgid "No more system notifications." +msgstr "" + +#: mod/oexchange.php:24 msgid "Post successful." msgstr "" -#: mod/ostatus_subscribe.php:14 +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "" + +#: mod/openid.php:60 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "" + +#: mod/ostatus_subscribe.php:16 msgid "Subscribing to OStatus contacts" msgstr "" -#: mod/ostatus_subscribe.php:25 +#: mod/ostatus_subscribe.php:27 msgid "No contact provided." msgstr "" -#: mod/ostatus_subscribe.php:31 +#: mod/ostatus_subscribe.php:33 msgid "Couldn't fetch information for contact." msgstr "" -#: mod/ostatus_subscribe.php:40 +#: mod/ostatus_subscribe.php:42 msgid "Couldn't fetch friends for contact." msgstr "" -#: mod/ostatus_subscribe.php:54 mod/repair_ostatus.php:44 +#: mod/ostatus_subscribe.php:56 mod/repair_ostatus.php:46 msgid "Done" msgstr "" -#: mod/ostatus_subscribe.php:68 +#: mod/ostatus_subscribe.php:70 msgid "success" msgstr "" -#: mod/ostatus_subscribe.php:70 +#: mod/ostatus_subscribe.php:72 msgid "failed" msgstr "" -#: mod/ostatus_subscribe.php:78 mod/repair_ostatus.php:50 +#: mod/ostatus_subscribe.php:80 mod/repair_ostatus.php:52 msgid "Keep this window open until done." msgstr "" -#: mod/p.php:9 +#: mod/p.php:12 msgid "Not Extended" msgstr "" -#: mod/poke.php:196 -msgid "Poke/Prod" +#: mod/photos.php:96 mod/photos.php:1902 +msgid "Recent Photos" msgstr "" -#: mod/poke.php:197 -msgid "poke, prod or do other things to somebody" +#: mod/photos.php:99 mod/photos.php:1330 mod/photos.php:1904 +msgid "Upload New Photos" msgstr "" -#: mod/poke.php:198 -msgid "Recipient" +#: mod/photos.php:114 mod/settings.php:38 +msgid "everybody" msgstr "" -#: mod/poke.php:199 -msgid "Choose what you wish to do to recipient" +#: mod/photos.php:178 +msgid "Contact information unavailable" msgstr "" -#: mod/poke.php:202 -msgid "Make this post private" +#: mod/photos.php:199 +msgid "Album not found." msgstr "" -#: mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." +#: mod/photos.php:232 mod/photos.php:244 mod/photos.php:1274 +msgid "Delete Album" msgstr "" -#: mod/profile_photo.php:77 mod/profile_photo.php:85 mod/profile_photo.php:93 -#: mod/profile_photo.php:323 +#: mod/photos.php:242 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "" + +#: mod/photos.php:325 mod/photos.php:336 mod/photos.php:1600 +msgid "Delete Photo" +msgstr "" + +#: mod/photos.php:334 +msgid "Do you really want to delete this photo?" +msgstr "" + +#: mod/photos.php:715 #, php-format -msgid "Image size reduction [%s] failed." +msgid "%1$s was tagged in %2$s by %3$s" msgstr "" -#: mod/profile_photo.php:127 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." +#: mod/photos.php:715 +msgid "a photo" msgstr "" -#: mod/profile_photo.php:137 -msgid "Unable to process image" -msgstr "" - -#: mod/profile_photo.php:156 mod/photos.php:813 mod/wall_upload.php:181 +#: mod/photos.php:815 mod/wall_upload.php:181 mod/profile_photo.php:155 #, php-format msgid "Image exceeds size limit of %s" msgstr "" -#: mod/profile_photo.php:165 mod/photos.php:854 mod/wall_upload.php:218 +#: mod/photos.php:823 +msgid "Image file is empty." +msgstr "" + +#: mod/photos.php:856 mod/wall_upload.php:218 mod/profile_photo.php:164 msgid "Unable to process image." msgstr "" -#: mod/profile_photo.php:254 -msgid "Upload File:" -msgstr "" - -#: mod/profile_photo.php:255 -msgid "Select a profile:" -msgstr "" - -#: mod/profile_photo.php:257 -msgid "Upload" -msgstr "" - -#: mod/profile_photo.php:260 -msgid "or" -msgstr "" - -#: mod/profile_photo.php:260 -msgid "skip this step" -msgstr "" - -#: mod/profile_photo.php:260 -msgid "select a photo from your photo albums" -msgstr "" - -#: mod/profile_photo.php:274 -msgid "Crop Image" -msgstr "" - -#: mod/profile_photo.php:275 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "" - -#: mod/profile_photo.php:277 -msgid "Done Editing" -msgstr "" - -#: mod/profile_photo.php:313 -msgid "Image uploaded successfully." -msgstr "" - -#: mod/profile_photo.php:315 mod/photos.php:883 mod/wall_upload.php:257 +#: mod/photos.php:885 mod/wall_upload.php:257 mod/profile_photo.php:314 msgid "Image upload failed." msgstr "" -#: mod/profperm.php:20 mod/group.php:76 index.php:406 -msgid "Permission denied" +#: mod/photos.php:990 +msgid "No photos selected" msgstr "" -#: mod/profperm.php:26 mod/profperm.php:57 +#: mod/photos.php:1093 mod/videos.php:311 +msgid "Access to this item is restricted." +msgstr "" + +#: mod/photos.php:1153 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "" + +#: mod/photos.php:1190 +msgid "Upload Photos" +msgstr "" + +#: mod/photos.php:1194 mod/photos.php:1269 +msgid "New album name: " +msgstr "" + +#: mod/photos.php:1195 +msgid "or existing album name: " +msgstr "" + +#: mod/photos.php:1196 +msgid "Do not show a status post for this upload" +msgstr "" + +#: mod/photos.php:1207 mod/photos.php:1604 mod/settings.php:1308 +msgid "Show to Groups" +msgstr "" + +#: mod/photos.php:1208 mod/photos.php:1605 mod/settings.php:1309 +msgid "Show to Contacts" +msgstr "" + +#: mod/photos.php:1209 +msgid "Private Photo" +msgstr "" + +#: mod/photos.php:1210 +msgid "Public Photo" +msgstr "" + +#: mod/photos.php:1280 +msgid "Edit Album" +msgstr "" + +#: mod/photos.php:1285 +msgid "Show Newest First" +msgstr "" + +#: mod/photos.php:1287 +msgid "Show Oldest First" +msgstr "" + +#: mod/photos.php:1316 mod/photos.php:1887 +msgid "View Photo" +msgstr "" + +#: mod/photos.php:1361 +msgid "Permission denied. Access to this item may be restricted." +msgstr "" + +#: mod/photos.php:1363 +msgid "Photo not available" +msgstr "" + +#: mod/photos.php:1424 +msgid "View photo" +msgstr "" + +#: mod/photos.php:1424 +msgid "Edit photo" +msgstr "" + +#: mod/photos.php:1425 +msgid "Use as profile photo" +msgstr "" + +#: mod/photos.php:1450 +msgid "View Full Size" +msgstr "" + +#: mod/photos.php:1540 +msgid "Tags: " +msgstr "" + +#: mod/photos.php:1543 +msgid "[Remove any tag]" +msgstr "" + +#: mod/photos.php:1586 +msgid "New album name" +msgstr "" + +#: mod/photos.php:1587 +msgid "Caption" +msgstr "" + +#: mod/photos.php:1588 +msgid "Add a Tag" +msgstr "" + +#: mod/photos.php:1588 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "" + +#: mod/photos.php:1589 +msgid "Do not rotate" +msgstr "" + +#: mod/photos.php:1590 +msgid "Rotate CW (right)" +msgstr "" + +#: mod/photos.php:1591 +msgid "Rotate CCW (left)" +msgstr "" + +#: mod/photos.php:1606 +msgid "Private photo" +msgstr "" + +#: mod/photos.php:1607 +msgid "Public photo" +msgstr "" + +#: mod/photos.php:1816 +msgid "Map" +msgstr "" + +#: mod/photos.php:1893 mod/videos.php:395 +msgid "View Album" +msgstr "" + +#: mod/ping.php:273 +msgid "{0} wants to be your friend" +msgstr "" + +#: mod/ping.php:288 +msgid "{0} sent you a message" +msgstr "" + +#: mod/ping.php:303 +msgid "{0} requested registration" +msgstr "" + +#: mod/poke.php:197 +msgid "Poke/Prod" +msgstr "" + +#: mod/poke.php:198 +msgid "poke, prod or do other things to somebody" +msgstr "" + +#: mod/poke.php:199 +msgid "Recipient" +msgstr "" + +#: mod/poke.php:200 +msgid "Choose what you wish to do to recipient" +msgstr "" + +#: mod/poke.php:203 +msgid "Make this post private" +msgstr "" + +#: mod/profile.php:176 +msgid "Tips for New Members" +msgstr "" + +#: mod/profperm.php:28 mod/profperm.php:59 msgid "Invalid profile identifier." msgstr "" -#: mod/profperm.php:103 +#: mod/profperm.php:105 msgid "Profile Visibility Editor" msgstr "" -#: mod/profperm.php:107 mod/group.php:262 -msgid "Click on a contact to add or remove." -msgstr "" - -#: mod/profperm.php:116 +#: mod/profperm.php:118 msgid "Visible To" msgstr "" -#: mod/profperm.php:132 +#: mod/profperm.php:134 msgid "All Contacts (with secure profile access)" msgstr "" -#: mod/regmod.php:58 -msgid "Account approved." -msgstr "" - -#: mod/regmod.php:95 -#, php-format -msgid "Registration revoked for %s" -msgstr "" - -#: mod/regmod.php:107 -msgid "Please login." -msgstr "" - -#: mod/removeme.php:52 mod/removeme.php:55 -msgid "Remove My Account" -msgstr "" - -#: mod/removeme.php:53 +#: mod/register.php:95 msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." +"Registration successful. Please check your email for further instructions." msgstr "" -#: mod/removeme.php:54 -msgid "Please enter your password for verification:" -msgstr "" - -#: mod/repair_ostatus.php:14 -msgid "Resubscribing to OStatus contacts" -msgstr "" - -#: mod/repair_ostatus.php:30 -msgid "Error" -msgstr "" - -#: mod/subthread.php:104 +#: mod/register.php:100 #, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "" - -#: mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "" - -#: mod/suggest.php:71 msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." +"Failed to send email message. Here your accout details:
login: %s
" +"password: %s

You can change your password after login." msgstr "" -#: mod/suggest.php:84 mod/suggest.php:104 -msgid "Ignore/Hide" +#: mod/register.php:107 +msgid "Registration successful." msgstr "" -#: mod/tagrm.php:43 -msgid "Tag removed" +#: mod/register.php:113 +msgid "Your registration can not be processed." msgstr "" -#: mod/tagrm.php:82 -msgid "Remove Item Tag" +#: mod/register.php:162 +msgid "Your registration is pending approval by the site owner." msgstr "" -#: mod/tagrm.php:84 -msgid "Select a tag to remove: " -msgstr "" - -#: mod/uimport.php:51 mod/register.php:198 +#: mod/register.php:200 mod/uimport.php:53 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "" -#: mod/uimport.php:66 mod/register.php:295 +#: mod/register.php:228 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "" + +#: mod/register.php:229 +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:230 +msgid "Your OpenID (optional): " +msgstr "" + +#: mod/register.php:244 +msgid "Include your profile in member directory?" +msgstr "" + +#: mod/register.php:269 +msgid "Note for the admin" +msgstr "" + +#: mod/register.php:269 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "" + +#: mod/register.php:270 +msgid "Membership on this site is by invitation only." +msgstr "" + +#: mod/register.php:271 +msgid "Your invitation ID: " +msgstr "" + +#: mod/register.php:274 mod/admin.php:1062 +msgid "Registration" +msgstr "" + +#: mod/register.php:282 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "" + +#: mod/register.php:283 +msgid "Your Email Address: " +msgstr "" + +#: mod/register.php:285 mod/settings.php:1279 +msgid "New Password:" +msgstr "" + +#: mod/register.php:285 +msgid "Leave empty for an auto generated password." +msgstr "" + +#: mod/register.php:286 mod/settings.php:1280 +msgid "Confirm:" +msgstr "" + +#: mod/register.php:287 +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:288 +msgid "Choose a nickname: " +msgstr "" + +#: mod/register.php:297 mod/uimport.php:68 msgid "Import" msgstr "" -#: mod/uimport.php:68 -msgid "Move account" +#: mod/register.php:298 +msgid "Import your profile to this friendica instance" msgstr "" -#: mod/uimport.php:69 -msgid "You can import an account from another Friendica server." +#: mod/removeme.php:54 mod/removeme.php:57 +msgid "Remove My Account" msgstr "" -#: mod/uimport.php:70 +#: mod/removeme.php:55 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." +"This will completely remove your account. Once this has been done it is not " +"recoverable." msgstr "" -#: mod/uimport.php:71 +#: mod/removeme.php:56 +msgid "Please enter your password for verification:" +msgstr "" + +#: mod/repair_ostatus.php:16 +msgid "Resubscribing to OStatus contacts" +msgstr "" + +#: mod/repair_ostatus.php:32 +msgid "Error" +msgstr "" + +#: mod/search.php:103 +msgid "Only logged in users are permitted to perform a search." +msgstr "" + +#: mod/search.php:127 +msgid "Too Many Requests" +msgstr "" + +#: mod/search.php:128 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "" + +#: mod/search.php:228 +#, php-format +msgid "Items tagged with: %s" +msgstr "" + +#: mod/subthread.php:105 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "" + +#: mod/suggest.php:29 +msgid "Do you really want to delete this suggestion?" +msgstr "" + +#: mod/suggest.php:73 msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (GNU Social/Statusnet) or from Diaspora" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." msgstr "" -#: mod/uimport.php:72 -msgid "Account file" +#: mod/suggest.php:86 mod/suggest.php:106 +msgid "Ignore/Hide" msgstr "" -#: mod/uimport.php:72 +#: mod/tagrm.php:45 +msgid "Tag removed" +msgstr "" + +#: mod/tagrm.php:84 +msgid "Remove Item Tag" +msgstr "" + +#: mod/tagrm.php:86 +msgid "Select a tag to remove: " +msgstr "" + +#: mod/uexport.php:38 +msgid "Export account" +msgstr "" + +#: mod/uexport.php:38 msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" +"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/update_community.php:19 mod/update_display.php:23 -#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35 +#: mod/uexport.php:39 +msgid "Export all" +msgstr "" + +#: mod/uexport.php:39 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "" + +#: mod/uexport.php:46 mod/settings.php:97 +msgid "Export personal data" +msgstr "" + +#: mod/update_community.php:21 mod/update_display.php:25 +#: mod/update_network.php:29 mod/update_notes.php:38 mod/update_profile.php:37 msgid "[Embedded content - reload page to view]" msgstr "" -#: mod/viewcontacts.php:75 +#: mod/videos.php:126 +msgid "Do you really want to delete this video?" +msgstr "" + +#: mod/videos.php:131 +msgid "Delete Video" +msgstr "" + +#: mod/videos.php:210 +msgid "No videos selected" +msgstr "" + +#: mod/videos.php:404 +msgid "Recent Videos" +msgstr "" + +#: mod/videos.php:406 +msgid "Upload New Videos" +msgstr "" + +#: mod/viewcontacts.php:78 msgid "No contacts." msgstr "" -#: mod/viewsrc.php:7 +#: mod/viewsrc.php:8 msgid "Access denied." msgstr "" -#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76 +#: mod/wall_attach.php:19 mod/wall_attach.php:27 mod/wall_attach.php:78 #: mod/wall_upload.php:36 mod/wall_upload.php:52 mod/wall_upload.php:110 #: mod/wall_upload.php:150 mod/wall_upload.php:153 msgid "Invalid request." msgstr "" -#: mod/wall_attach.php:94 +#: mod/wall_attach.php:96 msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" msgstr "" -#: mod/wall_attach.php:94 +#: mod/wall_attach.php:96 msgid "Or - did you try to upload an empty file?" msgstr "" -#: mod/wall_attach.php:105 +#: mod/wall_attach.php:107 #, php-format msgid "File exceeds size limit of %s" msgstr "" -#: mod/wall_attach.php:158 mod/wall_attach.php:174 +#: mod/wall_attach.php:160 mod/wall_attach.php:176 msgid "File upload failed." msgstr "" -#: mod/wallmessage.php:42 mod/wallmessage.php:106 +#: mod/wallmessage.php:44 mod/wallmessage.php:108 #, php-format msgid "Number of daily wall messages for %s exceeded. Message failed." msgstr "" -#: mod/wallmessage.php:50 mod/message.php:60 -msgid "No recipient selected." -msgstr "" - -#: mod/wallmessage.php:53 +#: mod/wallmessage.php:55 msgid "Unable to check your home location." msgstr "" -#: mod/wallmessage.php:56 mod/message.php:67 -msgid "Message could not be sent." -msgstr "" - -#: mod/wallmessage.php:59 mod/message.php:70 -msgid "Message collection failure." -msgstr "" - -#: mod/wallmessage.php:62 mod/message.php:73 -msgid "Message sent." -msgstr "" - -#: mod/wallmessage.php:80 mod/wallmessage.php:89 +#: mod/wallmessage.php:82 mod/wallmessage.php:91 msgid "No recipient." msgstr "" -#: mod/wallmessage.php:126 mod/message.php:322 -msgid "Send Private Message" -msgstr "" - -#: mod/wallmessage.php:127 +#: mod/wallmessage.php:129 #, php-format msgid "" "If you wish for %s to respond, please check that the privacy settings on " "your site allow private mail from unknown senders." msgstr "" -#: mod/wallmessage.php:128 mod/message.php:323 mod/message.php:510 -msgid "To:" +#: mod/webfinger.php:11 mod/probe.php:10 +msgid "Only logged in users are permitted to perform a probing." msgstr "" -#: mod/wallmessage.php:129 mod/message.php:328 mod/message.php:512 -msgid "Subject:" -msgstr "" - -#: mod/babel.php:16 -msgid "Source (bbcode) text:" -msgstr "" - -#: mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "" - -#: mod/babel.php:31 -msgid "Source input: " -msgstr "" - -#: mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "" - -#: mod/babel.php:39 -msgid "bb2html: " -msgstr "" - -#: mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "" - -#: mod/babel.php:47 -msgid "bb2md: " -msgstr "" - -#: mod/babel.php:51 -msgid "bb2md2html: " -msgstr "" - -#: mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "" - -#: mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "" - -#: mod/babel.php:65 -msgid "Source input (Diaspora format): " -msgstr "" - -#: mod/babel.php:69 -msgid "diaspora2bb: " -msgstr "" - -#: mod/cal.php:271 mod/events.php:375 -msgid "View" -msgstr "" - -#: mod/cal.php:272 mod/events.php:377 -msgid "Previous" -msgstr "" - -#: mod/cal.php:273 mod/events.php:378 mod/install.php:201 -msgid "Next" -msgstr "" - -#: mod/cal.php:282 mod/events.php:387 -msgid "list" -msgstr "" - -#: mod/cal.php:292 -msgid "User not found" -msgstr "" - -#: mod/cal.php:308 -msgid "This calendar format is not supported" -msgstr "" - -#: mod/cal.php:310 -msgid "No exportable data found" -msgstr "" - -#: mod/cal.php:325 -msgid "calendar" -msgstr "" - -#: mod/community.php:23 -msgid "Not available." -msgstr "" - -#: mod/community.php:50 mod/search.php:219 -msgid "No results." -msgstr "" - -#: mod/dfrn_confirm.php:70 mod/profiles.php:19 mod/profiles.php:135 -#: mod/profiles.php:182 mod/profiles.php:619 -msgid "Profile not found." -msgstr "" - -#: mod/dfrn_confirm.php:127 -msgid "" -"This may occasionally happen if contact was requested by both persons and it " -"has already been approved." -msgstr "" - -#: mod/dfrn_confirm.php:244 -msgid "Response from remote site was not understood." -msgstr "" - -#: mod/dfrn_confirm.php:253 mod/dfrn_confirm.php:258 -msgid "Unexpected response from remote site: " -msgstr "" - -#: mod/dfrn_confirm.php:267 -msgid "Confirmation completed successfully." -msgstr "" - -#: mod/dfrn_confirm.php:269 mod/dfrn_confirm.php:283 mod/dfrn_confirm.php:290 -msgid "Remote site reported: " -msgstr "" - -#: mod/dfrn_confirm.php:281 -msgid "Temporary failure. Please wait and try again." -msgstr "" - -#: mod/dfrn_confirm.php:288 -msgid "Introduction failed or was revoked." -msgstr "" - -#: mod/dfrn_confirm.php:418 -msgid "Unable to set contact photo." -msgstr "" - -#: mod/dfrn_confirm.php:559 -#, php-format -msgid "No user record found for '%s' " -msgstr "" - -#: mod/dfrn_confirm.php:569 -msgid "Our site encryption key is apparently messed up." -msgstr "" - -#: mod/dfrn_confirm.php:580 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "" - -#: mod/dfrn_confirm.php:602 -msgid "Contact record was not found for you on our site." -msgstr "" - -#: mod/dfrn_confirm.php:616 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "" - -#: mod/dfrn_confirm.php:636 -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:647 -msgid "Unable to set your contact credentials on our system." -msgstr "" - -#: mod/dfrn_confirm.php:709 -msgid "Unable to update your contact profile details on our system" -msgstr "" - -#: mod/dfrn_confirm.php:781 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "" - -#: mod/dfrn_request.php:101 +#: mod/dfrn_request.php:103 msgid "This introduction has already been accepted." msgstr "" -#: mod/dfrn_request.php:124 mod/dfrn_request.php:528 +#: mod/dfrn_request.php:126 mod/dfrn_request.php:528 msgid "Profile location is not valid or does not contain profile information." msgstr "" -#: mod/dfrn_request.php:129 mod/dfrn_request.php:533 +#: mod/dfrn_request.php:131 mod/dfrn_request.php:533 msgid "Warning: profile location has no identifiable owner name." msgstr "" -#: mod/dfrn_request.php:132 mod/dfrn_request.php:536 +#: mod/dfrn_request.php:134 mod/dfrn_request.php:536 msgid "Warning: profile location has no profile photo." msgstr "" -#: mod/dfrn_request.php:136 mod/dfrn_request.php:540 +#: mod/dfrn_request.php:138 mod/dfrn_request.php:540 #, php-format msgid "%d required parameter was not found at the given location" msgid_plural "%d required parameters were not found at the given location" msgstr[0] "" msgstr[1] "" -#: mod/dfrn_request.php:180 +#: mod/dfrn_request.php:182 msgid "Introduction complete." msgstr "" -#: mod/dfrn_request.php:225 +#: mod/dfrn_request.php:227 msgid "Unrecoverable protocol error." msgstr "" -#: mod/dfrn_request.php:253 +#: mod/dfrn_request.php:255 msgid "Profile unavailable." msgstr "" -#: mod/dfrn_request.php:280 +#: mod/dfrn_request.php:282 #, php-format msgid "%s has received too many connection requests today." msgstr "" -#: mod/dfrn_request.php:281 +#: mod/dfrn_request.php:283 msgid "Spam protection measures have been invoked." msgstr "" -#: mod/dfrn_request.php:282 +#: mod/dfrn_request.php:284 msgid "Friends are advised to please try again in 24 hours." msgstr "" -#: mod/dfrn_request.php:344 +#: mod/dfrn_request.php:346 msgid "Invalid locator" msgstr "" -#: mod/dfrn_request.php:353 +#: mod/dfrn_request.php:355 msgid "Invalid email address." msgstr "" -#: mod/dfrn_request.php:378 +#: mod/dfrn_request.php:380 msgid "This account has not been configured for email. Request failed." msgstr "" -#: mod/dfrn_request.php:481 +#: mod/dfrn_request.php:483 msgid "You have already introduced yourself here." msgstr "" -#: mod/dfrn_request.php:485 +#: mod/dfrn_request.php:487 #, php-format msgid "Apparently you are already friends with %s." msgstr "" -#: mod/dfrn_request.php:506 +#: mod/dfrn_request.php:508 msgid "Invalid profile URL." msgstr "" +#: mod/dfrn_request.php:593 mod/contacts.php:221 +msgid "Failed to update contact record." +msgstr "" + #: mod/dfrn_request.php:614 msgid "Your introduction has been sent." msgstr "" @@ -5076,19 +5835,6 @@ msgid "" "testuser@identi.ca" msgstr "" -#: mod/dfrn_request.php:879 mod/follow.php:112 -msgid "Please answer the following:" -msgstr "" - -#: mod/dfrn_request.php:880 mod/follow.php:113 -#, php-format -msgid "Does %s know you?" -msgstr "" - -#: mod/dfrn_request.php:884 mod/follow.php:114 -msgid "Add a personal note:" -msgstr "" - #: mod/dfrn_request.php:887 msgid "StatusNet/Federated Social Web" msgstr "" @@ -5100,2110 +5846,11 @@ msgid "" "bar." msgstr "" -#: mod/dfrn_request.php:890 mod/follow.php:120 -msgid "Your Identity Address:" -msgstr "" - -#: mod/dfrn_request.php:893 mod/follow.php:19 -msgid "Submit Request" -msgstr "" - -#: mod/dirfind.php:37 -#, php-format -msgid "People Search - %s" -msgstr "" - -#: mod/dirfind.php:48 -#, php-format -msgid "Forum Search - %s" -msgstr "" - -#: mod/events.php:93 mod/events.php:95 -msgid "Event can not end before it has started." -msgstr "" - -#: mod/events.php:102 mod/events.php:104 -msgid "Event title and start time are required." -msgstr "" - -#: mod/events.php:376 -msgid "Create New Event" -msgstr "" - -#: mod/events.php:481 -msgid "Event details" -msgstr "" - -#: mod/events.php:482 -msgid "Starting date and Title are required." -msgstr "" - -#: mod/events.php:483 mod/events.php:484 -msgid "Event Starts:" -msgstr "" - -#: mod/events.php:483 mod/events.php:495 mod/profiles.php:709 -msgid "Required" -msgstr "" - -#: mod/events.php:485 mod/events.php:501 -msgid "Finish date/time is not known or not relevant" -msgstr "" - -#: mod/events.php:487 mod/events.php:488 -msgid "Event Finishes:" -msgstr "" - -#: mod/events.php:489 mod/events.php:502 -msgid "Adjust for viewer timezone" -msgstr "" - -#: mod/events.php:491 -msgid "Description:" -msgstr "" - -#: mod/events.php:495 mod/events.php:497 -msgid "Title:" -msgstr "" - -#: mod/events.php:498 mod/events.php:499 -msgid "Share this event" -msgstr "" - -#: mod/events.php:528 -msgid "Failed to remove event" -msgstr "" - -#: mod/events.php:530 -msgid "Event removed" -msgstr "" - -#: mod/follow.php:30 -msgid "You already added this contact." -msgstr "" - -#: mod/follow.php:39 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "" - -#: mod/follow.php:46 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "" - -#: mod/follow.php:53 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "" - -#: mod/follow.php:186 -msgid "Contact added" -msgstr "" - -#: mod/friendica.php:68 -msgid "This is Friendica, version" -msgstr "" - -#: mod/friendica.php:69 -msgid "running at web location" -msgstr "" - -#: mod/friendica.php:73 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "" - -#: mod/friendica.php:77 -msgid "Bug reports and issues: please visit" -msgstr "" - -#: mod/friendica.php:77 -msgid "the bugtracker at github" -msgstr "" - -#: mod/friendica.php:80 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "" - -#: mod/friendica.php:94 -msgid "Installed plugins/addons/apps:" -msgstr "" - -#: mod/friendica.php:108 -msgid "No installed plugins/addons/apps" -msgstr "" - -#: mod/friendica.php:113 -msgid "On this server the following remote servers are blocked." -msgstr "" - -#: mod/friendica.php:114 mod/admin.php:280 mod/admin.php:298 -msgid "Reason for the block" -msgstr "" - -#: mod/group.php:29 -msgid "Group created." -msgstr "" - -#: mod/group.php:35 -msgid "Could not create group." -msgstr "" - -#: mod/group.php:49 mod/group.php:154 -msgid "Group not found." -msgstr "" - -#: mod/group.php:63 -msgid "Group name changed." -msgstr "" - -#: mod/group.php:93 -msgid "Save Group" -msgstr "" - -#: mod/group.php:98 -msgid "Create a group of contacts/friends." -msgstr "" - -#: mod/group.php:123 -msgid "Group removed." -msgstr "" - -#: mod/group.php:125 -msgid "Unable to remove group." -msgstr "" - -#: mod/group.php:189 -msgid "Delete Group" -msgstr "" - -#: mod/group.php:195 -msgid "Group Editor" -msgstr "" - -#: mod/group.php:200 -msgid "Edit Group Name" -msgstr "" - -#: mod/group.php:210 -msgid "Members" -msgstr "" - -#: mod/group.php:226 -msgid "Remove Contact" -msgstr "" - -#: mod/group.php:250 -msgid "Add Contact" -msgstr "" - -#: mod/manage.php:151 -msgid "Manage Identities and/or Pages" -msgstr "" - -#: mod/manage.php:152 -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:153 -msgid "Select an identity to manage: " -msgstr "" - -#: mod/message.php:64 -msgid "Unable to locate contact information." -msgstr "" - -#: mod/message.php:204 -msgid "Do you really want to delete this message?" -msgstr "" - -#: mod/message.php:224 -msgid "Message deleted." -msgstr "" - -#: mod/message.php:255 -msgid "Conversation removed." -msgstr "" - -#: mod/message.php:364 -msgid "No messages." -msgstr "" - -#: mod/message.php:403 -msgid "Message not available." -msgstr "" - -#: mod/message.php:477 -msgid "Delete message" -msgstr "" - -#: mod/message.php:503 mod/message.php:591 -msgid "Delete conversation" -msgstr "" - -#: mod/message.php:505 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "" - -#: mod/message.php:509 -msgid "Send Reply" -msgstr "" - -#: mod/message.php:561 -#, php-format -msgid "Unknown sender - %s" -msgstr "" - -#: mod/message.php:563 -#, php-format -msgid "You and %s" -msgstr "" - -#: mod/message.php:565 -#, php-format -msgid "%s and You" -msgstr "" - -#: mod/message.php:594 -msgid "D, d M Y - g:i A" -msgstr "" - -#: mod/message.php:597 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "" -msgstr[1] "" - -#: mod/network.php:197 mod/search.php:25 -msgid "Remove term" -msgstr "" - -#: mod/network.php:404 -#, php-format -msgid "" -"Warning: This group contains %s member from a network that doesn't allow non " -"public messages." -msgid_plural "" -"Warning: This group contains %s members from a network that doesn't allow " -"non public messages." -msgstr[0] "" -msgstr[1] "" - -#: mod/network.php:407 -msgid "Messages in this group won't be send to these receivers." -msgstr "" - -#: mod/network.php:535 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "" - -#: mod/network.php:540 -msgid "Invalid contact." -msgstr "" - -#: mod/network.php:813 -msgid "Commented Order" -msgstr "" - -#: mod/network.php:816 -msgid "Sort by Comment Date" -msgstr "" - -#: mod/network.php:821 -msgid "Posted Order" -msgstr "" - -#: mod/network.php:824 -msgid "Sort by Post Date" -msgstr "" - -#: mod/network.php:835 -msgid "Posts that mention or involve you" -msgstr "" - -#: mod/network.php:843 -msgid "New" -msgstr "" - -#: mod/network.php:846 -msgid "Activity Stream - by date" -msgstr "" - -#: mod/network.php:854 -msgid "Shared Links" -msgstr "" - -#: mod/network.php:857 -msgid "Interesting Links" -msgstr "" - -#: mod/network.php:865 -msgid "Starred" -msgstr "" - -#: mod/network.php:868 -msgid "Favourite Posts" -msgstr "" - -#: mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "" - -#: mod/openid.php:60 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "" - -#: mod/photos.php:94 mod/photos.php:1900 -msgid "Recent Photos" -msgstr "" - -#: mod/photos.php:97 mod/photos.php:1328 mod/photos.php:1902 -msgid "Upload New Photos" -msgstr "" - -#: mod/photos.php:112 mod/settings.php:36 -msgid "everybody" -msgstr "" - -#: mod/photos.php:176 -msgid "Contact information unavailable" -msgstr "" - -#: mod/photos.php:197 -msgid "Album not found." -msgstr "" - -#: mod/photos.php:230 mod/photos.php:242 mod/photos.php:1272 -msgid "Delete Album" -msgstr "" - -#: mod/photos.php:240 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "" - -#: mod/photos.php:323 mod/photos.php:334 mod/photos.php:1598 -msgid "Delete Photo" -msgstr "" - -#: mod/photos.php:332 -msgid "Do you really want to delete this photo?" -msgstr "" - -#: mod/photos.php:713 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "" - -#: mod/photos.php:713 -msgid "a photo" -msgstr "" - -#: mod/photos.php:821 -msgid "Image file is empty." -msgstr "" - -#: mod/photos.php:988 -msgid "No photos selected" -msgstr "" - -#: mod/photos.php:1091 mod/videos.php:309 -msgid "Access to this item is restricted." -msgstr "" - -#: mod/photos.php:1151 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "" - -#: mod/photos.php:1188 -msgid "Upload Photos" -msgstr "" - -#: mod/photos.php:1192 mod/photos.php:1267 -msgid "New album name: " -msgstr "" - -#: mod/photos.php:1193 -msgid "or existing album name: " -msgstr "" - -#: mod/photos.php:1194 -msgid "Do not show a status post for this upload" -msgstr "" - -#: mod/photos.php:1205 mod/photos.php:1602 mod/settings.php:1307 -msgid "Show to Groups" -msgstr "" - -#: mod/photos.php:1206 mod/photos.php:1603 mod/settings.php:1308 -msgid "Show to Contacts" -msgstr "" - -#: mod/photos.php:1207 -msgid "Private Photo" -msgstr "" - -#: mod/photos.php:1208 -msgid "Public Photo" -msgstr "" - -#: mod/photos.php:1278 -msgid "Edit Album" -msgstr "" - -#: mod/photos.php:1283 -msgid "Show Newest First" -msgstr "" - -#: mod/photos.php:1285 -msgid "Show Oldest First" -msgstr "" - -#: mod/photos.php:1314 mod/photos.php:1885 -msgid "View Photo" -msgstr "" - -#: mod/photos.php:1359 -msgid "Permission denied. Access to this item may be restricted." -msgstr "" - -#: mod/photos.php:1361 -msgid "Photo not available" -msgstr "" - -#: mod/photos.php:1422 -msgid "View photo" -msgstr "" - -#: mod/photos.php:1422 -msgid "Edit photo" -msgstr "" - -#: mod/photos.php:1423 -msgid "Use as profile photo" -msgstr "" - -#: mod/photos.php:1448 -msgid "View Full Size" -msgstr "" - -#: mod/photos.php:1538 -msgid "Tags: " -msgstr "" - -#: mod/photos.php:1541 -msgid "[Remove any tag]" -msgstr "" - -#: mod/photos.php:1584 -msgid "New album name" -msgstr "" - -#: mod/photos.php:1585 -msgid "Caption" -msgstr "" - -#: mod/photos.php:1586 -msgid "Add a Tag" -msgstr "" - -#: mod/photos.php:1586 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "" - -#: mod/photos.php:1587 -msgid "Do not rotate" -msgstr "" - -#: mod/photos.php:1588 -msgid "Rotate CW (right)" -msgstr "" - -#: mod/photos.php:1589 -msgid "Rotate CCW (left)" -msgstr "" - -#: mod/photos.php:1604 -msgid "Private photo" -msgstr "" - -#: mod/photos.php:1605 -msgid "Public photo" -msgstr "" - -#: mod/photos.php:1814 -msgid "Map" -msgstr "" - -#: mod/photos.php:1891 mod/videos.php:393 -msgid "View Album" -msgstr "" - -#: mod/probe.php:10 mod/webfinger.php:9 -msgid "Only logged in users are permitted to perform a probing." -msgstr "" - -#: mod/profile.php:175 -msgid "Tips for New Members" -msgstr "" - -#: mod/profiles.php:38 -msgid "Profile deleted." -msgstr "" - -#: mod/profiles.php:54 mod/profiles.php:90 -msgid "Profile-" -msgstr "" - -#: mod/profiles.php:73 mod/profiles.php:118 -msgid "New profile created." -msgstr "" - -#: mod/profiles.php:96 -msgid "Profile unavailable to clone." -msgstr "" - -#: mod/profiles.php:192 -msgid "Profile Name is required." -msgstr "" - -#: mod/profiles.php:332 -msgid "Marital Status" -msgstr "" - -#: mod/profiles.php:336 -msgid "Romantic Partner" -msgstr "" - -#: mod/profiles.php:348 -msgid "Work/Employment" -msgstr "" - -#: mod/profiles.php:351 -msgid "Religion" -msgstr "" - -#: mod/profiles.php:355 -msgid "Political Views" -msgstr "" - -#: mod/profiles.php:359 -msgid "Gender" -msgstr "" - -#: mod/profiles.php:363 -msgid "Sexual Preference" -msgstr "" - -#: mod/profiles.php:367 -msgid "XMPP" -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:471 -msgid "Profile updated." -msgstr "" - -#: mod/profiles.php:564 -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:579 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "" - -#: mod/profiles.php:637 -msgid "Hide contacts and friends:" -msgstr "" - -#: mod/profiles.php:642 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "" - -#: mod/profiles.php:667 -msgid "Show more profile fields:" -msgstr "" - -#: mod/profiles.php:679 -msgid "Profile Actions" -msgstr "" - -#: mod/profiles.php:680 -msgid "Edit Profile Details" -msgstr "" - -#: mod/profiles.php:682 -msgid "Change Profile Photo" -msgstr "" - -#: mod/profiles.php:683 -msgid "View this profile" -msgstr "" - -#: mod/profiles.php:685 -msgid "Create a new profile using these settings" -msgstr "" - -#: mod/profiles.php:686 -msgid "Clone this profile" -msgstr "" - -#: mod/profiles.php:687 -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 "Relation" -msgstr "" - -#: mod/profiles.php:701 -msgid "Your Gender:" -msgstr "" - -#: mod/profiles.php:702 -msgid " Marital Status:" -msgstr "" - -#: mod/profiles.php:704 -msgid "Example: fishing photography software" -msgstr "" - -#: mod/profiles.php:709 -msgid "Profile Name:" -msgstr "" - -#: mod/profiles.php:711 -msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." -msgstr "" - -#: mod/profiles.php:712 -msgid "Your Full Name:" -msgstr "" - -#: mod/profiles.php:713 -msgid "Title/Description:" -msgstr "" - -#: mod/profiles.php:716 -msgid "Street Address:" -msgstr "" - -#: mod/profiles.php:717 -msgid "Locality/City:" -msgstr "" - -#: mod/profiles.php:718 -msgid "Region/State:" -msgstr "" - -#: mod/profiles.php:719 -msgid "Postal/Zip Code:" -msgstr "" - -#: mod/profiles.php:720 -msgid "Country:" -msgstr "" - -#: mod/profiles.php:724 -msgid "Who: (if applicable)" -msgstr "" - -#: mod/profiles.php:724 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "" - -#: mod/profiles.php:725 -msgid "Since [date]:" -msgstr "" - -#: mod/profiles.php:727 -msgid "Tell us about yourself..." -msgstr "" - -#: mod/profiles.php:728 -msgid "XMPP (Jabber) address:" -msgstr "" - -#: mod/profiles.php:728 -msgid "" -"The XMPP address will be propagated to your contacts so that they can follow " -"you." -msgstr "" - -#: mod/profiles.php:729 -msgid "Homepage URL:" -msgstr "" - -#: mod/profiles.php:732 -msgid "Religious Views:" -msgstr "" - -#: mod/profiles.php:733 -msgid "Public Keywords:" -msgstr "" - -#: mod/profiles.php:733 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "" - -#: mod/profiles.php:734 -msgid "Private Keywords:" -msgstr "" - -#: mod/profiles.php:734 -msgid "(Used for searching profiles, never shown to others)" -msgstr "" - -#: mod/profiles.php:737 -msgid "Musical interests" -msgstr "" - -#: mod/profiles.php:738 -msgid "Books, literature" -msgstr "" - -#: mod/profiles.php:739 -msgid "Television" -msgstr "" - -#: mod/profiles.php:740 -msgid "Film/dance/culture/entertainment" -msgstr "" - -#: mod/profiles.php:741 -msgid "Hobbies/Interests" -msgstr "" - -#: mod/profiles.php:742 -msgid "Love/romance" -msgstr "" - -#: mod/profiles.php:743 -msgid "Work/employment" -msgstr "" - -#: mod/profiles.php:744 -msgid "School/education" -msgstr "" - -#: mod/profiles.php:745 -msgid "Contact information and Social Networks" -msgstr "" - -#: mod/profiles.php:786 -msgid "Edit/Manage Profiles" -msgstr "" - -#: mod/register.php:93 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "" - -#: mod/register.php:98 -#, php-format -msgid "" -"Failed to send email message. Here your accout details:
login: %s
" -"password: %s

You can change your password after login." -msgstr "" - -#: mod/register.php:105 -msgid "Registration successful." -msgstr "" - -#: mod/register.php:111 -msgid "Your registration can not be processed." -msgstr "" - -#: mod/register.php:160 -msgid "Your registration is pending approval by the site owner." -msgstr "" - -#: mod/register.php:226 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "" - -#: mod/register.php:227 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "" - -#: mod/register.php:228 -msgid "Your OpenID (optional): " -msgstr "" - -#: mod/register.php:242 -msgid "Include your profile in member directory?" -msgstr "" - -#: mod/register.php:267 -msgid "Note for the admin" -msgstr "" - -#: mod/register.php:267 -msgid "Leave a message for the admin, why you want to join this node" -msgstr "" - -#: mod/register.php:268 -msgid "Membership on this site is by invitation only." -msgstr "" - -#: mod/register.php:269 -msgid "Your invitation ID: " -msgstr "" - -#: mod/register.php:272 mod/admin.php:1056 -msgid "Registration" -msgstr "" - -#: mod/register.php:280 -msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "" - -#: mod/register.php:281 -msgid "Your Email Address: " -msgstr "" - -#: mod/register.php:283 mod/settings.php:1278 -msgid "New Password:" -msgstr "" - -#: mod/register.php:283 -msgid "Leave empty for an auto generated password." -msgstr "" - -#: mod/register.php:284 mod/settings.php:1279 -msgid "Confirm:" -msgstr "" - -#: mod/register.php:285 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be 'nickname@$sitename'." -msgstr "" - -#: mod/register.php:286 -msgid "Choose a nickname: " -msgstr "" - -#: mod/register.php:296 -msgid "Import your profile to this friendica instance" -msgstr "" - -#: mod/search.php:100 -msgid "Only logged in users are permitted to perform a search." -msgstr "" - -#: mod/search.php:124 -msgid "Too Many Requests" -msgstr "" - -#: mod/search.php:125 -msgid "Only one search per minute is permitted for not logged in users." -msgstr "" - -#: mod/search.php:225 -#, php-format -msgid "Items tagged with: %s" -msgstr "" - -#: mod/settings.php:43 mod/admin.php:1490 -msgid "Account" -msgstr "" - -#: mod/settings.php:52 mod/admin.php:169 -msgid "Additional features" -msgstr "" - -#: mod/settings.php:60 -msgid "Display" -msgstr "" - -#: mod/settings.php:67 mod/settings.php:890 -msgid "Social Networks" -msgstr "" - -#: mod/settings.php:74 mod/admin.php:167 mod/admin.php:1616 mod/admin.php:1679 -msgid "Plugins" -msgstr "" - -#: mod/settings.php:88 -msgid "Connected apps" -msgstr "" - -#: mod/settings.php:95 mod/uexport.php:45 -msgid "Export personal data" -msgstr "" - -#: mod/settings.php:102 -msgid "Remove account" -msgstr "" - -#: mod/settings.php:157 -msgid "Missing some important data!" -msgstr "" - -#: mod/settings.php:271 -msgid "Failed to connect with email account using the settings provided." -msgstr "" - -#: mod/settings.php:276 -msgid "Email settings updated." -msgstr "" - -#: mod/settings.php:291 -msgid "Features updated" -msgstr "" - -#: mod/settings.php:361 -msgid "Relocate message has been send to your contacts" -msgstr "" - -#: mod/settings.php:380 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "" - -#: mod/settings.php:388 -msgid "Wrong password." -msgstr "" - -#: mod/settings.php:399 -msgid "Password changed." -msgstr "" - -#: mod/settings.php:401 -msgid "Password update failed. Please try again." -msgstr "" - -#: mod/settings.php:481 -msgid " Please use a shorter name." -msgstr "" - -#: mod/settings.php:483 -msgid " Name too short." -msgstr "" - -#: mod/settings.php:492 -msgid "Wrong Password" -msgstr "" - -#: mod/settings.php:497 -msgid " Not valid email." -msgstr "" - -#: mod/settings.php:503 -msgid " Cannot change to that email." -msgstr "" - -#: mod/settings.php:559 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "" - -#: mod/settings.php:563 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "" - -#: mod/settings.php:603 -msgid "Settings updated." -msgstr "" - -#: mod/settings.php:680 mod/settings.php:706 mod/settings.php:742 -msgid "Add application" -msgstr "" - -#: mod/settings.php:681 mod/settings.php:792 mod/settings.php:841 -#: mod/settings.php:908 mod/settings.php:1005 mod/settings.php:1271 -#: mod/admin.php:1055 mod/admin.php:1680 mod/admin.php:1943 mod/admin.php:2017 -#: mod/admin.php:2170 -msgid "Save Settings" -msgstr "" - -#: mod/settings.php:684 mod/settings.php:710 -msgid "Consumer Key" -msgstr "" - -#: mod/settings.php:685 mod/settings.php:711 -msgid "Consumer Secret" -msgstr "" - -#: mod/settings.php:686 mod/settings.php:712 -msgid "Redirect" -msgstr "" - -#: mod/settings.php:687 mod/settings.php:713 -msgid "Icon url" -msgstr "" - -#: mod/settings.php:698 -msgid "You can't edit this application." -msgstr "" - -#: mod/settings.php:741 -msgid "Connected Apps" -msgstr "" - -#: mod/settings.php:745 -msgid "Client key starts with" -msgstr "" - -#: mod/settings.php:746 -msgid "No name" -msgstr "" - -#: mod/settings.php:747 -msgid "Remove authorization" -msgstr "" - -#: mod/settings.php:759 -msgid "No Plugin settings configured" -msgstr "" - -#: mod/settings.php:768 -msgid "Plugin Settings" -msgstr "" - -#: mod/settings.php:782 mod/admin.php:2159 mod/admin.php:2160 -msgid "Off" -msgstr "" - -#: mod/settings.php:782 mod/admin.php:2159 mod/admin.php:2160 -msgid "On" -msgstr "" - -#: mod/settings.php:790 -msgid "Additional Features" -msgstr "" - -#: mod/settings.php:800 mod/settings.php:804 -msgid "General Social Media Settings" -msgstr "" - -#: mod/settings.php:810 -msgid "Disable intelligent shortening" -msgstr "" - -#: mod/settings.php:812 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If this option is enabled then every shortened post will always point to the " -"original friendica post." -msgstr "" - -#: mod/settings.php:818 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "" - -#: mod/settings.php:820 -msgid "" -"If you receive a message from an unknown OStatus user, this option decides " -"what to do. If it is checked, a new contact will be created for every " -"unknown user." -msgstr "" - -#: mod/settings.php:826 -msgid "Default group for OStatus contacts" -msgstr "" - -#: mod/settings.php:834 -msgid "Your legacy GNU Social account" -msgstr "" - -#: mod/settings.php:836 -msgid "" -"If you enter your old GNU Social/Statusnet account name here (in the format " -"user@domain.tld), your contacts will be added automatically. The field will " -"be emptied when done." -msgstr "" - -#: mod/settings.php:839 -msgid "Repair OStatus subscriptions" -msgstr "" - -#: mod/settings.php:848 mod/settings.php:849 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "" - -#: mod/settings.php:848 mod/settings.php:849 -msgid "enabled" -msgstr "" - -#: mod/settings.php:848 mod/settings.php:849 -msgid "disabled" -msgstr "" - -#: mod/settings.php:849 -msgid "GNU Social (OStatus)" -msgstr "" - -#: mod/settings.php:883 -msgid "Email access is disabled on this site." -msgstr "" - -#: mod/settings.php:895 -msgid "Email/Mailbox Setup" -msgstr "" - -#: mod/settings.php:896 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "" - -#: mod/settings.php:897 -msgid "Last successful email check:" -msgstr "" - -#: mod/settings.php:899 -msgid "IMAP server name:" -msgstr "" - -#: mod/settings.php:900 -msgid "IMAP port:" -msgstr "" - -#: mod/settings.php:901 -msgid "Security:" -msgstr "" - -#: mod/settings.php:901 mod/settings.php:906 -msgid "None" -msgstr "" - -#: mod/settings.php:902 -msgid "Email login name:" -msgstr "" - -#: mod/settings.php:903 -msgid "Email password:" -msgstr "" - -#: mod/settings.php:904 -msgid "Reply-to address:" -msgstr "" - -#: mod/settings.php:905 -msgid "Send public posts to all email contacts:" -msgstr "" - -#: mod/settings.php:906 -msgid "Action after import:" -msgstr "" - -#: mod/settings.php:906 -msgid "Move to folder" -msgstr "" - -#: mod/settings.php:907 -msgid "Move to folder:" -msgstr "" - -#: mod/settings.php:943 mod/admin.php:942 -msgid "No special theme for mobile devices" -msgstr "" - -#: mod/settings.php:1003 -msgid "Display Settings" -msgstr "" - -#: mod/settings.php:1009 mod/settings.php:1032 -msgid "Display Theme:" -msgstr "" - -#: mod/settings.php:1010 -msgid "Mobile Theme:" -msgstr "" - -#: mod/settings.php:1011 -msgid "Suppress warning of insecure networks" -msgstr "" - -#: mod/settings.php:1011 -msgid "" -"Should the system suppress the warning that the current group contains " -"members of networks that can't receive non public postings." -msgstr "" - -#: mod/settings.php:1012 -msgid "Update browser every xx seconds" -msgstr "" - -#: mod/settings.php:1012 -msgid "Minimum of 10 seconds. Enter -1 to disable it." -msgstr "" - -#: mod/settings.php:1013 -msgid "Number of items to display per page:" -msgstr "" - -#: mod/settings.php:1013 mod/settings.php:1014 -msgid "Maximum of 100 items" -msgstr "" - -#: mod/settings.php:1014 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "" - -#: mod/settings.php:1015 -msgid "Don't show emoticons" -msgstr "" - -#: mod/settings.php:1016 -msgid "Calendar" -msgstr "" - -#: mod/settings.php:1017 -msgid "Beginning of week:" -msgstr "" - -#: mod/settings.php:1018 -msgid "Don't show notices" -msgstr "" - -#: mod/settings.php:1019 -msgid "Infinite scroll" -msgstr "" - -#: mod/settings.php:1020 -msgid "Automatic updates only at the top of the network page" -msgstr "" - -#: mod/settings.php:1021 -msgid "Bandwith Saver Mode" -msgstr "" - -#: mod/settings.php:1021 -msgid "" -"When enabled, embedded content is not displayed on automatic updates, they " -"only show on page reload." -msgstr "" - -#: mod/settings.php:1023 -msgid "General Theme Settings" -msgstr "" - -#: mod/settings.php:1024 -msgid "Custom Theme Settings" -msgstr "" - -#: mod/settings.php:1025 -msgid "Content Settings" -msgstr "" - -#: mod/settings.php:1026 view/theme/duepuntozero/config.php:63 -#: view/theme/frio/config.php:66 view/theme/quattro/config.php:69 -#: view/theme/vier/config.php:114 -msgid "Theme settings" -msgstr "" - -#: mod/settings.php:1110 -msgid "Account Types" -msgstr "" - -#: mod/settings.php:1111 -msgid "Personal Page Subtypes" -msgstr "" - -#: mod/settings.php:1112 -msgid "Community Forum Subtypes" -msgstr "" - -#: mod/settings.php:1119 -msgid "Personal Page" -msgstr "" - -#: mod/settings.php:1120 -msgid "This account is a regular personal profile" -msgstr "" - -#: mod/settings.php:1123 -msgid "Organisation Page" -msgstr "" - -#: mod/settings.php:1124 -msgid "This account is a profile for an organisation" -msgstr "" - -#: mod/settings.php:1127 -msgid "News Page" -msgstr "" - -#: mod/settings.php:1128 -msgid "This account is a news account/reflector" -msgstr "" - -#: mod/settings.php:1131 -msgid "Community Forum" -msgstr "" - -#: mod/settings.php:1132 -msgid "" -"This account is a community forum where people can discuss with each other" -msgstr "" - -#: mod/settings.php:1135 -msgid "Normal Account Page" -msgstr "" - -#: mod/settings.php:1136 -msgid "This account is a normal personal profile" -msgstr "" - -#: mod/settings.php:1139 -msgid "Soapbox Page" -msgstr "" - -#: mod/settings.php:1140 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "" - -#: mod/settings.php:1143 -msgid "Public Forum" -msgstr "" - -#: mod/settings.php:1144 -msgid "Automatically approve all contact requests" -msgstr "" - -#: mod/settings.php:1147 -msgid "Automatic Friend Page" -msgstr "" - -#: mod/settings.php:1148 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "" - -#: mod/settings.php:1151 -msgid "Private Forum [Experimental]" -msgstr "" - -#: mod/settings.php:1152 -msgid "Private forum - approved members only" -msgstr "" - -#: mod/settings.php:1163 -msgid "OpenID:" -msgstr "" - -#: mod/settings.php:1163 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "" - -#: mod/settings.php:1171 -msgid "Publish your default profile in your local site directory?" -msgstr "" - -#: mod/settings.php:1171 -msgid "Your profile may be visible in public." -msgstr "" - -#: mod/settings.php:1177 -msgid "Publish your default profile in the global social directory?" -msgstr "" - -#: mod/settings.php:1184 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "" - -#: mod/settings.php:1188 -msgid "" -"If enabled, posting public messages to Diaspora and other networks isn't " -"possible." -msgstr "" - -#: mod/settings.php:1193 -msgid "Allow friends to post to your profile page?" -msgstr "" - -#: mod/settings.php:1198 -msgid "Allow friends to tag your posts?" -msgstr "" - -#: mod/settings.php:1203 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "" - -#: mod/settings.php:1208 -msgid "Permit unknown people to send you private mail?" -msgstr "" - -#: mod/settings.php:1216 -msgid "Profile is not published." -msgstr "" - -#: mod/settings.php:1224 -#, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "" - -#: mod/settings.php:1231 -msgid "Automatically expire posts after this many days:" -msgstr "" - -#: mod/settings.php:1231 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "" - -#: mod/settings.php:1232 -msgid "Advanced expiration settings" -msgstr "" - -#: mod/settings.php:1233 -msgid "Advanced Expiration" -msgstr "" - -#: mod/settings.php:1234 -msgid "Expire posts:" -msgstr "" - -#: mod/settings.php:1235 -msgid "Expire personal notes:" -msgstr "" - -#: mod/settings.php:1236 -msgid "Expire starred posts:" -msgstr "" - -#: mod/settings.php:1237 -msgid "Expire photos:" -msgstr "" - -#: mod/settings.php:1238 -msgid "Only expire posts by others:" -msgstr "" - -#: mod/settings.php:1269 -msgid "Account Settings" -msgstr "" - -#: mod/settings.php:1277 -msgid "Password Settings" -msgstr "" - -#: mod/settings.php:1279 -msgid "Leave password fields blank unless changing" -msgstr "" - -#: mod/settings.php:1280 -msgid "Current Password:" -msgstr "" - -#: mod/settings.php:1280 mod/settings.php:1281 -msgid "Your current password to confirm the changes" -msgstr "" - -#: mod/settings.php:1281 -msgid "Password:" -msgstr "" - -#: mod/settings.php:1285 -msgid "Basic Settings" -msgstr "" - -#: mod/settings.php:1287 -msgid "Email Address:" -msgstr "" - -#: mod/settings.php:1288 -msgid "Your Timezone:" -msgstr "" - -#: mod/settings.php:1289 -msgid "Your Language:" -msgstr "" - -#: mod/settings.php:1289 -msgid "" -"Set the language we use to show you friendica interface and to send you " -"emails" -msgstr "" - -#: mod/settings.php:1290 -msgid "Default Post Location:" -msgstr "" - -#: mod/settings.php:1291 -msgid "Use Browser Location:" -msgstr "" - -#: mod/settings.php:1294 -msgid "Security and Privacy Settings" -msgstr "" - -#: mod/settings.php:1296 -msgid "Maximum Friend Requests/Day:" -msgstr "" - -#: mod/settings.php:1296 mod/settings.php:1326 -msgid "(to prevent spam abuse)" -msgstr "" - -#: mod/settings.php:1297 -msgid "Default Post Permissions" -msgstr "" - -#: mod/settings.php:1298 -msgid "(click to open/close)" -msgstr "" - -#: mod/settings.php:1309 -msgid "Default Private Post" -msgstr "" - -#: mod/settings.php:1310 -msgid "Default Public Post" -msgstr "" - -#: mod/settings.php:1314 -msgid "Default Permissions for New Posts" -msgstr "" - -#: mod/settings.php:1326 -msgid "Maximum private messages per day from unknown people:" -msgstr "" - -#: mod/settings.php:1329 -msgid "Notification Settings" -msgstr "" - -#: mod/settings.php:1330 -msgid "By default post a status message when:" -msgstr "" - -#: mod/settings.php:1331 -msgid "accepting a friend request" -msgstr "" - -#: mod/settings.php:1332 -msgid "joining a forum/community" -msgstr "" - -#: mod/settings.php:1333 -msgid "making an interesting profile change" -msgstr "" - -#: mod/settings.php:1334 -msgid "Send a notification email when:" -msgstr "" - -#: mod/settings.php:1335 -msgid "You receive an introduction" -msgstr "" - -#: mod/settings.php:1336 -msgid "Your introductions are confirmed" -msgstr "" - -#: mod/settings.php:1337 -msgid "Someone writes on your profile wall" -msgstr "" - -#: mod/settings.php:1338 -msgid "Someone writes a followup comment" -msgstr "" - -#: mod/settings.php:1339 -msgid "You receive a private message" -msgstr "" - -#: mod/settings.php:1340 -msgid "You receive a friend suggestion" -msgstr "" - -#: mod/settings.php:1341 -msgid "You are tagged in a post" -msgstr "" - -#: mod/settings.php:1342 -msgid "You are poked/prodded/etc. in a post" -msgstr "" - -#: mod/settings.php:1344 -msgid "Activate desktop notifications" -msgstr "" - -#: mod/settings.php:1344 -msgid "Show desktop popup on new notifications" -msgstr "" - -#: mod/settings.php:1346 -msgid "Text-only notification emails" -msgstr "" - -#: mod/settings.php:1348 -msgid "Send text only notification emails, without the html part" -msgstr "" - -#: mod/settings.php:1350 -msgid "Advanced Account/Page Type Settings" -msgstr "" - -#: mod/settings.php:1351 -msgid "Change the behaviour of this account for special situations" -msgstr "" - -#: mod/settings.php:1354 -msgid "Relocate" -msgstr "" - -#: mod/settings.php:1355 -msgid "" -"If you have moved this profile from another server, and some of your " -"contacts don't receive your updates, try pushing this button." -msgstr "" - -#: mod/settings.php:1356 -msgid "Resend relocate message to contacts" -msgstr "" - -#: mod/uexport.php:37 -msgid "Export account" -msgstr "" - -#: mod/uexport.php:37 -msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "" - -#: mod/uexport.php:38 -msgid "Export all" -msgstr "" - -#: mod/uexport.php:38 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" -msgstr "" - -#: mod/videos.php:124 -msgid "Do you really want to delete this video?" -msgstr "" - -#: mod/videos.php:129 -msgid "Delete Video" -msgstr "" - -#: mod/videos.php:208 -msgid "No videos selected" -msgstr "" - -#: mod/videos.php:402 -msgid "Recent Videos" -msgstr "" - -#: mod/videos.php:404 -msgid "Upload New Videos" -msgstr "" - -#: mod/install.php:106 -msgid "Friendica Communications Server - Setup" -msgstr "" - -#: mod/install.php:112 -msgid "Could not connect to database." -msgstr "" - -#: mod/install.php:116 -msgid "Could not create table." -msgstr "" - -#: mod/install.php:122 -msgid "Your Friendica site database has been installed." -msgstr "" - -#: mod/install.php:127 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "" - -#: mod/install.php:128 mod/install.php:200 mod/install.php:547 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "" - -#: mod/install.php:140 -msgid "Database already in use." -msgstr "" - -#: mod/install.php:197 -msgid "System check" -msgstr "" - -#: mod/install.php:202 -msgid "Check again" -msgstr "" - -#: mod/install.php:221 -msgid "Database connection" -msgstr "" - -#: mod/install.php:222 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "" - -#: mod/install.php:223 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "" - -#: mod/install.php:224 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "" - -#: mod/install.php:228 -msgid "Database Server Name" -msgstr "" - -#: mod/install.php:229 -msgid "Database Login Name" -msgstr "" - -#: mod/install.php:230 -msgid "Database Login Password" -msgstr "" - -#: mod/install.php:230 -msgid "For security reasons the password must not be empty" -msgstr "" - -#: mod/install.php:231 -msgid "Database Name" -msgstr "" - -#: mod/install.php:232 mod/install.php:273 -msgid "Site administrator email address" -msgstr "" - -#: mod/install.php:232 mod/install.php:273 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "" - -#: mod/install.php:236 mod/install.php:276 -msgid "Please select a default timezone for your website" -msgstr "" - -#: mod/install.php:263 -msgid "Site settings" -msgstr "" - -#: mod/install.php:277 -msgid "System Language:" -msgstr "" - -#: mod/install.php:277 -msgid "" -"Set the default language for your Friendica installation interface and to " -"send emails." -msgstr "" - -#: mod/install.php:317 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "" - -#: mod/install.php:318 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run the background processing. See 'Setup the poller'" -msgstr "" - -#: mod/install.php:322 -msgid "PHP executable path" -msgstr "" - -#: mod/install.php:322 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "" - -#: mod/install.php:327 -msgid "Command line PHP" -msgstr "" - -#: mod/install.php:336 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "" - -#: mod/install.php:337 -msgid "Found PHP version: " -msgstr "" - -#: mod/install.php:339 -msgid "PHP cli binary" -msgstr "" - -#: mod/install.php:350 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "" - -#: mod/install.php:351 -msgid "This is required for message delivery to work." -msgstr "" - -#: mod/install.php:353 -msgid "PHP register_argc_argv" -msgstr "" - -#: mod/install.php:376 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "" - -#: mod/install.php:377 -msgid "" -"If running under Windows, please see \"http://www.php.net/manual/en/openssl." -"installation.php\"." -msgstr "" - -#: mod/install.php:379 -msgid "Generate encryption keys" -msgstr "" - -#: mod/install.php:386 -msgid "libCurl PHP module" -msgstr "" - -#: mod/install.php:387 -msgid "GD graphics PHP module" -msgstr "" - -#: mod/install.php:388 -msgid "OpenSSL PHP module" -msgstr "" - -#: mod/install.php:389 -msgid "PDO or MySQLi PHP module" -msgstr "" - -#: mod/install.php:390 -msgid "mb_string PHP module" -msgstr "" - -#: mod/install.php:391 -msgid "XML PHP module" -msgstr "" - -#: mod/install.php:392 -msgid "iconv module" -msgstr "" - -#: mod/install.php:396 mod/install.php:398 -msgid "Apache mod_rewrite module" -msgstr "" - -#: mod/install.php:396 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "" - -#: mod/install.php:404 -msgid "Error: libCURL PHP module required but not installed." -msgstr "" - -#: mod/install.php:408 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "" - -#: mod/install.php:412 -msgid "Error: openssl PHP module required but not installed." -msgstr "" - -#: mod/install.php:416 -msgid "Error: PDO or MySQLi PHP module required but not installed." -msgstr "" - -#: mod/install.php:420 -msgid "Error: The MySQL driver for PDO is not installed." -msgstr "" - -#: mod/install.php:424 -msgid "Error: mb_string PHP module required but not installed." -msgstr "" - -#: mod/install.php:428 -msgid "Error: iconv PHP module required but not installed." -msgstr "" - -#: mod/install.php:438 -msgid "Error, XML PHP module required but not installed." -msgstr "" - -#: mod/install.php:450 -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:451 -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:452 -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:453 -msgid "" -"You can alternatively skip this procedure and perform a manual installation. " -"Please see the file \"INSTALL.txt\" for instructions." -msgstr "" - -#: mod/install.php:456 -msgid ".htconfig.php is writable" -msgstr "" - -#: mod/install.php:466 -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:467 -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:468 -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:469 -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:472 -msgid "view/smarty3 is writable" -msgstr "" - -#: mod/install.php:488 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "" - -#: mod/install.php:490 -msgid "Url rewrite is working" -msgstr "" - -#: mod/install.php:509 -msgid "ImageMagick PHP extension is not installed" -msgstr "" - -#: mod/install.php:511 -msgid "ImageMagick PHP extension is installed" -msgstr "" - -#: mod/install.php:513 -msgid "ImageMagick supports GIF" -msgstr "" - -#: mod/install.php:520 -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:545 -msgid "

What next

" -msgstr "" - -#: mod/install.php:546 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." -msgstr "" - -#: mod/item.php:116 +#: mod/item.php:118 msgid "Unable to locate original post." msgstr "" -#: mod/item.php:344 +#: mod/item.php:345 msgid "Empty post discarded." msgstr "" @@ -7233,326 +5880,250 @@ msgstr "" msgid "%s posted an update." msgstr "" -#: mod/notifications.php:35 -msgid "Invalid request identifier." +#: mod/regmod.php:60 +msgid "Account approved." msgstr "" -#: mod/notifications.php:44 mod/notifications.php:180 -#: mod/notifications.php:227 -msgid "Discard" -msgstr "" - -#: mod/notifications.php:105 -msgid "Network Notifications" -msgstr "" - -#: mod/notifications.php:117 -msgid "Personal Notifications" -msgstr "" - -#: mod/notifications.php:123 -msgid "Home Notifications" -msgstr "" - -#: mod/notifications.php:152 -msgid "Show Ignored Requests" -msgstr "" - -#: mod/notifications.php:152 -msgid "Hide Ignored Requests" -msgstr "" - -#: mod/notifications.php:164 mod/notifications.php:234 -msgid "Notification type: " -msgstr "" - -#: mod/notifications.php:167 +#: mod/regmod.php:88 #, php-format -msgid "suggested by %s" +msgid "Registration revoked for %s" msgstr "" -#: mod/notifications.php:173 mod/notifications.php:252 -msgid "Post a new friend activity" +#: mod/regmod.php:100 +msgid "Please login." msgstr "" -#: mod/notifications.php:173 mod/notifications.php:252 -msgid "if applicable" +#: mod/uimport.php:70 +msgid "Move account" msgstr "" -#: mod/notifications.php:176 mod/notifications.php:261 mod/admin.php:1506 -msgid "Approve" +#: mod/uimport.php:71 +msgid "You can import an account from another Friendica server." msgstr "" -#: mod/notifications.php:195 -msgid "Claims to be known to you: " -msgstr "" - -#: mod/notifications.php:196 -msgid "yes" -msgstr "" - -#: mod/notifications.php:196 -msgid "no" -msgstr "" - -#: mod/notifications.php:197 mod/notifications.php:202 -msgid "Shall your connection be bidirectional or not?" -msgstr "" - -#: mod/notifications.php:198 mod/notifications.php:203 -#, php-format +#: mod/uimport.php:72 msgid "" -"Accepting %s as a friend allows %s to subscribe to your posts, and you will " -"also receive updates from them in your news feed." +"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/notifications.php:199 -#, php-format +#: mod/uimport.php:73 msgid "" -"Accepting %s as a subscriber allows them to subscribe to your posts, but you " -"will not receive updates from them in your news feed." +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" msgstr "" -#: mod/notifications.php:204 -#, php-format +#: mod/uimport.php:74 +msgid "Account file" +msgstr "" + +#: mod/uimport.php:74 msgid "" -"Accepting %s as a sharer allows them to subscribe to your posts, but you " -"will not receive updates from them in your news feed." +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" msgstr "" -#: mod/notifications.php:215 -msgid "Friend" -msgstr "" - -#: mod/notifications.php:216 -msgid "Sharer" -msgstr "" - -#: mod/notifications.php:216 -msgid "Subscriber" -msgstr "" - -#: mod/notifications.php:272 -msgid "No introductions." -msgstr "" - -#: mod/notifications.php:313 -msgid "Show unread" -msgstr "" - -#: mod/notifications.php:313 -msgid "Show all" -msgstr "" - -#: mod/notifications.php:319 -#, php-format -msgid "No more %s notifications." -msgstr "" - -#: mod/ping.php:270 -msgid "{0} wants to be your friend" -msgstr "" - -#: mod/ping.php:285 -msgid "{0} sent you a message" -msgstr "" - -#: mod/ping.php:300 -msgid "{0} requested registration" -msgstr "" - -#: mod/admin.php:96 +#: mod/admin.php:97 msgid "Theme settings updated." msgstr "" -#: mod/admin.php:165 mod/admin.php:1054 +#: mod/admin.php:166 mod/admin.php:1060 msgid "Site" msgstr "" -#: mod/admin.php:166 mod/admin.php:988 mod/admin.php:1498 mod/admin.php:1514 +#: mod/admin.php:167 mod/admin.php:994 mod/admin.php:1504 mod/admin.php:1520 msgid "Users" msgstr "" -#: mod/admin.php:168 mod/admin.php:1892 mod/admin.php:1942 +#: mod/admin.php:168 mod/admin.php:1622 mod/admin.php:1685 mod/settings.php:76 +msgid "Plugins" +msgstr "" + +#: mod/admin.php:169 mod/admin.php:1898 mod/admin.php:1948 msgid "Themes" msgstr "" -#: mod/admin.php:170 +#: mod/admin.php:170 mod/settings.php:54 +msgid "Additional features" +msgstr "" + +#: mod/admin.php:171 msgid "DB updates" msgstr "" -#: mod/admin.php:171 mod/admin.php:512 +#: mod/admin.php:172 mod/admin.php:513 msgid "Inspect Queue" msgstr "" -#: mod/admin.php:172 mod/admin.php:288 +#: mod/admin.php:173 mod/admin.php:289 msgid "Server Blocklist" msgstr "" -#: mod/admin.php:173 mod/admin.php:478 +#: mod/admin.php:174 mod/admin.php:479 msgid "Federation Statistics" msgstr "" -#: mod/admin.php:187 mod/admin.php:198 mod/admin.php:2016 +#: mod/admin.php:188 mod/admin.php:199 mod/admin.php:2022 msgid "Logs" msgstr "" -#: mod/admin.php:188 mod/admin.php:2084 +#: mod/admin.php:189 mod/admin.php:2090 msgid "View Logs" msgstr "" -#: mod/admin.php:189 +#: mod/admin.php:190 msgid "probe address" msgstr "" -#: mod/admin.php:190 +#: mod/admin.php:191 msgid "check webfinger" msgstr "" -#: mod/admin.php:197 +#: mod/admin.php:198 msgid "Plugin Features" msgstr "" -#: mod/admin.php:199 +#: mod/admin.php:200 msgid "diagnostics" msgstr "" -#: mod/admin.php:200 +#: mod/admin.php:201 msgid "User registrations waiting for confirmation" msgstr "" -#: mod/admin.php:279 +#: mod/admin.php:280 msgid "The blocked domain" msgstr "" -#: mod/admin.php:280 mod/admin.php:293 +#: mod/admin.php:281 mod/admin.php:294 msgid "The reason why you blocked this domain." msgstr "" -#: mod/admin.php:281 +#: mod/admin.php:282 msgid "Delete domain" msgstr "" -#: mod/admin.php:281 +#: mod/admin.php:282 msgid "Check to delete this entry from the blocklist" msgstr "" -#: mod/admin.php:287 mod/admin.php:477 mod/admin.php:511 mod/admin.php:586 -#: mod/admin.php:1053 mod/admin.php:1497 mod/admin.php:1615 mod/admin.php:1678 -#: mod/admin.php:1891 mod/admin.php:1941 mod/admin.php:2015 mod/admin.php:2083 +#: mod/admin.php:288 mod/admin.php:478 mod/admin.php:512 mod/admin.php:592 +#: mod/admin.php:1059 mod/admin.php:1503 mod/admin.php:1621 mod/admin.php:1684 +#: mod/admin.php:1897 mod/admin.php:1947 mod/admin.php:2021 mod/admin.php:2089 msgid "Administration" msgstr "" -#: mod/admin.php:289 +#: mod/admin.php:290 msgid "" "This page can be used to define a black list of servers from the federated " "network that are not allowed to interact with your node. For all entered " "domains you should also give a reason why you have blocked the remote server." msgstr "" -#: mod/admin.php:290 +#: mod/admin.php:291 msgid "" "The list of blocked servers will be made publically available on the /" "friendica page so that your users and people investigating communication " "problems can find the reason easily." msgstr "" -#: mod/admin.php:291 +#: mod/admin.php:292 msgid "Add new entry to block list" msgstr "" -#: mod/admin.php:292 +#: mod/admin.php:293 msgid "Server Domain" msgstr "" -#: mod/admin.php:292 +#: mod/admin.php:293 msgid "" "The domain of the new server to add to the block list. Do not include the " "protocol." msgstr "" -#: mod/admin.php:293 +#: mod/admin.php:294 msgid "Block reason" msgstr "" -#: mod/admin.php:294 +#: mod/admin.php:295 msgid "Add Entry" msgstr "" -#: mod/admin.php:295 +#: mod/admin.php:296 msgid "Save changes to the blocklist" msgstr "" -#: mod/admin.php:296 +#: mod/admin.php:297 msgid "Current Entries in the Blocklist" msgstr "" -#: mod/admin.php:299 +#: mod/admin.php:300 msgid "Delete entry from blocklist" msgstr "" -#: mod/admin.php:302 +#: mod/admin.php:303 msgid "Delete entry from blocklist?" msgstr "" -#: mod/admin.php:327 +#: mod/admin.php:328 msgid "Server added to blocklist." msgstr "" -#: mod/admin.php:343 +#: mod/admin.php:344 msgid "Site blocklist updated." msgstr "" -#: mod/admin.php:408 +#: mod/admin.php:409 msgid "unknown" msgstr "" -#: mod/admin.php:471 +#: mod/admin.php:472 msgid "" "This page offers you some numbers to the known part of the federated social " "network your Friendica node is part of. These numbers are not complete but " "only reflect the part of the network your node is aware of." msgstr "" -#: mod/admin.php:472 +#: mod/admin.php:473 msgid "" "The Auto Discovered Contact Directory feature is not enabled, it " "will improve the data displayed here." msgstr "" -#: mod/admin.php:484 +#: mod/admin.php:485 #, php-format msgid "Currently this node is aware of %d nodes from the following platforms:" msgstr "" -#: mod/admin.php:514 +#: mod/admin.php:515 msgid "ID" msgstr "" -#: mod/admin.php:515 +#: mod/admin.php:516 msgid "Recipient Name" msgstr "" -#: mod/admin.php:516 +#: mod/admin.php:517 msgid "Recipient Profile" msgstr "" -#: mod/admin.php:518 +#: mod/admin.php:519 msgid "Created" msgstr "" -#: mod/admin.php:519 +#: mod/admin.php:520 msgid "Last Tried" msgstr "" -#: mod/admin.php:520 +#: mod/admin.php:521 msgid "" "This page lists the content of the queue for outgoing postings. These are " "postings the initial delivery failed for. They will be resend later and " "eventually deleted if the delivery fails permanently." msgstr "" -#: mod/admin.php:545 +#: mod/admin.php:546 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -7563,643 +6134,662 @@ msgid "" "automatic conversion.
" msgstr "" -#: mod/admin.php:550 +#: mod/admin.php:555 msgid "" -"You are using a MySQL version which does not support all features that " -"Friendica uses. You should consider switching to MariaDB." +"The database update failed. Please run \"php include/dbstructure.php update" +"\" from the command line and have a look at the errors that might appear." msgstr "" -#: mod/admin.php:554 mod/admin.php:1447 +#: mod/admin.php:560 mod/admin.php:1453 msgid "Normal Account" msgstr "" -#: mod/admin.php:555 mod/admin.php:1448 +#: mod/admin.php:561 mod/admin.php:1454 msgid "Soapbox Account" msgstr "" -#: mod/admin.php:556 mod/admin.php:1449 +#: mod/admin.php:562 mod/admin.php:1455 msgid "Community/Celebrity Account" msgstr "" -#: mod/admin.php:557 mod/admin.php:1450 +#: mod/admin.php:563 mod/admin.php:1456 msgid "Automatic Friend Account" msgstr "" -#: mod/admin.php:558 +#: mod/admin.php:564 msgid "Blog Account" msgstr "" -#: mod/admin.php:559 +#: mod/admin.php:565 msgid "Private Forum" msgstr "" -#: mod/admin.php:581 +#: mod/admin.php:587 msgid "Message queues" msgstr "" -#: mod/admin.php:587 +#: mod/admin.php:593 msgid "Summary" msgstr "" -#: mod/admin.php:589 +#: mod/admin.php:595 msgid "Registered users" msgstr "" -#: mod/admin.php:591 +#: mod/admin.php:597 msgid "Pending registrations" msgstr "" -#: mod/admin.php:592 +#: mod/admin.php:598 msgid "Version" msgstr "" -#: mod/admin.php:597 +#: mod/admin.php:603 msgid "Active plugins" msgstr "" -#: mod/admin.php:622 +#: mod/admin.php:628 msgid "Can not parse base url. Must have at least ://" msgstr "" -#: mod/admin.php:914 +#: mod/admin.php:920 msgid "Site settings updated." msgstr "" -#: mod/admin.php:971 +#: mod/admin.php:948 mod/settings.php:944 +msgid "No special theme for mobile devices" +msgstr "" + +#: mod/admin.php:977 msgid "No community page" msgstr "" -#: mod/admin.php:972 +#: mod/admin.php:978 msgid "Public postings from users of this site" msgstr "" -#: mod/admin.php:973 +#: mod/admin.php:979 msgid "Global community page" msgstr "" -#: mod/admin.php:979 +#: mod/admin.php:984 mod/contacts.php:541 +msgid "Never" +msgstr "" + +#: mod/admin.php:985 msgid "At post arrival" msgstr "" -#: mod/admin.php:989 -msgid "Users, Global Contacts" -msgstr "" - -#: mod/admin.php:990 -msgid "Users, Global Contacts/fallback" -msgstr "" - -#: mod/admin.php:994 -msgid "One month" +#: mod/admin.php:993 mod/contacts.php:568 +msgid "Disabled" msgstr "" #: mod/admin.php:995 -msgid "Three months" +msgid "Users, Global Contacts" msgstr "" #: mod/admin.php:996 -msgid "Half a year" +msgid "Users, Global Contacts/fallback" msgstr "" -#: mod/admin.php:997 -msgid "One year" +#: mod/admin.php:1000 +msgid "One month" +msgstr "" + +#: mod/admin.php:1001 +msgid "Three months" msgstr "" #: mod/admin.php:1002 +msgid "Half a year" +msgstr "" + +#: mod/admin.php:1003 +msgid "One year" +msgstr "" + +#: mod/admin.php:1008 msgid "Multi user instance" msgstr "" -#: mod/admin.php:1025 +#: mod/admin.php:1031 msgid "Closed" msgstr "" -#: mod/admin.php:1026 +#: mod/admin.php:1032 msgid "Requires approval" msgstr "" -#: mod/admin.php:1027 +#: mod/admin.php:1033 msgid "Open" msgstr "" -#: mod/admin.php:1031 +#: mod/admin.php:1037 msgid "No SSL policy, links will track page SSL state" msgstr "" -#: mod/admin.php:1032 +#: mod/admin.php:1038 msgid "Force all links to use SSL" msgstr "" -#: mod/admin.php:1033 +#: mod/admin.php:1039 msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "" -#: mod/admin.php:1057 -msgid "File upload" -msgstr "" - -#: mod/admin.php:1058 -msgid "Policies" -msgstr "" - -#: mod/admin.php:1060 -msgid "Auto Discovered Contact Directory" -msgstr "" - -#: mod/admin.php:1061 -msgid "Performance" -msgstr "" - -#: mod/admin.php:1062 -msgid "Worker" +#: mod/admin.php:1061 mod/admin.php:1686 mod/admin.php:1949 mod/admin.php:2023 +#: mod/admin.php:2176 mod/settings.php:682 mod/settings.php:793 +#: mod/settings.php:842 mod/settings.php:909 mod/settings.php:1006 +#: mod/settings.php:1272 +msgid "Save Settings" msgstr "" #: mod/admin.php:1063 +msgid "File upload" +msgstr "" + +#: mod/admin.php:1064 +msgid "Policies" +msgstr "" + +#: mod/admin.php:1066 +msgid "Auto Discovered Contact Directory" +msgstr "" + +#: mod/admin.php:1067 +msgid "Performance" +msgstr "" + +#: mod/admin.php:1068 +msgid "Worker" +msgstr "" + +#: mod/admin.php:1069 msgid "" "Relocate - WARNING: advanced function. Could make this server unreachable." msgstr "" -#: mod/admin.php:1066 +#: mod/admin.php:1072 msgid "Site name" msgstr "" -#: mod/admin.php:1067 +#: mod/admin.php:1073 msgid "Host name" msgstr "" -#: mod/admin.php:1068 +#: mod/admin.php:1074 msgid "Sender Email" msgstr "" -#: mod/admin.php:1068 +#: mod/admin.php:1074 msgid "" "The email address your server shall use to send notification emails from." msgstr "" -#: mod/admin.php:1069 +#: mod/admin.php:1075 msgid "Banner/Logo" msgstr "" -#: mod/admin.php:1070 +#: mod/admin.php:1076 msgid "Shortcut icon" msgstr "" -#: mod/admin.php:1070 +#: mod/admin.php:1076 msgid "Link to an icon that will be used for browsers." msgstr "" -#: mod/admin.php:1071 +#: mod/admin.php:1077 msgid "Touch icon" msgstr "" -#: mod/admin.php:1071 +#: mod/admin.php:1077 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "" -#: mod/admin.php:1072 +#: mod/admin.php:1078 msgid "Additional Info" msgstr "" -#: mod/admin.php:1072 +#: mod/admin.php:1078 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/siteinfo." msgstr "" -#: mod/admin.php:1073 +#: mod/admin.php:1079 msgid "System language" msgstr "" -#: mod/admin.php:1074 +#: mod/admin.php:1080 msgid "System theme" msgstr "" -#: mod/admin.php:1074 +#: mod/admin.php:1080 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "" -#: mod/admin.php:1075 +#: mod/admin.php:1081 msgid "Mobile system theme" msgstr "" -#: mod/admin.php:1075 +#: mod/admin.php:1081 msgid "Theme for mobile devices" msgstr "" -#: mod/admin.php:1076 +#: mod/admin.php:1082 msgid "SSL link policy" msgstr "" -#: mod/admin.php:1076 +#: mod/admin.php:1082 msgid "Determines whether generated links should be forced to use SSL" msgstr "" -#: mod/admin.php:1077 +#: mod/admin.php:1083 msgid "Force SSL" msgstr "" -#: mod/admin.php:1077 +#: mod/admin.php:1083 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead " "to endless loops." msgstr "" -#: mod/admin.php:1078 +#: mod/admin.php:1084 msgid "Hide help entry from navigation menu" msgstr "" -#: mod/admin.php:1078 +#: mod/admin.php:1084 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:1079 +#: mod/admin.php:1085 msgid "Single user instance" msgstr "" -#: mod/admin.php:1079 +#: mod/admin.php:1085 msgid "Make this instance multi-user or single-user for the named user" msgstr "" -#: mod/admin.php:1080 +#: mod/admin.php:1086 msgid "Maximum image size" msgstr "" -#: mod/admin.php:1080 +#: mod/admin.php:1086 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "" -#: mod/admin.php:1081 +#: mod/admin.php:1087 msgid "Maximum image length" msgstr "" -#: mod/admin.php:1081 +#: mod/admin.php:1087 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "" -#: mod/admin.php:1082 +#: mod/admin.php:1088 msgid "JPEG image quality" msgstr "" -#: mod/admin.php:1082 +#: mod/admin.php:1088 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "" -#: mod/admin.php:1084 +#: mod/admin.php:1090 msgid "Register policy" msgstr "" -#: mod/admin.php:1085 +#: mod/admin.php:1091 msgid "Maximum Daily Registrations" msgstr "" -#: mod/admin.php:1085 +#: mod/admin.php:1091 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:1086 +#: mod/admin.php:1092 msgid "Register text" msgstr "" -#: mod/admin.php:1086 +#: mod/admin.php:1092 msgid "Will be displayed prominently on the registration page." msgstr "" -#: mod/admin.php:1087 +#: mod/admin.php:1093 msgid "Accounts abandoned after x days" msgstr "" -#: mod/admin.php:1087 +#: mod/admin.php:1093 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "" -#: mod/admin.php:1088 +#: mod/admin.php:1094 msgid "Allowed friend domains" msgstr "" -#: mod/admin.php:1088 +#: mod/admin.php:1094 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:1089 +#: mod/admin.php:1095 msgid "Allowed email domains" msgstr "" -#: mod/admin.php:1089 +#: mod/admin.php:1095 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:1090 +#: mod/admin.php:1096 msgid "Block public" msgstr "" -#: mod/admin.php:1090 +#: mod/admin.php:1096 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:1091 +#: mod/admin.php:1097 msgid "Force publish" msgstr "" -#: mod/admin.php:1091 +#: mod/admin.php:1097 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: mod/admin.php:1092 +#: mod/admin.php:1098 msgid "Global directory URL" msgstr "" -#: mod/admin.php:1092 +#: mod/admin.php:1098 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "" -#: mod/admin.php:1093 +#: mod/admin.php:1099 msgid "Allow threaded items" msgstr "" -#: mod/admin.php:1093 +#: mod/admin.php:1099 msgid "Allow infinite level threading for items on this site." msgstr "" -#: mod/admin.php:1094 +#: mod/admin.php:1100 msgid "Private posts by default for new users" msgstr "" -#: mod/admin.php:1094 +#: mod/admin.php:1100 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." msgstr "" -#: mod/admin.php:1095 +#: mod/admin.php:1101 msgid "Don't include post content in email notifications" msgstr "" -#: mod/admin.php:1095 +#: mod/admin.php:1101 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:1096 +#: mod/admin.php:1102 msgid "Disallow public access to addons listed in the apps menu." msgstr "" -#: mod/admin.php:1096 +#: mod/admin.php:1102 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "" -#: mod/admin.php:1097 +#: mod/admin.php:1103 msgid "Don't embed private images in posts" msgstr "" -#: mod/admin.php:1097 +#: mod/admin.php:1103 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:1098 +#: mod/admin.php:1104 msgid "Allow Users to set remote_self" msgstr "" -#: mod/admin.php:1098 +#: mod/admin.php:1104 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:1099 +#: mod/admin.php:1105 msgid "Block multiple registrations" msgstr "" -#: mod/admin.php:1099 +#: mod/admin.php:1105 msgid "Disallow users to register additional accounts for use as pages." msgstr "" -#: mod/admin.php:1100 +#: mod/admin.php:1106 msgid "OpenID support" msgstr "" -#: mod/admin.php:1100 +#: mod/admin.php:1106 msgid "OpenID support for registration and logins." msgstr "" -#: mod/admin.php:1101 +#: mod/admin.php:1107 msgid "Fullname check" msgstr "" -#: mod/admin.php:1101 +#: mod/admin.php:1107 msgid "" "Force users to register with a space between firstname and lastname in Full " "name, as an antispam measure" msgstr "" -#: mod/admin.php:1102 +#: mod/admin.php:1108 msgid "Community Page Style" msgstr "" -#: mod/admin.php:1102 +#: mod/admin.php:1108 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:1103 +#: mod/admin.php:1109 msgid "Posts per user on community page" msgstr "" -#: mod/admin.php:1103 +#: mod/admin.php:1109 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "'Global Community')" msgstr "" -#: mod/admin.php:1104 +#: mod/admin.php:1110 msgid "Enable OStatus support" msgstr "" -#: mod/admin.php:1104 +#: mod/admin.php:1110 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:1105 +#: mod/admin.php:1111 msgid "OStatus conversation completion interval" msgstr "" -#: mod/admin.php:1105 +#: mod/admin.php:1111 msgid "" "How often shall the poller check for new entries in OStatus conversations? " "This can be a very ressource task." msgstr "" -#: mod/admin.php:1106 +#: mod/admin.php:1112 msgid "Only import OStatus threads from our contacts" msgstr "" -#: mod/admin.php:1106 +#: mod/admin.php:1112 msgid "" "Normally we import every content from our OStatus contacts. With this option " "we only store threads that are started by a contact that is known on our " "system." msgstr "" -#: mod/admin.php:1107 +#: mod/admin.php:1113 msgid "OStatus support can only be enabled if threading is enabled." msgstr "" -#: mod/admin.php:1109 +#: mod/admin.php:1115 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub " "directory." msgstr "" -#: mod/admin.php:1110 +#: mod/admin.php:1116 msgid "Enable Diaspora support" msgstr "" -#: mod/admin.php:1110 +#: mod/admin.php:1116 msgid "Provide built-in Diaspora network compatibility." msgstr "" -#: mod/admin.php:1111 +#: mod/admin.php:1117 msgid "Only allow Friendica contacts" msgstr "" -#: mod/admin.php:1111 +#: mod/admin.php:1117 msgid "" "All contacts must use Friendica protocols. All other built-in communication " "protocols disabled." msgstr "" -#: mod/admin.php:1112 +#: mod/admin.php:1118 msgid "Verify SSL" msgstr "" -#: mod/admin.php:1112 +#: mod/admin.php:1118 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:1113 +#: mod/admin.php:1119 msgid "Proxy user" msgstr "" -#: mod/admin.php:1114 +#: mod/admin.php:1120 msgid "Proxy URL" msgstr "" -#: mod/admin.php:1115 +#: mod/admin.php:1121 msgid "Network timeout" msgstr "" -#: mod/admin.php:1115 +#: mod/admin.php:1121 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "" -#: mod/admin.php:1116 +#: mod/admin.php:1122 msgid "Maximum Load Average" msgstr "" -#: mod/admin.php:1116 +#: mod/admin.php:1122 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "" -#: mod/admin.php:1117 +#: mod/admin.php:1123 msgid "Maximum Load Average (Frontend)" msgstr "" -#: mod/admin.php:1117 +#: mod/admin.php:1123 msgid "Maximum system load before the frontend quits service - default 50." msgstr "" -#: mod/admin.php:1118 +#: mod/admin.php:1124 msgid "Minimal Memory" msgstr "" -#: mod/admin.php:1118 +#: mod/admin.php:1124 msgid "" "Minimal free memory in MB for the poller. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "" -#: mod/admin.php:1119 +#: mod/admin.php:1125 msgid "Maximum table size for optimization" msgstr "" -#: mod/admin.php:1119 +#: mod/admin.php:1125 msgid "" "Maximum table size (in MB) for the automatic optimization - default 100 MB. " "Enter -1 to disable it." msgstr "" -#: mod/admin.php:1120 +#: mod/admin.php:1126 msgid "Minimum level of fragmentation" msgstr "" -#: mod/admin.php:1120 +#: mod/admin.php:1126 msgid "" "Minimum fragmenation level to start the automatic optimization - default " "value is 30%." msgstr "" -#: mod/admin.php:1122 +#: mod/admin.php:1128 msgid "Periodical check of global contacts" msgstr "" -#: mod/admin.php:1122 +#: mod/admin.php:1128 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:1123 +#: mod/admin.php:1129 msgid "Days between requery" msgstr "" -#: mod/admin.php:1123 +#: mod/admin.php:1129 msgid "Number of days after which a server is requeried for his contacts." msgstr "" -#: mod/admin.php:1124 +#: mod/admin.php:1130 msgid "Discover contacts from other servers" msgstr "" -#: mod/admin.php:1124 +#: mod/admin.php:1130 msgid "" "Periodically query other servers for contacts. You can choose between " "'users': the users on the remote system, 'Global Contacts': active contacts " @@ -8209,32 +6799,32 @@ msgid "" "Global Contacts'." msgstr "" -#: mod/admin.php:1125 +#: mod/admin.php:1131 msgid "Timeframe for fetching global contacts" msgstr "" -#: mod/admin.php:1125 +#: mod/admin.php:1131 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:1126 +#: mod/admin.php:1132 msgid "Search the local directory" msgstr "" -#: mod/admin.php:1126 +#: mod/admin.php:1132 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:1128 +#: mod/admin.php:1134 msgid "Publish server information" msgstr "" -#: mod/admin.php:1128 +#: mod/admin.php:1134 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 " @@ -8242,133 +6832,133 @@ msgid "" "href='http://the-federation.info/'>the-federation.info for details." msgstr "" -#: mod/admin.php:1130 +#: mod/admin.php:1136 msgid "Suppress Tags" msgstr "" -#: mod/admin.php:1130 +#: mod/admin.php:1136 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "" -#: mod/admin.php:1131 +#: mod/admin.php:1137 msgid "Path to item cache" msgstr "" -#: mod/admin.php:1131 +#: mod/admin.php:1137 msgid "The item caches buffers generated bbcode and external images." msgstr "" -#: mod/admin.php:1132 +#: mod/admin.php:1138 msgid "Cache duration in seconds" msgstr "" -#: mod/admin.php:1132 +#: mod/admin.php:1138 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:1133 +#: mod/admin.php:1139 msgid "Maximum numbers of comments per post" msgstr "" -#: mod/admin.php:1133 +#: mod/admin.php:1139 msgid "How much comments should be shown for each post? Default value is 100." msgstr "" -#: mod/admin.php:1134 +#: mod/admin.php:1140 msgid "Temp path" msgstr "" -#: mod/admin.php:1134 +#: mod/admin.php:1140 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:1135 +#: mod/admin.php:1141 msgid "Base path to installation" msgstr "" -#: mod/admin.php:1135 +#: mod/admin.php:1141 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:1136 +#: mod/admin.php:1142 msgid "Disable picture proxy" msgstr "" -#: mod/admin.php:1136 +#: mod/admin.php:1142 msgid "" "The picture proxy increases performance and privacy. It shouldn't be used on " "systems with very low bandwith." msgstr "" -#: mod/admin.php:1137 +#: mod/admin.php:1143 msgid "Only search in tags" msgstr "" -#: mod/admin.php:1137 +#: mod/admin.php:1143 msgid "On large systems the text search can slow down the system extremely." msgstr "" -#: mod/admin.php:1139 +#: mod/admin.php:1145 msgid "New base url" msgstr "" -#: mod/admin.php:1139 +#: mod/admin.php:1145 msgid "" "Change base url for this server. Sends relocate message to all DFRN contacts " "of all users." msgstr "" -#: mod/admin.php:1141 +#: mod/admin.php:1147 msgid "RINO Encryption" msgstr "" -#: mod/admin.php:1141 +#: mod/admin.php:1147 msgid "Encryption layer between nodes." msgstr "" -#: mod/admin.php:1143 +#: mod/admin.php:1149 msgid "Maximum number of parallel workers" msgstr "" -#: mod/admin.php:1143 +#: mod/admin.php:1149 msgid "" "On shared hosters set this to 2. On larger systems, values of 10 are great. " "Default value is 4." msgstr "" -#: mod/admin.php:1144 +#: mod/admin.php:1150 msgid "Don't use 'proc_open' with the worker" msgstr "" -#: mod/admin.php:1144 +#: mod/admin.php:1150 msgid "" "Enable this if your system doesn't allow the use of 'proc_open'. This can " "happen on shared hosters. If this is enabled you should increase the " "frequency of poller calls in your crontab." msgstr "" -#: mod/admin.php:1145 +#: mod/admin.php:1151 msgid "Enable fastlane" msgstr "" -#: mod/admin.php:1145 +#: mod/admin.php:1151 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes " "with higher priority are blocked by processes of lower priority." msgstr "" -#: mod/admin.php:1146 +#: mod/admin.php:1152 msgid "Enable frontend worker" msgstr "" -#: mod/admin.php:1146 +#: mod/admin.php:1152 msgid "" "When enabled the Worker process is triggered when backend access is " "performed (e.g. messages being delivered). On smaller sites you might want " @@ -8377,66 +6967,66 @@ msgid "" "on your server. The worker background process needs to be activated for this." msgstr "" -#: mod/admin.php:1176 +#: mod/admin.php:1182 msgid "Update has been marked successful" msgstr "" -#: mod/admin.php:1184 +#: mod/admin.php:1190 #, php-format msgid "Database structure update %s was successfully applied." msgstr "" -#: mod/admin.php:1187 +#: mod/admin.php:1193 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "" -#: mod/admin.php:1201 +#: mod/admin.php:1207 #, php-format msgid "Executing %s failed with error: %s" msgstr "" -#: mod/admin.php:1204 +#: mod/admin.php:1210 #, php-format msgid "Update %s was successfully applied." msgstr "" -#: mod/admin.php:1207 +#: mod/admin.php:1213 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "" -#: mod/admin.php:1210 +#: mod/admin.php:1216 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "" -#: mod/admin.php:1230 +#: mod/admin.php:1236 msgid "No failed updates." msgstr "" -#: mod/admin.php:1231 +#: mod/admin.php:1237 msgid "Check database structure" msgstr "" -#: mod/admin.php:1236 +#: mod/admin.php:1242 msgid "Failed Updates" msgstr "" -#: mod/admin.php:1237 +#: mod/admin.php:1243 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "" -#: mod/admin.php:1238 +#: mod/admin.php:1244 msgid "Mark success (if update was manually applied)" msgstr "" -#: mod/admin.php:1239 +#: mod/admin.php:1245 msgid "Attempt to execute this update step automatically" msgstr "" -#: mod/admin.php:1273 +#: mod/admin.php:1279 #, php-format msgid "" "\n" @@ -8444,7 +7034,7 @@ msgid "" "\t\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: mod/admin.php:1276 +#: mod/admin.php:1282 #, php-format msgid "" "\n" @@ -8480,158 +7070,172 @@ msgid "" "\t\t\tThank you and welcome to %4$s." msgstr "" -#: mod/admin.php:1320 +#: mod/admin.php:1326 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" msgstr[0] "" msgstr[1] "" -#: mod/admin.php:1327 +#: mod/admin.php:1333 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "" msgstr[1] "" -#: mod/admin.php:1374 +#: mod/admin.php:1380 #, php-format msgid "User '%s' deleted" msgstr "" -#: mod/admin.php:1382 +#: mod/admin.php:1388 #, php-format msgid "User '%s' unblocked" msgstr "" -#: mod/admin.php:1382 +#: mod/admin.php:1388 #, php-format msgid "User '%s' blocked" msgstr "" -#: mod/admin.php:1490 mod/admin.php:1516 +#: mod/admin.php:1496 mod/admin.php:1522 msgid "Register date" msgstr "" -#: mod/admin.php:1490 mod/admin.php:1516 +#: mod/admin.php:1496 mod/admin.php:1522 msgid "Last login" msgstr "" -#: mod/admin.php:1490 mod/admin.php:1516 +#: mod/admin.php:1496 mod/admin.php:1522 msgid "Last item" msgstr "" -#: mod/admin.php:1499 -msgid "Add User" -msgstr "" - -#: mod/admin.php:1500 -msgid "select all" -msgstr "" - -#: mod/admin.php:1501 -msgid "User registrations waiting for confirm" -msgstr "" - -#: mod/admin.php:1502 -msgid "User waiting for permanent deletion" -msgstr "" - -#: mod/admin.php:1503 -msgid "Request date" -msgstr "" - -#: mod/admin.php:1504 -msgid "No registrations." +#: mod/admin.php:1496 mod/settings.php:45 +msgid "Account" msgstr "" #: mod/admin.php:1505 -msgid "Note from the user" +msgid "Add User" +msgstr "" + +#: mod/admin.php:1506 +msgid "select all" msgstr "" #: mod/admin.php:1507 -msgid "Deny" +msgid "User registrations waiting for confirm" +msgstr "" + +#: mod/admin.php:1508 +msgid "User waiting for permanent deletion" +msgstr "" + +#: mod/admin.php:1509 +msgid "Request date" +msgstr "" + +#: mod/admin.php:1510 +msgid "No registrations." msgstr "" #: mod/admin.php:1511 +msgid "Note from the user" +msgstr "" + +#: mod/admin.php:1513 +msgid "Deny" +msgstr "" + +#: mod/admin.php:1515 mod/contacts.php:616 mod/contacts.php:816 +#: mod/contacts.php:994 +msgid "Block" +msgstr "" + +#: mod/admin.php:1516 mod/contacts.php:616 mod/contacts.php:816 +#: mod/contacts.php:994 +msgid "Unblock" +msgstr "" + +#: mod/admin.php:1517 msgid "Site admin" msgstr "" -#: mod/admin.php:1512 +#: mod/admin.php:1518 msgid "Account expired" msgstr "" -#: mod/admin.php:1515 +#: mod/admin.php:1521 msgid "New User" msgstr "" -#: mod/admin.php:1516 +#: mod/admin.php:1522 msgid "Deleted since" msgstr "" -#: mod/admin.php:1521 +#: mod/admin.php:1527 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:1522 +#: mod/admin.php:1528 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:1532 +#: mod/admin.php:1538 msgid "Name of the new user." msgstr "" -#: mod/admin.php:1533 +#: mod/admin.php:1539 msgid "Nickname" msgstr "" -#: mod/admin.php:1533 +#: mod/admin.php:1539 msgid "Nickname of the new user." msgstr "" -#: mod/admin.php:1534 +#: mod/admin.php:1540 msgid "Email address of the new user." msgstr "" -#: mod/admin.php:1577 +#: mod/admin.php:1583 #, php-format msgid "Plugin %s disabled." msgstr "" -#: mod/admin.php:1581 +#: mod/admin.php:1587 #, php-format msgid "Plugin %s enabled." msgstr "" -#: mod/admin.php:1592 mod/admin.php:1844 +#: mod/admin.php:1598 mod/admin.php:1850 msgid "Disable" msgstr "" -#: mod/admin.php:1594 mod/admin.php:1846 +#: mod/admin.php:1600 mod/admin.php:1852 msgid "Enable" msgstr "" -#: mod/admin.php:1617 mod/admin.php:1893 +#: mod/admin.php:1623 mod/admin.php:1899 msgid "Toggle" msgstr "" -#: mod/admin.php:1625 mod/admin.php:1902 +#: mod/admin.php:1631 mod/admin.php:1908 msgid "Author: " msgstr "" -#: mod/admin.php:1626 mod/admin.php:1903 +#: mod/admin.php:1632 mod/admin.php:1909 msgid "Maintainer: " msgstr "" -#: mod/admin.php:1681 +#: mod/admin.php:1687 msgid "Reload active plugins" msgstr "" -#: mod/admin.php:1686 +#: mod/admin.php:1692 #, php-format msgid "" "There are currently no plugins available on your node. You can find the " @@ -8639,70 +7243,70 @@ msgid "" "in the open plugin registry at %2$s" msgstr "" -#: mod/admin.php:1805 +#: mod/admin.php:1811 msgid "No themes found." msgstr "" -#: mod/admin.php:1884 +#: mod/admin.php:1890 msgid "Screenshot" msgstr "" -#: mod/admin.php:1944 +#: mod/admin.php:1950 msgid "Reload active themes" msgstr "" -#: mod/admin.php:1949 +#: mod/admin.php:1955 #, php-format msgid "No themes found on the system. They should be paced in %1$s" msgstr "" -#: mod/admin.php:1950 +#: mod/admin.php:1956 msgid "[Experimental]" msgstr "" -#: mod/admin.php:1951 +#: mod/admin.php:1957 msgid "[Unsupported]" msgstr "" -#: mod/admin.php:1975 +#: mod/admin.php:1981 msgid "Log settings updated." msgstr "" -#: mod/admin.php:2007 +#: mod/admin.php:2013 msgid "PHP log currently enabled." msgstr "" -#: mod/admin.php:2009 +#: mod/admin.php:2015 msgid "PHP log currently disabled." msgstr "" -#: mod/admin.php:2018 +#: mod/admin.php:2024 msgid "Clear" msgstr "" -#: mod/admin.php:2023 +#: mod/admin.php:2029 msgid "Enable Debugging" msgstr "" -#: mod/admin.php:2024 +#: mod/admin.php:2030 msgid "Log file" msgstr "" -#: mod/admin.php:2024 +#: mod/admin.php:2030 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "" -#: mod/admin.php:2025 +#: mod/admin.php:2031 msgid "Log level" msgstr "" -#: mod/admin.php:2028 +#: mod/admin.php:2034 msgid "PHP logging" msgstr "" -#: mod/admin.php:2029 +#: mod/admin.php:2035 msgid "" "To enable logging of PHP errors and warnings you can add the following to " "the .htconfig.php file of your installation. The filename set in the " @@ -8711,87 +7315,1445 @@ msgid "" "'display_errors' is to enable these options, set to '0' to disable them." msgstr "" -#: mod/admin.php:2160 +#: mod/admin.php:2165 mod/admin.php:2166 mod/settings.php:783 +msgid "Off" +msgstr "" + +#: mod/admin.php:2165 mod/admin.php:2166 mod/settings.php:783 +msgid "On" +msgstr "" + +#: mod/admin.php:2166 #, php-format msgid "Lock feature %s" msgstr "" -#: mod/admin.php:2168 +#: mod/admin.php:2174 msgid "Manage Additional Features" msgstr "" -#: object/Item.php:359 +#: mod/contacts.php:137 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "" +msgstr[1] "" + +#: mod/contacts.php:172 mod/contacts.php:381 +msgid "Could not access contact record." +msgstr "" + +#: mod/contacts.php:186 +msgid "Could not locate selected profile." +msgstr "" + +#: mod/contacts.php:219 +msgid "Contact updated." +msgstr "" + +#: mod/contacts.php:402 +msgid "Contact has been blocked" +msgstr "" + +#: mod/contacts.php:402 +msgid "Contact has been unblocked" +msgstr "" + +#: mod/contacts.php:413 +msgid "Contact has been ignored" +msgstr "" + +#: mod/contacts.php:413 +msgid "Contact has been unignored" +msgstr "" + +#: mod/contacts.php:425 +msgid "Contact has been archived" +msgstr "" + +#: mod/contacts.php:425 +msgid "Contact has been unarchived" +msgstr "" + +#: mod/contacts.php:450 +msgid "Drop contact" +msgstr "" + +#: mod/contacts.php:453 mod/contacts.php:812 +msgid "Do you really want to delete this contact?" +msgstr "" + +#: mod/contacts.php:472 +msgid "Contact has been removed." +msgstr "" + +#: mod/contacts.php:509 +#, php-format +msgid "You are mutual friends with %s" +msgstr "" + +#: mod/contacts.php:513 +#, php-format +msgid "You are sharing with %s" +msgstr "" + +#: mod/contacts.php:518 +#, php-format +msgid "%s is sharing with you" +msgstr "" + +#: mod/contacts.php:538 +msgid "Private communications are not available for this contact." +msgstr "" + +#: mod/contacts.php:545 +msgid "(Update was successful)" +msgstr "" + +#: mod/contacts.php:545 +msgid "(Update was not successful)" +msgstr "" + +#: mod/contacts.php:547 mod/contacts.php:975 +msgid "Suggest friends" +msgstr "" + +#: mod/contacts.php:551 +#, php-format +msgid "Network type: %s" +msgstr "" + +#: mod/contacts.php:564 +msgid "Communications lost with this contact!" +msgstr "" + +#: mod/contacts.php:567 +msgid "Fetch further information for feeds" +msgstr "" + +#: mod/contacts.php:568 +msgid "Fetch information" +msgstr "" + +#: mod/contacts.php:568 +msgid "Fetch information and keywords" +msgstr "" + +#: mod/contacts.php:586 +msgid "Contact" +msgstr "" + +#: mod/contacts.php:589 +msgid "Profile Visibility" +msgstr "" + +#: mod/contacts.php:590 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "" + +#: mod/contacts.php:591 +msgid "Contact Information / Notes" +msgstr "" + +#: mod/contacts.php:592 +msgid "Edit contact notes" +msgstr "" + +#: mod/contacts.php:598 +msgid "Block/Unblock contact" +msgstr "" + +#: mod/contacts.php:599 +msgid "Ignore contact" +msgstr "" + +#: mod/contacts.php:600 +msgid "Repair URL settings" +msgstr "" + +#: mod/contacts.php:601 +msgid "View conversations" +msgstr "" + +#: mod/contacts.php:607 +msgid "Last update:" +msgstr "" + +#: mod/contacts.php:609 +msgid "Update public posts" +msgstr "" + +#: mod/contacts.php:611 mod/contacts.php:985 +msgid "Update now" +msgstr "" + +#: mod/contacts.php:617 mod/contacts.php:817 mod/contacts.php:1002 +msgid "Unignore" +msgstr "" + +#: mod/contacts.php:621 +msgid "Currently blocked" +msgstr "" + +#: mod/contacts.php:622 +msgid "Currently ignored" +msgstr "" + +#: mod/contacts.php:623 +msgid "Currently archived" +msgstr "" + +#: mod/contacts.php:624 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "" + +#: mod/contacts.php:625 +msgid "Notification for new posts" +msgstr "" + +#: mod/contacts.php:625 +msgid "Send a notification of every new post of this contact" +msgstr "" + +#: mod/contacts.php:628 +msgid "Blacklisted keywords" +msgstr "" + +#: mod/contacts.php:628 +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 +msgid "Actions" +msgstr "" + +#: mod/contacts.php:649 +msgid "Contact Settings" +msgstr "" + +#: mod/contacts.php:695 +msgid "Suggestions" +msgstr "" + +#: mod/contacts.php:698 +msgid "Suggest potential friends" +msgstr "" + +#: mod/contacts.php:706 +msgid "Show all contacts" +msgstr "" + +#: mod/contacts.php:711 +msgid "Unblocked" +msgstr "" + +#: mod/contacts.php:714 +msgid "Only show unblocked contacts" +msgstr "" + +#: mod/contacts.php:720 +msgid "Blocked" +msgstr "" + +#: mod/contacts.php:723 +msgid "Only show blocked contacts" +msgstr "" + +#: mod/contacts.php:729 +msgid "Ignored" +msgstr "" + +#: mod/contacts.php:732 +msgid "Only show ignored contacts" +msgstr "" + +#: mod/contacts.php:738 +msgid "Archived" +msgstr "" + +#: mod/contacts.php:741 +msgid "Only show archived contacts" +msgstr "" + +#: mod/contacts.php:747 +msgid "Hidden" +msgstr "" + +#: mod/contacts.php:750 +msgid "Only show hidden contacts" +msgstr "" + +#: mod/contacts.php:807 +msgid "Search your contacts" +msgstr "" + +#: mod/contacts.php:815 mod/settings.php:162 mod/settings.php:708 +msgid "Update" +msgstr "" + +#: mod/contacts.php:818 mod/contacts.php:1010 +msgid "Archive" +msgstr "" + +#: mod/contacts.php:818 mod/contacts.php:1010 +msgid "Unarchive" +msgstr "" + +#: mod/contacts.php:821 +msgid "Batch Actions" +msgstr "" + +#: mod/contacts.php:867 +msgid "View all contacts" +msgstr "" + +#: mod/contacts.php:877 +msgid "View all common friends" +msgstr "" + +#: mod/contacts.php:884 +msgid "Advanced Contact Settings" +msgstr "" + +#: mod/contacts.php:918 +msgid "Mutual Friendship" +msgstr "" + +#: mod/contacts.php:922 +msgid "is a fan of yours" +msgstr "" + +#: mod/contacts.php:926 +msgid "you are a fan of" +msgstr "" + +#: mod/contacts.php:996 +msgid "Toggle Blocked status" +msgstr "" + +#: mod/contacts.php:1004 +msgid "Toggle Ignored status" +msgstr "" + +#: mod/contacts.php:1012 +msgid "Toggle Archive status" +msgstr "" + +#: mod/contacts.php:1020 +msgid "Delete contact" +msgstr "" + +#: mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "" + +#: mod/profile_photo.php:77 mod/profile_photo.php:85 mod/profile_photo.php:93 +#: mod/profile_photo.php:322 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "" + +#: mod/profile_photo.php:127 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "" + +#: mod/profile_photo.php:136 +msgid "Unable to process image" +msgstr "" + +#: mod/profile_photo.php:253 +msgid "Upload File:" +msgstr "" + +#: mod/profile_photo.php:254 +msgid "Select a profile:" +msgstr "" + +#: mod/profile_photo.php:256 +msgid "Upload" +msgstr "" + +#: mod/profile_photo.php:259 +msgid "or" +msgstr "" + +#: mod/profile_photo.php:259 +msgid "skip this step" +msgstr "" + +#: mod/profile_photo.php:259 +msgid "select a photo from your photo albums" +msgstr "" + +#: mod/profile_photo.php:273 +msgid "Crop Image" +msgstr "" + +#: mod/profile_photo.php:274 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "" + +#: mod/profile_photo.php:276 +msgid "Done Editing" +msgstr "" + +#: mod/profile_photo.php:312 +msgid "Image uploaded successfully." +msgstr "" + +#: mod/profiles.php:42 +msgid "Profile deleted." +msgstr "" + +#: mod/profiles.php:58 mod/profiles.php:94 +msgid "Profile-" +msgstr "" + +#: mod/profiles.php:77 mod/profiles.php:122 +msgid "New profile created." +msgstr "" + +#: mod/profiles.php:100 +msgid "Profile unavailable to clone." +msgstr "" + +#: mod/profiles.php:196 +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: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 "XMPP" +msgstr "" + +#: mod/profiles.php:375 +msgid "Homepage" +msgstr "" + +#: mod/profiles.php:379 mod/profiles.php:698 +msgid "Interests" +msgstr "" + +#: mod/profiles.php:383 +msgid "Address" +msgstr "" + +#: mod/profiles.php:390 mod/profiles.php:694 +msgid "Location" +msgstr "" + +#: mod/profiles.php:475 +msgid "Profile updated." +msgstr "" + +#: mod/profiles.php:567 +msgid " and " +msgstr "" + +#: mod/profiles.php:576 +msgid "public profile" +msgstr "" + +#: mod/profiles.php:579 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "" + +#: mod/profiles.php:580 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr "" + +#: mod/profiles.php:582 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "" + +#: mod/profiles.php:640 +msgid "Hide contacts and friends:" +msgstr "" + +#: mod/profiles.php:645 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "" + +#: mod/profiles.php:670 +msgid "Show more profile fields:" +msgstr "" + +#: mod/profiles.php:682 +msgid "Profile Actions" +msgstr "" + +#: mod/profiles.php:683 +msgid "Edit Profile Details" +msgstr "" + +#: mod/profiles.php:685 +msgid "Change Profile Photo" +msgstr "" + +#: mod/profiles.php:686 +msgid "View this profile" +msgstr "" + +#: mod/profiles.php:688 +msgid "Create a new profile using these settings" +msgstr "" + +#: mod/profiles.php:689 +msgid "Clone this profile" +msgstr "" + +#: mod/profiles.php:690 +msgid "Delete this profile" +msgstr "" + +#: mod/profiles.php:692 +msgid "Basic information" +msgstr "" + +#: mod/profiles.php:693 +msgid "Profile picture" +msgstr "" + +#: mod/profiles.php:695 +msgid "Preferences" +msgstr "" + +#: mod/profiles.php:696 +msgid "Status information" +msgstr "" + +#: mod/profiles.php:697 +msgid "Additional information" +msgstr "" + +#: mod/profiles.php:700 +msgid "Relation" +msgstr "" + +#: mod/profiles.php:704 +msgid "Your Gender:" +msgstr "" + +#: mod/profiles.php:705 +msgid " Marital Status:" +msgstr "" + +#: mod/profiles.php:707 +msgid "Example: fishing photography software" +msgstr "" + +#: mod/profiles.php:712 +msgid "Profile Name:" +msgstr "" + +#: mod/profiles.php:714 +msgid "" +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "" + +#: mod/profiles.php:715 +msgid "Your Full Name:" +msgstr "" + +#: mod/profiles.php:716 +msgid "Title/Description:" +msgstr "" + +#: mod/profiles.php:719 +msgid "Street Address:" +msgstr "" + +#: mod/profiles.php:720 +msgid "Locality/City:" +msgstr "" + +#: mod/profiles.php:721 +msgid "Region/State:" +msgstr "" + +#: mod/profiles.php:722 +msgid "Postal/Zip Code:" +msgstr "" + +#: mod/profiles.php:723 +msgid "Country:" +msgstr "" + +#: mod/profiles.php:727 +msgid "Who: (if applicable)" +msgstr "" + +#: mod/profiles.php:727 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "" + +#: mod/profiles.php:728 +msgid "Since [date]:" +msgstr "" + +#: mod/profiles.php:730 +msgid "Tell us about yourself..." +msgstr "" + +#: mod/profiles.php:731 +msgid "XMPP (Jabber) address:" +msgstr "" + +#: mod/profiles.php:731 +msgid "" +"The XMPP address will be propagated to your contacts so that they can follow " +"you." +msgstr "" + +#: mod/profiles.php:732 +msgid "Homepage URL:" +msgstr "" + +#: mod/profiles.php:735 +msgid "Religious Views:" +msgstr "" + +#: mod/profiles.php:736 +msgid "Public Keywords:" +msgstr "" + +#: mod/profiles.php:736 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "" + +#: mod/profiles.php:737 +msgid "Private Keywords:" +msgstr "" + +#: mod/profiles.php:737 +msgid "(Used for searching profiles, never shown to others)" +msgstr "" + +#: mod/profiles.php:740 +msgid "Musical interests" +msgstr "" + +#: mod/profiles.php:741 +msgid "Books, literature" +msgstr "" + +#: mod/profiles.php:742 +msgid "Television" +msgstr "" + +#: mod/profiles.php:743 +msgid "Film/dance/culture/entertainment" +msgstr "" + +#: mod/profiles.php:744 +msgid "Hobbies/Interests" +msgstr "" + +#: mod/profiles.php:745 +msgid "Love/romance" +msgstr "" + +#: mod/profiles.php:746 +msgid "Work/employment" +msgstr "" + +#: mod/profiles.php:747 +msgid "School/education" +msgstr "" + +#: mod/profiles.php:748 +msgid "Contact information and Social Networks" +msgstr "" + +#: mod/profiles.php:789 +msgid "Edit/Manage Profiles" +msgstr "" + +#: mod/settings.php:62 +msgid "Display" +msgstr "" + +#: mod/settings.php:69 mod/settings.php:891 +msgid "Social Networks" +msgstr "" + +#: mod/settings.php:90 +msgid "Connected apps" +msgstr "" + +#: mod/settings.php:104 +msgid "Remove account" +msgstr "" + +#: mod/settings.php:159 +msgid "Missing some important data!" +msgstr "" + +#: mod/settings.php:273 +msgid "Failed to connect with email account using the settings provided." +msgstr "" + +#: mod/settings.php:278 +msgid "Email settings updated." +msgstr "" + +#: mod/settings.php:293 +msgid "Features updated" +msgstr "" + +#: mod/settings.php:363 +msgid "Relocate message has been send to your contacts" +msgstr "" + +#: mod/settings.php:382 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "" + +#: mod/settings.php:390 +msgid "Wrong password." +msgstr "" + +#: mod/settings.php:401 +msgid "Password changed." +msgstr "" + +#: mod/settings.php:403 +msgid "Password update failed. Please try again." +msgstr "" + +#: mod/settings.php:483 +msgid " Please use a shorter name." +msgstr "" + +#: mod/settings.php:485 +msgid " Name too short." +msgstr "" + +#: mod/settings.php:494 +msgid "Wrong Password" +msgstr "" + +#: mod/settings.php:499 +msgid " Not valid email." +msgstr "" + +#: mod/settings.php:505 +msgid " Cannot change to that email." +msgstr "" + +#: mod/settings.php:561 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "" + +#: mod/settings.php:565 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "" + +#: mod/settings.php:605 +msgid "Settings updated." +msgstr "" + +#: mod/settings.php:681 mod/settings.php:707 mod/settings.php:743 +msgid "Add application" +msgstr "" + +#: mod/settings.php:685 mod/settings.php:711 +msgid "Consumer Key" +msgstr "" + +#: mod/settings.php:686 mod/settings.php:712 +msgid "Consumer Secret" +msgstr "" + +#: mod/settings.php:687 mod/settings.php:713 +msgid "Redirect" +msgstr "" + +#: mod/settings.php:688 mod/settings.php:714 +msgid "Icon url" +msgstr "" + +#: mod/settings.php:699 +msgid "You can't edit this application." +msgstr "" + +#: mod/settings.php:742 +msgid "Connected Apps" +msgstr "" + +#: mod/settings.php:746 +msgid "Client key starts with" +msgstr "" + +#: mod/settings.php:747 +msgid "No name" +msgstr "" + +#: mod/settings.php:748 +msgid "Remove authorization" +msgstr "" + +#: mod/settings.php:760 +msgid "No Plugin settings configured" +msgstr "" + +#: mod/settings.php:769 +msgid "Plugin Settings" +msgstr "" + +#: mod/settings.php:791 +msgid "Additional Features" +msgstr "" + +#: mod/settings.php:801 mod/settings.php:805 +msgid "General Social Media Settings" +msgstr "" + +#: mod/settings.php:811 +msgid "Disable intelligent shortening" +msgstr "" + +#: mod/settings.php:813 +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:819 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "" + +#: mod/settings.php:821 +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:827 +msgid "Default group for OStatus contacts" +msgstr "" + +#: mod/settings.php:835 +msgid "Your legacy GNU Social account" +msgstr "" + +#: mod/settings.php:837 +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:840 +msgid "Repair OStatus subscriptions" +msgstr "" + +#: mod/settings.php:849 mod/settings.php:850 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "" + +#: mod/settings.php:849 mod/settings.php:850 +msgid "enabled" +msgstr "" + +#: mod/settings.php:849 mod/settings.php:850 +msgid "disabled" +msgstr "" + +#: mod/settings.php:850 +msgid "GNU Social (OStatus)" +msgstr "" + +#: mod/settings.php:884 +msgid "Email access is disabled on this site." +msgstr "" + +#: mod/settings.php:896 +msgid "Email/Mailbox Setup" +msgstr "" + +#: mod/settings.php:897 +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:898 +msgid "Last successful email check:" +msgstr "" + +#: mod/settings.php:900 +msgid "IMAP server name:" +msgstr "" + +#: mod/settings.php:901 +msgid "IMAP port:" +msgstr "" + +#: mod/settings.php:902 +msgid "Security:" +msgstr "" + +#: mod/settings.php:902 mod/settings.php:907 +msgid "None" +msgstr "" + +#: mod/settings.php:903 +msgid "Email login name:" +msgstr "" + +#: mod/settings.php:904 +msgid "Email password:" +msgstr "" + +#: mod/settings.php:905 +msgid "Reply-to address:" +msgstr "" + +#: mod/settings.php:906 +msgid "Send public posts to all email contacts:" +msgstr "" + +#: mod/settings.php:907 +msgid "Action after import:" +msgstr "" + +#: mod/settings.php:907 +msgid "Move to folder" +msgstr "" + +#: mod/settings.php:908 +msgid "Move to folder:" +msgstr "" + +#: mod/settings.php:1004 +msgid "Display Settings" +msgstr "" + +#: mod/settings.php:1010 mod/settings.php:1033 +msgid "Display Theme:" +msgstr "" + +#: mod/settings.php:1011 +msgid "Mobile Theme:" +msgstr "" + +#: mod/settings.php:1012 +msgid "Suppress warning of insecure networks" +msgstr "" + +#: mod/settings.php:1012 +msgid "" +"Should the system suppress the warning that the current group contains " +"members of networks that can't receive non public postings." +msgstr "" + +#: mod/settings.php:1013 +msgid "Update browser every xx seconds" +msgstr "" + +#: mod/settings.php:1013 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "" + +#: mod/settings.php:1014 +msgid "Number of items to display per page:" +msgstr "" + +#: mod/settings.php:1014 mod/settings.php:1015 +msgid "Maximum of 100 items" +msgstr "" + +#: mod/settings.php:1015 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "" + +#: mod/settings.php:1016 +msgid "Don't show emoticons" +msgstr "" + +#: mod/settings.php:1017 +msgid "Calendar" +msgstr "" + +#: mod/settings.php:1018 +msgid "Beginning of week:" +msgstr "" + +#: mod/settings.php:1019 +msgid "Don't show notices" +msgstr "" + +#: mod/settings.php:1020 +msgid "Infinite scroll" +msgstr "" + +#: mod/settings.php:1021 +msgid "Automatic updates only at the top of the network page" +msgstr "" + +#: mod/settings.php:1022 +msgid "Bandwith Saver Mode" +msgstr "" + +#: mod/settings.php:1022 +msgid "" +"When enabled, embedded content is not displayed on automatic updates, they " +"only show on page reload." +msgstr "" + +#: mod/settings.php:1024 +msgid "General Theme Settings" +msgstr "" + +#: mod/settings.php:1025 +msgid "Custom Theme Settings" +msgstr "" + +#: mod/settings.php:1026 +msgid "Content Settings" +msgstr "" + +#: mod/settings.php:1027 view/theme/duepuntozero/config.php:66 +#: view/theme/frio/config.php:69 view/theme/quattro/config.php:72 +#: view/theme/vier/config.php:115 +msgid "Theme settings" +msgstr "" + +#: mod/settings.php:1111 +msgid "Account Types" +msgstr "" + +#: mod/settings.php:1112 +msgid "Personal Page Subtypes" +msgstr "" + +#: mod/settings.php:1113 +msgid "Community Forum Subtypes" +msgstr "" + +#: mod/settings.php:1120 +msgid "Personal Page" +msgstr "" + +#: mod/settings.php:1121 +msgid "This account is a regular personal profile" +msgstr "" + +#: mod/settings.php:1124 +msgid "Organisation Page" +msgstr "" + +#: mod/settings.php:1125 +msgid "This account is a profile for an organisation" +msgstr "" + +#: mod/settings.php:1128 +msgid "News Page" +msgstr "" + +#: mod/settings.php:1129 +msgid "This account is a news account/reflector" +msgstr "" + +#: mod/settings.php:1132 +msgid "Community Forum" +msgstr "" + +#: mod/settings.php:1133 +msgid "" +"This account is a community forum where people can discuss with each other" +msgstr "" + +#: mod/settings.php:1136 +msgid "Normal Account Page" +msgstr "" + +#: mod/settings.php:1137 +msgid "This account is a normal personal profile" +msgstr "" + +#: mod/settings.php:1140 +msgid "Soapbox Page" +msgstr "" + +#: mod/settings.php:1141 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "" + +#: mod/settings.php:1144 +msgid "Public Forum" +msgstr "" + +#: mod/settings.php:1145 +msgid "Automatically approve all contact requests" +msgstr "" + +#: mod/settings.php:1148 +msgid "Automatic Friend Page" +msgstr "" + +#: mod/settings.php:1149 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "" + +#: mod/settings.php:1152 +msgid "Private Forum [Experimental]" +msgstr "" + +#: mod/settings.php:1153 +msgid "Private forum - approved members only" +msgstr "" + +#: mod/settings.php:1164 +msgid "OpenID:" +msgstr "" + +#: mod/settings.php:1164 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "" + +#: mod/settings.php:1172 +msgid "Publish your default profile in your local site directory?" +msgstr "" + +#: mod/settings.php:1172 +msgid "Your profile may be visible in public." +msgstr "" + +#: mod/settings.php:1178 +msgid "Publish your default profile in the global social directory?" +msgstr "" + +#: mod/settings.php:1185 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "" + +#: mod/settings.php:1189 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "" + +#: mod/settings.php:1194 +msgid "Allow friends to post to your profile page?" +msgstr "" + +#: mod/settings.php:1199 +msgid "Allow friends to tag your posts?" +msgstr "" + +#: mod/settings.php:1204 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "" + +#: mod/settings.php:1209 +msgid "Permit unknown people to send you private mail?" +msgstr "" + +#: mod/settings.php:1217 +msgid "Profile is not published." +msgstr "" + +#: mod/settings.php:1225 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "" + +#: mod/settings.php:1232 +msgid "Automatically expire posts after this many days:" +msgstr "" + +#: mod/settings.php:1232 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "" + +#: mod/settings.php:1233 +msgid "Advanced expiration settings" +msgstr "" + +#: mod/settings.php:1234 +msgid "Advanced Expiration" +msgstr "" + +#: mod/settings.php:1235 +msgid "Expire posts:" +msgstr "" + +#: mod/settings.php:1236 +msgid "Expire personal notes:" +msgstr "" + +#: mod/settings.php:1237 +msgid "Expire starred posts:" +msgstr "" + +#: mod/settings.php:1238 +msgid "Expire photos:" +msgstr "" + +#: mod/settings.php:1239 +msgid "Only expire posts by others:" +msgstr "" + +#: mod/settings.php:1270 +msgid "Account Settings" +msgstr "" + +#: mod/settings.php:1278 +msgid "Password Settings" +msgstr "" + +#: mod/settings.php:1280 +msgid "Leave password fields blank unless changing" +msgstr "" + +#: mod/settings.php:1281 +msgid "Current Password:" +msgstr "" + +#: mod/settings.php:1281 mod/settings.php:1282 +msgid "Your current password to confirm the changes" +msgstr "" + +#: mod/settings.php:1282 +msgid "Password:" +msgstr "" + +#: mod/settings.php:1286 +msgid "Basic Settings" +msgstr "" + +#: mod/settings.php:1288 +msgid "Email Address:" +msgstr "" + +#: mod/settings.php:1289 +msgid "Your Timezone:" +msgstr "" + +#: mod/settings.php:1290 +msgid "Your Language:" +msgstr "" + +#: mod/settings.php:1290 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "" + +#: mod/settings.php:1291 +msgid "Default Post Location:" +msgstr "" + +#: mod/settings.php:1292 +msgid "Use Browser Location:" +msgstr "" + +#: mod/settings.php:1295 +msgid "Security and Privacy Settings" +msgstr "" + +#: mod/settings.php:1297 +msgid "Maximum Friend Requests/Day:" +msgstr "" + +#: mod/settings.php:1297 mod/settings.php:1327 +msgid "(to prevent spam abuse)" +msgstr "" + +#: mod/settings.php:1298 +msgid "Default Post Permissions" +msgstr "" + +#: mod/settings.php:1299 +msgid "(click to open/close)" +msgstr "" + +#: mod/settings.php:1310 +msgid "Default Private Post" +msgstr "" + +#: mod/settings.php:1311 +msgid "Default Public Post" +msgstr "" + +#: mod/settings.php:1315 +msgid "Default Permissions for New Posts" +msgstr "" + +#: mod/settings.php:1327 +msgid "Maximum private messages per day from unknown people:" +msgstr "" + +#: mod/settings.php:1330 +msgid "Notification Settings" +msgstr "" + +#: mod/settings.php:1331 +msgid "By default post a status message when:" +msgstr "" + +#: mod/settings.php:1332 +msgid "accepting a friend request" +msgstr "" + +#: mod/settings.php:1333 +msgid "joining a forum/community" +msgstr "" + +#: mod/settings.php:1334 +msgid "making an interesting profile change" +msgstr "" + +#: mod/settings.php:1335 +msgid "Send a notification email when:" +msgstr "" + +#: mod/settings.php:1336 +msgid "You receive an introduction" +msgstr "" + +#: mod/settings.php:1337 +msgid "Your introductions are confirmed" +msgstr "" + +#: mod/settings.php:1338 +msgid "Someone writes on your profile wall" +msgstr "" + +#: mod/settings.php:1339 +msgid "Someone writes a followup comment" +msgstr "" + +#: mod/settings.php:1340 +msgid "You receive a private message" +msgstr "" + +#: mod/settings.php:1341 +msgid "You receive a friend suggestion" +msgstr "" + +#: mod/settings.php:1342 +msgid "You are tagged in a post" +msgstr "" + +#: mod/settings.php:1343 +msgid "You are poked/prodded/etc. in a post" +msgstr "" + +#: mod/settings.php:1345 +msgid "Activate desktop notifications" +msgstr "" + +#: mod/settings.php:1345 +msgid "Show desktop popup on new notifications" +msgstr "" + +#: mod/settings.php:1347 +msgid "Text-only notification emails" +msgstr "" + +#: mod/settings.php:1349 +msgid "Send text only notification emails, without the html part" +msgstr "" + +#: mod/settings.php:1351 +msgid "Advanced Account/Page Type Settings" +msgstr "" + +#: mod/settings.php:1352 +msgid "Change the behaviour of this account for special situations" +msgstr "" + +#: mod/settings.php:1355 +msgid "Relocate" +msgstr "" + +#: mod/settings.php:1356 +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:1357 +msgid "Resend relocate message to contacts" +msgstr "" + +#: object/Item.php:356 msgid "via" msgstr "" -#: view/theme/duepuntozero/config.php:44 +#: view/theme/duepuntozero/config.php:47 msgid "greenzero" msgstr "" -#: view/theme/duepuntozero/config.php:45 +#: view/theme/duepuntozero/config.php:48 msgid "purplezero" msgstr "" -#: view/theme/duepuntozero/config.php:46 +#: view/theme/duepuntozero/config.php:49 msgid "easterbunny" msgstr "" -#: view/theme/duepuntozero/config.php:47 +#: view/theme/duepuntozero/config.php:50 msgid "darkzero" msgstr "" -#: view/theme/duepuntozero/config.php:48 +#: view/theme/duepuntozero/config.php:51 msgid "comix" msgstr "" -#: view/theme/duepuntozero/config.php:49 +#: view/theme/duepuntozero/config.php:52 msgid "slackr" msgstr "" -#: view/theme/duepuntozero/config.php:64 +#: view/theme/duepuntozero/config.php:67 msgid "Variations" msgstr "" -#: view/theme/frio/config.php:47 -msgid "Default" -msgstr "" - -#: view/theme/frio/config.php:59 -msgid "Note: " -msgstr "" - -#: view/theme/frio/config.php:59 -msgid "Check image permissions if all users are allowed to visit the image" -msgstr "" - -#: view/theme/frio/config.php:67 -msgid "Select scheme" -msgstr "" - -#: view/theme/frio/config.php:68 -msgid "Navigation bar background color" -msgstr "" - -#: view/theme/frio/config.php:69 -msgid "Navigation bar icon color " -msgstr "" - -#: view/theme/frio/config.php:70 -msgid "Link color" -msgstr "" - -#: view/theme/frio/config.php:71 -msgid "Set the background color" -msgstr "" - -#: view/theme/frio/config.php:72 -msgid "Content background transparency" -msgstr "" - -#: view/theme/frio/config.php:73 -msgid "Set the background image" -msgstr "" - #: view/theme/frio/php/Image.php:23 msgid "Repeat the image" msgstr "" @@ -8824,127 +8786,167 @@ msgstr "" msgid "Resize to best fit and retain aspect ratio." msgstr "" -#: view/theme/frio/theme.php:226 +#: view/theme/frio/config.php:50 +msgid "Default" +msgstr "" + +#: view/theme/frio/config.php:62 +msgid "Note: " +msgstr "" + +#: view/theme/frio/config.php:62 +msgid "Check image permissions if all users are allowed to visit the image" +msgstr "" + +#: view/theme/frio/config.php:70 +msgid "Select scheme" +msgstr "" + +#: view/theme/frio/config.php:71 +msgid "Navigation bar background color" +msgstr "" + +#: view/theme/frio/config.php:72 +msgid "Navigation bar icon color " +msgstr "" + +#: view/theme/frio/config.php:73 +msgid "Link color" +msgstr "" + +#: view/theme/frio/config.php:74 +msgid "Set the background color" +msgstr "" + +#: view/theme/frio/config.php:75 +msgid "Content background transparency" +msgstr "" + +#: view/theme/frio/config.php:76 +msgid "Set the background image" +msgstr "" + +#: view/theme/frio/theme.php:228 msgid "Guest" msgstr "" -#: view/theme/frio/theme.php:232 +#: view/theme/frio/theme.php:234 msgid "Visitor" msgstr "" -#: view/theme/quattro/config.php:70 +#: view/theme/quattro/config.php:73 msgid "Alignment" msgstr "" -#: view/theme/quattro/config.php:70 +#: view/theme/quattro/config.php:73 msgid "Left" msgstr "" -#: view/theme/quattro/config.php:70 +#: view/theme/quattro/config.php:73 msgid "Center" msgstr "" -#: view/theme/quattro/config.php:71 +#: view/theme/quattro/config.php:74 msgid "Color scheme" msgstr "" -#: view/theme/quattro/config.php:72 +#: view/theme/quattro/config.php:75 msgid "Posts font size" msgstr "" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:76 msgid "Textareas font size" msgstr "" -#: view/theme/vier/config.php:69 +#: view/theme/vier/config.php:70 msgid "Comma separated list of helper forums" msgstr "" -#: view/theme/vier/config.php:115 +#: view/theme/vier/config.php:116 msgid "Set style" msgstr "" -#: view/theme/vier/config.php:116 +#: view/theme/vier/config.php:117 msgid "Community Pages" msgstr "" -#: view/theme/vier/config.php:117 view/theme/vier/theme.php:149 +#: view/theme/vier/config.php:118 view/theme/vier/theme.php:151 msgid "Community Profiles" msgstr "" -#: view/theme/vier/config.php:118 +#: view/theme/vier/config.php:119 msgid "Help or @NewHere ?" msgstr "" -#: view/theme/vier/config.php:119 view/theme/vier/theme.php:390 +#: view/theme/vier/config.php:120 view/theme/vier/theme.php:392 msgid "Connect Services" msgstr "" -#: view/theme/vier/config.php:120 view/theme/vier/theme.php:197 +#: view/theme/vier/config.php:121 view/theme/vier/theme.php:199 msgid "Find Friends" msgstr "" -#: view/theme/vier/config.php:121 view/theme/vier/theme.php:179 +#: view/theme/vier/config.php:122 view/theme/vier/theme.php:181 msgid "Last users" msgstr "" -#: view/theme/vier/theme.php:198 +#: view/theme/vier/theme.php:200 msgid "Local Directory" msgstr "" -#: view/theme/vier/theme.php:290 +#: view/theme/vier/theme.php:292 msgid "Quick Start" msgstr "" -#: index.php:433 -msgid "toggle mobile" -msgstr "" - -#: boot.php:999 +#: src/App.php:505 msgid "Delete this item?" msgstr "" -#: boot.php:1001 +#: src/App.php:507 msgid "show fewer" msgstr "" -#: boot.php:1729 +#: index.php:436 +msgid "toggle mobile" +msgstr "" + +#: boot.php:726 #, php-format msgid "Update %s failed. See error logs." msgstr "" -#: boot.php:1843 +#: boot.php:838 msgid "Create a New Account" msgstr "" -#: boot.php:1871 +#: boot.php:866 msgid "Password: " msgstr "" -#: boot.php:1872 +#: boot.php:867 msgid "Remember me" msgstr "" -#: boot.php:1875 +#: boot.php:870 msgid "Or login using OpenID: " msgstr "" -#: boot.php:1881 +#: boot.php:876 msgid "Forgot your password?" msgstr "" -#: boot.php:1884 +#: boot.php:879 msgid "Website Terms of Service" msgstr "" -#: boot.php:1885 +#: boot.php:880 msgid "terms of service" msgstr "" -#: boot.php:1887 +#: boot.php:882 msgid "Website Privacy Policy" msgstr "" -#: boot.php:1888 +#: boot.php:883 msgid "privacy policy" msgstr "" From 67ae517406fafc8b32440126f9e9c257b949182a Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Mon, 29 May 2017 07:21:42 +0200 Subject: [PATCH 052/125] DE translations --- view/lang/de/messages.po | 12461 +++++++++++++++++++------------------ view/lang/de/strings.php | 2340 +++---- 2 files changed, 7402 insertions(+), 7399 deletions(-) diff --git a/view/lang/de/messages.po b/view/lang/de/messages.po index 2cd3d1d5ef..f38e76b21e 100644 --- a/view/lang/de/messages.po +++ b/view/lang/de/messages.po @@ -35,8 +35,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-05-03 07:08+0200\n" -"PO-Revision-Date: 2017-05-05 05:43+0000\n" +"POT-Creation-Date: 2017-05-28 11:09+0200\n" +"PO-Revision-Date: 2017-05-29 05:11+0000\n" "Last-Translator: Tobias Diekershoff \n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" @@ -45,18 +45,382 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1093 -#: view/theme/vier/theme.php:254 +#: include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Unbekannt | Nicht kategorisiert" + +#: include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Sofort blockieren" + +#: include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Zwielichtig, Spammer, Selbstdarsteller" + +#: include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Ist mir bekannt, hab aber keine Meinung" + +#: include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "OK, wahrscheinlich harmlos" + +#: include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Seriös, hat mein Vertrauen" + +#: include/contact_selectors.php:56 mod/admin.php:986 +msgid "Frequently" +msgstr "immer wieder" + +#: include/contact_selectors.php:57 mod/admin.php:987 +msgid "Hourly" +msgstr "Stündlich" + +#: include/contact_selectors.php:58 mod/admin.php:988 +msgid "Twice daily" +msgstr "Zweimal täglich" + +#: include/contact_selectors.php:59 mod/admin.php:989 +msgid "Daily" +msgstr "Täglich" + +#: include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Wöchentlich" + +#: include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Monatlich" + +#: include/contact_selectors.php:76 mod/dfrn_request.php:886 +msgid "Friendica" +msgstr "Friendica" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: include/contact_selectors.php:79 include/contact_selectors.php:86 +#: mod/admin.php:1496 mod/admin.php:1509 mod/admin.php:1522 mod/admin.php:1540 +msgid "Email" +msgstr "E-Mail" + +#: include/contact_selectors.php:80 mod/dfrn_request.php:888 +#: mod/settings.php:849 +msgid "Diaspora" +msgstr "Diaspora" + +#: include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zott" + +#: include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/Chat" + +#: include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" + +#: include/contact_selectors.php:88 +msgid "pump.io" +msgstr "pump.io" + +#: include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" + +#: include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Diaspora" + +#: include/contact_selectors.php:91 +msgid "GNU Social Connector" +msgstr "GNU social Connector" + +#: include/contact_selectors.php:92 +msgid "pnut" +msgstr "pnut" + +#: include/contact_selectors.php:93 +msgid "App.net" +msgstr "App.net" + +#: include/features.php:65 +msgid "General Features" +msgstr "Allgemeine Features" + +#: include/features.php:67 +msgid "Multiple Profiles" +msgstr "Mehrere Profile" + +#: include/features.php:67 +msgid "Ability to create multiple profiles" +msgstr "Möglichkeit mehrere Profile zu erstellen" + +#: include/features.php:68 +msgid "Photo Location" +msgstr "Aufnahmeort" + +#: include/features.php:68 +msgid "" +"Photo metadata is normally stripped. This extracts the location (if present)" +" prior to stripping metadata and links it to a map." +msgstr "Die Foto-Metadaten werden ausgelesen. Dadurch kann der Aufnahmeort (wenn vorhanden) in einer Karte angezeigt werden." + +#: include/features.php:69 +msgid "Export Public Calendar" +msgstr "Öffentlichen Kalender exportieren" + +#: include/features.php:69 +msgid "Ability for visitors to download the public calendar" +msgstr "Möglichkeit für Besucher den öffentlichen Kalender herunter zu laden" + +#: include/features.php:74 +msgid "Post Composition Features" +msgstr "Beitragserstellung Features" + +#: include/features.php:75 +msgid "Post Preview" +msgstr "Beitragsvorschau" + +#: include/features.php:75 +msgid "Allow previewing posts and comments before publishing them" +msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben." + +#: include/features.php:76 +msgid "Auto-mention Forums" +msgstr "Foren automatisch erwähnen" + +#: include/features.php:76 +msgid "" +"Add/remove mention when a forum page is selected/deselected in ACL window." +msgstr "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert wurde." + +#: include/features.php:81 +msgid "Network Sidebar Widgets" +msgstr "Widgets für Netzwerk und Seitenleiste" + +#: include/features.php:82 +msgid "Search by Date" +msgstr "Archiv" + +#: include/features.php:82 +msgid "Ability to select posts by date ranges" +msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren" + +#: include/features.php:83 include/features.php:113 +msgid "List Forums" +msgstr "Zeige Foren" + +#: include/features.php:83 +msgid "Enable widget to display the forums your are connected with" +msgstr "Aktiviere Widget, um die Foren mit denen du verbunden bist anzuzeigen" + +#: include/features.php:84 +msgid "Group Filter" +msgstr "Gruppen Filter" + +#: include/features.php:84 +msgid "Enable widget to display Network posts only from selected group" +msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren." + +#: include/features.php:85 +msgid "Network Filter" +msgstr "Netzwerk Filter" + +#: include/features.php:85 +msgid "Enable widget to display Network posts only from selected network" +msgstr "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren." + +#: include/features.php:86 mod/network.php:209 mod/search.php:37 +msgid "Saved Searches" +msgstr "Gespeicherte Suchen" + +#: include/features.php:86 +msgid "Save search terms for re-use" +msgstr "Speichere Suchanfragen für spätere Wiederholung." + +#: include/features.php:91 +msgid "Network Tabs" +msgstr "Netzwerk Reiter" + +#: include/features.php:92 +msgid "Network Personal Tab" +msgstr "Netzwerk-Reiter: Persönlich" + +#: include/features.php:92 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen Du interagiert hast" + +#: include/features.php:93 +msgid "Network New Tab" +msgstr "Netzwerk-Reiter: Neue" + +#: include/features.php:93 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden" + +#: include/features.php:94 +msgid "Network Shared Links Tab" +msgstr "Netzwerk-Reiter: Geteilte Links" + +#: include/features.php:94 +msgid "Enable tab to display only Network posts with links in them" +msgstr "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält" + +#: include/features.php:99 +msgid "Post/Comment Tools" +msgstr "Werkzeuge für Beiträge und Kommentare" + +#: include/features.php:100 +msgid "Multiple Deletion" +msgstr "Mehrere Beiträge löschen" + +#: include/features.php:100 +msgid "Select and delete multiple posts/comments at once" +msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen" + +#: include/features.php:101 +msgid "Edit Sent Posts" +msgstr "Gesendete Beiträge editieren" + +#: include/features.php:101 +msgid "Edit and correct posts and comments after sending" +msgstr "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren." + +#: include/features.php:102 +msgid "Tagging" +msgstr "Tagging" + +#: include/features.php:102 +msgid "Ability to tag existing posts" +msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen." + +#: include/features.php:103 +msgid "Post Categories" +msgstr "Beitragskategorien" + +#: include/features.php:103 +msgid "Add categories to your posts" +msgstr "Eigene Beiträge mit Kategorien versehen" + +#: include/features.php:104 include/contact_widgets.php:162 +msgid "Saved Folders" +msgstr "Gespeicherte Ordner" + +#: include/features.php:104 +msgid "Ability to file posts under folders" +msgstr "Beiträge in Ordnern speichern aktivieren" + +#: include/features.php:105 +msgid "Dislike Posts" +msgstr "Beiträge 'nicht mögen'" + +#: include/features.php:105 +msgid "Ability to dislike posts/comments" +msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'" + +#: include/features.php:106 +msgid "Star Posts" +msgstr "Beiträge Markieren" + +#: include/features.php:106 +msgid "Ability to mark special posts with a star indicator" +msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren" + +#: include/features.php:107 +msgid "Mute Post Notifications" +msgstr "Benachrichtigungen für Beiträge Stumm schalten" + +#: include/features.php:107 +msgid "Ability to mute notifications for a thread" +msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können" + +#: include/features.php:112 +msgid "Advanced Profile Settings" +msgstr "Erweiterte Profil-Einstellungen" + +#: include/features.php:113 +msgid "Show visitors public community forums at the Advanced Profile Page" +msgstr "Zeige Besuchern öffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite" + +#: include/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:210 +msgid "Default privacy group for new contacts" +msgstr "Voreingestellte Gruppe für neue Kontakte" + +#: include/group.php:243 +msgid "Everybody" +msgstr "Alle Kontakte" + +#: include/group.php:266 +msgid "edit" +msgstr "bearbeiten" + +#: include/group.php:287 mod/newmember.php:39 +msgid "Groups" +msgstr "Gruppen" + +#: include/group.php:289 +msgid "Edit groups" +msgstr "Gruppen bearbeiten" + +#: include/group.php:291 +msgid "Edit group" +msgstr "Gruppe bearbeiten" + +#: include/group.php:292 +msgid "Create a new group" +msgstr "Neue Gruppe erstellen" + +#: include/group.php:293 mod/group.php:100 mod/group.php:197 +msgid "Group Name: " +msgstr "Gruppenname:" + +#: include/group.php:295 +msgid "Contacts not in any group" +msgstr "Kontakte in keiner Gruppe" + +#: include/group.php:297 mod/network.php:210 +msgid "add" +msgstr "hinzufügen" + +#: include/ForumManager.php:116 include/text.php:1094 include/nav.php:133 +#: view/theme/vier/theme.php:256 msgid "Forums" msgstr "Foren" -#: include/ForumManager.php:116 view/theme/vier/theme.php:256 +#: include/ForumManager.php:118 view/theme/vier/theme.php:258 msgid "External link to forum" msgstr "Externer Link zum Forum" -#: include/ForumManager.php:119 include/contact_widgets.php:269 -#: include/items.php:2450 mod/content.php:624 object/Item.php:420 -#: view/theme/vier/theme.php:259 boot.php:1000 +#: include/ForumManager.php:121 include/contact_widgets.php:271 +#: include/items.php:2432 mod/content.php:625 object/Item.php:417 +#: view/theme/vier/theme.php:261 src/App.php:506 msgid "show more" msgstr "mehr anzeigen" @@ -64,22 +428,22 @@ msgstr "mehr anzeigen" msgid "System" msgstr "System" -#: include/NotificationsManager.php:160 include/nav.php:158 mod/admin.php:517 -#: view/theme/frio/theme.php:253 +#: include/NotificationsManager.php:160 include/nav.php:160 mod/admin.php:518 +#: view/theme/frio/theme.php:255 msgid "Network" msgstr "Netzwerk" -#: include/NotificationsManager.php:167 mod/network.php:832 -#: mod/profiles.php:696 +#: include/NotificationsManager.php:167 mod/network.php:835 +#: mod/profiles.php:699 msgid "Personal" msgstr "Persönlich" -#: include/NotificationsManager.php:174 include/nav.php:105 -#: include/nav.php:161 +#: include/NotificationsManager.php:174 include/nav.php:107 +#: include/nav.php:163 msgid "Home" msgstr "Pinnwand" -#: include/NotificationsManager.php:181 include/nav.php:166 +#: include/NotificationsManager.php:181 include/nav.php:168 msgid "Introductions" msgstr "Kontaktanfragen" @@ -135,347 +499,2409 @@ msgstr "Kontakt-/Freundschaftsanfrage" msgid "New Follower" msgstr "Neuer Bewunderer" -#: include/Photo.php:1038 include/Photo.php:1054 include/Photo.php:1062 -#: include/Photo.php:1087 include/message.php:146 mod/wall_upload.php:249 -#: mod/item.php:467 -msgid "Wall Photos" -msgstr "Pinnwand-Bilder" +#: include/acl_selectors.php:355 +msgid "Post to Email" +msgstr "An E-Mail senden" -#: include/delivery.php:427 -msgid "(no subject)" -msgstr "(kein Betreff)" +#: include/acl_selectors.php:360 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist." -#: include/delivery.php:439 include/enotify.php:43 -msgid "noreply" -msgstr "noreply" +#: include/acl_selectors.php:361 mod/settings.php:1189 +msgid "Hide your profile details from unknown viewers?" +msgstr "Profil-Details vor unbekannten Betrachtern verbergen?" -#: include/like.php:27 include/conversation.php:153 include/diaspora.php:1576 +#: include/acl_selectors.php:367 +msgid "Visible to everybody" +msgstr "Für jeden sichtbar" + +#: include/acl_selectors.php:368 view/theme/vier/config.php:109 +msgid "show" +msgstr "zeigen" + +#: include/acl_selectors.php:369 view/theme/vier/config.php:109 +msgid "don't show" +msgstr "nicht zeigen" + +#: include/acl_selectors.php:375 mod/editpost.php:125 +msgid "CC: email addresses" +msgstr "Cc: E-Mail-Addressen" + +#: include/acl_selectors.php:376 mod/editpost.php:132 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Z.B.: bob@example.com, mary@example.com" + +#: include/acl_selectors.php:378 mod/events.php:511 mod/photos.php:1198 +#: mod/photos.php:1595 +msgid "Permissions" +msgstr "Berechtigungen" + +#: include/acl_selectors.php:379 +msgid "Close" +msgstr "Schließen" + +#: include/auth.php:52 +msgid "Logged out." +msgstr "Abgemeldet." + +#: include/auth.php:123 include/auth.php:185 mod/openid.php:110 +msgid "Login failed." +msgstr "Anmeldung fehlgeschlagen." + +#: include/auth.php:139 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:139 include/user.php:75 +msgid "The error message was:" +msgstr "Die Fehlermeldung lautete:" + +#: include/bb2diaspora.php:233 include/event.php:19 mod/localtime.php:13 +msgid "l F d, Y \\@ g:i A" +msgstr "l, d. F Y\\, H:i" + +#: include/bb2diaspora.php:239 include/event.php:36 include/event.php:56 +#: include/event.php:459 +msgid "Starts:" +msgstr "Beginnt:" + +#: include/bb2diaspora.php:247 include/event.php:39 include/event.php:62 +#: include/event.php:460 +msgid "Finishes:" +msgstr "Endet:" + +#: include/bb2diaspora.php:256 include/event.php:43 include/event.php:69 +#: include/event.php:461 include/identity.php:342 mod/directory.php:135 +#: mod/events.php:496 mod/notifications.php:246 mod/contacts.php:639 +msgid "Location:" +msgstr "Ort:" + +#: include/contact_widgets.php:8 +msgid "Add New Contact" +msgstr "Neuen Kontakt hinzufügen" + +#: include/contact_widgets.php:9 +msgid "Enter address or web location" +msgstr "Adresse oder Web-Link eingeben" + +#: include/contact_widgets.php:10 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Beispiel: bob@example.com, http://example.com/barbara" + +#: include/contact_widgets.php:12 include/identity.php:230 +#: mod/allfriends.php:87 mod/dirfind.php:209 mod/match.php:92 +#: mod/suggest.php:103 +msgid "Connect" +msgstr "Verbinden" + +#: include/contact_widgets.php:26 +#, 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:32 +msgid "Find People" +msgstr "Leute finden" + +#: include/contact_widgets.php:33 +msgid "Enter name or interest" +msgstr "Name oder Interessen eingeben" + +#: include/contact_widgets.php:34 include/conversation.php:1018 +#: include/Contact.php:389 mod/allfriends.php:71 mod/dirfind.php:212 +#: mod/follow.php:108 mod/match.php:77 mod/suggest.php:85 mod/contacts.php:613 +msgid "Connect/Follow" +msgstr "Verbinden/Folgen" + +#: include/contact_widgets.php:35 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Beispiel: Robert Morgenstein, Angeln" + +#: include/contact_widgets.php:36 mod/directory.php:202 mod/contacts.php:809 +msgid "Find" +msgstr "Finde" + +#: include/contact_widgets.php:37 mod/suggest.php:116 +#: view/theme/vier/theme.php:203 +msgid "Friend Suggestions" +msgstr "Kontaktvorschläge" + +#: include/contact_widgets.php:38 view/theme/vier/theme.php:202 +msgid "Similar Interests" +msgstr "Ähnliche Interessen" + +#: include/contact_widgets.php:39 +msgid "Random Profile" +msgstr "Zufälliges Profil" + +#: include/contact_widgets.php:40 view/theme/vier/theme.php:204 +msgid "Invite Friends" +msgstr "Freunde einladen" + +#: include/contact_widgets.php:127 +msgid "Networks" +msgstr "Netzwerke" + +#: include/contact_widgets.php:130 +msgid "All Networks" +msgstr "Alle Netzwerke" + +#: include/contact_widgets.php:165 include/contact_widgets.php:200 +msgid "Everything" +msgstr "Alles" + +#: include/contact_widgets.php:197 +msgid "Categories" +msgstr "Kategorien" + +#: include/contact_widgets.php:266 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d gemeinsamer Kontakt" +msgstr[1] "%d gemeinsame Kontakte" + +#: include/conversation.php:134 include/conversation.php:286 +#: include/like.php:183 include/text.php:1871 +msgid "event" +msgstr "Event" + +#: include/conversation.php:137 include/conversation.php:147 +#: include/conversation.php:289 include/conversation.php:298 +#: include/like.php:181 include/diaspora.php:1653 mod/subthread.php:89 +#: mod/tagger.php:63 +msgid "status" +msgstr "Status" + +#: include/conversation.php:142 include/conversation.php:294 +#: include/like.php:181 include/text.php:1873 mod/subthread.php:89 +#: mod/tagger.php:63 +msgid "photo" +msgstr "Foto" + +#: include/conversation.php:154 include/like.php:30 include/diaspora.php:1649 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s mag %2$ss %3$s" -#: include/like.php:31 include/like.php:36 include/conversation.php:156 +#: include/conversation.php:157 include/like.php:34 include/like.php:39 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "%1$s mag %2$ss %3$s nicht" -#: include/like.php:41 +#: include/conversation.php:160 +#, php-format +msgid "%1$s attends %2$s's %3$s" +msgstr "%1$s nimmt an %2$ss %3$s teil." + +#: include/conversation.php:163 +#, 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:166 +#, 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:199 mod/dfrn_confirm.php:480 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s ist nun mit %2$s befreundet" + +#: include/conversation.php:240 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s stupste %2$s" + +#: include/conversation.php:261 mod/mood.php:64 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s ist momentan %2$s" + +#: include/conversation.php:308 mod/tagger.php:96 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt" + +#: include/conversation.php:335 +msgid "post/item" +msgstr "Nachricht/Beitrag" + +#: include/conversation.php:336 +#, 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:615 mod/content.php:373 mod/photos.php:1664 +#: mod/profiles.php:344 +msgid "Likes" +msgstr "Likes" + +#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1664 +#: mod/profiles.php:348 +msgid "Dislikes" +msgstr "Dislikes" + +#: include/conversation.php:616 include/conversation.php:1542 +#: mod/content.php:374 mod/photos.php:1665 +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Teilnehmend" +msgstr[1] "Teilnehmend" + +#: include/conversation.php:616 mod/content.php:374 mod/photos.php:1665 +msgid "Not attending" +msgstr "Nicht teilnehmend" + +#: include/conversation.php:616 mod/content.php:374 mod/photos.php:1665 +msgid "Might attend" +msgstr "Eventuell teilnehmend" + +#: include/conversation.php:748 mod/content.php:454 mod/content.php:760 +#: mod/photos.php:1730 object/Item.php:137 +msgid "Select" +msgstr "Auswählen" + +#: include/conversation.php:749 mod/content.php:455 mod/content.php:761 +#: mod/photos.php:1731 mod/admin.php:1514 mod/contacts.php:819 +#: mod/contacts.php:1018 mod/settings.php:745 object/Item.php:138 +msgid "Delete" +msgstr "Löschen" + +#: include/conversation.php:792 mod/content.php:488 mod/content.php:916 +#: mod/content.php:917 object/Item.php:353 object/Item.php:354 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Das Profil von %s auf %s betrachten." + +#: include/conversation.php:804 object/Item.php:341 +msgid "Categories:" +msgstr "Kategorien:" + +#: include/conversation.php:805 object/Item.php:342 +msgid "Filed under:" +msgstr "Abgelegt unter:" + +#: include/conversation.php:812 mod/content.php:498 mod/content.php:929 +#: object/Item.php:367 +#, php-format +msgid "%s from %s" +msgstr "%s von %s" + +#: include/conversation.php:828 mod/content.php:514 +msgid "View in context" +msgstr "Im Zusammenhang betrachten" + +#: include/conversation.php:830 include/conversation.php:1299 +#: mod/content.php:516 mod/content.php:954 mod/editpost.php:116 +#: mod/message.php:339 mod/message.php:524 mod/photos.php:1629 +#: mod/wallmessage.php:142 object/Item.php:392 +msgid "Please wait" +msgstr "Bitte warten" + +#: include/conversation.php:907 +msgid "remove" +msgstr "löschen" + +#: include/conversation.php:911 +msgid "Delete Selected Items" +msgstr "Lösche die markierten Beiträge" + +#: include/conversation.php:1003 +msgid "Follow Thread" +msgstr "Folge der Unterhaltung" + +#: include/conversation.php:1004 include/Contact.php:432 +msgid "View Status" +msgstr "Pinnwand anschauen" + +#: include/conversation.php:1005 include/conversation.php:1021 +#: include/Contact.php:375 include/Contact.php:388 include/Contact.php:433 +#: mod/allfriends.php:70 mod/directory.php:153 mod/dirfind.php:211 +#: mod/match.php:76 mod/suggest.php:84 +msgid "View Profile" +msgstr "Profil anschauen" + +#: include/conversation.php:1006 include/Contact.php:434 +msgid "View Photos" +msgstr "Bilder anschauen" + +#: include/conversation.php:1007 include/Contact.php:435 +msgid "Network Posts" +msgstr "Netzwerkbeiträge" + +#: include/conversation.php:1008 include/Contact.php:436 +msgid "View Contact" +msgstr "Kontakt anzeigen" + +#: include/conversation.php:1009 include/Contact.php:438 +msgid "Send PM" +msgstr "Private Nachricht senden" + +#: include/conversation.php:1013 include/Contact.php:439 +msgid "Poke" +msgstr "Anstupsen" + +#: include/conversation.php:1140 +#, php-format +msgid "%s likes this." +msgstr "%s mag das." + +#: include/conversation.php:1143 +#, php-format +msgid "%s doesn't like this." +msgstr "%s mag das nicht." + +#: include/conversation.php:1146 +#, php-format +msgid "%s attends." +msgstr "%s nimmt teil." + +#: include/conversation.php:1149 +#, php-format +msgid "%s doesn't attend." +msgstr "%s nimmt nicht teil." + +#: include/conversation.php:1152 +#, php-format +msgid "%s attends maybe." +msgstr "%s nimmt eventuell teil." + +#: include/conversation.php:1163 +msgid "and" +msgstr "und" + +#: include/conversation.php:1169 +#, php-format +msgid ", and %d other people" +msgstr " und %d andere" + +#: include/conversation.php:1178 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d Personen mögen das" + +#: include/conversation.php:1179 +#, php-format +msgid "%s like this." +msgstr "%s mögen das." + +#: include/conversation.php:1182 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d Personen mögen das nicht" + +#: include/conversation.php:1183 +#, php-format +msgid "%s don't like this." +msgstr "%s mögen dies nicht." + +#: include/conversation.php:1186 +#, php-format +msgid "%2$d people attend" +msgstr "%2$d Personen nehmen teil" + +#: include/conversation.php:1187 +#, php-format +msgid "%s attend." +msgstr "%s nehmen teil." + +#: include/conversation.php:1190 +#, php-format +msgid "%2$d people don't attend" +msgstr "%2$d Personen nehmen nicht teil" + +#: include/conversation.php:1191 +#, php-format +msgid "%s don't attend." +msgstr "%s nehmen nicht teil." + +#: include/conversation.php:1194 +#, php-format +msgid "%2$d people attend maybe" +msgstr "%2$d Personen nehmen eventuell teil" + +#: include/conversation.php:1195 +#, php-format +msgid "%s anttend maybe." +msgstr "%s nehmen vielleicht teil." + +#: include/conversation.php:1224 include/conversation.php:1240 +msgid "Visible to everybody" +msgstr "Für jedermann sichtbar" + +#: include/conversation.php:1225 include/conversation.php:1241 +#: mod/message.php:273 mod/message.php:280 mod/message.php:420 +#: mod/message.php:427 mod/wallmessage.php:116 mod/wallmessage.php:123 +msgid "Please enter a link URL:" +msgstr "Bitte gib die URL des Links ein:" + +#: include/conversation.php:1226 include/conversation.php:1242 +msgid "Please enter a video link/URL:" +msgstr "Bitte Link/URL zum Video einfügen:" + +#: include/conversation.php:1227 include/conversation.php:1243 +msgid "Please enter an audio link/URL:" +msgstr "Bitte Link/URL zum Audio einfügen:" + +#: include/conversation.php:1228 include/conversation.php:1244 +msgid "Tag term:" +msgstr "Tag:" + +#: include/conversation.php:1229 include/conversation.php:1245 +#: mod/filer.php:31 +msgid "Save to Folder:" +msgstr "In diesem Ordner speichern:" + +#: include/conversation.php:1230 include/conversation.php:1246 +msgid "Where are you right now?" +msgstr "Wo hältst Du Dich jetzt gerade auf?" + +#: include/conversation.php:1231 +msgid "Delete item(s)?" +msgstr "Einträge löschen?" + +#: include/conversation.php:1280 +msgid "Share" +msgstr "Teilen" + +#: include/conversation.php:1281 mod/editpost.php:102 mod/message.php:337 +#: mod/message.php:521 mod/wallmessage.php:140 +msgid "Upload photo" +msgstr "Foto hochladen" + +#: include/conversation.php:1282 mod/editpost.php:103 +msgid "upload photo" +msgstr "Bild hochladen" + +#: include/conversation.php:1283 mod/editpost.php:104 +msgid "Attach file" +msgstr "Datei anhängen" + +#: include/conversation.php:1284 mod/editpost.php:105 +msgid "attach file" +msgstr "Datei anhängen" + +#: include/conversation.php:1285 mod/editpost.php:106 mod/message.php:338 +#: mod/message.php:522 mod/wallmessage.php:141 +msgid "Insert web link" +msgstr "Einen Link einfügen" + +#: include/conversation.php:1286 mod/editpost.php:107 +msgid "web link" +msgstr "Weblink" + +#: include/conversation.php:1287 mod/editpost.php:108 +msgid "Insert video link" +msgstr "Video-Adresse einfügen" + +#: include/conversation.php:1288 mod/editpost.php:109 +msgid "video link" +msgstr "Video-Link" + +#: include/conversation.php:1289 mod/editpost.php:110 +msgid "Insert audio link" +msgstr "Audio-Adresse einfügen" + +#: include/conversation.php:1290 mod/editpost.php:111 +msgid "audio link" +msgstr "Audio-Link" + +#: include/conversation.php:1291 mod/editpost.php:112 +msgid "Set your location" +msgstr "Deinen Standort festlegen" + +#: include/conversation.php:1292 mod/editpost.php:113 +msgid "set location" +msgstr "Ort setzen" + +#: include/conversation.php:1293 mod/editpost.php:114 +msgid "Clear browser location" +msgstr "Browser-Standort leeren" + +#: include/conversation.php:1294 mod/editpost.php:115 +msgid "clear location" +msgstr "Ort löschen" + +#: include/conversation.php:1296 mod/editpost.php:129 +msgid "Set title" +msgstr "Titel setzen" + +#: include/conversation.php:1298 mod/editpost.php:131 +msgid "Categories (comma-separated list)" +msgstr "Kategorien (kommasepariert)" + +#: include/conversation.php:1300 mod/editpost.php:117 +msgid "Permission settings" +msgstr "Berechtigungseinstellungen" + +#: include/conversation.php:1301 mod/editpost.php:146 +msgid "permissions" +msgstr "Zugriffsrechte" + +#: include/conversation.php:1309 mod/editpost.php:126 +msgid "Public post" +msgstr "Öffentlicher Beitrag" + +#: include/conversation.php:1314 mod/content.php:738 mod/editpost.php:137 +#: mod/events.php:506 mod/photos.php:1649 mod/photos.php:1691 +#: mod/photos.php:1771 object/Item.php:711 +msgid "Preview" +msgstr "Vorschau" + +#: include/conversation.php:1318 include/items.php:2165 mod/editpost.php:140 +#: mod/fbrowser.php:102 mod/fbrowser.php:137 mod/follow.php:126 +#: mod/message.php:211 mod/photos.php:247 mod/photos.php:339 +#: mod/suggest.php:34 mod/tagrm.php:13 mod/tagrm.php:98 mod/videos.php:134 +#: mod/dfrn_request.php:894 mod/contacts.php:458 mod/settings.php:683 +#: mod/settings.php:709 +msgid "Cancel" +msgstr "Abbrechen" + +#: include/conversation.php:1324 +msgid "Post to Groups" +msgstr "Poste an Gruppe" + +#: include/conversation.php:1325 +msgid "Post to Contacts" +msgstr "Poste an Kontakte" + +#: include/conversation.php:1326 +msgid "Private post" +msgstr "Privater Beitrag" + +#: include/conversation.php:1331 include/identity.php:270 mod/editpost.php:144 +msgid "Message" +msgstr "Nachricht" + +#: include/conversation.php:1332 mod/editpost.php:145 +msgid "Browser" +msgstr "Browser" + +#: include/conversation.php:1514 +msgid "View all" +msgstr "Zeige alle" + +#: include/conversation.php:1536 +msgid "Like" +msgid_plural "Likes" +msgstr[0] "mag ich" +msgstr[1] "Mag ich" + +#: include/conversation.php:1539 +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "mag ich nicht" +msgstr[1] "Mag ich nicht" + +#: include/conversation.php:1545 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Nicht teilnehmend " +msgstr[1] "Nicht teilnehmend" + +#: include/conversation.php:1548 include/profile_selectors.php:6 +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "Unentschieden" +msgstr[1] "Unentschieden" + +#: include/datetime.php:66 include/datetime.php:68 mod/profiles.php:701 +msgid "Miscellaneous" +msgstr "Verschiedenes" + +#: include/datetime.php:196 include/identity.php:656 +msgid "Birthday:" +msgstr "Geburtstag:" + +#: include/datetime.php:198 mod/profiles.php:724 +msgid "Age: " +msgstr "Alter: " + +#: include/datetime.php:200 +msgid "YYYY-MM-DD or MM-DD" +msgstr "YYYY-MM-DD oder MM-DD" + +#: include/datetime.php:370 +msgid "never" +msgstr "nie" + +#: include/datetime.php:376 +msgid "less than a second ago" +msgstr "vor weniger als einer Sekunde" + +#: include/datetime.php:379 +msgid "year" +msgstr "Jahr" + +#: include/datetime.php:379 +msgid "years" +msgstr "Jahre" + +#: include/datetime.php:380 include/event.php:453 mod/cal.php:281 +#: mod/events.php:387 +msgid "month" +msgstr "Monat" + +#: include/datetime.php:380 +msgid "months" +msgstr "Monate" + +#: include/datetime.php:381 include/event.php:454 mod/cal.php:282 +#: mod/events.php:388 +msgid "week" +msgstr "Woche" + +#: include/datetime.php:381 +msgid "weeks" +msgstr "Wochen" + +#: include/datetime.php:382 include/event.php:455 mod/cal.php:283 +#: mod/events.php:389 +msgid "day" +msgstr "Tag" + +#: include/datetime.php:382 +msgid "days" +msgstr "Tage" + +#: include/datetime.php:383 +msgid "hour" +msgstr "Stunde" + +#: include/datetime.php:383 +msgid "hours" +msgstr "Stunden" + +#: include/datetime.php:384 +msgid "minute" +msgstr "Minute" + +#: include/datetime.php:384 +msgid "minutes" +msgstr "Minuten" + +#: include/datetime.php:385 +msgid "second" +msgstr "Sekunde" + +#: include/datetime.php:385 +msgid "seconds" +msgstr "Sekunden" + +#: include/datetime.php:394 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s her" + +#: include/datetime.php:620 +#, php-format +msgid "%s's birthday" +msgstr "%ss Geburtstag" + +#: include/datetime.php:621 include/dfrn.php:1254 +#, php-format +msgid "Happy Birthday %s" +msgstr "Herzlichen Glückwunsch %s" + +#: include/delivery.php:428 +msgid "(no subject)" +msgstr "(kein Betreff)" + +#: include/delivery.php:440 include/enotify.php:46 +msgid "noreply" +msgstr "noreply" + +#: include/dfrn.php:1253 +#, php-format +msgid "%s\\'s birthday" +msgstr "%ss Geburtstag" + +#: include/event.php:408 +msgid "all-day" +msgstr "ganztägig" + +#: include/event.php:410 +msgid "Sun" +msgstr "So" + +#: include/event.php:411 +msgid "Mon" +msgstr "Mo" + +#: include/event.php:412 +msgid "Tue" +msgstr "Di" + +#: include/event.php:413 +msgid "Wed" +msgstr "Mi" + +#: include/event.php:414 +msgid "Thu" +msgstr "Do" + +#: include/event.php:415 +msgid "Fri" +msgstr "Fr" + +#: include/event.php:416 +msgid "Sat" +msgstr "Sa" + +#: include/event.php:418 include/text.php:1199 mod/settings.php:982 +msgid "Sunday" +msgstr "Sonntag" + +#: include/event.php:419 include/text.php:1199 mod/settings.php:982 +msgid "Monday" +msgstr "Montag" + +#: include/event.php:420 include/text.php:1199 +msgid "Tuesday" +msgstr "Dienstag" + +#: include/event.php:421 include/text.php:1199 +msgid "Wednesday" +msgstr "Mittwoch" + +#: include/event.php:422 include/text.php:1199 +msgid "Thursday" +msgstr "Donnerstag" + +#: include/event.php:423 include/text.php:1199 +msgid "Friday" +msgstr "Freitag" + +#: include/event.php:424 include/text.php:1199 +msgid "Saturday" +msgstr "Samstag" + +#: include/event.php:426 +msgid "Jan" +msgstr "Jan" + +#: include/event.php:427 +msgid "Feb" +msgstr "Feb" + +#: include/event.php:428 +msgid "Mar" +msgstr "März" + +#: include/event.php:429 +msgid "Apr" +msgstr "Apr" + +#: include/event.php:430 include/event.php:443 include/text.php:1203 +msgid "May" +msgstr "Mai" + +#: include/event.php:431 +msgid "Jun" +msgstr "Jun" + +#: include/event.php:432 +msgid "Jul" +msgstr "Juli" + +#: include/event.php:433 +msgid "Aug" +msgstr "Aug" + +#: include/event.php:434 +msgid "Sept" +msgstr "Sep" + +#: include/event.php:435 +msgid "Oct" +msgstr "Okt" + +#: include/event.php:436 +msgid "Nov" +msgstr "Nov" + +#: include/event.php:437 +msgid "Dec" +msgstr "Dez" + +#: include/event.php:439 include/text.php:1203 +msgid "January" +msgstr "Januar" + +#: include/event.php:440 include/text.php:1203 +msgid "February" +msgstr "Februar" + +#: include/event.php:441 include/text.php:1203 +msgid "March" +msgstr "März" + +#: include/event.php:442 include/text.php:1203 +msgid "April" +msgstr "April" + +#: include/event.php:444 include/text.php:1203 +msgid "June" +msgstr "Juni" + +#: include/event.php:445 include/text.php:1203 +msgid "July" +msgstr "Juli" + +#: include/event.php:446 include/text.php:1203 +msgid "August" +msgstr "August" + +#: include/event.php:447 include/text.php:1203 +msgid "September" +msgstr "September" + +#: include/event.php:448 include/text.php:1203 +msgid "October" +msgstr "Oktober" + +#: include/event.php:449 include/text.php:1203 +msgid "November" +msgstr "November" + +#: include/event.php:450 include/text.php:1203 +msgid "December" +msgstr "Dezember" + +#: include/event.php:452 mod/cal.php:280 mod/events.php:386 +msgid "today" +msgstr "Heute" + +#: include/event.php:457 +msgid "No events to display" +msgstr "Keine Veranstaltung zum Anzeigen" + +#: include/event.php:570 +msgid "l, F j" +msgstr "l, F j" + +#: include/event.php:592 +msgid "Edit event" +msgstr "Veranstaltung bearbeiten" + +#: include/event.php:593 +msgid "Delete event" +msgstr "Veranstaltung löschen" + +#: include/event.php:619 include/text.php:1601 include/text.php:1608 +msgid "link to source" +msgstr "Link zum Originalbeitrag" + +#: include/event.php:873 +msgid "Export" +msgstr "Exportieren" + +#: include/event.php:874 +msgid "Export calendar as ical" +msgstr "Kalender als ical exportieren" + +#: include/event.php:875 +msgid "Export calendar as csv" +msgstr "Kalender als csv exportieren" + +#: include/follow.php:84 mod/dfrn_request.php:514 +msgid "Disallowed profile URL." +msgstr "Nicht erlaubte Profil-URL." + +#: include/follow.php:89 mod/friendica.php:115 mod/dfrn_request.php:520 +#: mod/admin.php:280 mod/admin.php:298 +msgid "Blocked domain" +msgstr "Blockierte Daimain" + +#: include/follow.php:94 +msgid "Connect URL missing." +msgstr "Connect-URL fehlt" + +#: include/follow.php:122 +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:123 include/follow.php:137 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden." + +#: include/follow.php:135 +msgid "The profile address specified does not provide adequate information." +msgstr "Die angegebene Profiladresse liefert unzureichende Informationen." + +#: include/follow.php:140 +msgid "An author or name was not found." +msgstr "Es wurde kein Autor oder Name gefunden." + +#: include/follow.php:143 +msgid "No browser URL could be matched to this address." +msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden." + +#: include/follow.php:146 +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:147 +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:153 +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:158 +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:259 +msgid "Unable to retrieve contact information." +msgstr "Konnte die Kontaktinformationen nicht empfangen." + +#: include/like.php:44 #, php-format msgid "%1$s is attending %2$s's %3$s" msgstr "%1$s nimmt an %2$ss %3$s teil." -#: include/like.php:46 +#: include/like.php:49 #, php-format msgid "%1$s is not attending %2$s's %3$s" msgstr "%1$s nimmt nicht an %2$ss %3$s teil." -#: include/like.php:51 +#: include/like.php:54 #, php-format msgid "%1$s may attend %2$s's %3$s" msgstr "%1$s nimmt eventuell an %2$ss %3$s teil." -#: include/like.php:178 include/conversation.php:141 -#: include/conversation.php:293 include/text.php:1872 mod/subthread.php:88 -#: mod/tagger.php:62 -msgid "photo" -msgstr "Foto" +#: include/photos.php:57 include/photos.php:66 mod/fbrowser.php:42 +#: mod/fbrowser.php:63 mod/photos.php:189 mod/photos.php:1125 +#: mod/photos.php:1258 mod/photos.php:1279 mod/photos.php:1841 +#: mod/photos.php:1855 +msgid "Contact Photos" +msgstr "Kontaktbilder" -#: include/like.php:178 include/conversation.php:136 -#: include/conversation.php:146 include/conversation.php:288 -#: include/conversation.php:297 include/diaspora.php:1580 mod/subthread.php:88 -#: mod/tagger.php:62 -msgid "status" -msgstr "Status" +#: include/security.php:63 +msgid "Welcome " +msgstr "Willkommen " -#: include/like.php:180 include/conversation.php:133 -#: include/conversation.php:285 include/text.php:1870 -msgid "event" -msgstr "Event" +#: include/security.php:64 +msgid "Please upload a profile photo." +msgstr "Bitte lade ein Profilbild hoch." -#: include/message.php:15 include/message.php:169 -msgid "[no subject]" -msgstr "[kein Betreff]" +#: include/security.php:67 +msgid "Welcome back " +msgstr "Willkommen zurück " -#: include/nav.php:35 mod/navigation.php:19 -msgid "Nothing new here" -msgstr "Keine Neuigkeiten" +#: include/security.php:431 +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/nav.php:39 mod/navigation.php:23 -msgid "Clear notifications" -msgstr "Bereinige Benachrichtigungen" +#: include/text.php:308 +msgid "newer" +msgstr "neuer" -#: include/nav.php:40 include/text.php:1083 -msgid "@name, !forum, #tags, content" -msgstr "@name, !forum, #tags, content" +#: include/text.php:309 +msgid "older" +msgstr "älter" -#: include/nav.php:78 view/theme/frio/theme.php:243 boot.php:1867 -msgid "Logout" -msgstr "Abmelden" +#: include/text.php:314 +msgid "first" +msgstr "erste" -#: include/nav.php:78 view/theme/frio/theme.php:243 -msgid "End this session" -msgstr "Diese Sitzung beenden" +#: include/text.php:315 +msgid "prev" +msgstr "vorige" -#: include/nav.php:81 include/identity.php:769 mod/contacts.php:645 -#: mod/contacts.php:841 view/theme/frio/theme.php:246 -msgid "Status" -msgstr "Status" +#: include/text.php:349 +msgid "next" +msgstr "nächste" -#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:246 -msgid "Your posts and conversations" -msgstr "Deine Beiträge und Unterhaltungen" +#: include/text.php:350 +msgid "last" +msgstr "letzte" -#: include/nav.php:82 include/identity.php:622 include/identity.php:744 -#: include/identity.php:777 mod/contacts.php:647 mod/contacts.php:849 -#: mod/newmember.php:32 mod/profperm.php:105 view/theme/frio/theme.php:247 -msgid "Profile" -msgstr "Profil" +#: include/text.php:404 +msgid "Loading more entries..." +msgstr "lade weitere Einträge..." -#: include/nav.php:82 view/theme/frio/theme.php:247 -msgid "Your profile page" -msgstr "Deine Profilseite" +#: include/text.php:405 +msgid "The end" +msgstr "Das Ende" -#: include/nav.php:83 include/identity.php:785 mod/fbrowser.php:31 -#: view/theme/frio/theme.php:248 -msgid "Photos" -msgstr "Bilder" +#: include/text.php:956 +msgid "No contacts" +msgstr "Keine Kontakte" -#: include/nav.php:83 view/theme/frio/theme.php:248 -msgid "Your photos" -msgstr "Deine Fotos" +#: include/text.php:981 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d Kontakt" +msgstr[1] "%d Kontakte" -#: include/nav.php:84 include/identity.php:793 include/identity.php:796 -#: view/theme/frio/theme.php:249 -msgid "Videos" -msgstr "Videos" +#: include/text.php:994 +msgid "View Contacts" +msgstr "Kontakte anzeigen" -#: include/nav.php:84 view/theme/frio/theme.php:249 -msgid "Your videos" -msgstr "Deine Videos" - -#: include/nav.php:85 include/nav.php:149 include/identity.php:805 -#: include/identity.php:816 mod/cal.php:270 mod/events.php:374 -#: view/theme/frio/theme.php:250 view/theme/frio/theme.php:254 -msgid "Events" -msgstr "Veranstaltungen" - -#: include/nav.php:85 view/theme/frio/theme.php:250 -msgid "Your events" -msgstr "Deine Ereignisse" - -#: include/nav.php:86 -msgid "Personal notes" -msgstr "Persönliche Notizen" - -#: include/nav.php:86 -msgid "Your personal notes" -msgstr "Deine persönlichen Notizen" - -#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1868 -msgid "Login" -msgstr "Anmeldung" - -#: include/nav.php:95 -msgid "Sign in" -msgstr "Anmelden" - -#: include/nav.php:105 -msgid "Home Page" -msgstr "Homepage" - -#: include/nav.php:109 mod/register.php:289 boot.php:1844 -msgid "Register" -msgstr "Registrieren" - -#: include/nav.php:109 -msgid "Create an account" -msgstr "Nutzerkonto erstellen" - -#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:297 -msgid "Help" -msgstr "Hilfe" - -#: include/nav.php:115 -msgid "Help and documentation" -msgstr "Hilfe und Dokumentation" - -#: include/nav.php:119 -msgid "Apps" -msgstr "Apps" - -#: include/nav.php:119 -msgid "Addon applications, utilities, games" -msgstr "Addon Anwendungen, Dienstprogramme, Spiele" - -#: include/nav.php:123 include/text.php:1080 mod/search.php:149 +#: include/text.php:1081 include/nav.php:125 mod/search.php:152 msgid "Search" msgstr "Suche" -#: include/nav.php:123 -msgid "Search site content" -msgstr "Inhalt der Seite durchsuchen" +#: include/text.php:1082 mod/editpost.php:101 mod/filer.php:32 +#: mod/notes.php:64 +msgid "Save" +msgstr "Speichern" -#: include/nav.php:126 include/text.php:1088 +#: include/text.php:1084 include/nav.php:42 +msgid "@name, !forum, #tags, content" +msgstr "@name, !forum, #tags, content" + +#: include/text.php:1089 include/nav.php:128 msgid "Full Text" msgstr "Volltext" -#: include/nav.php:127 include/text.php:1089 +#: include/text.php:1090 include/nav.php:129 msgid "Tags" msgstr "Tags" -#: include/nav.php:128 include/nav.php:192 include/identity.php:838 -#: include/identity.php:841 include/text.php:1090 mod/contacts.php:800 -#: mod/contacts.php:861 mod/viewcontacts.php:121 view/theme/frio/theme.php:257 +#: include/text.php:1091 include/nav.php:130 include/nav.php:194 +#: include/identity.php:853 include/identity.php:856 mod/viewcontacts.php:124 +#: mod/contacts.php:803 mod/contacts.php:864 view/theme/frio/theme.php:259 msgid "Contacts" msgstr "Kontakte" -#: include/nav.php:143 include/nav.php:145 mod/community.php:32 +#: include/text.php:1145 +msgid "poke" +msgstr "anstupsen" + +#: include/text.php:1145 +msgid "poked" +msgstr "stupste" + +#: include/text.php:1146 +msgid "ping" +msgstr "anpingen" + +#: include/text.php:1146 +msgid "pinged" +msgstr "pingte" + +#: include/text.php:1147 +msgid "prod" +msgstr "knuffen" + +#: include/text.php:1147 +msgid "prodded" +msgstr "knuffte" + +#: include/text.php:1148 +msgid "slap" +msgstr "ohrfeigen" + +#: include/text.php:1148 +msgid "slapped" +msgstr "ohrfeigte" + +#: include/text.php:1149 +msgid "finger" +msgstr "befummeln" + +#: include/text.php:1149 +msgid "fingered" +msgstr "befummelte" + +#: include/text.php:1150 +msgid "rebuff" +msgstr "eine Abfuhr erteilen" + +#: include/text.php:1150 +msgid "rebuffed" +msgstr "abfuhrerteilte" + +#: include/text.php:1164 +msgid "happy" +msgstr "glücklich" + +#: include/text.php:1165 +msgid "sad" +msgstr "traurig" + +#: include/text.php:1166 +msgid "mellow" +msgstr "sanft" + +#: include/text.php:1167 +msgid "tired" +msgstr "müde" + +#: include/text.php:1168 +msgid "perky" +msgstr "frech" + +#: include/text.php:1169 +msgid "angry" +msgstr "sauer" + +#: include/text.php:1170 +msgid "stupified" +msgstr "verblüfft" + +#: include/text.php:1171 +msgid "puzzled" +msgstr "verwirrt" + +#: include/text.php:1172 +msgid "interested" +msgstr "interessiert" + +#: include/text.php:1173 +msgid "bitter" +msgstr "verbittert" + +#: include/text.php:1174 +msgid "cheerful" +msgstr "fröhlich" + +#: include/text.php:1175 +msgid "alive" +msgstr "lebendig" + +#: include/text.php:1176 +msgid "annoyed" +msgstr "verärgert" + +#: include/text.php:1177 +msgid "anxious" +msgstr "unruhig" + +#: include/text.php:1178 +msgid "cranky" +msgstr "schrullig" + +#: include/text.php:1179 +msgid "disturbed" +msgstr "verstört" + +#: include/text.php:1180 +msgid "frustrated" +msgstr "frustriert" + +#: include/text.php:1181 +msgid "motivated" +msgstr "motiviert" + +#: include/text.php:1182 +msgid "relaxed" +msgstr "entspannt" + +#: include/text.php:1183 +msgid "surprised" +msgstr "überrascht" + +#: include/text.php:1393 mod/videos.php:388 +msgid "View Video" +msgstr "Video ansehen" + +#: include/text.php:1425 +msgid "bytes" +msgstr "Byte" + +#: include/text.php:1457 include/text.php:1469 +msgid "Click to open/close" +msgstr "Zum öffnen/schließen klicken" + +#: include/text.php:1595 +msgid "View on separate page" +msgstr "Auf separater Seite ansehen" + +#: include/text.php:1596 +msgid "view on separate page" +msgstr "auf separater Seite ansehen" + +#: include/text.php:1875 +msgid "activity" +msgstr "Aktivität" + +#: include/text.php:1877 mod/content.php:624 object/Item.php:416 +#: object/Item.php:428 +msgid "comment" +msgid_plural "comments" +msgstr[0] "Kommentar" +msgstr[1] "Kommentare" + +#: include/text.php:1878 +msgid "post" +msgstr "Beitrag" + +#: include/text.php:2046 +msgid "Item filed" +msgstr "Beitrag abgelegt" + +#: include/Contact.php:437 +msgid "Drop Contact" +msgstr "Kontakt löschen" + +#: include/Contact.php:819 +msgid "Organisation" +msgstr "Organisation" + +#: include/Contact.php:822 +msgid "News" +msgstr "Nachrichten" + +#: include/Contact.php:825 +msgid "Forum" +msgstr "Forum" + +#: include/bbcode.php:419 include/bbcode.php:1178 include/bbcode.php:1179 +msgid "Image/photo" +msgstr "Bild/Foto" + +#: include/bbcode.php:536 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" + +#: include/bbcode.php:1135 include/bbcode.php:1157 +msgid "$1 wrote:" +msgstr "$1 hat geschrieben:" + +#: include/bbcode.php:1187 include/bbcode.php:1188 +msgid "Encrypted content" +msgstr "Verschlüsselter Inhalt" + +#: include/bbcode.php:1303 +msgid "Invalid source protocol" +msgstr "Ungültiges Quell-Protokoll" + +#: include/bbcode.php:1313 +msgid "Invalid link protocol" +msgstr "Ungültiges Link-Protokoll" + +#: include/enotify.php:27 +msgid "Friendica Notification" +msgstr "Friendica-Benachrichtigung" + +#: include/enotify.php:30 +msgid "Thank You," +msgstr "Danke," + +#: include/enotify.php:33 +#, php-format +msgid "%s Administrator" +msgstr "der Administrator von %s" + +#: include/enotify.php:35 +#, php-format +msgid "%1$s, %2$s Administrator" +msgstr "%1$s, %2$s Administrator" + +#: include/enotify.php:73 +#, php-format +msgid "%s " +msgstr "%s " + +#: include/enotify.php:86 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica-Meldung] Neue Nachricht erhalten von %s" + +#: include/enotify.php:88 +#, 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:89 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s schickte Dir %2$s." + +#: include/enotify.php:89 +msgid "a private message" +msgstr "eine private Nachricht" + +#: include/enotify.php:91 +#, 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:137 +#, 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:144 +#, 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:152 +#, 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:162 +#, 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: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:167 include/enotify.php:181 include/enotify.php:195 +#: include/enotify.php:209 include/enotify.php:227 include/enotify.php:241 +#, 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:174 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben" + +#: 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:177 +#, 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:188 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica-Meldung] %s hat Dich erwähnt" + +#: 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: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:202 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt" + +#: include/enotify.php:204 +#, 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:205 +#, 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:216 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "[Friendica-Meldung] %1$s hat Dich angestupst" + +#: include/enotify.php:218 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s hat Dich auf %2$s angestupst" + +#: include/enotify.php:219 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "%1$s [url=%2$s]hat Dich angestupst[/url]." + +#: include/enotify.php:234 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica-Meldung] %s hat Deinen Beitrag getaggt" + +#: include/enotify.php:236 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s erwähnte Deinen Beitrag auf %2$s" + +#: include/enotify.php:237 +#, 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:248 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica-Meldung] Kontaktanfrage erhalten" + +#: include/enotify.php:250 +#, 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:251 +#, 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:255 include/enotify.php:298 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Hier kannst Du das Profil betrachten: %s" + +#: include/enotify.php:257 +#, 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:265 +msgid "[Friendica:Notify] A new person is sharing with you" +msgstr "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir" + +#: include/enotify.php:267 include/enotify.php:268 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "%1$s teilt mit Dir auf %2$s" + +#: include/enotify.php:274 +msgid "[Friendica:Notify] You have a new follower" +msgstr "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf " + +#: include/enotify.php:276 include/enotify.php:277 +#, 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:288 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten" + +#: include/enotify.php:290 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Du hast einen Kontakt-Vorschlag von '%1$s' auf %2$s erhalten" + +#: include/enotify.php:291 +#, 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]Kontakt-Vorschlag[/url] %2$s von %3$s erhalten." + +#: include/enotify.php:296 +msgid "Name:" +msgstr "Name:" + +#: include/enotify.php:297 +msgid "Photo:" +msgstr "Foto:" + +#: include/enotify.php:300 +#, 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:308 include/enotify.php:322 +msgid "[Friendica:Notify] Connection accepted" +msgstr "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt" + +#: include/enotify.php:310 include/enotify.php:324 +#, 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:311 include/enotify.php:325 +#, 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:315 +msgid "" +"You are now mutual friends and may exchange status updates, photos, and " +"email without restriction." +msgstr "Ihr seid nun beidseitige Kontakte und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen." + +#: include/enotify.php:317 +#, 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:329 +#, php-format +msgid "" +"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " +"communication - such as private messaging and some profile interactions. If " +"this is a celebrity or community page, these settings were applied " +"automatically." +msgstr "'%1$s' hat sich entschieden Dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen." + +#: include/enotify.php:331 +#, 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:333 +#, 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:343 +msgid "[Friendica System:Notify] registration request" +msgstr "[Friendica System:Benachrichtigung] Registrationsanfrage" + +#: include/enotify.php:345 +#, 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:346 +#, 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:350 +#, 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:353 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "Bitte besuche %s um die Anfrage zu bearbeiten." + +#: include/message.php:14 include/message.php:168 +msgid "[no subject]" +msgstr "[kein Betreff]" + +#: include/message.php:145 include/Photo.php:1075 include/Photo.php:1091 +#: include/Photo.php:1099 include/Photo.php:1124 mod/wall_upload.php:249 +#: mod/item.php:468 +msgid "Wall Photos" +msgstr "Pinnwand-Bilder" + +#: include/nav.php:37 mod/navigation.php:21 +msgid "Nothing new here" +msgstr "Keine Neuigkeiten" + +#: include/nav.php:41 mod/navigation.php:25 +msgid "Clear notifications" +msgstr "Bereinige Benachrichtigungen" + +#: include/nav.php:80 view/theme/frio/theme.php:245 boot.php:862 +msgid "Logout" +msgstr "Abmelden" + +#: include/nav.php:80 view/theme/frio/theme.php:245 +msgid "End this session" +msgstr "Diese Sitzung beenden" + +#: include/nav.php:83 include/identity.php:784 mod/contacts.php:648 +#: mod/contacts.php:844 view/theme/frio/theme.php:248 +msgid "Status" +msgstr "Status" + +#: include/nav.php:83 include/nav.php:163 view/theme/frio/theme.php:248 +msgid "Your posts and conversations" +msgstr "Deine Beiträge und Unterhaltungen" + +#: include/nav.php:84 include/identity.php:632 include/identity.php:759 +#: include/identity.php:792 mod/newmember.php:20 mod/profperm.php:107 +#: mod/contacts.php:650 mod/contacts.php:852 view/theme/frio/theme.php:249 +msgid "Profile" +msgstr "Profil" + +#: include/nav.php:84 view/theme/frio/theme.php:249 +msgid "Your profile page" +msgstr "Deine Profilseite" + +#: include/nav.php:85 include/identity.php:800 mod/fbrowser.php:33 +#: view/theme/frio/theme.php:250 +msgid "Photos" +msgstr "Bilder" + +#: include/nav.php:85 view/theme/frio/theme.php:250 +msgid "Your photos" +msgstr "Deine Fotos" + +#: include/nav.php:86 include/identity.php:808 include/identity.php:811 +#: view/theme/frio/theme.php:251 +msgid "Videos" +msgstr "Videos" + +#: include/nav.php:86 view/theme/frio/theme.php:251 +msgid "Your videos" +msgstr "Deine Videos" + +#: include/nav.php:87 include/nav.php:151 include/identity.php:820 +#: include/identity.php:831 mod/cal.php:272 mod/events.php:377 +#: view/theme/frio/theme.php:252 view/theme/frio/theme.php:256 +msgid "Events" +msgstr "Veranstaltungen" + +#: include/nav.php:87 view/theme/frio/theme.php:252 +msgid "Your events" +msgstr "Deine Ereignisse" + +#: include/nav.php:88 +msgid "Personal notes" +msgstr "Persönliche Notizen" + +#: include/nav.php:88 +msgid "Your personal notes" +msgstr "Deine persönlichen Notizen" + +#: include/nav.php:97 mod/bookmarklet.php:14 boot.php:863 +msgid "Login" +msgstr "Anmeldung" + +#: include/nav.php:97 +msgid "Sign in" +msgstr "Anmelden" + +#: include/nav.php:107 +msgid "Home Page" +msgstr "Homepage" + +#: include/nav.php:111 mod/register.php:291 boot.php:839 +msgid "Register" +msgstr "Registrieren" + +#: include/nav.php:111 +msgid "Create an account" +msgstr "Nutzerkonto erstellen" + +#: include/nav.php:117 mod/help.php:50 view/theme/vier/theme.php:299 +msgid "Help" +msgstr "Hilfe" + +#: include/nav.php:117 +msgid "Help and documentation" +msgstr "Hilfe und Dokumentation" + +#: include/nav.php:121 +msgid "Apps" +msgstr "Apps" + +#: include/nav.php:121 +msgid "Addon applications, utilities, games" +msgstr "Addon Anwendungen, Dienstprogramme, Spiele" + +#: include/nav.php:125 +msgid "Search site content" +msgstr "Inhalt der Seite durchsuchen" + +#: include/nav.php:145 include/nav.php:147 mod/community.php:32 msgid "Community" msgstr "Gemeinschaft" -#: include/nav.php:143 +#: include/nav.php:145 msgid "Conversations on this site" msgstr "Unterhaltungen auf dieser Seite" -#: include/nav.php:145 +#: include/nav.php:147 msgid "Conversations on the network" msgstr "Unterhaltungen im Netzwerk" -#: include/nav.php:149 include/identity.php:808 include/identity.php:819 -#: view/theme/frio/theme.php:254 +#: include/nav.php:151 include/identity.php:823 include/identity.php:834 +#: view/theme/frio/theme.php:256 msgid "Events and Calendar" msgstr "Ereignisse und Kalender" -#: include/nav.php:152 +#: include/nav.php:154 msgid "Directory" msgstr "Verzeichnis" -#: include/nav.php:152 +#: include/nav.php:154 msgid "People directory" msgstr "Nutzerverzeichnis" -#: include/nav.php:154 +#: include/nav.php:156 msgid "Information" msgstr "Information" -#: include/nav.php:154 +#: include/nav.php:156 msgid "Information about this friendica instance" msgstr "Informationen zu dieser Friendica Instanz" -#: include/nav.php:158 view/theme/frio/theme.php:253 +#: include/nav.php:160 view/theme/frio/theme.php:255 msgid "Conversations from your friends" msgstr "Unterhaltungen Deiner Kontakte" -#: include/nav.php:159 +#: include/nav.php:161 msgid "Network Reset" msgstr "Netzwerk zurücksetzen" -#: include/nav.php:159 +#: include/nav.php:161 msgid "Load Network page with no filters" msgstr "Netzwerk-Seite ohne Filter laden" -#: include/nav.php:166 +#: include/nav.php:168 msgid "Friend Requests" msgstr "Kontaktanfragen" -#: include/nav.php:169 mod/notifications.php:96 +#: include/nav.php:171 mod/notifications.php:98 msgid "Notifications" msgstr "Benachrichtigungen" -#: include/nav.php:170 +#: include/nav.php:172 msgid "See all notifications" msgstr "Alle Benachrichtigungen anzeigen" -#: include/nav.php:171 mod/settings.php:906 +#: include/nav.php:173 mod/settings.php:907 msgid "Mark as seen" msgstr "Als gelesen markieren" -#: include/nav.php:171 +#: include/nav.php:173 msgid "Mark all system notifications seen" msgstr "Markiere alle Systembenachrichtigungen als gelesen" -#: include/nav.php:175 mod/message.php:179 view/theme/frio/theme.php:255 +#: include/nav.php:177 mod/message.php:181 view/theme/frio/theme.php:257 msgid "Messages" msgstr "Nachrichten" -#: include/nav.php:175 view/theme/frio/theme.php:255 +#: include/nav.php:177 view/theme/frio/theme.php:257 msgid "Private mail" msgstr "Private E-Mail" -#: include/nav.php:176 +#: include/nav.php:178 msgid "Inbox" msgstr "Eingang" -#: include/nav.php:177 +#: include/nav.php:179 msgid "Outbox" msgstr "Ausgang" -#: include/nav.php:178 mod/message.php:16 +#: include/nav.php:180 mod/message.php:18 msgid "New Message" msgstr "Neue Nachricht" -#: include/nav.php:181 +#: include/nav.php:183 msgid "Manage" msgstr "Verwalten" -#: include/nav.php:181 +#: include/nav.php:183 msgid "Manage other pages" msgstr "Andere Seiten verwalten" -#: include/nav.php:184 mod/settings.php:81 +#: include/nav.php:186 mod/settings.php:83 msgid "Delegations" msgstr "Delegationen" -#: include/nav.php:184 mod/delegate.php:130 +#: include/nav.php:186 mod/delegate.php:132 msgid "Delegate Page Management" msgstr "Delegiere das Management für die Seite" -#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111 -#: mod/admin.php:1618 mod/admin.php:1894 view/theme/frio/theme.php:256 +#: include/nav.php:188 mod/newmember.php:15 mod/admin.php:1624 +#: mod/admin.php:1900 mod/settings.php:113 view/theme/frio/theme.php:258 msgid "Settings" msgstr "Einstellungen" -#: include/nav.php:186 view/theme/frio/theme.php:256 +#: include/nav.php:188 view/theme/frio/theme.php:258 msgid "Account settings" msgstr "Kontoeinstellungen" -#: include/nav.php:189 include/identity.php:290 +#: include/nav.php:191 include/identity.php:296 msgid "Profiles" msgstr "Profile" -#: include/nav.php:189 +#: include/nav.php:191 msgid "Manage/Edit Profiles" msgstr "Profile Verwalten/Editieren" -#: include/nav.php:192 view/theme/frio/theme.php:257 +#: include/nav.php:194 view/theme/frio/theme.php:259 msgid "Manage/edit friends and contacts" msgstr " Kontakte verwalten/editieren" -#: include/nav.php:197 mod/admin.php:196 +#: include/nav.php:199 mod/admin.php:197 msgid "Admin" msgstr "Administration" -#: include/nav.php:197 +#: include/nav.php:199 msgid "Site setup and configuration" msgstr "Einstellungen der Seite und Konfiguration" -#: include/nav.php:200 +#: include/nav.php:202 msgid "Navigation" msgstr "Navigation" -#: include/nav.php:200 +#: include/nav.php:202 msgid "Site map" msgstr "Sitemap" -#: include/plugin.php:530 include/plugin.php:532 +#: include/network.php:687 +msgid "view full size" +msgstr "Volle Größe anzeigen" + +#: include/oembed.php:256 +msgid "Embedded content" +msgstr "Eingebetteter Inhalt" + +#: include/oembed.php:264 +msgid "Embedding disabled" +msgstr "Einbettungen deaktiviert" + +#: include/uimport.php:85 +msgid "Error decoding account file" +msgstr "Fehler beim Verarbeiten der Account Datei" + +#: include/uimport.php:91 +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:108 include/uimport.php:119 +msgid "Error! Cannot check nickname" +msgstr "Fehler! Konnte den Nickname nicht überprüfen." + +#: include/uimport.php:112 include/uimport.php:123 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "Nutzer '%s' existiert bereits auf diesem Server!" + +#: include/uimport.php:145 +msgid "User creation error" +msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten" + +#: include/uimport.php:166 +msgid "User profile creation error" +msgstr "Fehler beim Anlegen des Nutzerkontos" + +#: include/uimport.php:215 +#, 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:281 +msgid "Done. You can now login with your username and password" +msgstr "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden" + +#: include/user.php:39 mod/settings.php:377 +msgid "Passwords do not match. Password unchanged." +msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert." + +#: 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:106 +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:111 +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:114 +msgid "Not a valid email address." +msgstr "Keine gültige E-Mail-Adresse." + +#: include/user.php:127 +msgid "Cannot use that email." +msgstr "Konnte diese E-Mail-Adresse nicht verwenden." + +#: include/user.php:133 +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:140 include/user.php:228 +msgid "Nickname is already registered. Please choose another." +msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." + +#: include/user.php:150 +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:166 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden." + +#: include/user.php:214 +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:237 view/theme/duepuntozero/config.php:46 +msgid "default" +msgstr "Standard" + +#: include/user.php:247 +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:260 include/user.php:264 include/profile_selectors.php:42 +msgid "Friends" +msgstr "Kontakte" + +#: include/user.php:306 include/user.php:314 include/user.php:322 +#: include/api.php:3697 mod/photos.php:73 mod/photos.php:189 +#: mod/photos.php:776 mod/photos.php:1258 mod/photos.php:1279 +#: mod/photos.php:1865 mod/profile_photo.php:74 mod/profile_photo.php:82 +#: mod/profile_photo.php:90 mod/profile_photo.php:214 +#: mod/profile_photo.php:309 mod/profile_photo.php:319 +msgid "Profile Photos" +msgstr "Profilbilder" + +#: include/user.php:397 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" +"\t" +msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde muss noch vom Admin des Knotens geprüft werden." + +#: include/user.php:407 +#, php-format +msgid "Registration at %s" +msgstr "Registrierung als %s" + +#: include/user.php:417 +#, 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:421 +#, php-format +msgid "" +"\n" +"\t\tThe login details are as follows:\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t%1$s\n" +"\t\t\tPassword:\t%5$s\n" +"\n" +"\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\tin.\n" +"\n" +"\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\tthan that.\n" +"\n" +"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\tIf you are new and do not know anybody here, they may help\n" +"\t\tyou to make some new and interesting friends.\n" +"\n" +"\n" +"\t\tThank you and welcome to %2$s." +msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3$s\n\tBenutzernamename:\t%1$s\n\tPasswort:\t%5$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2$s." + +#: include/user.php:453 mod/admin.php:1314 +#, php-format +msgid "Registration details for %s" +msgstr "Details der Registration von %s" + +#: include/api.php:1102 +#, 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:1123 +#, 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:1144 +#, 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/dba.php:57 include/dba_pdo.php:75 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln." + +#: include/dbstructure.php:25 +msgid "There are no tables on MyISAM." +msgstr "Es gibt keine MyISAM Tabellen." + +#: include/dbstructure.php:66 +#, 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:71 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]" + +#: include/dbstructure.php:195 +#, php-format +msgid "" +"\n" +"Error %d occurred during database update:\n" +"%s\n" +msgstr "\nFehler %d beim Update der Datenbank aufgetreten\n%s\n" + +#: include/dbstructure.php:198 +msgid "Errors encountered performing database changes: " +msgstr "Fehler beim Ändern der Datenbank aufgetreten" + +#: include/dbstructure.php:206 +msgid ": Database update" +msgstr ": Datenbank Update" + +#: include/dbstructure.php:438 +#, php-format +msgid "%s: updating %s table." +msgstr "%s: aktualisiere Tabelle %s" + +#: include/diaspora.php:2214 +msgid "Sharing notification from Diaspora network" +msgstr "Freigabe-Benachrichtigung von Diaspora" + +#: include/diaspora.php:3234 +msgid "Attachments:" +msgstr "Anhänge:" + +#: include/identity.php:45 +msgid "Requested account is not available." +msgstr "Das angefragte Profil ist nicht vorhanden." + +#: include/identity.php:54 mod/profile.php:22 +msgid "Requested profile is not available." +msgstr "Das angefragte Profil ist nicht vorhanden." + +#: include/identity.php:98 include/identity.php:325 include/identity.php:755 +msgid "Edit profile" +msgstr "Profil bearbeiten" + +#: include/identity.php:265 +msgid "Atom feed" +msgstr "Atom-Feed" + +#: include/identity.php:296 +msgid "Manage/edit profiles" +msgstr "Profile verwalten/editieren" + +#: include/identity.php:301 include/identity.php:327 mod/profiles.php:790 +msgid "Change profile photo" +msgstr "Profilbild ändern" + +#: include/identity.php:302 mod/profiles.php:791 +msgid "Create New Profile" +msgstr "Neues Profil anlegen" + +#: include/identity.php:312 mod/profiles.php:780 +msgid "Profile Image" +msgstr "Profilbild" + +#: include/identity.php:315 mod/profiles.php:782 +msgid "visible to everybody" +msgstr "sichtbar für jeden" + +#: include/identity.php:316 mod/profiles.php:687 mod/profiles.php:783 +msgid "Edit visibility" +msgstr "Sichtbarkeit bearbeiten" + +#: include/identity.php:344 include/identity.php:644 mod/directory.php:137 +#: mod/notifications.php:252 +msgid "Gender:" +msgstr "Geschlecht:" + +#: include/identity.php:347 include/identity.php:665 mod/directory.php:139 +msgid "Status:" +msgstr "Status:" + +#: include/identity.php:349 include/identity.php:682 mod/directory.php:141 +msgid "Homepage:" +msgstr "Homepage:" + +#: include/identity.php:351 include/identity.php:702 mod/directory.php:143 +#: mod/notifications.php:248 mod/contacts.php:643 +msgid "About:" +msgstr "Über:" + +#: include/identity.php:353 mod/contacts.php:641 +msgid "XMPP:" +msgstr "XMPP:" + +#: include/identity.php:439 mod/notifications.php:260 mod/contacts.php:58 +msgid "Network:" +msgstr "Netzwerk:" + +#: include/identity.php:468 include/identity.php:558 +msgid "g A l F d" +msgstr "l, d. F G \\U\\h\\r" + +#: include/identity.php:469 include/identity.php:559 +msgid "F d" +msgstr "d. F" + +#: include/identity.php:520 include/identity.php:609 +msgid "[today]" +msgstr "[heute]" + +#: include/identity.php:532 +msgid "Birthday Reminders" +msgstr "Geburtstagserinnerungen" + +#: include/identity.php:533 +msgid "Birthdays this week:" +msgstr "Geburtstage diese Woche:" + +#: include/identity.php:595 +msgid "[No description]" +msgstr "[keine Beschreibung]" + +#: include/identity.php:620 +msgid "Event Reminders" +msgstr "Veranstaltungserinnerungen" + +#: include/identity.php:621 +msgid "Events this week:" +msgstr "Veranstaltungen diese Woche" + +#: include/identity.php:641 mod/settings.php:1287 +msgid "Full Name:" +msgstr "Kompletter Name:" + +#: include/identity.php:648 +msgid "j F, Y" +msgstr "j F, Y" + +#: include/identity.php:649 +msgid "j F" +msgstr "j F" + +#: include/identity.php:661 +msgid "Age:" +msgstr "Alter:" + +#: include/identity.php:674 +#, php-format +msgid "for %1$d %2$s" +msgstr "für %1$d %2$s" + +#: include/identity.php:678 mod/profiles.php:706 +msgid "Sexual Preference:" +msgstr "Sexuelle Vorlieben:" + +#: include/identity.php:686 mod/profiles.php:733 +msgid "Hometown:" +msgstr "Heimatort:" + +#: include/identity.php:690 mod/follow.php:139 mod/notifications.php:250 +#: mod/contacts.php:645 +msgid "Tags:" +msgstr "Tags:" + +#: include/identity.php:694 mod/profiles.php:734 +msgid "Political Views:" +msgstr "Politische Ansichten:" + +#: include/identity.php:698 +msgid "Religion:" +msgstr "Religion:" + +#: include/identity.php:706 +msgid "Hobbies/Interests:" +msgstr "Hobbies/Interessen:" + +#: include/identity.php:710 mod/profiles.php:738 +msgid "Likes:" +msgstr "Likes:" + +#: include/identity.php:714 mod/profiles.php:739 +msgid "Dislikes:" +msgstr "Dislikes:" + +#: include/identity.php:718 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformationen und Soziale Netzwerke:" + +#: include/identity.php:722 +msgid "Musical interests:" +msgstr "Musikalische Interessen:" + +#: include/identity.php:726 +msgid "Books, literature:" +msgstr "Literatur/Bücher:" + +#: include/identity.php:730 +msgid "Television:" +msgstr "Fernsehen:" + +#: include/identity.php:734 +msgid "Film/dance/culture/entertainment:" +msgstr "Filme/Tänze/Kultur/Unterhaltung:" + +#: include/identity.php:738 +msgid "Love/Romance:" +msgstr "Liebesleben:" + +#: include/identity.php:742 +msgid "Work/employment:" +msgstr "Arbeit/Beschäftigung:" + +#: include/identity.php:746 +msgid "School/education:" +msgstr "Schule/Ausbildung:" + +#: include/identity.php:751 +msgid "Forums:" +msgstr "Foren:" + +#: include/identity.php:760 mod/events.php:509 +msgid "Basic" +msgstr "Allgemein" + +#: include/identity.php:761 mod/events.php:510 mod/admin.php:1065 +#: mod/contacts.php:881 +msgid "Advanced" +msgstr "Erweitert" + +#: include/identity.php:787 mod/follow.php:147 mod/contacts.php:847 +msgid "Status Messages and Posts" +msgstr "Statusnachrichten und Beiträge" + +#: include/identity.php:795 mod/contacts.php:855 +msgid "Profile Details" +msgstr "Profildetails" + +#: include/identity.php:803 mod/photos.php:95 +msgid "Photo Albums" +msgstr "Fotoalben" + +#: include/identity.php:842 mod/notes.php:49 +msgid "Personal Notes" +msgstr "Persönliche Notizen" + +#: include/identity.php:845 +msgid "Only You Can See This" +msgstr "Nur Du kannst das sehen" + +#: include/items.php:1736 mod/dfrn_confirm.php:738 mod/dfrn_request.php:759 +msgid "[Name Withheld]" +msgstr "[Name unterdrückt]" + +#: include/items.php:2121 mod/display.php:105 mod/display.php:280 +#: mod/display.php:485 mod/notice.php:17 mod/viewsrc.php:16 mod/admin.php:248 +#: mod/admin.php:1571 mod/admin.php:1822 +msgid "Item not found." +msgstr "Beitrag nicht gefunden." + +#: include/items.php:2160 +msgid "Do you really want to delete this item?" +msgstr "Möchtest Du wirklich dieses Item löschen?" + +#: include/items.php:2162 mod/api.php:107 mod/follow.php:115 +#: mod/message.php:208 mod/register.php:247 mod/suggest.php:31 +#: mod/dfrn_request.php:880 mod/contacts.php:455 mod/profiles.php:643 +#: mod/profiles.php:646 mod/profiles.php:673 mod/settings.php:1172 +#: mod/settings.php:1178 mod/settings.php:1185 mod/settings.php:1189 +#: mod/settings.php:1194 mod/settings.php:1199 mod/settings.php:1204 +#: mod/settings.php:1209 mod/settings.php:1235 mod/settings.php:1236 +#: mod/settings.php:1237 mod/settings.php:1238 mod/settings.php:1239 +msgid "Yes" +msgstr "Ja" + +#: include/items.php:2309 mod/allfriends.php:14 mod/api.php:28 mod/api.php:33 +#: mod/attach.php:35 mod/cal.php:301 mod/common.php:20 mod/crepair.php:105 +#: mod/delegate.php:14 mod/dfrn_confirm.php:63 mod/dirfind.php:15 +#: mod/display.php:482 mod/editpost.php:12 mod/events.php:188 +#: mod/follow.php:13 mod/follow.php:76 mod/follow.php:160 mod/fsuggest.php:80 +#: mod/group.php:20 mod/invite.php:17 mod/invite.php:105 mod/manage.php:103 +#: mod/message.php:48 mod/message.php:173 mod/mood.php:116 mod/network.php:7 +#: mod/nogroup.php:29 mod/notes.php:25 mod/notifications.php:73 +#: mod/ostatus_subscribe.php:11 mod/photos.php:168 mod/photos.php:1111 +#: mod/poke.php:155 mod/register.php:44 mod/repair_ostatus.php:11 +#: mod/suggest.php:60 mod/viewcontacts.php:49 mod/wall_attach.php:69 +#: mod/wall_attach.php:72 mod/wall_upload.php:101 mod/wall_upload.php:104 +#: mod/wallmessage.php:11 mod/wallmessage.php:35 mod/wallmessage.php:75 +#: mod/wallmessage.php:99 mod/item.php:197 mod/item.php:209 mod/regmod.php:106 +#: mod/uimport.php:26 mod/contacts.php:363 mod/profile_photo.php:19 +#: mod/profile_photo.php:179 mod/profile_photo.php:190 +#: mod/profile_photo.php:203 mod/profiles.php:172 mod/profiles.php:610 +#: mod/settings.php:24 mod/settings.php:132 mod/settings.php:669 index.php:410 +msgid "Permission denied." +msgstr "Zugriff verweigert." + +#: include/items.php:2426 +msgid "Archives" +msgstr "Archiv" + +#: include/ostatus.php:1962 +#, php-format +msgid "%s is now following %s." +msgstr "%s folgt nun %s" + +#: include/ostatus.php:1963 +msgid "following" +msgstr "folgen" + +#: include/ostatus.php:1966 +#, php-format +msgid "%s stopped following %s." +msgstr "%s hat aufgehört %s zu folgen" + +#: include/ostatus.php:1967 +msgid "stopped following" +msgstr "wird nicht mehr gefolgt" + +#: include/plugin.php:531 include/plugin.php:533 msgid "Click here to upgrade." msgstr "Zum Upgraden hier klicken." -#: include/plugin.php:538 +#: include/plugin.php:539 msgid "This action exceeds the limits set by your subscription plan." msgstr "Diese Aktion überschreitet die Obergrenze Deines Abonnements." -#: include/plugin.php:543 +#: include/plugin.php:544 msgid "This action is not available under your subscription plan." msgstr "Diese Aktion ist in Deinem Abonnement nicht verfügbar." @@ -531,12 +2957,6 @@ msgstr "Nicht spezifiziert" msgid "Other" msgstr "Andere" -#: include/profile_selectors.php:6 include/conversation.php:1547 -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "Unentschieden" -msgstr[1] "Unentschieden" - #: include/profile_selectors.php:23 msgid "Males" msgstr "Männer" @@ -625,10 +3045,6 @@ msgstr "Untreu" msgid "Sex Addict" msgstr "Sexbesessen" -#: include/profile_selectors.php:42 include/user.php:263 include/user.php:267 -msgid "Friends" -msgstr "Kontakte" - #: include/profile_selectors.php:42 msgid "Friends/Benefits" msgstr "Freunde/Zuwendungen" @@ -713,3301 +3129,1255 @@ msgstr "Ist mir nicht wichtig" msgid "Ask me" msgstr "Frag mich" -#: include/security.php:61 -msgid "Welcome " -msgstr "Willkommen " - -#: include/security.php:62 -msgid "Please upload a profile photo." -msgstr "Bitte lade ein Profilbild hoch." - -#: include/security.php:65 -msgid "Welcome back " -msgstr "Willkommen zurück " - -#: include/security.php:429 -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/uimport.php:91 -msgid "Error decoding account file" -msgstr "Fehler beim Verarbeiten der Account Datei" - -#: include/uimport.php:97 -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:113 include/uimport.php:124 -msgid "Error! Cannot check nickname" -msgstr "Fehler! Konnte den Nickname nicht überprüfen." - -#: include/uimport.php:117 include/uimport.php:128 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "Nutzer '%s' existiert bereits auf diesem Server!" - -#: include/uimport.php:150 -msgid "User creation error" -msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten" - -#: include/uimport.php:170 -msgid "User profile creation error" -msgstr "Fehler beim Anlegen des Nutzerkontos" - -#: include/uimport.php:219 -#, 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:289 -msgid "Done. You can now login with your username and password" -msgstr "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden" - -#: include/Contact.php:395 include/Contact.php:408 include/Contact.php:453 -#: include/conversation.php:1004 include/conversation.php:1020 -#: mod/allfriends.php:68 mod/directory.php:157 mod/match.php:73 -#: mod/suggest.php:82 mod/dirfind.php:209 -msgid "View Profile" -msgstr "Profil anschauen" - -#: include/Contact.php:409 include/contact_widgets.php:32 -#: include/conversation.php:1017 mod/allfriends.php:69 mod/contacts.php:610 -#: mod/match.php:74 mod/suggest.php:83 mod/dirfind.php:210 mod/follow.php:106 -msgid "Connect/Follow" -msgstr "Verbinden/Folgen" - -#: include/Contact.php:452 include/conversation.php:1003 -msgid "View Status" -msgstr "Pinnwand anschauen" - -#: include/Contact.php:454 include/conversation.php:1005 -msgid "View Photos" -msgstr "Bilder anschauen" - -#: include/Contact.php:455 include/conversation.php:1006 -msgid "Network Posts" -msgstr "Netzwerkbeiträge" - -#: include/Contact.php:456 include/conversation.php:1007 -msgid "View Contact" -msgstr "Kontakt anzeigen" - -#: include/Contact.php:457 -msgid "Drop Contact" -msgstr "Kontakt löschen" - -#: include/Contact.php:458 include/conversation.php:1008 -msgid "Send PM" -msgstr "Private Nachricht senden" - -#: include/Contact.php:459 include/conversation.php:1012 -msgid "Poke" -msgstr "Anstupsen" - -#: include/Contact.php:840 -msgid "Organisation" -msgstr "Organisation" - -#: include/Contact.php:843 -msgid "News" -msgstr "Nachrichten" - -#: include/Contact.php:846 -msgid "Forum" -msgstr "Forum" - -#: include/acl_selectors.php:353 -msgid "Post to Email" -msgstr "An E-Mail senden" - -#: include/acl_selectors.php:358 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist." - -#: include/acl_selectors.php:359 mod/settings.php:1188 -msgid "Hide your profile details from unknown viewers?" -msgstr "Profil-Details vor unbekannten Betrachtern verbergen?" - -#: include/acl_selectors.php:365 -msgid "Visible to everybody" -msgstr "Für jeden sichtbar" - -#: include/acl_selectors.php:366 view/theme/vier/config.php:108 -msgid "show" -msgstr "zeigen" - -#: include/acl_selectors.php:367 view/theme/vier/config.php:108 -msgid "don't show" -msgstr "nicht zeigen" - -#: include/acl_selectors.php:373 mod/editpost.php:123 -msgid "CC: email addresses" -msgstr "Cc: E-Mail-Addressen" - -#: include/acl_selectors.php:374 mod/editpost.php:130 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Z.B.: bob@example.com, mary@example.com" - -#: include/acl_selectors.php:376 mod/events.php:508 mod/photos.php:1196 -#: mod/photos.php:1593 -msgid "Permissions" -msgstr "Berechtigungen" - -#: include/acl_selectors.php:377 -msgid "Close" -msgstr "Schließen" - -#: include/api.php:1089 -#, 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:1110 -#, 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:1131 -#, 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/auth.php:51 -msgid "Logged out." -msgstr "Abgemeldet." - -#: include/auth.php:122 include/auth.php:184 mod/openid.php:110 -msgid "Login failed." -msgstr "Anmeldung fehlgeschlagen." - -#: include/auth.php:138 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:138 include/user.php:75 -msgid "The error message was:" -msgstr "Die Fehlermeldung lautete:" - -#: include/bb2diaspora.php:230 include/event.php:17 mod/localtime.php:12 -msgid "l F d, Y \\@ g:i A" -msgstr "l, d. F Y\\, H:i" - -#: include/bb2diaspora.php:236 include/event.php:34 include/event.php:54 -#: include/event.php:525 -msgid "Starts:" -msgstr "Beginnt:" - -#: include/bb2diaspora.php:244 include/event.php:37 include/event.php:60 -#: include/event.php:526 -msgid "Finishes:" -msgstr "Endet:" - -#: include/bb2diaspora.php:253 include/event.php:41 include/event.php:67 -#: include/event.php:527 include/identity.php:336 mod/contacts.php:636 -#: mod/directory.php:139 mod/events.php:493 mod/notifications.php:244 -msgid "Location:" -msgstr "Ort:" - -#: include/bbcode.php:380 include/bbcode.php:1132 include/bbcode.php:1133 -msgid "Image/photo" -msgstr "Bild/Foto" - -#: include/bbcode.php:497 -#, php-format -msgid "%2$s %3$s" -msgstr "%2$s %3$s" - -#: include/bbcode.php:1089 include/bbcode.php:1111 -msgid "$1 wrote:" -msgstr "$1 hat geschrieben:" - -#: include/bbcode.php:1141 include/bbcode.php:1142 -msgid "Encrypted content" -msgstr "Verschlüsselter Inhalt" - -#: include/bbcode.php:1257 -msgid "Invalid source protocol" -msgstr "Ungültiges Quell-Protokoll" - -#: include/bbcode.php:1267 -msgid "Invalid link protocol" -msgstr "Ungültiges Link-Protokoll" - -#: include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Unbekannt | Nicht kategorisiert" - -#: include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Sofort blockieren" - -#: include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Zwielichtig, Spammer, Selbstdarsteller" - -#: include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Ist mir bekannt, hab aber keine Meinung" - -#: include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "OK, wahrscheinlich harmlos" - -#: include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Seriös, hat mein Vertrauen" - -#: include/contact_selectors.php:56 mod/admin.php:980 -msgid "Frequently" -msgstr "immer wieder" - -#: include/contact_selectors.php:57 mod/admin.php:981 -msgid "Hourly" -msgstr "Stündlich" - -#: include/contact_selectors.php:58 mod/admin.php:982 -msgid "Twice daily" -msgstr "Zweimal täglich" - -#: include/contact_selectors.php:59 mod/admin.php:983 -msgid "Daily" -msgstr "Täglich" - -#: include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Wöchentlich" - -#: include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Monatlich" - -#: include/contact_selectors.php:76 mod/dfrn_request.php:886 -msgid "Friendica" -msgstr "Friendica" - -#: include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: include/contact_selectors.php:79 include/contact_selectors.php:86 -#: mod/admin.php:1490 mod/admin.php:1503 mod/admin.php:1516 mod/admin.php:1534 -msgid "Email" -msgstr "E-Mail" - -#: include/contact_selectors.php:80 mod/dfrn_request.php:888 -#: mod/settings.php:848 -msgid "Diaspora" -msgstr "Diaspora" - -#: include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" - -#: include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zott" - -#: include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/Chat" - -#: include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: include/contact_selectors.php:87 -msgid "Google+" -msgstr "Google+" - -#: include/contact_selectors.php:88 -msgid "pump.io" -msgstr "pump.io" - -#: include/contact_selectors.php:89 -msgid "Twitter" -msgstr "Twitter" - -#: include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "Diaspora" - -#: include/contact_selectors.php:91 -msgid "GNU Social Connector" -msgstr "GNU social Connector" - -#: include/contact_selectors.php:92 -msgid "pnut" -msgstr "pnut" - -#: include/contact_selectors.php:93 -msgid "App.net" -msgstr "App.net" - -#: include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Neuen Kontakt hinzufügen" - -#: include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Adresse oder Web-Link eingeben" - -#: include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Beispiel: bob@example.com, http://example.com/barbara" - -#: include/contact_widgets.php:10 include/identity.php:224 -#: mod/allfriends.php:85 mod/match.php:89 mod/suggest.php:101 -#: mod/dirfind.php:207 -msgid "Connect" -msgstr "Verbinden" - -#: include/contact_widgets.php:24 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d Einladung verfügbar" -msgstr[1] "%d Einladungen verfügbar" - -#: include/contact_widgets.php:30 -msgid "Find People" -msgstr "Leute finden" - -#: include/contact_widgets.php:31 -msgid "Enter name or interest" -msgstr "Name oder Interessen eingeben" - -#: include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Beispiel: Robert Morgenstein, Angeln" - -#: include/contact_widgets.php:34 mod/contacts.php:806 mod/directory.php:206 -msgid "Find" -msgstr "Finde" - -#: include/contact_widgets.php:35 mod/suggest.php:114 -#: view/theme/vier/theme.php:201 -msgid "Friend Suggestions" -msgstr "Kontaktvorschläge" - -#: include/contact_widgets.php:36 view/theme/vier/theme.php:200 -msgid "Similar Interests" -msgstr "Ähnliche Interessen" - -#: include/contact_widgets.php:37 -msgid "Random Profile" -msgstr "Zufälliges Profil" - -#: include/contact_widgets.php:38 view/theme/vier/theme.php:202 -msgid "Invite Friends" -msgstr "Freunde einladen" - -#: include/contact_widgets.php:125 -msgid "Networks" -msgstr "Netzwerke" - -#: include/contact_widgets.php:128 -msgid "All Networks" -msgstr "Alle Netzwerke" - -#: include/contact_widgets.php:160 include/features.php:104 -msgid "Saved Folders" -msgstr "Gespeicherte Ordner" - -#: include/contact_widgets.php:163 include/contact_widgets.php:198 -msgid "Everything" -msgstr "Alles" - -#: include/contact_widgets.php:195 -msgid "Categories" -msgstr "Kategorien" - -#: include/contact_widgets.php:264 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d gemeinsamer Kontakt" -msgstr[1] "%d gemeinsame Kontakte" - -#: include/conversation.php:159 -#, php-format -msgid "%1$s attends %2$s's %3$s" -msgstr "%1$s nimmt an %2$ss %3$s teil." - -#: include/conversation.php:162 -#, 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:165 -#, 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:198 mod/dfrn_confirm.php:478 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s ist nun mit %2$s befreundet" - -#: include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s stupste %2$s" - -#: include/conversation.php:260 mod/mood.php:63 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s ist momentan %2$s" - -#: include/conversation.php:307 mod/tagger.php:95 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt" - -#: include/conversation.php:334 -msgid "post/item" -msgstr "Nachricht/Beitrag" - -#: include/conversation.php:335 -#, 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:614 mod/content.php:372 mod/photos.php:1662 -#: mod/profiles.php:340 -msgid "Likes" -msgstr "Likes" - -#: include/conversation.php:614 mod/content.php:372 mod/photos.php:1662 -#: mod/profiles.php:344 -msgid "Dislikes" -msgstr "Dislikes" - -#: include/conversation.php:615 include/conversation.php:1541 -#: mod/content.php:373 mod/photos.php:1663 -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Teilnehmend" -msgstr[1] "Teilnehmend" - -#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1663 -msgid "Not attending" -msgstr "Nicht teilnehmend" - -#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1663 -msgid "Might attend" -msgstr "Eventuell teilnehmend" - -#: include/conversation.php:747 mod/content.php:453 mod/content.php:759 -#: mod/photos.php:1728 object/Item.php:137 -msgid "Select" -msgstr "Auswählen" - -#: include/conversation.php:748 mod/contacts.php:816 mod/contacts.php:1015 -#: mod/content.php:454 mod/content.php:760 mod/photos.php:1729 -#: mod/settings.php:744 mod/admin.php:1508 object/Item.php:138 -msgid "Delete" -msgstr "Löschen" - -#: include/conversation.php:791 mod/content.php:487 mod/content.php:915 -#: mod/content.php:916 object/Item.php:356 object/Item.php:357 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Das Profil von %s auf %s betrachten." - -#: include/conversation.php:803 object/Item.php:344 -msgid "Categories:" -msgstr "Kategorien:" - -#: include/conversation.php:804 object/Item.php:345 -msgid "Filed under:" -msgstr "Abgelegt unter:" - -#: include/conversation.php:811 mod/content.php:497 mod/content.php:928 -#: object/Item.php:370 -#, php-format -msgid "%s from %s" -msgstr "%s von %s" - -#: include/conversation.php:827 mod/content.php:513 -msgid "View in context" -msgstr "Im Zusammenhang betrachten" - -#: include/conversation.php:829 include/conversation.php:1298 -#: mod/content.php:515 mod/content.php:953 mod/editpost.php:114 -#: mod/wallmessage.php:140 mod/message.php:337 mod/message.php:522 -#: mod/photos.php:1627 object/Item.php:395 -msgid "Please wait" -msgstr "Bitte warten" - -#: include/conversation.php:906 -msgid "remove" -msgstr "löschen" - -#: include/conversation.php:910 -msgid "Delete Selected Items" -msgstr "Lösche die markierten Beiträge" - -#: include/conversation.php:1002 -msgid "Follow Thread" -msgstr "Folge der Unterhaltung" - -#: include/conversation.php:1139 -#, php-format -msgid "%s likes this." -msgstr "%s mag das." - -#: include/conversation.php:1142 -#, php-format -msgid "%s doesn't like this." -msgstr "%s mag das nicht." - -#: include/conversation.php:1145 -#, php-format -msgid "%s attends." -msgstr "%s nimmt teil." - -#: include/conversation.php:1148 -#, php-format -msgid "%s doesn't attend." -msgstr "%s nimmt nicht teil." - -#: include/conversation.php:1151 -#, php-format -msgid "%s attends maybe." -msgstr "%s nimmt eventuell teil." - -#: include/conversation.php:1162 -msgid "and" -msgstr "und" - -#: include/conversation.php:1168 -#, php-format -msgid ", and %d other people" -msgstr " und %d andere" - -#: include/conversation.php:1177 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d Personen mögen das" - -#: include/conversation.php:1178 -#, php-format -msgid "%s like this." -msgstr "%s mögen das." - -#: include/conversation.php:1181 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d Personen mögen das nicht" - -#: include/conversation.php:1182 -#, php-format -msgid "%s don't like this." -msgstr "%s mögen dies nicht." - -#: include/conversation.php:1185 -#, php-format -msgid "%2$d people attend" -msgstr "%2$d Personen nehmen teil" - -#: include/conversation.php:1186 -#, php-format -msgid "%s attend." -msgstr "%s nehmen teil." - -#: include/conversation.php:1189 -#, php-format -msgid "%2$d people don't attend" -msgstr "%2$d Personen nehmen nicht teil" - -#: include/conversation.php:1190 -#, php-format -msgid "%s don't attend." -msgstr "%s nehmen nicht teil." - -#: include/conversation.php:1193 -#, php-format -msgid "%2$d people attend maybe" -msgstr "%2$d Personen nehmen eventuell teil" - -#: include/conversation.php:1194 -#, php-format -msgid "%s anttend maybe." -msgstr "%s nehmen vielleicht teil." - -#: include/conversation.php:1223 include/conversation.php:1239 -msgid "Visible to everybody" -msgstr "Für jedermann sichtbar" - -#: include/conversation.php:1224 include/conversation.php:1240 -#: mod/wallmessage.php:114 mod/wallmessage.php:121 mod/message.php:271 -#: mod/message.php:278 mod/message.php:418 mod/message.php:425 -msgid "Please enter a link URL:" -msgstr "Bitte gib die URL des Links ein:" - -#: include/conversation.php:1225 include/conversation.php:1241 -msgid "Please enter a video link/URL:" -msgstr "Bitte Link/URL zum Video einfügen:" - -#: include/conversation.php:1226 include/conversation.php:1242 -msgid "Please enter an audio link/URL:" -msgstr "Bitte Link/URL zum Audio einfügen:" - -#: include/conversation.php:1227 include/conversation.php:1243 -msgid "Tag term:" -msgstr "Tag:" - -#: include/conversation.php:1228 include/conversation.php:1244 -#: mod/filer.php:30 -msgid "Save to Folder:" -msgstr "In diesem Ordner speichern:" - -#: include/conversation.php:1229 include/conversation.php:1245 -msgid "Where are you right now?" -msgstr "Wo hältst Du Dich jetzt gerade auf?" - -#: include/conversation.php:1230 -msgid "Delete item(s)?" -msgstr "Einträge löschen?" - -#: include/conversation.php:1279 -msgid "Share" -msgstr "Teilen" - -#: include/conversation.php:1280 mod/editpost.php:100 mod/wallmessage.php:138 -#: mod/message.php:335 mod/message.php:519 -msgid "Upload photo" -msgstr "Foto hochladen" - -#: include/conversation.php:1281 mod/editpost.php:101 -msgid "upload photo" -msgstr "Bild hochladen" - -#: include/conversation.php:1282 mod/editpost.php:102 -msgid "Attach file" -msgstr "Datei anhängen" - -#: include/conversation.php:1283 mod/editpost.php:103 -msgid "attach file" -msgstr "Datei anhängen" - -#: include/conversation.php:1284 mod/editpost.php:104 mod/wallmessage.php:139 -#: mod/message.php:336 mod/message.php:520 -msgid "Insert web link" -msgstr "Einen Link einfügen" - -#: include/conversation.php:1285 mod/editpost.php:105 -msgid "web link" -msgstr "Weblink" - -#: include/conversation.php:1286 mod/editpost.php:106 -msgid "Insert video link" -msgstr "Video-Adresse einfügen" - -#: include/conversation.php:1287 mod/editpost.php:107 -msgid "video link" -msgstr "Video-Link" - -#: include/conversation.php:1288 mod/editpost.php:108 -msgid "Insert audio link" -msgstr "Audio-Adresse einfügen" - -#: include/conversation.php:1289 mod/editpost.php:109 -msgid "audio link" -msgstr "Audio-Link" - -#: include/conversation.php:1290 mod/editpost.php:110 -msgid "Set your location" -msgstr "Deinen Standort festlegen" - -#: include/conversation.php:1291 mod/editpost.php:111 -msgid "set location" -msgstr "Ort setzen" - -#: include/conversation.php:1292 mod/editpost.php:112 -msgid "Clear browser location" -msgstr "Browser-Standort leeren" - -#: include/conversation.php:1293 mod/editpost.php:113 -msgid "clear location" -msgstr "Ort löschen" - -#: include/conversation.php:1295 mod/editpost.php:127 -msgid "Set title" -msgstr "Titel setzen" - -#: include/conversation.php:1297 mod/editpost.php:129 -msgid "Categories (comma-separated list)" -msgstr "Kategorien (kommasepariert)" - -#: include/conversation.php:1299 mod/editpost.php:115 -msgid "Permission settings" -msgstr "Berechtigungseinstellungen" - -#: include/conversation.php:1300 mod/editpost.php:144 -msgid "permissions" -msgstr "Zugriffsrechte" - -#: include/conversation.php:1308 mod/editpost.php:124 -msgid "Public post" -msgstr "Öffentlicher Beitrag" - -#: include/conversation.php:1313 mod/content.php:737 mod/editpost.php:135 -#: mod/events.php:503 mod/photos.php:1647 mod/photos.php:1689 -#: mod/photos.php:1769 object/Item.php:714 -msgid "Preview" -msgstr "Vorschau" - -#: include/conversation.php:1317 include/items.php:2167 mod/contacts.php:455 -#: mod/editpost.php:138 mod/fbrowser.php:100 mod/fbrowser.php:135 -#: mod/suggest.php:32 mod/tagrm.php:11 mod/tagrm.php:96 -#: mod/dfrn_request.php:894 mod/follow.php:124 mod/message.php:209 -#: mod/photos.php:245 mod/photos.php:337 mod/settings.php:682 -#: mod/settings.php:708 mod/videos.php:132 -msgid "Cancel" -msgstr "Abbrechen" - -#: include/conversation.php:1323 -msgid "Post to Groups" -msgstr "Poste an Gruppe" - -#: include/conversation.php:1324 -msgid "Post to Contacts" -msgstr "Poste an Kontakte" - -#: include/conversation.php:1325 -msgid "Private post" -msgstr "Privater Beitrag" - -#: include/conversation.php:1330 include/identity.php:264 mod/editpost.php:142 -msgid "Message" -msgstr "Nachricht" - -#: include/conversation.php:1331 mod/editpost.php:143 -msgid "Browser" -msgstr "Browser" - -#: include/conversation.php:1513 -msgid "View all" -msgstr "Zeige alle" - -#: include/conversation.php:1535 -msgid "Like" -msgid_plural "Likes" -msgstr[0] "mag ich" -msgstr[1] "Mag ich" - -#: include/conversation.php:1538 -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "mag ich nicht" -msgstr[1] "Mag ich nicht" - -#: include/conversation.php:1544 -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Nicht teilnehmend " -msgstr[1] "Nicht teilnehmend" - -#: include/datetime.php:66 include/datetime.php:68 mod/profiles.php:698 -msgid "Miscellaneous" -msgstr "Verschiedenes" - -#: include/datetime.php:196 include/identity.php:644 -msgid "Birthday:" -msgstr "Geburtstag:" - -#: include/datetime.php:198 mod/profiles.php:721 -msgid "Age: " -msgstr "Alter: " - -#: include/datetime.php:200 -msgid "YYYY-MM-DD or MM-DD" -msgstr "YYYY-MM-DD oder MM-DD" - -#: include/datetime.php:370 -msgid "never" -msgstr "nie" - -#: include/datetime.php:376 -msgid "less than a second ago" -msgstr "vor weniger als einer Sekunde" - -#: include/datetime.php:379 -msgid "year" -msgstr "Jahr" - -#: include/datetime.php:379 -msgid "years" -msgstr "Jahre" - -#: include/datetime.php:380 include/event.php:519 mod/cal.php:279 -#: mod/events.php:384 -msgid "month" -msgstr "Monat" - -#: include/datetime.php:380 -msgid "months" -msgstr "Monate" - -#: include/datetime.php:381 include/event.php:520 mod/cal.php:280 -#: mod/events.php:385 -msgid "week" -msgstr "Woche" - -#: include/datetime.php:381 -msgid "weeks" -msgstr "Wochen" - -#: include/datetime.php:382 include/event.php:521 mod/cal.php:281 -#: mod/events.php:386 -msgid "day" -msgstr "Tag" - -#: include/datetime.php:382 -msgid "days" -msgstr "Tage" - -#: include/datetime.php:383 -msgid "hour" -msgstr "Stunde" - -#: include/datetime.php:383 -msgid "hours" -msgstr "Stunden" - -#: include/datetime.php:384 -msgid "minute" -msgstr "Minute" - -#: include/datetime.php:384 -msgid "minutes" -msgstr "Minuten" - -#: include/datetime.php:385 -msgid "second" -msgstr "Sekunde" - -#: include/datetime.php:385 -msgid "seconds" -msgstr "Sekunden" - -#: include/datetime.php:394 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s her" - -#: include/datetime.php:620 -#, php-format -msgid "%s's birthday" -msgstr "%ss Geburtstag" - -#: include/datetime.php:621 include/dfrn.php:1252 -#, php-format -msgid "Happy Birthday %s" -msgstr "Herzlichen Glückwunsch %s" - -#: include/dba_pdo.php:72 include/dba.php:47 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln." - -#: include/enotify.php:24 -msgid "Friendica Notification" -msgstr "Friendica-Benachrichtigung" - -#: include/enotify.php:27 -msgid "Thank You," -msgstr "Danke," - -#: include/enotify.php:30 -#, php-format -msgid "%s Administrator" -msgstr "der Administrator von %s" - -#: include/enotify.php:32 -#, php-format -msgid "%1$s, %2$s Administrator" -msgstr "%1$s, %2$s Administrator" - -#: include/enotify.php:70 -#, php-format -msgid "%s " -msgstr "%s " - -#: include/enotify.php:83 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica-Meldung] Neue Nachricht erhalten von %s" - -#: include/enotify.php:85 -#, 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:86 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s schickte Dir %2$s." - -#: include/enotify.php:86 -msgid "a private message" -msgstr "eine private Nachricht" - -#: include/enotify.php:88 -#, 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 -#, 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 -#, 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 -#, 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 -#, 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:161 -#, 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:164 include/enotify.php:178 include/enotify.php:192 -#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren." - -#: include/enotify.php:171 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben" - -#: include/enotify.php:173 -#, 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 -#, 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 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica-Meldung] %s hat Dich erwähnt" - -#: include/enotify.php:187 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s erwähnte Dich auf %2$s" - -#: include/enotify.php:188 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [url=%2$s]erwähnte Dich[/url]." - -#: include/enotify.php:199 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" -msgstr "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt" - -#: include/enotify.php:201 -#, 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:202 -#, 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:213 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica-Meldung] %1$s hat Dich angestupst" - -#: include/enotify.php:215 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s hat Dich auf %2$s angestupst" - -#: include/enotify.php:216 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "%1$s [url=%2$s]hat Dich angestupst[/url]." - -#: include/enotify.php:231 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica-Meldung] %s hat Deinen Beitrag getaggt" - -#: include/enotify.php:233 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s erwähnte Deinen Beitrag auf %2$s" - -#: include/enotify.php:234 -#, 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:245 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica-Meldung] Kontaktanfrage erhalten" - -#: 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: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:252 include/enotify.php:295 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Hier kannst Du das Profil betrachten: %s" - -#: include/enotify.php:254 -#, 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:262 -msgid "[Friendica:Notify] A new person is sharing with you" -msgstr "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir" - -#: include/enotify.php:264 include/enotify.php:265 -#, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "%1$s teilt mit Dir auf %2$s" - -#: include/enotify.php:271 -msgid "[Friendica:Notify] You have a new follower" -msgstr "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf " - -#: include/enotify.php:273 include/enotify.php:274 -#, 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:285 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten" - -#: include/enotify.php:287 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Du hast einen Kontakt-Vorschlag von '%1$s' auf %2$s erhalten" - -#: include/enotify.php:288 -#, 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]Kontakt-Vorschlag[/url] %2$s von %3$s erhalten." - -#: include/enotify.php:293 -msgid "Name:" -msgstr "Name:" - -#: include/enotify.php:294 -msgid "Photo:" -msgstr "Foto:" - -#: include/enotify.php:297 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen." - -#: include/enotify.php:305 include/enotify.php:319 -msgid "[Friendica:Notify] Connection accepted" -msgstr "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt" - -#: include/enotify.php:307 include/enotify.php:321 -#, 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:308 include/enotify.php:322 -#, 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:312 -msgid "" -"You are now mutual friends and may exchange status updates, photos, and " -"email without restriction." -msgstr "Ihr seid nun beidseitige Kontakte und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen." - -#: include/enotify.php:314 -#, 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:326 -#, php-format -msgid "" -"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " -"communication - such as private messaging and some profile interactions. If " -"this is a celebrity or community page, these settings were applied " -"automatically." -msgstr "'%1$s' 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:328 -#, php-format -msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future." -msgstr "'%1$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. " - -#: include/enotify.php:330 -#, 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:340 -msgid "[Friendica System:Notify] registration request" -msgstr "[Friendica System:Benachrichtigung] Registrationsanfrage" - -#: include/enotify.php:342 -#, 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:343 -#, 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:347 -#, 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:350 -#, php-format -msgid "Please visit %s to approve or reject the request." -msgstr "Bitte besuche %s um die Anfrage zu bearbeiten." - -#: include/event.php:474 -msgid "all-day" -msgstr "ganztägig" - -#: include/event.php:476 -msgid "Sun" -msgstr "So" - -#: include/event.php:477 -msgid "Mon" -msgstr "Mo" - -#: include/event.php:478 -msgid "Tue" -msgstr "Di" - -#: include/event.php:479 -msgid "Wed" -msgstr "Mi" - -#: include/event.php:480 -msgid "Thu" -msgstr "Do" - -#: include/event.php:481 -msgid "Fri" -msgstr "Fr" - -#: include/event.php:482 -msgid "Sat" -msgstr "Sa" - -#: include/event.php:484 include/text.php:1198 mod/settings.php:981 -msgid "Sunday" -msgstr "Sonntag" - -#: include/event.php:485 include/text.php:1198 mod/settings.php:981 -msgid "Monday" -msgstr "Montag" - -#: include/event.php:486 include/text.php:1198 -msgid "Tuesday" -msgstr "Dienstag" - -#: include/event.php:487 include/text.php:1198 -msgid "Wednesday" -msgstr "Mittwoch" - -#: include/event.php:488 include/text.php:1198 -msgid "Thursday" -msgstr "Donnerstag" - -#: include/event.php:489 include/text.php:1198 -msgid "Friday" -msgstr "Freitag" - -#: include/event.php:490 include/text.php:1198 -msgid "Saturday" -msgstr "Samstag" - -#: include/event.php:492 -msgid "Jan" -msgstr "Jan" - -#: include/event.php:493 -msgid "Feb" -msgstr "Feb" - -#: include/event.php:494 -msgid "Mar" -msgstr "März" - -#: include/event.php:495 -msgid "Apr" -msgstr "Apr" - -#: include/event.php:496 include/event.php:509 include/text.php:1202 -msgid "May" -msgstr "Mai" - -#: include/event.php:497 -msgid "Jun" -msgstr "Jun" - -#: include/event.php:498 -msgid "Jul" -msgstr "Juli" - -#: include/event.php:499 -msgid "Aug" -msgstr "Aug" - -#: include/event.php:500 -msgid "Sept" -msgstr "Sep" - -#: include/event.php:501 -msgid "Oct" -msgstr "Okt" - -#: include/event.php:502 -msgid "Nov" -msgstr "Nov" - -#: include/event.php:503 -msgid "Dec" -msgstr "Dez" - -#: include/event.php:505 include/text.php:1202 -msgid "January" -msgstr "Januar" - -#: include/event.php:506 include/text.php:1202 -msgid "February" -msgstr "Februar" - -#: include/event.php:507 include/text.php:1202 -msgid "March" -msgstr "März" - -#: include/event.php:508 include/text.php:1202 -msgid "April" -msgstr "April" - -#: include/event.php:510 include/text.php:1202 -msgid "June" -msgstr "Juni" - -#: include/event.php:511 include/text.php:1202 -msgid "July" -msgstr "Juli" - -#: include/event.php:512 include/text.php:1202 -msgid "August" -msgstr "August" - -#: include/event.php:513 include/text.php:1202 -msgid "September" -msgstr "September" - -#: include/event.php:514 include/text.php:1202 -msgid "October" -msgstr "Oktober" - -#: include/event.php:515 include/text.php:1202 -msgid "November" -msgstr "November" - -#: include/event.php:516 include/text.php:1202 -msgid "December" -msgstr "Dezember" - -#: include/event.php:518 mod/cal.php:278 mod/events.php:383 -msgid "today" -msgstr "Heute" - -#: include/event.php:523 -msgid "No events to display" -msgstr "Keine Veranstaltung zum Anzeigen" - -#: include/event.php:636 -msgid "l, F j" -msgstr "l, F j" - -#: include/event.php:658 -msgid "Edit event" -msgstr "Veranstaltung bearbeiten" - -#: include/event.php:659 -msgid "Delete event" -msgstr "Veranstaltung löschen" - -#: include/event.php:685 include/text.php:1600 include/text.php:1607 -msgid "link to source" -msgstr "Link zum Originalbeitrag" - -#: include/event.php:939 -msgid "Export" -msgstr "Exportieren" - -#: include/event.php:940 -msgid "Export calendar as ical" -msgstr "Kalender als ical exportieren" - -#: include/event.php:941 -msgid "Export calendar as csv" -msgstr "Kalender als csv exportieren" - -#: include/features.php:65 -msgid "General Features" -msgstr "Allgemeine Features" - -#: include/features.php:67 -msgid "Multiple Profiles" -msgstr "Mehrere Profile" - -#: include/features.php:67 -msgid "Ability to create multiple profiles" -msgstr "Möglichkeit mehrere Profile zu erstellen" - -#: include/features.php:68 -msgid "Photo Location" -msgstr "Aufnahmeort" - -#: include/features.php:68 -msgid "" -"Photo metadata is normally stripped. This extracts the location (if present)" -" prior to stripping metadata and links it to a map." -msgstr "Die Foto-Metadaten werden ausgelesen. Dadurch kann der Aufnahmeort (wenn vorhanden) in einer Karte angezeigt werden." - -#: include/features.php:69 -msgid "Export Public Calendar" -msgstr "Öffentlichen Kalender exportieren" - -#: include/features.php:69 -msgid "Ability for visitors to download the public calendar" -msgstr "Möglichkeit für Besucher den öffentlichen Kalender herunter zu laden" - -#: include/features.php:74 -msgid "Post Composition Features" -msgstr "Beitragserstellung Features" - -#: include/features.php:75 -msgid "Post Preview" -msgstr "Beitragsvorschau" - -#: include/features.php:75 -msgid "Allow previewing posts and comments before publishing them" -msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben." - -#: include/features.php:76 -msgid "Auto-mention Forums" -msgstr "Foren automatisch erwähnen" - -#: include/features.php:76 -msgid "" -"Add/remove mention when a forum page is selected/deselected in ACL window." -msgstr "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert wurde." - -#: include/features.php:81 -msgid "Network Sidebar Widgets" -msgstr "Widgets für Netzwerk und Seitenleiste" - -#: include/features.php:82 -msgid "Search by Date" -msgstr "Archiv" - -#: include/features.php:82 -msgid "Ability to select posts by date ranges" -msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren" - -#: include/features.php:83 include/features.php:113 -msgid "List Forums" -msgstr "Zeige Foren" - -#: include/features.php:83 -msgid "Enable widget to display the forums your are connected with" -msgstr "Aktiviere Widget, um die Foren mit denen du verbunden bist anzuzeigen" - -#: include/features.php:84 -msgid "Group Filter" -msgstr "Gruppen Filter" - -#: include/features.php:84 -msgid "Enable widget to display Network posts only from selected group" -msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren." - -#: include/features.php:85 -msgid "Network Filter" -msgstr "Netzwerk Filter" - -#: include/features.php:85 -msgid "Enable widget to display Network posts only from selected network" -msgstr "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren." - -#: include/features.php:86 mod/network.php:206 mod/search.php:34 -msgid "Saved Searches" -msgstr "Gespeicherte Suchen" - -#: include/features.php:86 -msgid "Save search terms for re-use" -msgstr "Speichere Suchanfragen für spätere Wiederholung." - -#: include/features.php:91 -msgid "Network Tabs" -msgstr "Netzwerk Reiter" - -#: include/features.php:92 -msgid "Network Personal Tab" -msgstr "Netzwerk-Reiter: Persönlich" - -#: include/features.php:92 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen Du interagiert hast" - -#: include/features.php:93 -msgid "Network New Tab" -msgstr "Netzwerk-Reiter: Neue" - -#: include/features.php:93 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden" - -#: include/features.php:94 -msgid "Network Shared Links Tab" -msgstr "Netzwerk-Reiter: Geteilte Links" - -#: include/features.php:94 -msgid "Enable tab to display only Network posts with links in them" -msgstr "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält" - -#: include/features.php:99 -msgid "Post/Comment Tools" -msgstr "Werkzeuge für Beiträge und Kommentare" - -#: include/features.php:100 -msgid "Multiple Deletion" -msgstr "Mehrere Beiträge löschen" - -#: include/features.php:100 -msgid "Select and delete multiple posts/comments at once" -msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen" - -#: include/features.php:101 -msgid "Edit Sent Posts" -msgstr "Gesendete Beiträge editieren" - -#: include/features.php:101 -msgid "Edit and correct posts and comments after sending" -msgstr "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren." - -#: include/features.php:102 -msgid "Tagging" -msgstr "Tagging" - -#: include/features.php:102 -msgid "Ability to tag existing posts" -msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen." - -#: include/features.php:103 -msgid "Post Categories" -msgstr "Beitragskategorien" - -#: include/features.php:103 -msgid "Add categories to your posts" -msgstr "Eigene Beiträge mit Kategorien versehen" - -#: include/features.php:104 -msgid "Ability to file posts under folders" -msgstr "Beiträge in Ordnern speichern aktivieren" - -#: include/features.php:105 -msgid "Dislike Posts" -msgstr "Beiträge 'nicht mögen'" - -#: include/features.php:105 -msgid "Ability to dislike posts/comments" -msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'" - -#: include/features.php:106 -msgid "Star Posts" -msgstr "Beiträge Markieren" - -#: include/features.php:106 -msgid "Ability to mark special posts with a star indicator" -msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren" - -#: include/features.php:107 -msgid "Mute Post Notifications" -msgstr "Benachrichtigungen für Beiträge Stumm schalten" - -#: include/features.php:107 -msgid "Ability to mute notifications for a thread" -msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können" - -#: include/features.php:112 -msgid "Advanced Profile Settings" -msgstr "Erweiterte Profil-Einstellungen" - -#: include/features.php:113 -msgid "Show visitors public community forums at the Advanced Profile Page" -msgstr "Zeige Besuchern öffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite" - -#: include/follow.php:81 mod/dfrn_request.php:512 -msgid "Disallowed profile URL." -msgstr "Nicht erlaubte Profil-URL." - -#: include/follow.php:86 mod/dfrn_request.php:518 mod/friendica.php:114 -#: mod/admin.php:279 mod/admin.php:297 -msgid "Blocked domain" -msgstr "Blockierte Daimain" - -#: include/follow.php:91 -msgid "Connect URL missing." -msgstr "Connect-URL fehlt" - -#: include/follow.php:119 -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:120 include/follow.php:134 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden." - -#: include/follow.php:132 -msgid "The profile address specified does not provide adequate information." -msgstr "Die angegebene Profiladresse liefert unzureichende Informationen." - -#: include/follow.php:137 -msgid "An author or name was not found." -msgstr "Es wurde kein Autor oder Name gefunden." - -#: include/follow.php:140 -msgid "No browser URL could be matched to this address." -msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden." - -#: include/follow.php:143 -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:144 -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:150 -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:155 -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:256 -msgid "Unable to retrieve contact information." -msgstr "Konnte die Kontaktinformationen nicht empfangen." - -#: 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:210 -msgid "Default privacy group for new contacts" -msgstr "Voreingestellte Gruppe für neue Kontakte" - -#: include/group.php:243 -msgid "Everybody" -msgstr "Alle Kontakte" - -#: include/group.php:266 -msgid "edit" -msgstr "bearbeiten" - -#: include/group.php:287 mod/newmember.php:61 -msgid "Groups" -msgstr "Gruppen" - -#: include/group.php:289 -msgid "Edit groups" -msgstr "Gruppen bearbeiten" - -#: include/group.php:291 -msgid "Edit group" -msgstr "Gruppe bearbeiten" - -#: include/group.php:292 -msgid "Create a new group" -msgstr "Neue Gruppe erstellen" - -#: include/group.php:293 mod/group.php:99 mod/group.php:196 -msgid "Group Name: " -msgstr "Gruppenname:" - -#: include/group.php:295 -msgid "Contacts not in any group" -msgstr "Kontakte in keiner Gruppe" - -#: include/group.php:297 mod/network.php:207 -msgid "add" -msgstr "hinzufügen" - -#: include/identity.php:43 -msgid "Requested account is not available." -msgstr "Das angefragte Profil ist nicht vorhanden." - -#: include/identity.php:52 mod/profile.php:21 -msgid "Requested profile is not available." -msgstr "Das angefragte Profil ist nicht vorhanden." - -#: include/identity.php:96 include/identity.php:319 include/identity.php:740 -msgid "Edit profile" -msgstr "Profil bearbeiten" - -#: include/identity.php:259 -msgid "Atom feed" -msgstr "Atom-Feed" - -#: include/identity.php:290 -msgid "Manage/edit profiles" -msgstr "Profile verwalten/editieren" - -#: include/identity.php:295 include/identity.php:321 mod/profiles.php:787 -msgid "Change profile photo" -msgstr "Profilbild ändern" - -#: include/identity.php:296 mod/profiles.php:788 -msgid "Create New Profile" -msgstr "Neues Profil anlegen" - -#: include/identity.php:306 mod/profiles.php:777 -msgid "Profile Image" -msgstr "Profilbild" - -#: include/identity.php:309 mod/profiles.php:779 -msgid "visible to everybody" -msgstr "sichtbar für jeden" - -#: include/identity.php:310 mod/profiles.php:684 mod/profiles.php:780 -msgid "Edit visibility" -msgstr "Sichtbarkeit bearbeiten" - -#: include/identity.php:338 include/identity.php:633 mod/directory.php:141 -#: mod/notifications.php:250 -msgid "Gender:" -msgstr "Geschlecht:" - -#: include/identity.php:341 include/identity.php:651 mod/directory.php:143 -msgid "Status:" -msgstr "Status:" - -#: include/identity.php:343 include/identity.php:667 mod/directory.php:145 -msgid "Homepage:" -msgstr "Homepage:" - -#: include/identity.php:345 include/identity.php:687 mod/contacts.php:640 -#: mod/directory.php:147 mod/notifications.php:246 -msgid "About:" -msgstr "Über:" - -#: include/identity.php:347 mod/contacts.php:638 -msgid "XMPP:" -msgstr "XMPP:" - -#: include/identity.php:433 mod/contacts.php:55 mod/notifications.php:258 -msgid "Network:" -msgstr "Netzwerk:" - -#: include/identity.php:462 include/identity.php:552 -msgid "g A l F d" -msgstr "l, d. F G \\U\\h\\r" - -#: include/identity.php:463 include/identity.php:553 -msgid "F d" -msgstr "d. F" - -#: include/identity.php:514 include/identity.php:599 -msgid "[today]" -msgstr "[heute]" - -#: include/identity.php:526 -msgid "Birthday Reminders" -msgstr "Geburtstagserinnerungen" - -#: include/identity.php:527 -msgid "Birthdays this week:" -msgstr "Geburtstage diese Woche:" - -#: include/identity.php:586 -msgid "[No description]" -msgstr "[keine Beschreibung]" - -#: include/identity.php:610 -msgid "Event Reminders" -msgstr "Veranstaltungserinnerungen" - -#: include/identity.php:611 -msgid "Events this week:" -msgstr "Veranstaltungen diese Woche" - -#: include/identity.php:631 mod/settings.php:1286 -msgid "Full Name:" -msgstr "Kompletter Name:" - -#: include/identity.php:636 -msgid "j F, Y" -msgstr "j F, Y" - -#: include/identity.php:637 -msgid "j F" -msgstr "j F" - -#: include/identity.php:648 -msgid "Age:" -msgstr "Alter:" - -#: include/identity.php:659 -#, php-format -msgid "for %1$d %2$s" -msgstr "für %1$d %2$s" - -#: include/identity.php:663 mod/profiles.php:703 -msgid "Sexual Preference:" -msgstr "Sexuelle Vorlieben:" - -#: include/identity.php:671 mod/profiles.php:730 -msgid "Hometown:" -msgstr "Heimatort:" - -#: include/identity.php:675 mod/contacts.php:642 mod/follow.php:137 -#: mod/notifications.php:248 -msgid "Tags:" -msgstr "Tags:" - -#: include/identity.php:679 mod/profiles.php:731 -msgid "Political Views:" -msgstr "Politische Ansichten:" - -#: include/identity.php:683 -msgid "Religion:" -msgstr "Religion:" - -#: include/identity.php:691 -msgid "Hobbies/Interests:" -msgstr "Hobbies/Interessen:" - -#: include/identity.php:695 mod/profiles.php:735 -msgid "Likes:" -msgstr "Likes:" - -#: include/identity.php:699 mod/profiles.php:736 -msgid "Dislikes:" -msgstr "Dislikes:" - -#: include/identity.php:703 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformationen und Soziale Netzwerke:" - -#: include/identity.php:707 -msgid "Musical interests:" -msgstr "Musikalische Interessen:" - -#: include/identity.php:711 -msgid "Books, literature:" -msgstr "Literatur/Bücher:" - -#: include/identity.php:715 -msgid "Television:" -msgstr "Fernsehen:" - -#: include/identity.php:719 -msgid "Film/dance/culture/entertainment:" -msgstr "Filme/Tänze/Kultur/Unterhaltung:" - -#: include/identity.php:723 -msgid "Love/Romance:" -msgstr "Liebesleben:" - -#: include/identity.php:727 -msgid "Work/employment:" -msgstr "Arbeit/Beschäftigung:" - -#: include/identity.php:731 -msgid "School/education:" -msgstr "Schule/Ausbildung:" - -#: include/identity.php:736 -msgid "Forums:" -msgstr "Foren:" - -#: include/identity.php:745 mod/events.php:506 -msgid "Basic" -msgstr "Allgemein" - -#: include/identity.php:746 mod/contacts.php:878 mod/events.php:507 -#: mod/admin.php:1059 -msgid "Advanced" -msgstr "Erweitert" - -#: include/identity.php:772 mod/contacts.php:844 mod/follow.php:145 -msgid "Status Messages and Posts" -msgstr "Statusnachrichten und Beiträge" - -#: include/identity.php:780 mod/contacts.php:852 -msgid "Profile Details" -msgstr "Profildetails" - -#: include/identity.php:788 mod/photos.php:93 -msgid "Photo Albums" -msgstr "Fotoalben" - -#: include/identity.php:827 mod/notes.php:47 -msgid "Personal Notes" -msgstr "Persönliche Notizen" - -#: include/identity.php:830 -msgid "Only You Can See This" -msgstr "Nur Du kannst das sehen" - -#: include/network.php:687 -msgid "view full size" -msgstr "Volle Größe anzeigen" - -#: include/oembed.php:255 -msgid "Embedded content" -msgstr "Eingebetteter Inhalt" - -#: include/oembed.php:263 -msgid "Embedding disabled" -msgstr "Einbettungen deaktiviert" - -#: include/photos.php:57 include/photos.php:66 mod/fbrowser.php:40 -#: mod/fbrowser.php:61 mod/photos.php:187 mod/photos.php:1123 -#: mod/photos.php:1256 mod/photos.php:1277 mod/photos.php:1839 -#: mod/photos.php:1853 -msgid "Contact Photos" -msgstr "Kontaktbilder" - -#: include/user.php:39 mod/settings.php:375 -msgid "Passwords do not match. Password unchanged." -msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert." - -#: 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:106 -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:111 -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:114 -msgid "Not a valid email address." -msgstr "Keine gültige E-Mail-Adresse." - -#: include/user.php:127 -msgid "Cannot use that email." -msgstr "Konnte diese E-Mail-Adresse nicht verwenden." - -#: include/user.php:133 -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:140 include/user.php:228 -msgid "Nickname is already registered. Please choose another." -msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." - -#: include/user.php:150 -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:166 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden." - -#: include/user.php:214 -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:239 view/theme/duepuntozero/config.php:43 -msgid "default" -msgstr "Standard" - -#: include/user.php:249 -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:309 include/user.php:317 include/user.php:325 -#: mod/profile_photo.php:74 mod/profile_photo.php:82 mod/profile_photo.php:90 -#: mod/profile_photo.php:215 mod/profile_photo.php:310 -#: mod/profile_photo.php:320 mod/photos.php:71 mod/photos.php:187 -#: mod/photos.php:774 mod/photos.php:1256 mod/photos.php:1277 -#: mod/photos.php:1863 -msgid "Profile Photos" -msgstr "Profilbilder" - -#: include/user.php:400 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" -"\t" -msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde muss noch vom Admin des Knotens geprüft werden." - -#: include/user.php:410 -#, php-format -msgid "Registration at %s" -msgstr "Registrierung als %s" - -#: include/user.php:420 -#, 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:424 -#, php-format -msgid "" -"\n" -"\t\tThe login details are as follows:\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t%1$s\n" -"\t\t\tPassword:\t%5$s\n" -"\n" -"\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\tin.\n" -"\n" -"\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\tthan that.\n" -"\n" -"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\tIf you are new and do not know anybody here, they may help\n" -"\t\tyou to make some new and interesting friends.\n" -"\n" -"\n" -"\t\tThank you and welcome to %2$s." -msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3$s\n\tBenutzernamename:\t%1$s\n\tPasswort:\t%5$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2$s." - -#: include/user.php:456 mod/admin.php:1308 -#, php-format -msgid "Registration details for %s" -msgstr "Details der Registration von %s" - -#: include/dbstructure.php:20 -msgid "There are no tables on MyISAM." -msgstr "Es gibt keine MyISAM Tabellen." - -#: include/dbstructure.php:61 -#, 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:66 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]" - -#: include/dbstructure.php:190 -#, php-format -msgid "" -"\n" -"Error %d occurred during database update:\n" -"%s\n" -msgstr "\nFehler %d beim Update der Datenbank aufgetreten\n%s\n" - -#: include/dbstructure.php:193 -msgid "Errors encountered performing database changes: " -msgstr "Fehler beim Ändern der Datenbank aufgetreten" - -#: include/dbstructure.php:201 -msgid ": Database update" -msgstr ": Datenbank Update" - -#: include/dbstructure.php:425 -#, php-format -msgid "%s: updating %s table." -msgstr "%s: aktualisiere Tabelle %s" - -#: include/dfrn.php:1251 -#, php-format -msgid "%s\\'s birthday" -msgstr "%ss Geburtstag" - -#: include/diaspora.php:2137 -msgid "Sharing notification from Diaspora network" -msgstr "Freigabe-Benachrichtigung von Diaspora" - -#: include/diaspora.php:3146 -msgid "Attachments:" -msgstr "Anhänge:" - -#: include/items.php:1738 mod/dfrn_confirm.php:736 mod/dfrn_request.php:759 -msgid "[Name Withheld]" -msgstr "[Name unterdrückt]" - -#: include/items.php:2123 mod/display.php:103 mod/display.php:279 -#: mod/display.php:484 mod/notice.php:15 mod/viewsrc.php:15 mod/admin.php:247 -#: mod/admin.php:1565 mod/admin.php:1816 -msgid "Item not found." -msgstr "Beitrag nicht gefunden." - -#: include/items.php:2162 -msgid "Do you really want to delete this item?" -msgstr "Möchtest Du wirklich dieses Item löschen?" - -#: include/items.php:2164 mod/api.php:105 mod/contacts.php:452 -#: mod/suggest.php:29 mod/dfrn_request.php:880 mod/follow.php:113 -#: mod/message.php:206 mod/profiles.php:640 mod/profiles.php:643 -#: mod/profiles.php:670 mod/register.php:245 mod/settings.php:1171 -#: mod/settings.php:1177 mod/settings.php:1184 mod/settings.php:1188 -#: mod/settings.php:1193 mod/settings.php:1198 mod/settings.php:1203 -#: mod/settings.php:1208 mod/settings.php:1234 mod/settings.php:1235 -#: mod/settings.php:1236 mod/settings.php:1237 mod/settings.php:1238 -msgid "Yes" -msgstr "Ja" - -#: include/items.php:2327 mod/allfriends.php:12 mod/api.php:26 mod/api.php:31 -#: mod/attach.php:33 mod/common.php:18 mod/contacts.php:360 -#: mod/crepair.php:102 mod/delegate.php:12 mod/display.php:481 -#: mod/editpost.php:10 mod/fsuggest.php:79 mod/invite.php:15 -#: mod/invite.php:103 mod/mood.php:115 mod/nogroup.php:27 mod/notes.php:23 -#: mod/ostatus_subscribe.php:9 mod/poke.php:154 mod/profile_photo.php:19 -#: mod/profile_photo.php:180 mod/profile_photo.php:191 -#: mod/profile_photo.php:204 mod/regmod.php:113 mod/repair_ostatus.php:9 -#: mod/suggest.php:58 mod/uimport.php:24 mod/viewcontacts.php:46 -#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wallmessage.php:9 -#: mod/wallmessage.php:33 mod/wallmessage.php:73 mod/wallmessage.php:97 -#: mod/cal.php:299 mod/dfrn_confirm.php:61 mod/dirfind.php:11 -#: mod/events.php:185 mod/follow.php:11 mod/follow.php:74 mod/follow.php:158 -#: mod/group.php:19 mod/manage.php:102 mod/message.php:46 mod/message.php:171 -#: mod/network.php:4 mod/photos.php:166 mod/photos.php:1109 -#: mod/profiles.php:168 mod/profiles.php:607 mod/register.php:42 -#: mod/settings.php:22 mod/settings.php:130 mod/settings.php:668 -#: mod/wall_upload.php:101 mod/wall_upload.php:104 mod/item.php:196 -#: mod/item.php:208 mod/notifications.php:71 index.php:407 -msgid "Permission denied." -msgstr "Zugriff verweigert." - -#: include/items.php:2444 -msgid "Archives" -msgstr "Archiv" - -#: include/ostatus.php:1947 -#, php-format -msgid "%s is now following %s." -msgstr "%s folgt nun %s" - -#: include/ostatus.php:1948 -msgid "following" -msgstr "folgen" - -#: include/ostatus.php:1951 -#, php-format -msgid "%s stopped following %s." -msgstr "%s hat aufgehört %s zu folgen" - -#: include/ostatus.php:1952 -msgid "stopped following" -msgstr "wird nicht mehr gefolgt" - -#: include/text.php:307 -msgid "newer" -msgstr "neuer" - -#: include/text.php:308 -msgid "older" -msgstr "älter" - -#: include/text.php:313 -msgid "first" -msgstr "erste" - -#: include/text.php:314 -msgid "prev" -msgstr "vorige" - -#: include/text.php:348 -msgid "next" -msgstr "nächste" - -#: include/text.php:349 -msgid "last" -msgstr "letzte" - -#: include/text.php:403 -msgid "Loading more entries..." -msgstr "lade weitere Einträge..." - -#: include/text.php:404 -msgid "The end" -msgstr "Das Ende" - -#: include/text.php:955 -msgid "No contacts" -msgstr "Keine Kontakte" - -#: include/text.php:980 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d Kontakt" -msgstr[1] "%d Kontakte" - -#: include/text.php:993 -msgid "View Contacts" -msgstr "Kontakte anzeigen" - -#: include/text.php:1081 mod/editpost.php:99 mod/filer.php:31 mod/notes.php:62 -msgid "Save" -msgstr "Speichern" - -#: include/text.php:1144 -msgid "poke" -msgstr "anstupsen" - -#: include/text.php:1144 -msgid "poked" -msgstr "stupste" - -#: include/text.php:1145 -msgid "ping" -msgstr "anpingen" - -#: include/text.php:1145 -msgid "pinged" -msgstr "pingte" - -#: include/text.php:1146 -msgid "prod" -msgstr "knuffen" - -#: include/text.php:1146 -msgid "prodded" -msgstr "knuffte" - -#: include/text.php:1147 -msgid "slap" -msgstr "ohrfeigen" - -#: include/text.php:1147 -msgid "slapped" -msgstr "ohrfeigte" - -#: include/text.php:1148 -msgid "finger" -msgstr "befummeln" - -#: include/text.php:1148 -msgid "fingered" -msgstr "befummelte" - -#: include/text.php:1149 -msgid "rebuff" -msgstr "eine Abfuhr erteilen" - -#: include/text.php:1149 -msgid "rebuffed" -msgstr "abfuhrerteilte" - -#: include/text.php:1163 -msgid "happy" -msgstr "glücklich" - -#: include/text.php:1164 -msgid "sad" -msgstr "traurig" - -#: include/text.php:1165 -msgid "mellow" -msgstr "sanft" - -#: include/text.php:1166 -msgid "tired" -msgstr "müde" - -#: include/text.php:1167 -msgid "perky" -msgstr "frech" - -#: include/text.php:1168 -msgid "angry" -msgstr "sauer" - -#: include/text.php:1169 -msgid "stupified" -msgstr "verblüfft" - -#: include/text.php:1170 -msgid "puzzled" -msgstr "verwirrt" - -#: include/text.php:1171 -msgid "interested" -msgstr "interessiert" - -#: include/text.php:1172 -msgid "bitter" -msgstr "verbittert" - -#: include/text.php:1173 -msgid "cheerful" -msgstr "fröhlich" - -#: include/text.php:1174 -msgid "alive" -msgstr "lebendig" - -#: include/text.php:1175 -msgid "annoyed" -msgstr "verärgert" - -#: include/text.php:1176 -msgid "anxious" -msgstr "unruhig" - -#: include/text.php:1177 -msgid "cranky" -msgstr "schrullig" - -#: include/text.php:1178 -msgid "disturbed" -msgstr "verstört" - -#: include/text.php:1179 -msgid "frustrated" -msgstr "frustriert" - -#: include/text.php:1180 -msgid "motivated" -msgstr "motiviert" - -#: include/text.php:1181 -msgid "relaxed" -msgstr "entspannt" - -#: include/text.php:1182 -msgid "surprised" -msgstr "überrascht" - -#: include/text.php:1392 mod/videos.php:386 -msgid "View Video" -msgstr "Video ansehen" - -#: include/text.php:1424 -msgid "bytes" -msgstr "Byte" - -#: include/text.php:1456 include/text.php:1468 -msgid "Click to open/close" -msgstr "Zum öffnen/schließen klicken" - -#: include/text.php:1594 -msgid "View on separate page" -msgstr "Auf separater Seite ansehen" - -#: include/text.php:1595 -msgid "view on separate page" -msgstr "auf separater Seite ansehen" - -#: include/text.php:1874 -msgid "activity" -msgstr "Aktivität" - -#: include/text.php:1876 mod/content.php:623 object/Item.php:419 -#: object/Item.php:431 -msgid "comment" -msgid_plural "comments" -msgstr[0] "Kommentar" -msgstr[1] "Kommentare" - -#: include/text.php:1877 -msgid "post" -msgstr "Beitrag" - -#: include/text.php:2045 -msgid "Item filed" -msgstr "Beitrag abgelegt" - -#: mod/allfriends.php:46 +#: mod/allfriends.php:48 msgid "No friends to display." msgstr "Keine Kontakte zum Anzeigen." -#: mod/api.php:76 mod/api.php:102 +#: mod/api.php:78 mod/api.php:104 msgid "Authorize application connection" msgstr "Verbindung der Applikation autorisieren" -#: mod/api.php:77 +#: mod/api.php:79 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 +#: mod/api.php:91 msgid "Please login to continue." msgstr "Bitte melde Dich an um fortzufahren." -#: mod/api.php:104 +#: mod/api.php:106 msgid "" "Do you want to authorize this application to access your posts and contacts," " and/or create new posts for you?" msgstr "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?" -#: mod/api.php:106 mod/dfrn_request.php:880 mod/follow.php:113 -#: mod/profiles.php:640 mod/profiles.php:644 mod/profiles.php:670 -#: mod/register.php:246 mod/settings.php:1171 mod/settings.php:1177 -#: mod/settings.php:1184 mod/settings.php:1188 mod/settings.php:1193 -#: mod/settings.php:1198 mod/settings.php:1203 mod/settings.php:1208 -#: mod/settings.php:1234 mod/settings.php:1235 mod/settings.php:1236 -#: mod/settings.php:1237 mod/settings.php:1238 +#: mod/api.php:108 mod/follow.php:115 mod/register.php:248 +#: mod/dfrn_request.php:880 mod/profiles.php:643 mod/profiles.php:647 +#: mod/profiles.php:673 mod/settings.php:1172 mod/settings.php:1178 +#: mod/settings.php:1185 mod/settings.php:1189 mod/settings.php:1194 +#: mod/settings.php:1199 mod/settings.php:1204 mod/settings.php:1209 +#: mod/settings.php:1235 mod/settings.php:1236 mod/settings.php:1237 +#: mod/settings.php:1238 mod/settings.php:1239 msgid "No" msgstr "Nein" -#: mod/apps.php:7 index.php:254 +#: mod/apps.php:9 index.php:257 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 +#: mod/apps.php:14 msgid "Applications" msgstr "Anwendungen" -#: mod/apps.php:14 +#: mod/apps.php:17 msgid "No installed applications." msgstr "Keine Applikationen installiert." -#: mod/attach.php:8 +#: mod/attach.php:10 msgid "Item not available." msgstr "Beitrag nicht verfügbar." -#: mod/attach.php:20 +#: mod/attach.php:22 msgid "Item was not found." msgstr "Beitrag konnte nicht gefunden werden." -#: mod/bookmarklet.php:41 +#: mod/babel.php:18 +msgid "Source (bbcode) text:" +msgstr "Quelle (bbcode) Text:" + +#: mod/babel.php:25 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Eingabe (Diaspora) nach BBCode zu konvertierender Text:" + +#: mod/babel.php:33 +msgid "Source input: " +msgstr "Originaltext:" + +#: mod/babel.php:37 +msgid "bb2html (raw HTML): " +msgstr "bb2html (reines HTML): " + +#: mod/babel.php:41 +msgid "bb2html: " +msgstr "bb2html: " + +#: mod/babel.php:45 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " + +#: mod/babel.php:49 +msgid "bb2md: " +msgstr "bb2md: " + +#: mod/babel.php:53 +msgid "bb2md2html: " +msgstr "bb2md2html: " + +#: mod/babel.php:57 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " + +#: mod/babel.php:61 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " + +#: mod/babel.php:67 +msgid "Source input (Diaspora format): " +msgstr "Originaltext (Diaspora Format): " + +#: mod/babel.php:71 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: mod/bookmarklet.php:43 msgid "The post was created" msgstr "Der Beitrag wurde angelegt" -#: mod/common.php:91 +#: mod/cal.php:145 mod/display.php:329 mod/profile.php:156 +msgid "Access to this profile has been restricted." +msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt." + +#: mod/cal.php:273 mod/events.php:378 +msgid "View" +msgstr "Ansehen" + +#: mod/cal.php:274 mod/events.php:380 +msgid "Previous" +msgstr "Vorherige" + +#: mod/cal.php:275 mod/events.php:381 mod/install.php:203 +msgid "Next" +msgstr "Nächste" + +#: mod/cal.php:284 mod/events.php:390 +msgid "list" +msgstr "Liste" + +#: mod/cal.php:294 +msgid "User not found" +msgstr "Nutzer nicht gefunden" + +#: mod/cal.php:310 +msgid "This calendar format is not supported" +msgstr "Dieses Kalenderformat wird nicht unterstützt." + +#: mod/cal.php:312 +msgid "No exportable data found" +msgstr "Keine exportierbaren Daten gefunden" + +#: mod/cal.php:327 +msgid "calendar" +msgstr "Kalender" + +#: mod/common.php:93 msgid "No contacts in common." msgstr "Keine gemeinsamen Kontakte." -#: mod/common.php:141 mod/contacts.php:871 +#: mod/common.php:143 mod/contacts.php:874 msgid "Common Friends" msgstr "Gemeinsame Kontakte" -#: mod/contacts.php:134 -#, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited." -msgstr[0] "%d Kontakt bearbeitet." -msgstr[1] "%d Kontakte bearbeitet." - -#: mod/contacts.php:169 mod/contacts.php:378 -msgid "Could not access contact record." -msgstr "Konnte nicht auf die Kontaktdaten zugreifen." - -#: mod/contacts.php:183 -msgid "Could not locate selected profile." -msgstr "Konnte das ausgewählte Profil nicht finden." - -#: mod/contacts.php:216 -msgid "Contact updated." -msgstr "Kontakt aktualisiert." - -#: mod/contacts.php:218 mod/dfrn_request.php:593 -msgid "Failed to update contact record." -msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen." - -#: mod/contacts.php:399 -msgid "Contact has been blocked" -msgstr "Kontakt wurde blockiert" - -#: mod/contacts.php:399 -msgid "Contact has been unblocked" -msgstr "Kontakt wurde wieder freigegeben" - -#: mod/contacts.php:410 -msgid "Contact has been ignored" -msgstr "Kontakt wurde ignoriert" - -#: mod/contacts.php:410 -msgid "Contact has been unignored" -msgstr "Kontakt wird nicht mehr ignoriert" - -#: mod/contacts.php:422 -msgid "Contact has been archived" -msgstr "Kontakt wurde archiviert" - -#: mod/contacts.php:422 -msgid "Contact has been unarchived" -msgstr "Kontakt wurde aus dem Archiv geholt" - -#: mod/contacts.php:447 -msgid "Drop contact" -msgstr "Kontakt löschen" - -#: mod/contacts.php:450 mod/contacts.php:809 -msgid "Do you really want to delete this contact?" -msgstr "Möchtest Du wirklich diesen Kontakt löschen?" - -#: mod/contacts.php:469 -msgid "Contact has been removed." -msgstr "Kontakt wurde entfernt." - -#: mod/contacts.php:506 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Du hast mit %s eine beidseitige Freundschaft" - -#: mod/contacts.php:510 -#, php-format -msgid "You are sharing with %s" -msgstr "Du teilst mit %s" - -#: mod/contacts.php:515 -#, php-format -msgid "%s is sharing with you" -msgstr "%s teilt mit Dir" - -#: mod/contacts.php:535 -msgid "Private communications are not available for this contact." -msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar." - -#: mod/contacts.php:538 mod/admin.php:978 -msgid "Never" -msgstr "Niemals" - -#: mod/contacts.php:542 -msgid "(Update was successful)" -msgstr "(Aktualisierung war erfolgreich)" - -#: mod/contacts.php:542 -msgid "(Update was not successful)" -msgstr "(Aktualisierung war nicht erfolgreich)" - -#: mod/contacts.php:544 mod/contacts.php:972 -msgid "Suggest friends" -msgstr "Kontakte vorschlagen" - -#: mod/contacts.php:548 -#, php-format -msgid "Network type: %s" -msgstr "Netzwerktyp: %s" - -#: mod/contacts.php:561 -msgid "Communications lost with this contact!" -msgstr "Verbindungen mit diesem Kontakt verloren!" - -#: mod/contacts.php:564 -msgid "Fetch further information for feeds" -msgstr "Weitere Informationen zu Feeds holen" - -#: mod/contacts.php:565 mod/admin.php:987 -msgid "Disabled" -msgstr "Deaktiviert" - -#: mod/contacts.php:565 -msgid "Fetch information" -msgstr "Beziehe Information" - -#: mod/contacts.php:565 -msgid "Fetch information and keywords" -msgstr "Beziehe Information und Schlüsselworte" - -#: mod/contacts.php:583 -msgid "Contact" -msgstr "Kontakt" - -#: mod/contacts.php:585 mod/content.php:728 mod/crepair.php:156 -#: mod/fsuggest.php:108 mod/invite.php:142 mod/localtime.php:45 -#: mod/mood.php:138 mod/poke.php:203 mod/events.php:505 mod/manage.php:155 -#: mod/message.php:338 mod/message.php:521 mod/photos.php:1141 -#: mod/photos.php:1271 mod/photos.php:1597 mod/photos.php:1646 -#: mod/photos.php:1688 mod/photos.php:1768 mod/profiles.php:681 -#: mod/install.php:242 mod/install.php:282 object/Item.php:705 -#: view/theme/duepuntozero/config.php:61 view/theme/frio/config.php:64 -#: view/theme/quattro/config.php:67 view/theme/vier/config.php:112 -msgid "Submit" -msgstr "Senden" - -#: mod/contacts.php:586 -msgid "Profile Visibility" -msgstr "Profil-Sichtbarkeit" - -#: mod/contacts.php:587 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft." - -#: mod/contacts.php:588 -msgid "Contact Information / Notes" -msgstr "Kontakt Informationen / Notizen" - -#: mod/contacts.php:589 -msgid "Edit contact notes" -msgstr "Notizen zum Kontakt bearbeiten" - -#: mod/contacts.php:594 mod/contacts.php:938 mod/nogroup.php:43 -#: mod/viewcontacts.php:102 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Besuche %ss Profil [%s]" - -#: mod/contacts.php:595 -msgid "Block/Unblock contact" -msgstr "Kontakt blockieren/freischalten" - -#: mod/contacts.php:596 -msgid "Ignore contact" -msgstr "Ignoriere den Kontakt" - -#: mod/contacts.php:597 -msgid "Repair URL settings" -msgstr "URL Einstellungen reparieren" - -#: mod/contacts.php:598 -msgid "View conversations" -msgstr "Unterhaltungen anzeigen" - -#: mod/contacts.php:604 -msgid "Last update:" -msgstr "Letzte Aktualisierung: " - -#: mod/contacts.php:606 -msgid "Update public posts" -msgstr "Öffentliche Beiträge aktualisieren" - -#: mod/contacts.php:608 mod/contacts.php:982 -msgid "Update now" -msgstr "Jetzt aktualisieren" - -#: mod/contacts.php:613 mod/contacts.php:813 mod/contacts.php:991 -#: mod/admin.php:1510 -msgid "Unblock" -msgstr "Entsperren" - -#: mod/contacts.php:613 mod/contacts.php:813 mod/contacts.php:991 -#: mod/admin.php:1509 -msgid "Block" -msgstr "Sperren" - -#: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999 -msgid "Unignore" -msgstr "Ignorieren aufheben" - -#: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999 -#: mod/notifications.php:60 mod/notifications.php:179 -#: mod/notifications.php:263 -msgid "Ignore" -msgstr "Ignorieren" - -#: mod/contacts.php:618 -msgid "Currently blocked" -msgstr "Derzeit geblockt" - -#: mod/contacts.php:619 -msgid "Currently ignored" -msgstr "Derzeit ignoriert" - -#: mod/contacts.php:620 -msgid "Currently archived" -msgstr "Momentan archiviert" - -#: mod/contacts.php:621 mod/notifications.php:172 mod/notifications.php:251 -msgid "Hide this contact from others" -msgstr "Verbirg diesen Kontakt vor Anderen" - -#: 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:622 -msgid "Notification for new posts" -msgstr "Benachrichtigung bei neuen Beiträgen" - -#: mod/contacts.php:622 -msgid "Send a notification of every new post of this contact" -msgstr "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt." - -#: mod/contacts.php:625 -msgid "Blacklisted keywords" -msgstr "Blacklistete Schlüsselworte " - -#: mod/contacts.php:625 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde" - -#: mod/contacts.php:632 mod/follow.php:129 mod/notifications.php:255 -msgid "Profile URL" -msgstr "Profil URL" - -#: mod/contacts.php:643 -msgid "Actions" -msgstr "Aktionen" - -#: mod/contacts.php:646 -msgid "Contact Settings" -msgstr "Kontakteinstellungen" - -#: mod/contacts.php:692 -msgid "Suggestions" -msgstr "Kontaktvorschläge" - -#: mod/contacts.php:695 -msgid "Suggest potential friends" -msgstr "Kontakte vorschlagen" - -#: mod/contacts.php:700 mod/group.php:212 -msgid "All Contacts" -msgstr "Alle Kontakte" - -#: mod/contacts.php:703 -msgid "Show all contacts" -msgstr "Alle Kontakte anzeigen" - -#: mod/contacts.php:708 -msgid "Unblocked" -msgstr "Ungeblockt" - -#: mod/contacts.php:711 -msgid "Only show unblocked contacts" -msgstr "Nur nicht-blockierte Kontakte anzeigen" - -#: mod/contacts.php:717 -msgid "Blocked" -msgstr "Geblockt" - -#: mod/contacts.php:720 -msgid "Only show blocked contacts" -msgstr "Nur blockierte Kontakte anzeigen" - -#: mod/contacts.php:726 -msgid "Ignored" -msgstr "Ignoriert" - -#: mod/contacts.php:729 -msgid "Only show ignored contacts" -msgstr "Nur ignorierte Kontakte anzeigen" - -#: mod/contacts.php:735 -msgid "Archived" -msgstr "Archiviert" - -#: mod/contacts.php:738 -msgid "Only show archived contacts" -msgstr "Nur archivierte Kontakte anzeigen" - -#: mod/contacts.php:744 -msgid "Hidden" -msgstr "Verborgen" - -#: mod/contacts.php:747 -msgid "Only show hidden contacts" -msgstr "Nur verborgene Kontakte anzeigen" - -#: mod/contacts.php:804 -msgid "Search your contacts" -msgstr "Suche in deinen Kontakten" - -#: mod/contacts.php:805 mod/network.php:151 mod/search.php:227 -#, php-format -msgid "Results for: %s" -msgstr "Ergebnisse für: %s" - -#: mod/contacts.php:812 mod/settings.php:160 mod/settings.php:707 -msgid "Update" -msgstr "Aktualisierungen" - -#: mod/contacts.php:815 mod/contacts.php:1007 -msgid "Archive" -msgstr "Archivieren" - -#: mod/contacts.php:815 mod/contacts.php:1007 -msgid "Unarchive" -msgstr "Aus Archiv zurückholen" - -#: mod/contacts.php:818 -msgid "Batch Actions" -msgstr "Stapelverarbeitung" - -#: mod/contacts.php:864 -msgid "View all contacts" -msgstr "Alle Kontakte anzeigen" - -#: mod/contacts.php:874 -msgid "View all common friends" -msgstr "Alle Kontakte anzeigen" - -#: mod/contacts.php:881 -msgid "Advanced Contact Settings" -msgstr "Fortgeschrittene Kontakteinstellungen" - -#: mod/contacts.php:915 -msgid "Mutual Friendship" -msgstr "Beidseitige Freundschaft" - -#: mod/contacts.php:919 -msgid "is a fan of yours" -msgstr "ist ein Fan von dir" - -#: mod/contacts.php:923 -msgid "you are a fan of" -msgstr "Du bist Fan von" - -#: mod/contacts.php:939 mod/nogroup.php:44 -msgid "Edit contact" -msgstr "Kontakt bearbeiten" - -#: mod/contacts.php:993 -msgid "Toggle Blocked status" -msgstr "Geblockt-Status ein-/ausschalten" - -#: mod/contacts.php:1001 -msgid "Toggle Ignored status" -msgstr "Ignoriert-Status ein-/ausschalten" - -#: mod/contacts.php:1009 -msgid "Toggle Archive status" -msgstr "Archiviert-Status ein-/ausschalten" - -#: mod/contacts.php:1017 -msgid "Delete contact" -msgstr "Lösche den Kontakt" - -#: mod/content.php:119 mod/network.php:475 +#: mod/community.php:18 mod/directory.php:33 mod/display.php:201 +#: mod/photos.php:981 mod/search.php:96 mod/search.php:102 mod/videos.php:200 +#: mod/viewcontacts.php:39 mod/webfinger.php:10 mod/dfrn_request.php:804 +#: mod/probe.php:9 +msgid "Public access denied." +msgstr "Öffentlicher Zugriff verweigert." + +#: mod/community.php:23 +msgid "Not available." +msgstr "Nicht verfügbar." + +#: mod/community.php:50 mod/search.php:222 +msgid "No results." +msgstr "Keine Ergebnisse." + +#: mod/content.php:120 mod/network.php:478 msgid "No such group" msgstr "Es gibt keine solche Gruppe" -#: mod/content.php:130 mod/group.php:213 mod/network.php:502 +#: mod/content.php:131 mod/group.php:214 mod/network.php:505 msgid "Group is empty" msgstr "Gruppe ist leer" -#: mod/content.php:135 mod/network.php:506 +#: mod/content.php:136 mod/network.php:509 #, php-format msgid "Group: %s" msgstr "Gruppe: %s" -#: mod/content.php:325 object/Item.php:96 +#: mod/content.php:326 object/Item.php:96 msgid "This entry was edited" msgstr "Dieser Beitrag wurde bearbeitet." -#: mod/content.php:621 object/Item.php:417 +#: mod/content.php:622 object/Item.php:414 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d Kommentar" msgstr[1] "%d Kommentare" -#: mod/content.php:638 mod/photos.php:1429 object/Item.php:117 +#: mod/content.php:639 mod/photos.php:1431 object/Item.php:117 msgid "Private Message" msgstr "Private Nachricht" -#: mod/content.php:702 mod/photos.php:1625 object/Item.php:274 +#: mod/content.php:703 mod/photos.php:1627 object/Item.php:271 msgid "I like this (toggle)" msgstr "Ich mag das (toggle)" -#: mod/content.php:702 object/Item.php:274 +#: mod/content.php:703 object/Item.php:271 msgid "like" msgstr "mag ich" -#: mod/content.php:703 mod/photos.php:1626 object/Item.php:275 +#: mod/content.php:704 mod/photos.php:1628 object/Item.php:272 msgid "I don't like this (toggle)" msgstr "Ich mag das nicht (toggle)" -#: mod/content.php:703 object/Item.php:275 +#: mod/content.php:704 object/Item.php:272 msgid "dislike" msgstr "mag ich nicht" -#: mod/content.php:705 object/Item.php:278 +#: mod/content.php:706 object/Item.php:275 msgid "Share this" msgstr "Weitersagen" -#: mod/content.php:705 object/Item.php:278 +#: mod/content.php:706 object/Item.php:275 msgid "share" msgstr "Teilen" -#: mod/content.php:725 mod/photos.php:1643 mod/photos.php:1685 -#: mod/photos.php:1765 object/Item.php:702 +#: mod/content.php:726 mod/photos.php:1645 mod/photos.php:1687 +#: mod/photos.php:1767 object/Item.php:699 msgid "This is you" msgstr "Das bist Du" -#: mod/content.php:727 mod/content.php:950 mod/photos.php:1645 -#: mod/photos.php:1687 mod/photos.php:1767 object/Item.php:392 -#: object/Item.php:704 +#: mod/content.php:728 mod/content.php:951 mod/photos.php:1647 +#: mod/photos.php:1689 mod/photos.php:1769 object/Item.php:389 +#: object/Item.php:701 msgid "Comment" msgstr "Kommentar" -#: mod/content.php:729 object/Item.php:706 +#: mod/content.php:729 mod/crepair.php:159 mod/events.php:508 +#: mod/fsuggest.php:109 mod/install.php:244 mod/install.php:284 +#: mod/invite.php:144 mod/localtime.php:46 mod/manage.php:156 +#: mod/message.php:340 mod/message.php:523 mod/mood.php:139 +#: mod/photos.php:1143 mod/photos.php:1273 mod/photos.php:1599 +#: mod/photos.php:1648 mod/photos.php:1690 mod/photos.php:1770 +#: mod/poke.php:204 mod/contacts.php:588 mod/profiles.php:684 +#: object/Item.php:702 view/theme/duepuntozero/config.php:64 +#: view/theme/frio/config.php:67 view/theme/quattro/config.php:70 +#: view/theme/vier/config.php:113 +msgid "Submit" +msgstr "Senden" + +#: mod/content.php:730 object/Item.php:703 msgid "Bold" msgstr "Fett" -#: mod/content.php:730 object/Item.php:707 +#: mod/content.php:731 object/Item.php:704 msgid "Italic" msgstr "Kursiv" -#: mod/content.php:731 object/Item.php:708 +#: mod/content.php:732 object/Item.php:705 msgid "Underline" msgstr "Unterstrichen" -#: mod/content.php:732 object/Item.php:709 +#: mod/content.php:733 object/Item.php:706 msgid "Quote" msgstr "Zitat" -#: mod/content.php:733 object/Item.php:710 +#: mod/content.php:734 object/Item.php:707 msgid "Code" msgstr "Code" -#: mod/content.php:734 object/Item.php:711 +#: mod/content.php:735 object/Item.php:708 msgid "Image" msgstr "Bild" -#: mod/content.php:735 object/Item.php:712 +#: mod/content.php:736 object/Item.php:709 msgid "Link" msgstr "Link" -#: mod/content.php:736 object/Item.php:713 +#: mod/content.php:737 object/Item.php:710 msgid "Video" msgstr "Video" -#: mod/content.php:746 mod/settings.php:743 object/Item.php:122 +#: mod/content.php:747 mod/settings.php:744 object/Item.php:122 #: object/Item.php:124 msgid "Edit" msgstr "Bearbeiten" -#: mod/content.php:772 object/Item.php:238 +#: mod/content.php:773 object/Item.php:238 msgid "add star" msgstr "markieren" -#: mod/content.php:773 object/Item.php:239 +#: mod/content.php:774 object/Item.php:239 msgid "remove star" msgstr "Markierung entfernen" -#: mod/content.php:774 object/Item.php:240 +#: mod/content.php:775 object/Item.php:240 msgid "toggle star status" msgstr "Markierung umschalten" -#: mod/content.php:777 object/Item.php:243 +#: mod/content.php:778 object/Item.php:243 msgid "starred" msgstr "markiert" -#: mod/content.php:778 mod/content.php:800 object/Item.php:263 +#: mod/content.php:779 mod/content.php:801 object/Item.php:260 msgid "add tag" msgstr "Tag hinzufügen" -#: mod/content.php:789 object/Item.php:251 +#: mod/content.php:790 object/Item.php:248 msgid "ignore thread" msgstr "Thread ignorieren" -#: mod/content.php:790 object/Item.php:252 +#: mod/content.php:791 object/Item.php:249 msgid "unignore thread" msgstr "Thread nicht mehr ignorieren" -#: mod/content.php:791 object/Item.php:253 +#: mod/content.php:792 object/Item.php:250 msgid "toggle ignore status" msgstr "Ignoriert-Status ein-/ausschalten" -#: mod/content.php:794 mod/ostatus_subscribe.php:73 object/Item.php:256 +#: mod/content.php:795 mod/ostatus_subscribe.php:75 object/Item.php:253 msgid "ignored" msgstr "Ignoriert" -#: mod/content.php:805 object/Item.php:141 +#: mod/content.php:806 object/Item.php:141 msgid "save to folder" msgstr "In Ordner speichern" -#: mod/content.php:853 object/Item.php:212 +#: mod/content.php:854 object/Item.php:212 msgid "I will attend" msgstr "Ich werde teilnehmen" -#: mod/content.php:853 object/Item.php:212 +#: mod/content.php:854 object/Item.php:212 msgid "I will not attend" msgstr "Ich werde nicht teilnehmen" -#: mod/content.php:853 object/Item.php:212 +#: mod/content.php:854 object/Item.php:212 msgid "I might attend" msgstr "Ich werde eventuell teilnehmen" -#: mod/content.php:917 object/Item.php:358 +#: mod/content.php:918 object/Item.php:355 msgid "to" msgstr "zu" -#: mod/content.php:918 object/Item.php:360 +#: mod/content.php:919 object/Item.php:357 msgid "Wall-to-Wall" msgstr "Wall-to-Wall" -#: mod/content.php:919 object/Item.php:361 +#: mod/content.php:920 object/Item.php:358 msgid "via Wall-To-Wall:" msgstr "via Wall-To-Wall:" -#: mod/credits.php:16 +#: mod/credits.php:19 msgid "Credits" msgstr "Credits" -#: mod/credits.php:17 +#: mod/credits.php:20 msgid "" "Friendica is a community project, that would not be possible without the " "help of many people. Here is a list of those who have contributed to the " "code or the translation of Friendica. Thank you all!" msgstr "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Übersetzung beigetragen haben. Dank an alle !" -#: mod/crepair.php:89 +#: mod/crepair.php:92 msgid "Contact settings applied." msgstr "Einstellungen zum Kontakt angewandt." -#: mod/crepair.php:91 +#: mod/crepair.php:94 msgid "Contact update failed." msgstr "Konnte den Kontakt nicht aktualisieren." -#: mod/crepair.php:116 mod/fsuggest.php:21 mod/fsuggest.php:93 -#: mod/dfrn_confirm.php:126 +#: mod/crepair.php:119 mod/dfrn_confirm.php:128 mod/fsuggest.php:22 +#: mod/fsuggest.php:94 msgid "Contact not found." msgstr "Kontakt nicht gefunden." -#: mod/crepair.php:122 +#: mod/crepair.php:125 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:123 +#: mod/crepair.php:126 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:136 mod/crepair.php:138 +#: mod/crepair.php:139 mod/crepair.php:141 msgid "No mirroring" msgstr "Kein Spiegeln" -#: mod/crepair.php:136 +#: mod/crepair.php:139 msgid "Mirror as forwarded posting" msgstr "Spiegeln als weitergeleitete Beiträge" -#: mod/crepair.php:136 mod/crepair.php:138 +#: mod/crepair.php:139 mod/crepair.php:141 msgid "Mirror as my own posting" msgstr "Spiegeln als meine eigenen Beiträge" -#: mod/crepair.php:152 +#: mod/crepair.php:155 msgid "Return to contact editor" msgstr "Zurück zum Kontakteditor" -#: mod/crepair.php:154 +#: mod/crepair.php:157 msgid "Refetch contact data" msgstr "Kontaktdaten neu laden" -#: mod/crepair.php:158 +#: mod/crepair.php:161 msgid "Remote Self" msgstr "Entfernte Konten" -#: mod/crepair.php:161 +#: mod/crepair.php:164 msgid "Mirror postings from this contact" msgstr "Spiegle Beiträge dieses Kontakts" -#: mod/crepair.php:163 +#: mod/crepair.php:166 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden." -#: mod/crepair.php:167 mod/settings.php:683 mod/settings.php:709 -#: mod/admin.php:1490 mod/admin.php:1503 mod/admin.php:1516 mod/admin.php:1532 +#: mod/crepair.php:170 mod/admin.php:1496 mod/admin.php:1509 +#: mod/admin.php:1522 mod/admin.php:1538 mod/settings.php:684 +#: mod/settings.php:710 msgid "Name" msgstr "Name" -#: mod/crepair.php:168 +#: mod/crepair.php:171 msgid "Account Nickname" msgstr "Konto-Spitzname" -#: mod/crepair.php:169 +#: mod/crepair.php:172 msgid "@Tagname - overrides Name/Nickname" msgstr "@Tagname - überschreibt Name/Spitzname" -#: mod/crepair.php:170 +#: mod/crepair.php:173 msgid "Account URL" msgstr "Konto-URL" -#: mod/crepair.php:171 +#: mod/crepair.php:174 msgid "Friend Request URL" msgstr "URL für Kontaktschaftsanfragen" -#: mod/crepair.php:172 +#: mod/crepair.php:175 msgid "Friend Confirm URL" msgstr "URL für Bestätigungen von Kontaktanfragen" -#: mod/crepair.php:173 +#: mod/crepair.php:176 msgid "Notification Endpoint URL" msgstr "URL-Endpunkt für Benachrichtigungen" -#: mod/crepair.php:174 +#: mod/crepair.php:177 msgid "Poll/Feed URL" msgstr "Pull/Feed-URL" -#: mod/crepair.php:175 +#: mod/crepair.php:178 msgid "New photo from this URL" msgstr "Neues Foto von dieser URL" -#: mod/delegate.php:101 +#: mod/delegate.php:103 msgid "No potential page delegates located." msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden." -#: mod/delegate.php:132 +#: mod/delegate.php:134 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 +#: mod/delegate.php:135 msgid "Existing Page Managers" msgstr "Vorhandene Seitenmanager" -#: mod/delegate.php:135 +#: mod/delegate.php:137 msgid "Existing Page Delegates" msgstr "Vorhandene Bevollmächtigte für die Seite" -#: mod/delegate.php:137 +#: mod/delegate.php:139 msgid "Potential Delegates" msgstr "Potentielle Bevollmächtigte" -#: mod/delegate.php:139 mod/tagrm.php:95 +#: mod/delegate.php:141 mod/tagrm.php:97 msgid "Remove" msgstr "Entfernen" -#: mod/delegate.php:140 +#: mod/delegate.php:142 msgid "Add" msgstr "Hinzufügen" -#: mod/delegate.php:141 +#: mod/delegate.php:143 msgid "No entries." msgstr "Keine Einträge." +#: mod/dfrn_confirm.php:72 mod/profiles.php:23 mod/profiles.php:139 +#: mod/profiles.php:186 mod/profiles.php:622 +msgid "Profile not found." +msgstr "Profil nicht gefunden." + +#: mod/dfrn_confirm.php:129 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde." + +#: mod/dfrn_confirm.php:246 +msgid "Response from remote site was not understood." +msgstr "Antwort der Gegenstelle unverständlich." + +#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260 +msgid "Unexpected response from remote site: " +msgstr "Unerwartete Antwort der Gegenstelle: " + +#: mod/dfrn_confirm.php:269 +msgid "Confirmation completed successfully." +msgstr "Bestätigung erfolgreich abgeschlossen." + +#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292 +msgid "Remote site reported: " +msgstr "Gegenstelle meldet: " + +#: mod/dfrn_confirm.php:283 +msgid "Temporary failure. Please wait and try again." +msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal." + +#: mod/dfrn_confirm.php:290 +msgid "Introduction failed or was revoked." +msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen." + +#: mod/dfrn_confirm.php:420 +msgid "Unable to set contact photo." +msgstr "Konnte das Bild des Kontakts nicht speichern." + +#: mod/dfrn_confirm.php:561 +#, php-format +msgid "No user record found for '%s' " +msgstr "Für '%s' wurde kein Nutzer gefunden" + +#: mod/dfrn_confirm.php:571 +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:582 +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:604 +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:618 +#, 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:638 +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:649 +msgid "Unable to set your contact credentials on our system." +msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden." + +#: mod/dfrn_confirm.php:711 +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:783 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s ist %2$s beigetreten" + #: mod/dfrn_poll.php:104 mod/dfrn_poll.php:539 #, php-format msgid "%1$s welcomes %2$s" msgstr "%1$s heißt %2$s herzlich willkommen" -#: mod/directory.php:37 mod/display.php:200 mod/viewcontacts.php:36 -#: mod/community.php:18 mod/dfrn_request.php:804 mod/photos.php:979 -#: mod/probe.php:9 mod/search.php:93 mod/search.php:99 mod/videos.php:198 -#: mod/webfinger.php:8 -msgid "Public access denied." -msgstr "Öffentlicher Zugriff verweigert." - -#: mod/directory.php:199 view/theme/vier/theme.php:199 +#: mod/directory.php:195 view/theme/vier/theme.php:201 msgid "Global Directory" msgstr "Weltweites Verzeichnis" -#: mod/directory.php:201 +#: mod/directory.php:197 msgid "Find on this site" msgstr "Auf diesem Server suchen" -#: mod/directory.php:203 +#: mod/directory.php:199 msgid "Results for:" msgstr "Ergebnisse für:" -#: mod/directory.php:205 +#: mod/directory.php:201 msgid "Site Directory" msgstr "Verzeichnis" -#: mod/directory.php:212 +#: mod/directory.php:208 msgid "No entries (some entries may be hidden)." msgstr "Keine Einträge (einige Einträge könnten versteckt sein)." -#: mod/display.php:328 mod/cal.php:143 mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt." +#: mod/dirfind.php:39 +#, php-format +msgid "People Search - %s" +msgstr "Personensuche - %s" -#: mod/display.php:479 +#: mod/dirfind.php:50 +#, php-format +msgid "Forum Search - %s" +msgstr "Forensuche - %s" + +#: mod/dirfind.php:247 mod/match.php:112 +msgid "No matches" +msgstr "Keine Übereinstimmungen" + +#: mod/display.php:480 msgid "Item has been removed." msgstr "Eintrag wurde entfernt." -#: mod/editpost.php:17 mod/editpost.php:27 +#: mod/editpost.php:19 mod/editpost.php:29 msgid "Item not found" msgstr "Beitrag nicht gefunden" -#: mod/editpost.php:32 +#: mod/editpost.php:34 msgid "Edit post" msgstr "Beitrag bearbeiten" -#: mod/fbrowser.php:132 +#: mod/events.php:96 mod/events.php:98 +msgid "Event can not end before it has started." +msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt." + +#: mod/events.php:105 mod/events.php:107 +msgid "Event title and start time are required." +msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden." + +#: mod/events.php:379 +msgid "Create New Event" +msgstr "Neue Veranstaltung erstellen" + +#: mod/events.php:484 +msgid "Event details" +msgstr "Veranstaltungsdetails" + +#: mod/events.php:485 +msgid "Starting date and Title are required." +msgstr "Anfangszeitpunkt und Titel werden benötigt" + +#: mod/events.php:486 mod/events.php:487 +msgid "Event Starts:" +msgstr "Veranstaltungsbeginn:" + +#: mod/events.php:486 mod/events.php:498 mod/profiles.php:712 +msgid "Required" +msgstr "Benötigt" + +#: mod/events.php:488 mod/events.php:504 +msgid "Finish date/time is not known or not relevant" +msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant" + +#: mod/events.php:490 mod/events.php:491 +msgid "Event Finishes:" +msgstr "Veranstaltungsende:" + +#: mod/events.php:492 mod/events.php:505 +msgid "Adjust for viewer timezone" +msgstr "An Zeitzone des Betrachters anpassen" + +#: mod/events.php:494 +msgid "Description:" +msgstr "Beschreibung" + +#: mod/events.php:498 mod/events.php:500 +msgid "Title:" +msgstr "Titel:" + +#: mod/events.php:501 mod/events.php:502 +msgid "Share this event" +msgstr "Veranstaltung teilen" + +#: mod/events.php:531 +msgid "Failed to remove event" +msgstr "Entfernen der Veranstaltung fehlgeschlagen" + +#: mod/events.php:533 +msgid "Event removed" +msgstr "Veranstaltung enfternt" + +#: mod/fbrowser.php:134 msgid "Files" msgstr "Dateien" -#: mod/fetch.php:12 mod/fetch.php:39 mod/fetch.php:48 mod/help.php:53 -#: mod/p.php:16 mod/p.php:43 mod/p.php:52 index.php:298 +#: mod/fetch.php:15 mod/fetch.php:42 mod/fetch.php:51 mod/help.php:56 +#: mod/p.php:19 mod/p.php:46 mod/p.php:55 index.php:301 msgid "Not Found" msgstr "Nicht gefunden" -#: mod/filer.php:30 +#: mod/filer.php:31 msgid "- select -" msgstr "- auswählen -" -#: mod/fsuggest.php:64 +#: mod/follow.php:21 mod/dfrn_request.php:893 +msgid "Submit Request" +msgstr "Anfrage abschicken" + +#: mod/follow.php:32 +msgid "You already added this contact." +msgstr "Du hast den Kontakt bereits hinzugefügt." + +#: mod/follow.php:41 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "Diaspora Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden." + +#: mod/follow.php:48 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "OStatus Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden." + +#: mod/follow.php:55 +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:114 mod/dfrn_request.php:879 +msgid "Please answer the following:" +msgstr "Bitte beantworte folgendes:" + +#: mod/follow.php:115 mod/dfrn_request.php:880 +#, php-format +msgid "Does %s know you?" +msgstr "Kennt %s Dich?" + +#: mod/follow.php:116 mod/dfrn_request.php:884 +msgid "Add a personal note:" +msgstr "Eine persönliche Notiz beifügen:" + +#: mod/follow.php:122 mod/dfrn_request.php:890 +msgid "Your Identity Address:" +msgstr "Adresse Deines Profils:" + +#: mod/follow.php:131 mod/notifications.php:257 mod/contacts.php:635 +msgid "Profile URL" +msgstr "Profil URL" + +#: mod/follow.php:188 +msgid "Contact added" +msgstr "Kontakt hinzugefügt" + +#: mod/friendica.php:69 +msgid "This is Friendica, version" +msgstr "Dies ist Friendica, Version" + +#: mod/friendica.php:70 +msgid "running at web location" +msgstr "die unter folgender Webadresse zu finden ist" + +#: mod/friendica.php:74 +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:78 +msgid "Bug reports and issues: please visit" +msgstr "Probleme oder Fehler gefunden? Bitte besuche" + +#: mod/friendica.php:78 +msgid "the bugtracker at github" +msgstr "den Bugtracker auf github" + +#: mod/friendica.php:81 +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:95 +msgid "Installed plugins/addons/apps:" +msgstr "Installierte Plugins/Erweiterungen/Apps:" + +#: mod/friendica.php:109 +msgid "No installed plugins/addons/apps" +msgstr "Keine Plugins/Erweiterungen/Apps installiert" + +#: mod/friendica.php:114 +msgid "On this server the following remote servers are blocked." +msgstr "Auf diesem Server werden die folgenden entfernten Server blockiert." + +#: mod/friendica.php:115 mod/admin.php:281 mod/admin.php:299 +msgid "Reason for the block" +msgstr "Begründung für die Blockierung" + +#: mod/fsuggest.php:65 msgid "Friend suggestion sent." msgstr "Kontaktvorschlag gesendet." -#: mod/fsuggest.php:98 +#: mod/fsuggest.php:99 msgid "Suggest Friends" msgstr "Kontakte vorschlagen" -#: mod/fsuggest.php:100 +#: mod/fsuggest.php:101 #, php-format msgid "Suggest a friend for %s" msgstr "Schlage %s einen Kontakt vor" -#: mod/hcard.php:11 +#: mod/group.php:30 +msgid "Group created." +msgstr "Gruppe erstellt." + +#: mod/group.php:36 +msgid "Could not create group." +msgstr "Konnte die Gruppe nicht erstellen." + +#: mod/group.php:50 mod/group.php:155 +msgid "Group not found." +msgstr "Gruppe nicht gefunden." + +#: mod/group.php:64 +msgid "Group name changed." +msgstr "Gruppenname geändert." + +#: mod/group.php:77 mod/profperm.php:22 index.php:409 +msgid "Permission denied" +msgstr "Zugriff verweigert" + +#: mod/group.php:94 +msgid "Save Group" +msgstr "Gruppe speichern" + +#: mod/group.php:99 +msgid "Create a group of contacts/friends." +msgstr "Eine Kontaktgruppe anlegen." + +#: mod/group.php:124 +msgid "Group removed." +msgstr "Gruppe entfernt." + +#: mod/group.php:126 +msgid "Unable to remove group." +msgstr "Konnte die Gruppe nicht entfernen." + +#: mod/group.php:190 +msgid "Delete Group" +msgstr "Gruppe löschen" + +#: mod/group.php:196 +msgid "Group Editor" +msgstr "Gruppeneditor" + +#: mod/group.php:201 +msgid "Edit Group Name" +msgstr "Gruppen Name bearbeiten" + +#: mod/group.php:211 +msgid "Members" +msgstr "Mitglieder" + +#: mod/group.php:213 mod/contacts.php:703 +msgid "All Contacts" +msgstr "Alle Kontakte" + +#: mod/group.php:227 +msgid "Remove Contact" +msgstr "Kontakt löschen" + +#: mod/group.php:251 +msgid "Add Contact" +msgstr "Kontakt hinzufügen" + +#: mod/group.php:263 mod/profperm.php:109 +msgid "Click on a contact to add or remove." +msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen" + +#: mod/hcard.php:13 msgid "No profile" msgstr "Kein Profil" -#: mod/help.php:41 +#: mod/help.php:44 msgid "Help:" msgstr "Hilfe:" -#: mod/help.php:56 index.php:301 +#: mod/help.php:59 index.php:304 msgid "Page not found." msgstr "Seite nicht gefunden." -#: mod/home.php:39 +#: mod/home.php:41 #, php-format msgid "Welcome to %s" msgstr "Willkommen zu %s" -#: mod/invite.php:28 +#: mod/install.php:108 +msgid "Friendica Communications Server - Setup" +msgstr "Friendica-Server für soziale Netzwerke – Setup" + +#: mod/install.php:114 +msgid "Could not connect to database." +msgstr "Verbindung zur Datenbank gescheitert." + +#: mod/install.php:118 +msgid "Could not create table." +msgstr "Tabelle konnte nicht angelegt werden." + +#: mod/install.php:124 +msgid "Your Friendica site database has been installed." +msgstr "Die Datenbank Deiner Friendicaseite wurde installiert." + +#: mod/install.php:129 +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:130 mod/install.php:202 mod/install.php:549 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Lies bitte die \"INSTALL.txt\"." + +#: mod/install.php:142 +msgid "Database already in use." +msgstr "Die Datenbank wird bereits verwendet." + +#: mod/install.php:199 +msgid "System check" +msgstr "Systemtest" + +#: mod/install.php:204 +msgid "Check again" +msgstr "Noch einmal testen" + +#: mod/install.php:223 +msgid "Database connection" +msgstr "Datenbankverbindung" + +#: mod/install.php:224 +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:225 +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:226 +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:230 +msgid "Database Server Name" +msgstr "Datenbank-Server" + +#: mod/install.php:231 +msgid "Database Login Name" +msgstr "Datenbank-Nutzer" + +#: mod/install.php:232 +msgid "Database Login Password" +msgstr "Datenbank-Passwort" + +#: mod/install.php:232 +msgid "For security reasons the password must not be empty" +msgstr "Aus Sicherheitsgründen darf das Passwort nicht leer sein." + +#: mod/install.php:233 +msgid "Database Name" +msgstr "Datenbank-Name" + +#: mod/install.php:234 mod/install.php:275 +msgid "Site administrator email address" +msgstr "E-Mail-Adresse des Administrators" + +#: mod/install.php:234 mod/install.php:275 +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:238 mod/install.php:278 +msgid "Please select a default timezone for your website" +msgstr "Bitte wähle die Standardzeitzone Deiner Webseite" + +#: mod/install.php:265 +msgid "Site settings" +msgstr "Server-Einstellungen" + +#: mod/install.php:279 +msgid "System Language:" +msgstr "Systemsprache:" + +#: mod/install.php:279 +msgid "" +"Set the default language for your Friendica installation interface and to " +"send emails." +msgstr "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand" + +#: mod/install.php:319 +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:320 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run the background processing. See 'Setup the poller'" +msgstr "Wenn auf deinem Server keine Kommandozeilenversion von PHP installiert ist, kannst du den Hintergrundprozess nicht einrichten. Hier findest du alternative Möglichkeiten'für das Poller Setup'" + +#: mod/install.php:324 +msgid "PHP executable path" +msgstr "Pfad zu PHP" + +#: mod/install.php:324 +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:329 +msgid "Command line PHP" +msgstr "Kommandozeilen-PHP" + +#: mod/install.php:338 +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:339 +msgid "Found PHP version: " +msgstr "Gefundene PHP Version:" + +#: mod/install.php:341 +msgid "PHP cli binary" +msgstr "PHP CLI Binary" + +#: mod/install.php:352 +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:353 +msgid "This is required for message delivery to work." +msgstr "Dies wird für die Auslieferung von Nachrichten benötigt." + +#: mod/install.php:355 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: mod/install.php:378 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen" + +#: mod/install.php:379 +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:381 +msgid "Generate encryption keys" +msgstr "Schlüssel erzeugen" + +#: mod/install.php:388 +msgid "libCurl PHP module" +msgstr "PHP: libCurl-Modul" + +#: mod/install.php:389 +msgid "GD graphics PHP module" +msgstr "PHP: GD-Grafikmodul" + +#: mod/install.php:390 +msgid "OpenSSL PHP module" +msgstr "PHP: OpenSSL-Modul" + +#: mod/install.php:391 +msgid "PDO or MySQLi PHP module" +msgstr "PDO oder MySQLi PHP Modul" + +#: mod/install.php:392 +msgid "mb_string PHP module" +msgstr "PHP: mb_string-Modul" + +#: mod/install.php:393 +msgid "XML PHP module" +msgstr "XML PHP Modul" + +#: mod/install.php:394 +msgid "iconv module" +msgstr "iconv module" + +#: mod/install.php:398 mod/install.php:400 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite module" + +#: mod/install.php:398 +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:406 +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:410 +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:414 +msgid "Error: openssl PHP module required but not installed." +msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert." + +#: mod/install.php:418 +msgid "Error: PDO or MySQLi PHP module required but not installed." +msgstr "Fehler: PDO oder MySQLi PHP Modul erforderlich, aber nicht installiert." + +#: mod/install.php:422 +msgid "Error: The MySQL driver for PDO is not installed." +msgstr "Fehler: der MySQL Treiber für PDO ist nicht installiert" + +#: mod/install.php:426 +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:430 +msgid "Error: iconv PHP module required but not installed." +msgstr "Fehler: Das iconv-Modul von PHP ist nicht installiert." + +#: mod/install.php:440 +msgid "Error, XML PHP module required but not installed." +msgstr "Fehler: XML PHP Modul erforderlich aber nicht installiert." + +#: mod/install.php:452 +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:453 +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:454 +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:455 +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:458 +msgid ".htconfig.php is writable" +msgstr "Schreibrechte auf .htconfig.php" + +#: mod/install.php:468 +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:469 +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:470 +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:471 +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:474 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 ist schreibbar" + +#: mod/install.php:490 +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:492 +msgid "Url rewrite is working" +msgstr "URL rewrite funktioniert" + +#: mod/install.php:511 +msgid "ImageMagick PHP extension is not installed" +msgstr "ImageMagicx PHP Erweiterung ist nicht installiert." + +#: mod/install.php:513 +msgid "ImageMagick PHP extension is installed" +msgstr "ImageMagick PHP Erweiterung ist installiert" + +#: mod/install.php:515 +msgid "ImageMagick supports GIF" +msgstr "ImageMagick unterstützt GIF" + +#: mod/install.php:522 +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:547 +msgid "

What next

" +msgstr "

Wie geht es weiter?

" + +#: mod/install.php:548 +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/invite.php:30 msgid "Total invitation limit exceeded." msgstr "Limit für Einladungen erreicht." -#: mod/invite.php:51 +#: mod/invite.php:53 #, php-format msgid "%s : Not a valid email address." msgstr "%s: Keine gültige Email Adresse." -#: mod/invite.php:76 +#: mod/invite.php:78 msgid "Please join us on Friendica" msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein" -#: mod/invite.php:87 +#: mod/invite.php:89 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite." -#: mod/invite.php:91 +#: mod/invite.php:93 #, php-format msgid "%s : Message delivery failed." msgstr "%s: Zustellung der Nachricht fehlgeschlagen." -#: mod/invite.php:95 +#: mod/invite.php:97 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." msgstr[0] "%d Nachricht gesendet." msgstr[1] "%d Nachrichten gesendet." -#: mod/invite.php:114 +#: mod/invite.php:116 msgid "You have no more invitations available" msgstr "Du hast keine weiteren Einladungen" -#: mod/invite.php:122 +#: mod/invite.php:124 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -4015,14 +4385,14 @@ msgid "" " 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:124 +#: mod/invite.php:126 #, 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:125 +#: mod/invite.php:127 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -4031,92 +4401,92 @@ msgid "" "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:128 +#: mod/invite.php:130 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen." -#: mod/invite.php:134 +#: mod/invite.php:136 msgid "Send invitations" msgstr "Einladungen senden" -#: mod/invite.php:135 +#: mod/invite.php:137 msgid "Enter email addresses, one per line:" msgstr "E-Mail-Adressen eingeben, eine pro Zeile:" -#: mod/invite.php:136 mod/wallmessage.php:135 mod/message.php:332 -#: mod/message.php:515 +#: mod/invite.php:138 mod/message.php:334 mod/message.php:517 +#: mod/wallmessage.php:137 msgid "Your message:" msgstr "Deine Nachricht:" -#: mod/invite.php:137 +#: mod/invite.php:139 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen." -#: mod/invite.php:139 +#: mod/invite.php:141 msgid "You will need to supply this invitation code: $invite_code" msgstr "Du benötigst den folgenden Einladungscode: $invite_code" -#: mod/invite.php:139 +#: mod/invite.php:141 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:" -#: mod/invite.php:141 +#: mod/invite.php:143 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendica.com" msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com" -#: mod/localtime.php:24 +#: mod/localtime.php:25 msgid "Time Conversion" msgstr "Zeitumrechnung" -#: mod/localtime.php:26 +#: mod/localtime.php:27 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 +#: mod/localtime.php:31 #, php-format msgid "UTC time: %s" msgstr "UTC Zeit: %s" -#: mod/localtime.php:33 +#: mod/localtime.php:34 #, php-format msgid "Current timezone: %s" msgstr "Aktuelle Zeitzone: %s" -#: mod/localtime.php:36 +#: mod/localtime.php:37 #, php-format msgid "Converted localtime: %s" msgstr "Umgerechnete lokale Zeit: %s" -#: mod/localtime.php:41 +#: mod/localtime.php:42 msgid "Please select your timezone:" msgstr "Bitte wähle Deine Zeitzone:" -#: mod/lockview.php:32 mod/lockview.php:40 +#: mod/lockview.php:33 mod/lockview.php:41 msgid "Remote privacy information not available." msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar." -#: mod/lockview.php:49 +#: mod/lockview.php:50 msgid "Visible to:" msgstr "Sichtbar für:" -#: mod/lostpass.php:19 +#: mod/lostpass.php:21 msgid "No valid account found." msgstr "Kein gültiges Konto gefunden." -#: mod/lostpass.php:35 +#: mod/lostpass.php:37 msgid "Password reset request issued. Check your email." msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail." -#: mod/lostpass.php:41 +#: mod/lostpass.php:43 #, php-format msgid "" "\n" @@ -4132,7 +4502,7 @@ msgid "" "\t\tissued this request." msgstr "\nHallo %1$s,\n\nAuf \"%2$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast." -#: mod/lostpass.php:52 +#: mod/lostpass.php:54 #, php-format msgid "" "\n" @@ -4149,44 +4519,44 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2$s\nBenutzername:\t%3$s" -#: mod/lostpass.php:71 +#: mod/lostpass.php:73 #, php-format msgid "Password reset requested at %s" msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten" -#: mod/lostpass.php:91 +#: mod/lostpass.php:93 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert." -#: mod/lostpass.php:110 boot.php:1882 +#: mod/lostpass.php:112 boot.php:877 msgid "Password Reset" msgstr "Passwort zurücksetzen" -#: mod/lostpass.php:111 +#: mod/lostpass.php:113 msgid "Your password has been reset as requested." msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt." -#: mod/lostpass.php:112 +#: mod/lostpass.php:114 msgid "Your new password is" msgstr "Dein neues Passwort lautet" -#: mod/lostpass.php:113 +#: mod/lostpass.php:115 msgid "Save or copy your new password - and then" msgstr "Speichere oder kopiere Dein neues Passwort - und dann" -#: mod/lostpass.php:114 +#: mod/lostpass.php:116 msgid "click here to login" msgstr "hier klicken, um Dich anzumelden" -#: mod/lostpass.php:115 +#: mod/lostpass.php:117 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 +#: mod/lostpass.php:127 #, php-format msgid "" "\n" @@ -4197,7 +4567,7 @@ msgid "" "\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 +#: mod/lostpass.php:133 #, php-format msgid "" "\n" @@ -4211,58 +4581,240 @@ msgid "" "\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 +#: mod/lostpass.php:149 #, php-format msgid "Your password has been changed at %s" msgstr "Auf %s wurde Dein Passwort geändert" -#: mod/lostpass.php:159 +#: mod/lostpass.php:161 msgid "Forgot your Password?" msgstr "Hast Du Dein Passwort vergessen?" -#: mod/lostpass.php:160 +#: mod/lostpass.php:162 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 boot.php:1870 +#: mod/lostpass.php:163 boot.php:865 msgid "Nickname or Email: " msgstr "Spitzname oder E-Mail:" -#: mod/lostpass.php:162 +#: mod/lostpass.php:164 msgid "Reset" msgstr "Zurücksetzen" -#: mod/maintenance.php:20 +#: mod/maintenance.php:21 msgid "System down for maintenance" msgstr "System zur Wartung abgeschaltet" -#: mod/match.php:35 +#: mod/manage.php:152 +msgid "Manage Identities and/or Pages" +msgstr "Verwalte Identitäten und/oder Seiten" + +#: mod/manage.php:153 +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:154 +msgid "Select an identity to manage: " +msgstr "Wähle eine Identität zum Verwalten aus: " + +#: mod/match.php:38 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:88 +#: mod/match.php:91 msgid "is interested in:" msgstr "ist interessiert an:" -#: mod/match.php:102 +#: mod/match.php:105 msgid "Profile Match" msgstr "Profilübereinstimmungen" -#: mod/match.php:109 mod/dirfind.php:245 -msgid "No matches" -msgstr "Keine Übereinstimmungen" +#: mod/message.php:62 mod/wallmessage.php:52 +msgid "No recipient selected." +msgstr "Kein Empfänger gewählt." -#: mod/mood.php:134 +#: mod/message.php:66 +msgid "Unable to locate contact information." +msgstr "Konnte die Kontaktinformationen nicht finden." + +#: mod/message.php:69 mod/wallmessage.php:58 +msgid "Message could not be sent." +msgstr "Nachricht konnte nicht gesendet werden." + +#: mod/message.php:72 mod/wallmessage.php:61 +msgid "Message collection failure." +msgstr "Konnte Nachrichten nicht abrufen." + +#: mod/message.php:75 mod/wallmessage.php:64 +msgid "Message sent." +msgstr "Nachricht gesendet." + +#: mod/message.php:206 +msgid "Do you really want to delete this message?" +msgstr "Möchtest Du wirklich diese Nachricht löschen?" + +#: mod/message.php:226 +msgid "Message deleted." +msgstr "Nachricht gelöscht." + +#: mod/message.php:257 +msgid "Conversation removed." +msgstr "Unterhaltung gelöscht." + +#: mod/message.php:324 mod/wallmessage.php:128 +msgid "Send Private Message" +msgstr "Private Nachricht senden" + +#: mod/message.php:325 mod/message.php:512 mod/wallmessage.php:130 +msgid "To:" +msgstr "An:" + +#: mod/message.php:330 mod/message.php:514 mod/wallmessage.php:131 +msgid "Subject:" +msgstr "Betreff:" + +#: mod/message.php:366 +msgid "No messages." +msgstr "Keine Nachrichten." + +#: mod/message.php:405 +msgid "Message not available." +msgstr "Nachricht nicht verfügbar." + +#: mod/message.php:479 +msgid "Delete message" +msgstr "Nachricht löschen" + +#: mod/message.php:505 mod/message.php:593 +msgid "Delete conversation" +msgstr "Unterhaltung löschen" + +#: mod/message.php:507 +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:511 +msgid "Send Reply" +msgstr "Antwort senden" + +#: mod/message.php:563 +#, php-format +msgid "Unknown sender - %s" +msgstr "'Unbekannter Absender - %s" + +#: mod/message.php:565 +#, php-format +msgid "You and %s" +msgstr "Du und %s" + +#: mod/message.php:567 +#, php-format +msgid "%s and You" +msgstr "%s und Du" + +#: mod/message.php:596 +msgid "D, d M Y - g:i A" +msgstr "D, d. M Y - g:i A" + +#: mod/message.php:599 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d Nachricht" +msgstr[1] "%d Nachrichten" + +#: mod/mood.php:135 msgid "Mood" msgstr "Stimmung" -#: mod/mood.php:135 +#: mod/mood.php:136 msgid "Set your current mood and tell your friends" msgstr "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Kontakten" -#: mod/newmember.php:6 +#: mod/network.php:154 mod/search.php:230 mod/contacts.php:808 +#, php-format +msgid "Results for: %s" +msgstr "Ergebnisse für: %s" + +#: mod/network.php:200 mod/search.php:28 +msgid "Remove term" +msgstr "Begriff entfernen" + +#: mod/network.php:407 +#, php-format +msgid "" +"Warning: This group contains %s member from a network that doesn't allow non" +" public messages." +msgid_plural "" +"Warning: This group contains %s members from a network that doesn't allow " +"non public messages." +msgstr[0] "Warnung: Diese Gruppe beinhaltet %s Person aus einem Netzwerk das keine nicht öffentlichen Beiträge empfangen kann." +msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus Netzwerken die keine nicht-öffentlichen Beiträge empfangen können." + +#: mod/network.php:410 +msgid "Messages in this group won't be send to these receivers." +msgstr "Beiträge in dieser Gruppe werden deshalb nicht an diese Personen zugestellt werden." + +#: mod/network.php:538 +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:543 +msgid "Invalid contact." +msgstr "Ungültiger Kontakt." + +#: mod/network.php:816 +msgid "Commented Order" +msgstr "Neueste Kommentare" + +#: mod/network.php:819 +msgid "Sort by Comment Date" +msgstr "Nach Kommentardatum sortieren" + +#: mod/network.php:824 +msgid "Posted Order" +msgstr "Neueste Beiträge" + +#: mod/network.php:827 +msgid "Sort by Post Date" +msgstr "Nach Beitragsdatum sortieren" + +#: mod/network.php:838 +msgid "Posts that mention or involve you" +msgstr "Beiträge, in denen es um Dich geht" + +#: mod/network.php:846 +msgid "New" +msgstr "Neue" + +#: mod/network.php:849 +msgid "Activity Stream - by date" +msgstr "Aktivitäten-Stream - nach Datum" + +#: mod/network.php:857 +msgid "Shared Links" +msgstr "Geteilte Links" + +#: mod/network.php:860 +msgid "Interesting Links" +msgstr "Interessante Links" + +#: mod/network.php:868 +msgid "Starred" +msgstr "Markierte" + +#: mod/network.php:871 +msgid "Favourite Posts" +msgstr "Favorisierte Beiträge" + +#: mod/newmember.php:7 msgid "Welcome to Friendica" msgstr "Willkommen bei Friendica" @@ -4270,7 +4822,7 @@ msgstr "Willkommen bei Friendica" msgid "New Member Checklist" msgstr "Checkliste für neue Mitglieder" -#: mod/newmember.php:12 +#: mod/newmember.php:10 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 " @@ -4278,33 +4830,33 @@ msgid "" "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 +#: mod/newmember.php:11 msgid "Getting Started" msgstr "Einstieg" -#: mod/newmember.php:18 +#: mod/newmember.php:13 msgid "Friendica Walk-Through" msgstr "Friendica Rundgang" -#: mod/newmember.php:18 +#: mod/newmember.php:13 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 +#: mod/newmember.php:17 msgid "Go to Your Settings" msgstr "Gehe zu deinen Einstellungen" -#: mod/newmember.php:26 +#: mod/newmember.php:17 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 Kontakte mit anderen im Friendica Netzwerk zu knüpfen.." -#: mod/newmember.php:28 +#: mod/newmember.php:18 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -4312,81 +4864,81 @@ msgid "" "potential friends know exactly how to find you." msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Kontakte und potentiellen Kontakte wissen genau, wie sie Dich finden können." -#: mod/newmember.php:36 mod/profile_photo.php:256 mod/profiles.php:700 +#: mod/newmember.php:22 mod/profile_photo.php:255 mod/profiles.php:703 msgid "Upload Profile Photo" msgstr "Profilbild hochladen" -#: mod/newmember.php:36 +#: mod/newmember.php:22 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 Kontakte zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust." -#: mod/newmember.php:38 +#: mod/newmember.php:23 msgid "Edit Your Profile" msgstr "Editiere dein Profil" -#: mod/newmember.php:38 +#: mod/newmember.php:23 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 Kontaktliste vor unbekannten Betrachtern des Profils." -#: mod/newmember.php:40 +#: mod/newmember.php:24 msgid "Profile Keywords" msgstr "Profil Schlüsselbegriffe" -#: mod/newmember.php:40 +#: mod/newmember.php:24 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 +#: mod/newmember.php:26 msgid "Connecting" msgstr "Verbindungen knüpfen" -#: mod/newmember.php:51 +#: mod/newmember.php:32 msgid "Importing Emails" msgstr "Emails Importieren" -#: mod/newmember.php:51 +#: mod/newmember.php:32 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 Kontakten und Mailinglisten interagieren willst." -#: mod/newmember.php:53 +#: mod/newmember.php:35 msgid "Go to Your Contacts Page" msgstr "Gehe zu deiner Kontakt-Seite" -#: mod/newmember.php:53 +#: mod/newmember.php:35 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 Personen 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:55 +#: mod/newmember.php:36 msgid "Go to Your Site's Directory" msgstr "Gehe zum Verzeichnis Deiner Friendica Instanz" -#: mod/newmember.php:55 +#: mod/newmember.php:36 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:57 +#: mod/newmember.php:37 msgid "Finding New People" msgstr "Neue Leute kennenlernen" -#: mod/newmember.php:57 +#: mod/newmember.php:37 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 " @@ -4395,643 +4947,852 @@ msgid "" "hours." msgstr "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Personen zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Leute vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden." -#: mod/newmember.php:65 +#: mod/newmember.php:41 msgid "Group Your Contacts" msgstr "Gruppiere deine Kontakte" -#: mod/newmember.php:65 +#: mod/newmember.php:41 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 Kontakte 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:68 +#: mod/newmember.php:44 msgid "Why Aren't My Posts Public?" msgstr "Warum sind meine Beiträge nicht öffentlich?" -#: mod/newmember.php:68 +#: mod/newmember.php:44 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:73 +#: mod/newmember.php:48 msgid "Getting Help" msgstr "Hilfe bekommen" -#: mod/newmember.php:77 +#: mod/newmember.php:50 msgid "Go to the Help Section" msgstr "Zum Hilfe Abschnitt gehen" -#: mod/newmember.php:77 +#: mod/newmember.php:50 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/nogroup.php:65 +#: mod/nogroup.php:45 mod/viewcontacts.php:105 mod/contacts.php:597 +#: mod/contacts.php:941 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Besuche %ss Profil [%s]" + +#: mod/nogroup.php:46 mod/contacts.php:942 +msgid "Edit contact" +msgstr "Kontakt bearbeiten" + +#: mod/nogroup.php:67 msgid "Contacts who are not members of a group" msgstr "Kontakte, die keiner Gruppe zugewiesen sind" -#: mod/notify.php:65 -msgid "No more system notifications." -msgstr "Keine weiteren Systembenachrichtigungen." +#: mod/notifications.php:37 +msgid "Invalid request identifier." +msgstr "Invalid request identifier." -#: mod/notify.php:69 mod/notifications.php:111 +#: mod/notifications.php:46 mod/notifications.php:182 +#: mod/notifications.php:229 +msgid "Discard" +msgstr "Verwerfen" + +#: mod/notifications.php:62 mod/notifications.php:181 +#: mod/notifications.php:265 mod/contacts.php:617 mod/contacts.php:817 +#: mod/contacts.php:1002 +msgid "Ignore" +msgstr "Ignorieren" + +#: mod/notifications.php:107 +msgid "Network Notifications" +msgstr "Netzwerk Benachrichtigungen" + +#: mod/notifications.php:113 mod/notify.php:72 msgid "System Notifications" msgstr "Systembenachrichtigungen" -#: mod/oexchange.php:21 +#: mod/notifications.php:119 +msgid "Personal Notifications" +msgstr "Persönliche Benachrichtigungen" + +#: mod/notifications.php:125 +msgid "Home Notifications" +msgstr "Pinnwand Benachrichtigungen" + +#: mod/notifications.php:154 +msgid "Show Ignored Requests" +msgstr "Zeige ignorierte Anfragen" + +#: mod/notifications.php:154 +msgid "Hide Ignored Requests" +msgstr "Verberge ignorierte Anfragen" + +#: mod/notifications.php:166 mod/notifications.php:236 +msgid "Notification type: " +msgstr "Benachrichtigungstyp: " + +#: mod/notifications.php:169 +#, php-format +msgid "suggested by %s" +msgstr "vorgeschlagen von %s" + +#: mod/notifications.php:174 mod/notifications.php:253 mod/contacts.php:624 +msgid "Hide this contact from others" +msgstr "Verbirg diesen Kontakt vor Anderen" + +#: mod/notifications.php:175 mod/notifications.php:254 +msgid "Post a new friend activity" +msgstr "Neue-Kontakt Nachricht senden" + +#: mod/notifications.php:175 mod/notifications.php:254 +msgid "if applicable" +msgstr "falls anwendbar" + +#: mod/notifications.php:178 mod/notifications.php:263 mod/admin.php:1512 +msgid "Approve" +msgstr "Genehmigen" + +#: mod/notifications.php:197 +msgid "Claims to be known to you: " +msgstr "Behauptet Dich zu kennen: " + +#: mod/notifications.php:198 +msgid "yes" +msgstr "ja" + +#: mod/notifications.php:198 +msgid "no" +msgstr "nein" + +#: mod/notifications.php:199 mod/notifications.php:204 +msgid "Shall your connection be bidirectional or not?" +msgstr "Soll die Verbindung beidseitig sein oder nicht?" + +#: mod/notifications.php:200 mod/notifications.php:205 +#, php-format +msgid "" +"Accepting %s as a friend allows %s to subscribe to your posts, and you will " +"also receive updates from them in your news feed." +msgstr "Akzeptierst du %s als Kontakt, erlaubst du damit das Lesen deiner Beiträge und abonnierst selbst auch die Beiträge von %s." + +#: mod/notifications.php:201 +#, php-format +msgid "" +"Accepting %s as a subscriber allows them to subscribe to your posts, but you" +" will not receive updates from them in your news feed." +msgstr "Wenn du %s als Abonnent akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten." + +#: mod/notifications.php:206 +#, php-format +msgid "" +"Accepting %s as a sharer allows them to subscribe to your posts, but you " +"will not receive updates from them in your news feed." +msgstr "Wenn du %s als Teilenden akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten." + +#: mod/notifications.php:217 +msgid "Friend" +msgstr "Kontakt" + +#: mod/notifications.php:218 +msgid "Sharer" +msgstr "Teilenden" + +#: mod/notifications.php:218 +msgid "Subscriber" +msgstr "Abonnent" + +#: mod/notifications.php:274 +msgid "No introductions." +msgstr "Keine Kontaktanfragen." + +#: mod/notifications.php:315 +msgid "Show unread" +msgstr "Ungelesene anzeigen" + +#: mod/notifications.php:315 +msgid "Show all" +msgstr "Alle anzeigen" + +#: mod/notifications.php:321 +#, php-format +msgid "No more %s notifications." +msgstr "Keine weiteren %s Benachrichtigungen" + +#: mod/notify.php:68 +msgid "No more system notifications." +msgstr "Keine weiteren Systembenachrichtigungen." + +#: mod/oexchange.php:24 msgid "Post successful." msgstr "Beitrag erfolgreich veröffentlicht." -#: mod/ostatus_subscribe.php:14 +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." + +#: mod/openid.php:60 +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/ostatus_subscribe.php:16 msgid "Subscribing to OStatus contacts" msgstr "OStatus Kontakten folgen" -#: mod/ostatus_subscribe.php:25 +#: mod/ostatus_subscribe.php:27 msgid "No contact provided." msgstr "Keine Kontakte gefunden." -#: mod/ostatus_subscribe.php:31 +#: mod/ostatus_subscribe.php:33 msgid "Couldn't fetch information for contact." msgstr "Konnte die Kontaktinformationen nicht einholen." -#: mod/ostatus_subscribe.php:40 +#: mod/ostatus_subscribe.php:42 msgid "Couldn't fetch friends for contact." msgstr "Konnte die Kontaktliste des Kontakts nicht abfragen." -#: mod/ostatus_subscribe.php:54 mod/repair_ostatus.php:44 +#: mod/ostatus_subscribe.php:56 mod/repair_ostatus.php:46 msgid "Done" msgstr "Erledigt" -#: mod/ostatus_subscribe.php:68 +#: mod/ostatus_subscribe.php:70 msgid "success" msgstr "Erfolg" -#: mod/ostatus_subscribe.php:70 +#: mod/ostatus_subscribe.php:72 msgid "failed" msgstr "Fehlgeschlagen" -#: mod/ostatus_subscribe.php:78 mod/repair_ostatus.php:50 +#: mod/ostatus_subscribe.php:80 mod/repair_ostatus.php:52 msgid "Keep this window open until done." msgstr "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist." -#: mod/p.php:9 +#: mod/p.php:12 msgid "Not Extended" msgstr "Nicht erweitert." -#: mod/poke.php:196 -msgid "Poke/Prod" -msgstr "Anstupsen" +#: mod/photos.php:96 mod/photos.php:1902 +msgid "Recent Photos" +msgstr "Neueste Fotos" -#: mod/poke.php:197 -msgid "poke, prod or do other things to somebody" -msgstr "Stupse Leute an oder mache anderes mit ihnen" +#: mod/photos.php:99 mod/photos.php:1330 mod/photos.php:1904 +msgid "Upload New Photos" +msgstr "Neue Fotos hochladen" -#: mod/poke.php:198 -msgid "Recipient" -msgstr "Empfänger" +#: mod/photos.php:114 mod/settings.php:38 +msgid "everybody" +msgstr "jeder" -#: mod/poke.php:199 -msgid "Choose what you wish to do to recipient" -msgstr "Was willst Du mit dem Empfänger machen:" +#: mod/photos.php:178 +msgid "Contact information unavailable" +msgstr "Kontaktinformationen nicht verfügbar" -#: mod/poke.php:202 -msgid "Make this post private" -msgstr "Diesen Beitrag privat machen" +#: mod/photos.php:199 +msgid "Album not found." +msgstr "Album nicht gefunden." -#: mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl." +#: mod/photos.php:232 mod/photos.php:244 mod/photos.php:1274 +msgid "Delete Album" +msgstr "Album löschen" -#: mod/profile_photo.php:77 mod/profile_photo.php:85 mod/profile_photo.php:93 -#: mod/profile_photo.php:323 +#: 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:325 mod/photos.php:336 mod/photos.php:1600 +msgid "Delete Photo" +msgstr "Foto löschen" + +#: mod/photos.php:334 +msgid "Do you really want to delete this photo?" +msgstr "Möchtest Du wirklich dieses Foto löschen?" + +#: mod/photos.php:715 #, php-format -msgid "Image size reduction [%s] failed." -msgstr "Verkleinern der Bildgröße von [%s] scheiterte." +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s wurde von %3$s in %2$s getaggt" -#: mod/profile_photo.php:127 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird." +#: mod/photos.php:715 +msgid "a photo" +msgstr "einem Foto" -#: mod/profile_photo.php:137 -msgid "Unable to process image" -msgstr "Bild konnte nicht verarbeitet werden" - -#: mod/profile_photo.php:156 mod/photos.php:813 mod/wall_upload.php:181 +#: mod/photos.php:815 mod/wall_upload.php:181 mod/profile_photo.php:155 #, php-format msgid "Image exceeds size limit of %s" msgstr "Bildgröße überschreitet das Limit von %s" -#: mod/profile_photo.php:165 mod/photos.php:854 mod/wall_upload.php:218 +#: mod/photos.php:823 +msgid "Image file is empty." +msgstr "Bilddatei ist leer." + +#: mod/photos.php:856 mod/wall_upload.php:218 mod/profile_photo.php:164 msgid "Unable to process image." msgstr "Konnte das Bild nicht bearbeiten." -#: mod/profile_photo.php:254 -msgid "Upload File:" -msgstr "Datei hochladen:" - -#: mod/profile_photo.php:255 -msgid "Select a profile:" -msgstr "Profil auswählen:" - -#: mod/profile_photo.php:257 -msgid "Upload" -msgstr "Hochladen" - -#: mod/profile_photo.php:260 -msgid "or" -msgstr "oder" - -#: mod/profile_photo.php:260 -msgid "skip this step" -msgstr "diesen Schritt überspringen" - -#: mod/profile_photo.php:260 -msgid "select a photo from your photo albums" -msgstr "wähle ein Foto aus deinen Fotoalben" - -#: mod/profile_photo.php:274 -msgid "Crop Image" -msgstr "Bild zurechtschneiden" - -#: mod/profile_photo.php:275 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann." - -#: mod/profile_photo.php:277 -msgid "Done Editing" -msgstr "Bearbeitung abgeschlossen" - -#: mod/profile_photo.php:313 -msgid "Image uploaded successfully." -msgstr "Bild erfolgreich hochgeladen." - -#: mod/profile_photo.php:315 mod/photos.php:883 mod/wall_upload.php:257 +#: mod/photos.php:885 mod/wall_upload.php:257 mod/profile_photo.php:314 msgid "Image upload failed." msgstr "Hochladen des Bildes gescheitert." -#: mod/profperm.php:20 mod/group.php:76 index.php:406 -msgid "Permission denied" -msgstr "Zugriff verweigert" +#: mod/photos.php:990 +msgid "No photos selected" +msgstr "Keine Bilder ausgewählt" -#: mod/profperm.php:26 mod/profperm.php:57 +#: mod/photos.php:1093 mod/videos.php:311 +msgid "Access to this item is restricted." +msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt." + +#: mod/photos.php:1153 +#, 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:1190 +msgid "Upload Photos" +msgstr "Bilder hochladen" + +#: mod/photos.php:1194 mod/photos.php:1269 +msgid "New album name: " +msgstr "Name des neuen Albums: " + +#: mod/photos.php:1195 +msgid "or existing album name: " +msgstr "oder existierender Albumname: " + +#: mod/photos.php:1196 +msgid "Do not show a status post for this upload" +msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen" + +#: mod/photos.php:1207 mod/photos.php:1604 mod/settings.php:1308 +msgid "Show to Groups" +msgstr "Zeige den Gruppen" + +#: mod/photos.php:1208 mod/photos.php:1605 mod/settings.php:1309 +msgid "Show to Contacts" +msgstr "Zeige den Kontakten" + +#: mod/photos.php:1209 +msgid "Private Photo" +msgstr "Privates Foto" + +#: mod/photos.php:1210 +msgid "Public Photo" +msgstr "Öffentliches Foto" + +#: mod/photos.php:1280 +msgid "Edit Album" +msgstr "Album bearbeiten" + +#: mod/photos.php:1285 +msgid "Show Newest First" +msgstr "Zeige neueste zuerst" + +#: mod/photos.php:1287 +msgid "Show Oldest First" +msgstr "Zeige älteste zuerst" + +#: mod/photos.php:1316 mod/photos.php:1887 +msgid "View Photo" +msgstr "Foto betrachten" + +#: mod/photos.php:1361 +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:1363 +msgid "Photo not available" +msgstr "Foto nicht verfügbar" + +#: mod/photos.php:1424 +msgid "View photo" +msgstr "Fotos ansehen" + +#: mod/photos.php:1424 +msgid "Edit photo" +msgstr "Foto bearbeiten" + +#: mod/photos.php:1425 +msgid "Use as profile photo" +msgstr "Als Profilbild verwenden" + +#: mod/photos.php:1450 +msgid "View Full Size" +msgstr "Betrachte Originalgröße" + +#: mod/photos.php:1540 +msgid "Tags: " +msgstr "Tags: " + +#: mod/photos.php:1543 +msgid "[Remove any tag]" +msgstr "[Tag entfernen]" + +#: mod/photos.php:1586 +msgid "New album name" +msgstr "Name des neuen Albums" + +#: mod/photos.php:1587 +msgid "Caption" +msgstr "Bildunterschrift" + +#: mod/photos.php:1588 +msgid "Add a Tag" +msgstr "Tag hinzufügen" + +#: mod/photos.php:1588 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: mod/photos.php:1589 +msgid "Do not rotate" +msgstr "Nicht rotieren" + +#: mod/photos.php:1590 +msgid "Rotate CW (right)" +msgstr "Drehen US (rechts)" + +#: mod/photos.php:1591 +msgid "Rotate CCW (left)" +msgstr "Drehen EUS (links)" + +#: mod/photos.php:1606 +msgid "Private photo" +msgstr "Privates Foto" + +#: mod/photos.php:1607 +msgid "Public photo" +msgstr "Öffentliches Foto" + +#: mod/photos.php:1816 +msgid "Map" +msgstr "Karte" + +#: mod/photos.php:1893 mod/videos.php:395 +msgid "View Album" +msgstr "Album betrachten" + +#: mod/ping.php:273 +msgid "{0} wants to be your friend" +msgstr "{0} möchte mit Dir in Kontakt treten" + +#: mod/ping.php:288 +msgid "{0} sent you a message" +msgstr "{0} schickte Dir eine Nachricht" + +#: mod/ping.php:303 +msgid "{0} requested registration" +msgstr "{0} möchte sich registrieren" + +#: mod/poke.php:197 +msgid "Poke/Prod" +msgstr "Anstupsen" + +#: mod/poke.php:198 +msgid "poke, prod or do other things to somebody" +msgstr "Stupse Leute an oder mache anderes mit ihnen" + +#: mod/poke.php:199 +msgid "Recipient" +msgstr "Empfänger" + +#: mod/poke.php:200 +msgid "Choose what you wish to do to recipient" +msgstr "Was willst Du mit dem Empfänger machen:" + +#: mod/poke.php:203 +msgid "Make this post private" +msgstr "Diesen Beitrag privat machen" + +#: mod/profile.php:176 +msgid "Tips for New Members" +msgstr "Tipps für neue Nutzer" + +#: mod/profperm.php:28 mod/profperm.php:59 msgid "Invalid profile identifier." msgstr "Ungültiger Profil-Bezeichner." -#: mod/profperm.php:103 +#: mod/profperm.php:105 msgid "Profile Visibility Editor" msgstr "Editor für die Profil-Sichtbarkeit" -#: mod/profperm.php:107 mod/group.php:262 -msgid "Click on a contact to add or remove." -msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen" - -#: mod/profperm.php:116 +#: mod/profperm.php:118 msgid "Visible To" msgstr "Sichtbar für" -#: mod/profperm.php:132 +#: mod/profperm.php:134 msgid "All Contacts (with secure profile access)" msgstr "Alle Kontakte (mit gesichertem Profilzugriff)" -#: mod/regmod.php:58 -msgid "Account approved." -msgstr "Konto freigegeben." - -#: mod/regmod.php:95 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrierung für %s wurde zurückgezogen" - -#: mod/regmod.php:107 -msgid "Please login." -msgstr "Bitte melde Dich an." - -#: mod/removeme.php:52 mod/removeme.php:55 -msgid "Remove My Account" -msgstr "Konto löschen" - -#: mod/removeme.php:53 +#: mod/register.php:95 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." +"Registration successful. Please check your email for further instructions." +msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet." -#: mod/removeme.php:54 -msgid "Please enter your password for verification:" -msgstr "Bitte gib Dein Passwort zur Verifikation ein:" - -#: mod/repair_ostatus.php:14 -msgid "Resubscribing to OStatus contacts" -msgstr "Erneuern der OStatus Abonements" - -#: mod/repair_ostatus.php:30 -msgid "Error" -msgstr "Fehler" - -#: mod/subthread.php:104 +#: mod/register.php:100 #, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s folgt %2$s %3$s" - -#: mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Möchtest Du wirklich diese Empfehlung löschen?" - -#: mod/suggest.php:71 msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal." +"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/suggest.php:84 mod/suggest.php:104 -msgid "Ignore/Hide" -msgstr "Ignorieren/Verbergen" +#: mod/register.php:107 +msgid "Registration successful." +msgstr "Registrierung erfolgreich." -#: mod/tagrm.php:43 -msgid "Tag removed" -msgstr "Tag entfernt" +#: mod/register.php:113 +msgid "Your registration can not be processed." +msgstr "Deine Registrierung konnte nicht verarbeitet werden." -#: mod/tagrm.php:82 -msgid "Remove Item Tag" -msgstr "Gegenstands-Tag entfernen" +#: mod/register.php:162 +msgid "Your registration is pending approval by the site owner." +msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." -#: mod/tagrm.php:84 -msgid "Select a tag to remove: " -msgstr "Wähle ein Tag zum Entfernen aus: " - -#: mod/uimport.php:51 mod/register.php:198 +#: mod/register.php:200 mod/uimport.php:53 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/uimport.php:66 mod/register.php:295 +#: mod/register.php:228 +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:229 +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:230 +msgid "Your OpenID (optional): " +msgstr "Deine OpenID (optional): " + +#: mod/register.php:244 +msgid "Include your profile in member directory?" +msgstr "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?" + +#: mod/register.php:269 +msgid "Note for the admin" +msgstr "Hinweis für den Admin" + +#: mod/register.php:269 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "Hinterlasse eine Nachricht an den Admin, warum du einen Account auf dieser Instanz haben möchtest." + +#: mod/register.php:270 +msgid "Membership on this site is by invitation only." +msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." + +#: mod/register.php:271 +msgid "Your invitation ID: " +msgstr "ID Deiner Einladung: " + +#: mod/register.php:274 mod/admin.php:1062 +msgid "Registration" +msgstr "Registrierung" + +#: mod/register.php:282 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "Dein vollständiger Name (z.B. Hans Mustermann, echt oder echt erscheinend):" + +#: mod/register.php:283 +msgid "Your Email Address: " +msgstr "Deine E-Mail-Adresse: " + +#: mod/register.php:285 mod/settings.php:1279 +msgid "New Password:" +msgstr "Neues Passwort:" + +#: mod/register.php:285 +msgid "Leave empty for an auto generated password." +msgstr "Leer lassen um das Passwort automatisch zu generieren." + +#: mod/register.php:286 mod/settings.php:1280 +msgid "Confirm:" +msgstr "Bestätigen:" + +#: mod/register.php:287 +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:288 +msgid "Choose a nickname: " +msgstr "Spitznamen wählen: " + +#: mod/register.php:297 mod/uimport.php:68 msgid "Import" msgstr "Import" -#: mod/uimport.php:68 -msgid "Move account" -msgstr "Account umziehen" +#: mod/register.php:298 +msgid "Import your profile to this friendica instance" +msgstr "Importiere Dein Profil auf diese Friendica Instanz" -#: mod/uimport.php:69 -msgid "You can import an account from another Friendica server." -msgstr "Du kannst einen Account von einem anderen Friendica Server importieren." +#: mod/removeme.php:54 mod/removeme.php:57 +msgid "Remove My Account" +msgstr "Konto löschen" -#: mod/uimport.php:70 +#: mod/removeme.php:55 msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also" -" to inform your friends that you moved here." -msgstr "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Kontakte darüber zu informieren, dass Du hierher umgezogen bist." +"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/uimport.php:71 +#: mod/removeme.php:56 +msgid "Please enter your password for verification:" +msgstr "Bitte gib Dein Passwort zur Verifikation ein:" + +#: mod/repair_ostatus.php:16 +msgid "Resubscribing to OStatus contacts" +msgstr "Erneuern der OStatus Abonements" + +#: mod/repair_ostatus.php:32 +msgid "Error" +msgstr "Fehler" + +#: mod/search.php:103 +msgid "Only logged in users are permitted to perform a search." +msgstr "Nur eingeloggten Benutzern ist das Suchen gestattet." + +#: mod/search.php:127 +msgid "Too Many Requests" +msgstr "Zu viele Abfragen" + +#: mod/search.php:128 +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:228 +#, php-format +msgid "Items tagged with: %s" +msgstr "Beiträge die mit %s getaggt sind" + +#: mod/subthread.php:105 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s folgt %2$s %3$s" + +#: mod/suggest.php:29 +msgid "Do you really want to delete this suggestion?" +msgstr "Möchtest Du wirklich diese Empfehlung löschen?" + +#: mod/suggest.php:73 msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (GNU Social/Statusnet) or from Diaspora" -msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (GNU Social/Statusnet) oder von Diaspora importieren" +"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/uimport.php:72 -msgid "Account file" -msgstr "Account Datei" +#: mod/suggest.php:86 mod/suggest.php:106 +msgid "Ignore/Hide" +msgstr "Ignorieren/Verbergen" -#: mod/uimport.php:72 +#: mod/tagrm.php:45 +msgid "Tag removed" +msgstr "Tag entfernt" + +#: mod/tagrm.php:84 +msgid "Remove Item Tag" +msgstr "Gegenstands-Tag entfernen" + +#: mod/tagrm.php:86 +msgid "Select a tag to remove: " +msgstr "Wähle ein Tag zum Entfernen aus: " + +#: mod/uexport.php:38 +msgid "Export account" +msgstr "Account exportieren" + +#: mod/uexport.php:38 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\"" +"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/update_community.php:19 mod/update_display.php:23 -#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35 +#: mod/uexport.php:39 +msgid "Export all" +msgstr "Alles exportieren" + +#: mod/uexport.php:39 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert)." + +#: mod/uexport.php:46 mod/settings.php:97 +msgid "Export personal data" +msgstr "Persönliche Daten exportieren" + +#: mod/update_community.php:21 mod/update_display.php:25 +#: mod/update_network.php:29 mod/update_notes.php:38 mod/update_profile.php:37 msgid "[Embedded content - reload page to view]" msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]" -#: mod/viewcontacts.php:75 +#: mod/videos.php:126 +msgid "Do you really want to delete this video?" +msgstr "Möchtest Du dieses Video wirklich löschen?" + +#: mod/videos.php:131 +msgid "Delete Video" +msgstr "Video Löschen" + +#: mod/videos.php:210 +msgid "No videos selected" +msgstr "Keine Videos ausgewählt" + +#: mod/videos.php:404 +msgid "Recent Videos" +msgstr "Neueste Videos" + +#: mod/videos.php:406 +msgid "Upload New Videos" +msgstr "Neues Video hochladen" + +#: mod/viewcontacts.php:78 msgid "No contacts." msgstr "Keine Kontakte." -#: mod/viewsrc.php:7 +#: mod/viewsrc.php:8 msgid "Access denied." msgstr "Zugriff verweigert." -#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76 +#: mod/wall_attach.php:19 mod/wall_attach.php:27 mod/wall_attach.php:78 #: mod/wall_upload.php:36 mod/wall_upload.php:52 mod/wall_upload.php:110 #: mod/wall_upload.php:150 mod/wall_upload.php:153 msgid "Invalid request." msgstr "Ungültige Anfrage" -#: mod/wall_attach.php:94 +#: mod/wall_attach.php:96 msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" msgstr "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt." -#: mod/wall_attach.php:94 +#: mod/wall_attach.php:96 msgid "Or - did you try to upload an empty file?" msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?" -#: mod/wall_attach.php:105 +#: mod/wall_attach.php:107 #, php-format msgid "File exceeds size limit of %s" msgstr "Die Datei ist größer als das erlaubte Limit von %s" -#: mod/wall_attach.php:158 mod/wall_attach.php:174 +#: mod/wall_attach.php:160 mod/wall_attach.php:176 msgid "File upload failed." msgstr "Hochladen der Datei fehlgeschlagen." -#: mod/wallmessage.php:42 mod/wallmessage.php:106 +#: mod/wallmessage.php:44 mod/wallmessage.php:108 #, 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:50 mod/message.php:60 -msgid "No recipient selected." -msgstr "Kein Empfänger gewählt." - -#: mod/wallmessage.php:53 +#: mod/wallmessage.php:55 msgid "Unable to check your home location." msgstr "Konnte Deinen Heimatort nicht bestimmen." -#: mod/wallmessage.php:56 mod/message.php:67 -msgid "Message could not be sent." -msgstr "Nachricht konnte nicht gesendet werden." - -#: mod/wallmessage.php:59 mod/message.php:70 -msgid "Message collection failure." -msgstr "Konnte Nachrichten nicht abrufen." - -#: mod/wallmessage.php:62 mod/message.php:73 -msgid "Message sent." -msgstr "Nachricht gesendet." - -#: mod/wallmessage.php:80 mod/wallmessage.php:89 +#: mod/wallmessage.php:82 mod/wallmessage.php:91 msgid "No recipient." msgstr "Kein Empfänger." -#: mod/wallmessage.php:126 mod/message.php:322 -msgid "Send Private Message" -msgstr "Private Nachricht senden" - -#: mod/wallmessage.php:127 +#: mod/wallmessage.php:129 #, php-format msgid "" "If you wish for %s to respond, please check that the privacy settings on " "your site allow private mail from unknown senders." msgstr "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern." -#: mod/wallmessage.php:128 mod/message.php:323 mod/message.php:510 -msgid "To:" -msgstr "An:" +#: mod/webfinger.php:11 mod/probe.php:10 +msgid "Only logged in users are permitted to perform a probing." +msgstr "Nur eingeloggten Benutzern ist das Untersuchen von Adressen gestattet." -#: mod/wallmessage.php:129 mod/message.php:328 mod/message.php:512 -msgid "Subject:" -msgstr "Betreff:" - -#: mod/babel.php:16 -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:65 -msgid "Source input (Diaspora format): " -msgstr "Originaltext (Diaspora Format): " - -#: mod/babel.php:69 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " - -#: mod/cal.php:271 mod/events.php:375 -msgid "View" -msgstr "Ansehen" - -#: mod/cal.php:272 mod/events.php:377 -msgid "Previous" -msgstr "Vorherige" - -#: mod/cal.php:273 mod/events.php:378 mod/install.php:201 -msgid "Next" -msgstr "Nächste" - -#: mod/cal.php:282 mod/events.php:387 -msgid "list" -msgstr "Liste" - -#: mod/cal.php:292 -msgid "User not found" -msgstr "Nutzer nicht gefunden" - -#: mod/cal.php:308 -msgid "This calendar format is not supported" -msgstr "Dieses Kalenderformat wird nicht unterstützt." - -#: mod/cal.php:310 -msgid "No exportable data found" -msgstr "Keine exportierbaren Daten gefunden" - -#: mod/cal.php:325 -msgid "calendar" -msgstr "Kalender" - -#: mod/community.php:23 -msgid "Not available." -msgstr "Nicht verfügbar." - -#: mod/community.php:50 mod/search.php:219 -msgid "No results." -msgstr "Keine Ergebnisse." - -#: mod/dfrn_confirm.php:70 mod/profiles.php:19 mod/profiles.php:135 -#: mod/profiles.php:182 mod/profiles.php:619 -msgid "Profile not found." -msgstr "Profil nicht gefunden." - -#: mod/dfrn_confirm.php:127 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde." - -#: mod/dfrn_confirm.php:244 -msgid "Response from remote site was not understood." -msgstr "Antwort der Gegenstelle unverständlich." - -#: mod/dfrn_confirm.php:253 mod/dfrn_confirm.php:258 -msgid "Unexpected response from remote site: " -msgstr "Unerwartete Antwort der Gegenstelle: " - -#: mod/dfrn_confirm.php:267 -msgid "Confirmation completed successfully." -msgstr "Bestätigung erfolgreich abgeschlossen." - -#: mod/dfrn_confirm.php:269 mod/dfrn_confirm.php:283 mod/dfrn_confirm.php:290 -msgid "Remote site reported: " -msgstr "Gegenstelle meldet: " - -#: mod/dfrn_confirm.php:281 -msgid "Temporary failure. Please wait and try again." -msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal." - -#: mod/dfrn_confirm.php:288 -msgid "Introduction failed or was revoked." -msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen." - -#: mod/dfrn_confirm.php:418 -msgid "Unable to set contact photo." -msgstr "Konnte das Bild des Kontakts nicht speichern." - -#: mod/dfrn_confirm.php:559 -#, php-format -msgid "No user record found for '%s' " -msgstr "Für '%s' wurde kein Nutzer gefunden" - -#: mod/dfrn_confirm.php:569 -msgid "Our site encryption key is apparently messed up." -msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung." - -#: mod/dfrn_confirm.php:580 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden." - -#: mod/dfrn_confirm.php:602 -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:616 -#, 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:636 -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:647 -msgid "Unable to set your contact credentials on our system." -msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden." - -#: mod/dfrn_confirm.php:709 -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:781 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s ist %2$s beigetreten" - -#: mod/dfrn_request.php:101 +#: mod/dfrn_request.php:103 msgid "This introduction has already been accepted." msgstr "Diese Kontaktanfrage wurde bereits akzeptiert." -#: mod/dfrn_request.php:124 mod/dfrn_request.php:528 +#: mod/dfrn_request.php:126 mod/dfrn_request.php:528 msgid "Profile location is not valid or does not contain profile information." msgstr "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung." -#: mod/dfrn_request.php:129 mod/dfrn_request.php:533 +#: mod/dfrn_request.php:131 mod/dfrn_request.php:533 msgid "Warning: profile location has no identifiable owner name." msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden." -#: mod/dfrn_request.php:132 mod/dfrn_request.php:536 +#: mod/dfrn_request.php:134 mod/dfrn_request.php:536 msgid "Warning: profile location has no profile photo." msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse." -#: mod/dfrn_request.php:136 mod/dfrn_request.php:540 +#: mod/dfrn_request.php:138 mod/dfrn_request.php:540 #, php-format msgid "%d required parameter was not found at the given location" msgid_plural "%d required parameters were not found at the given location" msgstr[0] "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden" msgstr[1] "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden" -#: mod/dfrn_request.php:180 +#: mod/dfrn_request.php:182 msgid "Introduction complete." msgstr "Kontaktanfrage abgeschlossen." -#: mod/dfrn_request.php:225 +#: mod/dfrn_request.php:227 msgid "Unrecoverable protocol error." msgstr "Nicht behebbarer Protokollfehler." -#: mod/dfrn_request.php:253 +#: mod/dfrn_request.php:255 msgid "Profile unavailable." msgstr "Profil nicht verfügbar." -#: mod/dfrn_request.php:280 +#: mod/dfrn_request.php:282 #, php-format msgid "%s has received too many connection requests today." msgstr "%s hat heute zu viele Kontaktanfragen erhalten." -#: mod/dfrn_request.php:281 +#: mod/dfrn_request.php:283 msgid "Spam protection measures have been invoked." msgstr "Maßnahmen zum Spamschutz wurden ergriffen." -#: mod/dfrn_request.php:282 +#: mod/dfrn_request.php:284 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:344 +#: mod/dfrn_request.php:346 msgid "Invalid locator" msgstr "Ungültiger Locator" -#: mod/dfrn_request.php:353 +#: mod/dfrn_request.php:355 msgid "Invalid email address." msgstr "Ungültige E-Mail-Adresse." -#: mod/dfrn_request.php:378 +#: mod/dfrn_request.php:380 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:481 +#: mod/dfrn_request.php:483 msgid "You have already introduced yourself here." msgstr "Du hast Dich hier bereits vorgestellt." -#: mod/dfrn_request.php:485 +#: mod/dfrn_request.php:487 #, php-format msgid "Apparently you are already friends with %s." msgstr "Es scheint so, als ob Du bereits mit %s in Kontakt stehst." -#: mod/dfrn_request.php:506 +#: mod/dfrn_request.php:508 msgid "Invalid profile URL." msgstr "Ungültige Profil-URL." +#: mod/dfrn_request.php:593 mod/contacts.php:221 +msgid "Failed to update contact record." +msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen." + #: mod/dfrn_request.php:614 msgid "Your introduction has been sent." msgstr "Deine Kontaktanfrage wurde gesendet." @@ -5094,19 +5855,6 @@ msgid "" "testuser@identi.ca" msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" -#: mod/dfrn_request.php:879 mod/follow.php:112 -msgid "Please answer the following:" -msgstr "Bitte beantworte folgendes:" - -#: mod/dfrn_request.php:880 mod/follow.php:113 -#, php-format -msgid "Does %s know you?" -msgstr "Kennt %s Dich?" - -#: mod/dfrn_request.php:884 mod/follow.php:114 -msgid "Add a personal note:" -msgstr "Eine persönliche Notiz beifügen:" - #: mod/dfrn_request.php:887 msgid "StatusNet/Federated Social Web" msgstr "StatusNet/Federated Social Web" @@ -5118,2112 +5866,11 @@ msgid "" " bar." msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste." -#: mod/dfrn_request.php:890 mod/follow.php:120 -msgid "Your Identity Address:" -msgstr "Adresse Deines Profils:" - -#: mod/dfrn_request.php:893 mod/follow.php:19 -msgid "Submit Request" -msgstr "Anfrage abschicken" - -#: mod/dirfind.php:37 -#, php-format -msgid "People Search - %s" -msgstr "Personensuche - %s" - -#: mod/dirfind.php:48 -#, php-format -msgid "Forum Search - %s" -msgstr "Forensuche - %s" - -#: mod/events.php:93 mod/events.php:95 -msgid "Event can not end before it has started." -msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt." - -#: mod/events.php:102 mod/events.php:104 -msgid "Event title and start time are required." -msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden." - -#: mod/events.php:376 -msgid "Create New Event" -msgstr "Neue Veranstaltung erstellen" - -#: mod/events.php:481 -msgid "Event details" -msgstr "Veranstaltungsdetails" - -#: mod/events.php:482 -msgid "Starting date and Title are required." -msgstr "Anfangszeitpunkt und Titel werden benötigt" - -#: mod/events.php:483 mod/events.php:484 -msgid "Event Starts:" -msgstr "Veranstaltungsbeginn:" - -#: mod/events.php:483 mod/events.php:495 mod/profiles.php:709 -msgid "Required" -msgstr "Benötigt" - -#: mod/events.php:485 mod/events.php:501 -msgid "Finish date/time is not known or not relevant" -msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant" - -#: mod/events.php:487 mod/events.php:488 -msgid "Event Finishes:" -msgstr "Veranstaltungsende:" - -#: mod/events.php:489 mod/events.php:502 -msgid "Adjust for viewer timezone" -msgstr "An Zeitzone des Betrachters anpassen" - -#: mod/events.php:491 -msgid "Description:" -msgstr "Beschreibung" - -#: mod/events.php:495 mod/events.php:497 -msgid "Title:" -msgstr "Titel:" - -#: mod/events.php:498 mod/events.php:499 -msgid "Share this event" -msgstr "Veranstaltung teilen" - -#: mod/events.php:528 -msgid "Failed to remove event" -msgstr "Entfernen der Veranstaltung fehlgeschlagen" - -#: mod/events.php:530 -msgid "Event removed" -msgstr "Veranstaltung enfternt" - -#: mod/follow.php:30 -msgid "You already added this contact." -msgstr "Du hast den Kontakt bereits hinzugefügt." - -#: mod/follow.php:39 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "Diaspora Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden." - -#: mod/follow.php:46 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "OStatus Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden." - -#: mod/follow.php:53 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "Der Netzwerktype wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden." - -#: mod/follow.php:186 -msgid "Contact added" -msgstr "Kontakt hinzugefügt" - -#: mod/friendica.php:68 -msgid "This is Friendica, version" -msgstr "Dies ist Friendica, Version" - -#: mod/friendica.php:69 -msgid "running at web location" -msgstr "die unter folgender Webadresse zu finden ist" - -#: mod/friendica.php:73 -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:77 -msgid "Bug reports and issues: please visit" -msgstr "Probleme oder Fehler gefunden? Bitte besuche" - -#: mod/friendica.php:77 -msgid "the bugtracker at github" -msgstr "den Bugtracker auf github" - -#: mod/friendica.php:80 -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:94 -msgid "Installed plugins/addons/apps:" -msgstr "Installierte Plugins/Erweiterungen/Apps:" - -#: mod/friendica.php:108 -msgid "No installed plugins/addons/apps" -msgstr "Keine Plugins/Erweiterungen/Apps installiert" - -#: mod/friendica.php:113 -msgid "On this server the following remote servers are blocked." -msgstr "Auf diesem Server werden die folgenden entfernten Server blockiert." - -#: mod/friendica.php:114 mod/admin.php:280 mod/admin.php:298 -msgid "Reason for the block" -msgstr "Begründung für die Blockierung" - -#: mod/group.php:29 -msgid "Group created." -msgstr "Gruppe erstellt." - -#: mod/group.php:35 -msgid "Could not create group." -msgstr "Konnte die Gruppe nicht erstellen." - -#: mod/group.php:49 mod/group.php:154 -msgid "Group not found." -msgstr "Gruppe nicht gefunden." - -#: mod/group.php:63 -msgid "Group name changed." -msgstr "Gruppenname geändert." - -#: mod/group.php:93 -msgid "Save Group" -msgstr "Gruppe speichern" - -#: mod/group.php:98 -msgid "Create a group of contacts/friends." -msgstr "Eine Kontaktgruppe anlegen." - -#: mod/group.php:123 -msgid "Group removed." -msgstr "Gruppe entfernt." - -#: mod/group.php:125 -msgid "Unable to remove group." -msgstr "Konnte die Gruppe nicht entfernen." - -#: mod/group.php:189 -msgid "Delete Group" -msgstr "Gruppe löschen" - -#: mod/group.php:195 -msgid "Group Editor" -msgstr "Gruppeneditor" - -#: mod/group.php:200 -msgid "Edit Group Name" -msgstr "Gruppen Name bearbeiten" - -#: mod/group.php:210 -msgid "Members" -msgstr "Mitglieder" - -#: mod/group.php:226 -msgid "Remove Contact" -msgstr "Kontakt löschen" - -#: mod/group.php:250 -msgid "Add Contact" -msgstr "Kontakt hinzufügen" - -#: mod/manage.php:151 -msgid "Manage Identities and/or Pages" -msgstr "Verwalte Identitäten und/oder Seiten" - -#: mod/manage.php:152 -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:153 -msgid "Select an identity to manage: " -msgstr "Wähle eine Identität zum Verwalten aus: " - -#: mod/message.php:64 -msgid "Unable to locate contact information." -msgstr "Konnte die Kontaktinformationen nicht finden." - -#: mod/message.php:204 -msgid "Do you really want to delete this message?" -msgstr "Möchtest Du wirklich diese Nachricht löschen?" - -#: mod/message.php:224 -msgid "Message deleted." -msgstr "Nachricht gelöscht." - -#: mod/message.php:255 -msgid "Conversation removed." -msgstr "Unterhaltung gelöscht." - -#: mod/message.php:364 -msgid "No messages." -msgstr "Keine Nachrichten." - -#: mod/message.php:403 -msgid "Message not available." -msgstr "Nachricht nicht verfügbar." - -#: mod/message.php:477 -msgid "Delete message" -msgstr "Nachricht löschen" - -#: mod/message.php:503 mod/message.php:591 -msgid "Delete conversation" -msgstr "Unterhaltung löschen" - -#: mod/message.php:505 -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:509 -msgid "Send Reply" -msgstr "Antwort senden" - -#: mod/message.php:561 -#, php-format -msgid "Unknown sender - %s" -msgstr "'Unbekannter Absender - %s" - -#: mod/message.php:563 -#, php-format -msgid "You and %s" -msgstr "Du und %s" - -#: mod/message.php:565 -#, php-format -msgid "%s and You" -msgstr "%s und Du" - -#: mod/message.php:594 -msgid "D, d M Y - g:i A" -msgstr "D, d. M Y - g:i A" - -#: mod/message.php:597 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d Nachricht" -msgstr[1] "%d Nachrichten" - -#: mod/network.php:197 mod/search.php:25 -msgid "Remove term" -msgstr "Begriff entfernen" - -#: mod/network.php:404 -#, php-format -msgid "" -"Warning: This group contains %s member from a network that doesn't allow non" -" public messages." -msgid_plural "" -"Warning: This group contains %s members from a network that doesn't allow " -"non public messages." -msgstr[0] "Warnung: Diese Gruppe beinhaltet %s Person aus einem Netzwerk das keine nicht öffentlichen Beiträge empfangen kann." -msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus Netzwerken die keine nicht-öffentlichen Beiträge empfangen können." - -#: mod/network.php:407 -msgid "Messages in this group won't be send to these receivers." -msgstr "Beiträge in dieser Gruppe werden deshalb nicht an diese Personen zugestellt werden." - -#: mod/network.php:535 -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:540 -msgid "Invalid contact." -msgstr "Ungültiger Kontakt." - -#: mod/network.php:813 -msgid "Commented Order" -msgstr "Neueste Kommentare" - -#: mod/network.php:816 -msgid "Sort by Comment Date" -msgstr "Nach Kommentardatum sortieren" - -#: mod/network.php:821 -msgid "Posted Order" -msgstr "Neueste Beiträge" - -#: mod/network.php:824 -msgid "Sort by Post Date" -msgstr "Nach Beitragsdatum sortieren" - -#: mod/network.php:835 -msgid "Posts that mention or involve you" -msgstr "Beiträge, in denen es um Dich geht" - -#: mod/network.php:843 -msgid "New" -msgstr "Neue" - -#: mod/network.php:846 -msgid "Activity Stream - by date" -msgstr "Aktivitäten-Stream - nach Datum" - -#: mod/network.php:854 -msgid "Shared Links" -msgstr "Geteilte Links" - -#: mod/network.php:857 -msgid "Interesting Links" -msgstr "Interessante Links" - -#: mod/network.php:865 -msgid "Starred" -msgstr "Markierte" - -#: mod/network.php:868 -msgid "Favourite Posts" -msgstr "Favorisierte Beiträge" - -#: mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." - -#: mod/openid.php:60 -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/photos.php:94 mod/photos.php:1900 -msgid "Recent Photos" -msgstr "Neueste Fotos" - -#: mod/photos.php:97 mod/photos.php:1328 mod/photos.php:1902 -msgid "Upload New Photos" -msgstr "Neue Fotos hochladen" - -#: mod/photos.php:112 mod/settings.php:36 -msgid "everybody" -msgstr "jeder" - -#: mod/photos.php:176 -msgid "Contact information unavailable" -msgstr "Kontaktinformationen nicht verfügbar" - -#: mod/photos.php:197 -msgid "Album not found." -msgstr "Album nicht gefunden." - -#: mod/photos.php:230 mod/photos.php:242 mod/photos.php:1272 -msgid "Delete Album" -msgstr "Album löschen" - -#: mod/photos.php:240 -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:323 mod/photos.php:334 mod/photos.php:1598 -msgid "Delete Photo" -msgstr "Foto löschen" - -#: mod/photos.php:332 -msgid "Do you really want to delete this photo?" -msgstr "Möchtest Du wirklich dieses Foto löschen?" - -#: mod/photos.php:713 -#, 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:713 -msgid "a photo" -msgstr "einem Foto" - -#: mod/photos.php:821 -msgid "Image file is empty." -msgstr "Bilddatei ist leer." - -#: mod/photos.php:988 -msgid "No photos selected" -msgstr "Keine Bilder ausgewählt" - -#: mod/photos.php:1091 mod/videos.php:309 -msgid "Access to this item is restricted." -msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt." - -#: mod/photos.php:1151 -#, 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:1188 -msgid "Upload Photos" -msgstr "Bilder hochladen" - -#: mod/photos.php:1192 mod/photos.php:1267 -msgid "New album name: " -msgstr "Name des neuen Albums: " - -#: mod/photos.php:1193 -msgid "or existing album name: " -msgstr "oder existierender Albumname: " - -#: mod/photos.php:1194 -msgid "Do not show a status post for this upload" -msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen" - -#: mod/photos.php:1205 mod/photos.php:1602 mod/settings.php:1307 -msgid "Show to Groups" -msgstr "Zeige den Gruppen" - -#: mod/photos.php:1206 mod/photos.php:1603 mod/settings.php:1308 -msgid "Show to Contacts" -msgstr "Zeige den Kontakten" - -#: mod/photos.php:1207 -msgid "Private Photo" -msgstr "Privates Foto" - -#: mod/photos.php:1208 -msgid "Public Photo" -msgstr "Öffentliches Foto" - -#: mod/photos.php:1278 -msgid "Edit Album" -msgstr "Album bearbeiten" - -#: mod/photos.php:1283 -msgid "Show Newest First" -msgstr "Zeige neueste zuerst" - -#: mod/photos.php:1285 -msgid "Show Oldest First" -msgstr "Zeige älteste zuerst" - -#: mod/photos.php:1314 mod/photos.php:1885 -msgid "View Photo" -msgstr "Foto betrachten" - -#: mod/photos.php:1359 -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:1361 -msgid "Photo not available" -msgstr "Foto nicht verfügbar" - -#: mod/photos.php:1422 -msgid "View photo" -msgstr "Fotos ansehen" - -#: mod/photos.php:1422 -msgid "Edit photo" -msgstr "Foto bearbeiten" - -#: mod/photos.php:1423 -msgid "Use as profile photo" -msgstr "Als Profilbild verwenden" - -#: mod/photos.php:1448 -msgid "View Full Size" -msgstr "Betrachte Originalgröße" - -#: mod/photos.php:1538 -msgid "Tags: " -msgstr "Tags: " - -#: mod/photos.php:1541 -msgid "[Remove any tag]" -msgstr "[Tag entfernen]" - -#: mod/photos.php:1584 -msgid "New album name" -msgstr "Name des neuen Albums" - -#: mod/photos.php:1585 -msgid "Caption" -msgstr "Bildunterschrift" - -#: mod/photos.php:1586 -msgid "Add a Tag" -msgstr "Tag hinzufügen" - -#: mod/photos.php:1586 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: mod/photos.php:1587 -msgid "Do not rotate" -msgstr "Nicht rotieren" - -#: mod/photos.php:1588 -msgid "Rotate CW (right)" -msgstr "Drehen US (rechts)" - -#: mod/photos.php:1589 -msgid "Rotate CCW (left)" -msgstr "Drehen EUS (links)" - -#: mod/photos.php:1604 -msgid "Private photo" -msgstr "Privates Foto" - -#: mod/photos.php:1605 -msgid "Public photo" -msgstr "Öffentliches Foto" - -#: mod/photos.php:1814 -msgid "Map" -msgstr "Karte" - -#: mod/photos.php:1891 mod/videos.php:393 -msgid "View Album" -msgstr "Album betrachten" - -#: mod/probe.php:10 mod/webfinger.php:9 -msgid "Only logged in users are permitted to perform a probing." -msgstr "Nur eingeloggten Benutzern ist das Untersuchen von Adressen gestattet." - -#: mod/profile.php:175 -msgid "Tips for New Members" -msgstr "Tipps für neue Nutzer" - -#: mod/profiles.php:38 -msgid "Profile deleted." -msgstr "Profil gelöscht." - -#: mod/profiles.php:54 mod/profiles.php:90 -msgid "Profile-" -msgstr "Profil-" - -#: mod/profiles.php:73 mod/profiles.php:118 -msgid "New profile created." -msgstr "Neues Profil angelegt." - -#: mod/profiles.php:96 -msgid "Profile unavailable to clone." -msgstr "Profil nicht zum Duplizieren verfügbar." - -#: mod/profiles.php:192 -msgid "Profile Name is required." -msgstr "Profilname ist erforderlich." - -#: mod/profiles.php:332 -msgid "Marital Status" -msgstr "Familienstand" - -#: mod/profiles.php:336 -msgid "Romantic Partner" -msgstr "Romanze" - -#: mod/profiles.php:348 -msgid "Work/Employment" -msgstr "Arbeit / Beschäftigung" - -#: mod/profiles.php:351 -msgid "Religion" -msgstr "Religion" - -#: mod/profiles.php:355 -msgid "Political Views" -msgstr "Politische Ansichten" - -#: mod/profiles.php:359 -msgid "Gender" -msgstr "Geschlecht" - -#: mod/profiles.php:363 -msgid "Sexual Preference" -msgstr "Sexuelle Vorlieben" - -#: mod/profiles.php:367 -msgid "XMPP" -msgstr "XMPP" - -#: 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:471 -msgid "Profile updated." -msgstr "Profil aktualisiert." - -#: mod/profiles.php:564 -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:579 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s hat folgendes aktualisiert %2$s, verändert wurde %3$s." - -#: mod/profiles.php:637 -msgid "Hide contacts and friends:" -msgstr "Kontakte und Freunde verbergen" - -#: mod/profiles.php:642 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?" - -#: mod/profiles.php:667 -msgid "Show more profile fields:" -msgstr "Zeige mehr Profil-Felder:" - -#: mod/profiles.php:679 -msgid "Profile Actions" -msgstr "Profilaktionen" - -#: mod/profiles.php:680 -msgid "Edit Profile Details" -msgstr "Profil bearbeiten" - -#: mod/profiles.php:682 -msgid "Change Profile Photo" -msgstr "Profilbild ändern" - -#: mod/profiles.php:683 -msgid "View this profile" -msgstr "Dieses Profil anzeigen" - -#: mod/profiles.php:685 -msgid "Create a new profile using these settings" -msgstr "Neues Profil anlegen und diese Einstellungen verwenden" - -#: mod/profiles.php:686 -msgid "Clone this profile" -msgstr "Dieses Profil duplizieren" - -#: mod/profiles.php:687 -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 "Relation" -msgstr "Beziehung" - -#: mod/profiles.php:701 -msgid "Your Gender:" -msgstr "Dein Geschlecht:" - -#: mod/profiles.php:702 -msgid " Marital Status:" -msgstr " Beziehungsstatus:" - -#: mod/profiles.php:704 -msgid "Example: fishing photography software" -msgstr "Beispiel: Fischen Fotografie Software" - -#: mod/profiles.php:709 -msgid "Profile Name:" -msgstr "Profilname:" - -#: mod/profiles.php:711 -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:712 -msgid "Your Full Name:" -msgstr "Dein kompletter Name:" - -#: mod/profiles.php:713 -msgid "Title/Description:" -msgstr "Titel/Beschreibung:" - -#: mod/profiles.php:716 -msgid "Street Address:" -msgstr "Adresse:" - -#: mod/profiles.php:717 -msgid "Locality/City:" -msgstr "Wohnort:" - -#: mod/profiles.php:718 -msgid "Region/State:" -msgstr "Region/Bundesstaat:" - -#: mod/profiles.php:719 -msgid "Postal/Zip Code:" -msgstr "Postleitzahl:" - -#: mod/profiles.php:720 -msgid "Country:" -msgstr "Land:" - -#: mod/profiles.php:724 -msgid "Who: (if applicable)" -msgstr "Wer: (falls anwendbar)" - -#: mod/profiles.php:724 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com" - -#: mod/profiles.php:725 -msgid "Since [date]:" -msgstr "Seit [Datum]:" - -#: mod/profiles.php:727 -msgid "Tell us about yourself..." -msgstr "Erzähle uns ein bisschen von Dir …" - -#: mod/profiles.php:728 -msgid "XMPP (Jabber) address:" -msgstr "XMPP (Jabber) Adresse" - -#: mod/profiles.php:728 -msgid "" -"The XMPP address will be propagated to your contacts so that they can follow" -" you." -msgstr "Die XMPP Adresse wird an deine Kontakte verteilt werden, so dass sie auch über XMPP mit dir in Kontakt treten können." - -#: mod/profiles.php:729 -msgid "Homepage URL:" -msgstr "Adresse der Homepage:" - -#: mod/profiles.php:732 -msgid "Religious Views:" -msgstr "Religiöse Ansichten:" - -#: mod/profiles.php:733 -msgid "Public Keywords:" -msgstr "Öffentliche Schlüsselwörter:" - -#: mod/profiles.php:733 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Wird verwendet, um potentielle Kontakte zu finden, kann von Kontakten eingesehen werden)" - -#: mod/profiles.php:734 -msgid "Private Keywords:" -msgstr "Private Schlüsselwörter:" - -#: mod/profiles.php:734 -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:737 -msgid "Musical interests" -msgstr "Musikalische Interessen" - -#: mod/profiles.php:738 -msgid "Books, literature" -msgstr "Bücher, Literatur" - -#: mod/profiles.php:739 -msgid "Television" -msgstr "Fernsehen" - -#: mod/profiles.php:740 -msgid "Film/dance/culture/entertainment" -msgstr "Filme/Tänze/Kultur/Unterhaltung" - -#: mod/profiles.php:741 -msgid "Hobbies/Interests" -msgstr "Hobbies/Interessen" - -#: mod/profiles.php:742 -msgid "Love/romance" -msgstr "Liebe/Romantik" - -#: mod/profiles.php:743 -msgid "Work/employment" -msgstr "Arbeit/Anstellung" - -#: mod/profiles.php:744 -msgid "School/education" -msgstr "Schule/Ausbildung" - -#: mod/profiles.php:745 -msgid "Contact information and Social Networks" -msgstr "Kontaktinformationen und Soziale Netzwerke" - -#: mod/profiles.php:786 -msgid "Edit/Manage Profiles" -msgstr "Bearbeite/Verwalte Profile" - -#: mod/register.php:93 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet." - -#: mod/register.php:98 -#, php-format -msgid "" -"Failed to send email message. Here your accout details:
login: %s
" -"password: %s

You can change your password after login." -msgstr "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern." - -#: mod/register.php:105 -msgid "Registration successful." -msgstr "Registrierung erfolgreich." - -#: mod/register.php:111 -msgid "Your registration can not be processed." -msgstr "Deine Registrierung konnte nicht verarbeitet werden." - -#: mod/register.php:160 -msgid "Your registration is pending approval by the site owner." -msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." - -#: mod/register.php:226 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst." - -#: mod/register.php:227 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus." - -#: mod/register.php:228 -msgid "Your OpenID (optional): " -msgstr "Deine OpenID (optional): " - -#: mod/register.php:242 -msgid "Include your profile in member directory?" -msgstr "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?" - -#: mod/register.php:267 -msgid "Note for the admin" -msgstr "Hinweis für den Admin" - -#: mod/register.php:267 -msgid "Leave a message for the admin, why you want to join this node" -msgstr "Hinterlasse eine Nachricht an den Admin, warum du einen Account auf dieser Instanz haben möchtest." - -#: mod/register.php:268 -msgid "Membership on this site is by invitation only." -msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." - -#: mod/register.php:269 -msgid "Your invitation ID: " -msgstr "ID Deiner Einladung: " - -#: mod/register.php:272 mod/admin.php:1056 -msgid "Registration" -msgstr "Registrierung" - -#: mod/register.php:280 -msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "Dein vollständiger Name (z.B. Hans Mustermann, echt oder echt erscheinend):" - -#: mod/register.php:281 -msgid "Your Email Address: " -msgstr "Deine E-Mail-Adresse: " - -#: mod/register.php:283 mod/settings.php:1278 -msgid "New Password:" -msgstr "Neues Passwort:" - -#: mod/register.php:283 -msgid "Leave empty for an auto generated password." -msgstr "Leer lassen um das Passwort automatisch zu generieren." - -#: mod/register.php:284 mod/settings.php:1279 -msgid "Confirm:" -msgstr "Bestätigen:" - -#: mod/register.php:285 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'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:286 -msgid "Choose a nickname: " -msgstr "Spitznamen wählen: " - -#: mod/register.php:296 -msgid "Import your profile to this friendica instance" -msgstr "Importiere Dein Profil auf diese Friendica Instanz" - -#: mod/search.php:100 -msgid "Only logged in users are permitted to perform a search." -msgstr "Nur eingeloggten Benutzern ist das Suchen gestattet." - -#: mod/search.php:124 -msgid "Too Many Requests" -msgstr "Zu viele Abfragen" - -#: mod/search.php:125 -msgid "Only one search per minute is permitted for not logged in users." -msgstr "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet." - -#: mod/search.php:225 -#, php-format -msgid "Items tagged with: %s" -msgstr "Beiträge die mit %s getaggt sind" - -#: mod/settings.php:43 mod/admin.php:1490 -msgid "Account" -msgstr "Nutzerkonto" - -#: mod/settings.php:52 mod/admin.php:169 -msgid "Additional features" -msgstr "Zusätzliche Features" - -#: mod/settings.php:60 -msgid "Display" -msgstr "Anzeige" - -#: mod/settings.php:67 mod/settings.php:890 -msgid "Social Networks" -msgstr "Soziale Netzwerke" - -#: mod/settings.php:74 mod/admin.php:167 mod/admin.php:1616 mod/admin.php:1679 -msgid "Plugins" -msgstr "Plugins" - -#: mod/settings.php:88 -msgid "Connected apps" -msgstr "Verbundene Programme" - -#: mod/settings.php:95 mod/uexport.php:45 -msgid "Export personal data" -msgstr "Persönliche Daten exportieren" - -#: mod/settings.php:102 -msgid "Remove account" -msgstr "Konto löschen" - -#: mod/settings.php:157 -msgid "Missing some important data!" -msgstr "Wichtige Daten fehlen!" - -#: mod/settings.php:271 -msgid "Failed to connect with email account using the settings provided." -msgstr "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich." - -#: mod/settings.php:276 -msgid "Email settings updated." -msgstr "E-Mail Einstellungen bearbeitet." - -#: mod/settings.php:291 -msgid "Features updated" -msgstr "Features aktualisiert" - -#: mod/settings.php:361 -msgid "Relocate message has been send to your contacts" -msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet." - -#: mod/settings.php:380 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert." - -#: mod/settings.php:388 -msgid "Wrong password." -msgstr "Falsches Passwort." - -#: mod/settings.php:399 -msgid "Password changed." -msgstr "Passwort geändert." - -#: mod/settings.php:401 -msgid "Password update failed. Please try again." -msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal." - -#: mod/settings.php:481 -msgid " Please use a shorter name." -msgstr " Bitte verwende einen kürzeren Namen." - -#: mod/settings.php:483 -msgid " Name too short." -msgstr " Name ist zu kurz." - -#: mod/settings.php:492 -msgid "Wrong Password" -msgstr "Falsches Passwort" - -#: mod/settings.php:497 -msgid " Not valid email." -msgstr " Keine gültige E-Mail." - -#: mod/settings.php:503 -msgid " Cannot change to that email." -msgstr "Ändern der E-Mail nicht möglich. " - -#: mod/settings.php:559 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt." - -#: mod/settings.php:563 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte." - -#: mod/settings.php:603 -msgid "Settings updated." -msgstr "Einstellungen aktualisiert." - -#: mod/settings.php:680 mod/settings.php:706 mod/settings.php:742 -msgid "Add application" -msgstr "Programm hinzufügen" - -#: mod/settings.php:681 mod/settings.php:792 mod/settings.php:841 -#: mod/settings.php:908 mod/settings.php:1005 mod/settings.php:1271 -#: mod/admin.php:1055 mod/admin.php:1680 mod/admin.php:1943 mod/admin.php:2017 -#: mod/admin.php:2170 -msgid "Save Settings" -msgstr "Einstellungen speichern" - -#: mod/settings.php:684 mod/settings.php:710 -msgid "Consumer Key" -msgstr "Consumer Key" - -#: mod/settings.php:685 mod/settings.php:711 -msgid "Consumer Secret" -msgstr "Consumer Secret" - -#: mod/settings.php:686 mod/settings.php:712 -msgid "Redirect" -msgstr "Umleiten" - -#: mod/settings.php:687 mod/settings.php:713 -msgid "Icon url" -msgstr "Icon URL" - -#: mod/settings.php:698 -msgid "You can't edit this application." -msgstr "Du kannst dieses Programm nicht bearbeiten." - -#: mod/settings.php:741 -msgid "Connected Apps" -msgstr "Verbundene Programme" - -#: mod/settings.php:745 -msgid "Client key starts with" -msgstr "Anwenderschlüssel beginnt mit" - -#: mod/settings.php:746 -msgid "No name" -msgstr "Kein Name" - -#: mod/settings.php:747 -msgid "Remove authorization" -msgstr "Autorisierung entziehen" - -#: mod/settings.php:759 -msgid "No Plugin settings configured" -msgstr "Keine Plugin-Einstellungen konfiguriert" - -#: mod/settings.php:768 -msgid "Plugin Settings" -msgstr "Plugin-Einstellungen" - -#: mod/settings.php:782 mod/admin.php:2159 mod/admin.php:2160 -msgid "Off" -msgstr "Aus" - -#: mod/settings.php:782 mod/admin.php:2159 mod/admin.php:2160 -msgid "On" -msgstr "An" - -#: mod/settings.php:790 -msgid "Additional Features" -msgstr "Zusätzliche Features" - -#: mod/settings.php:800 mod/settings.php:804 -msgid "General Social Media Settings" -msgstr "Allgemeine Einstellungen zu Sozialen Medien" - -#: mod/settings.php:810 -msgid "Disable intelligent shortening" -msgstr "Intelligentes Link kürzen ausschalten" - -#: mod/settings.php:812 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If this option is enabled then every shortened post will always point to the" -" original friendica post." -msgstr "Normalerweise versucht das System den besten Link zu finden um ihn zu gekürzten Postings hinzu zu fügen. Wird diese Option ausgewählt wird stets ein Link auf die originale Friendica Nachricht beigefügt." - -#: mod/settings.php:818 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen" - -#: mod/settings.php:820 -msgid "" -"If you receive a message from an unknown OStatus user, this option decides " -"what to do. If it is checked, a new contact will be created for every " -"unknown user." -msgstr "Wenn du eine Nachricht eines unbekannten OStatus Nutzers bekommst, entscheidet diese Option wie diese behandelt werden soll. Ist die Option aktiviert, wird ein neuer Kontakt für den Verfasser erstellt,." - -#: mod/settings.php:826 -msgid "Default group for OStatus contacts" -msgstr "Voreingestellte Gruppe für OStatus Kontakte" - -#: mod/settings.php:834 -msgid "Your legacy GNU Social account" -msgstr "Dein alter GNU Social Account" - -#: mod/settings.php:836 -msgid "" -"If you enter your old GNU Social/Statusnet account name here (in the format " -"user@domain.tld), your contacts will be added automatically. The field will " -"be emptied when done." -msgstr "Wenn du deinen alten GNU Socual/Statusnet Accountnamen hier angibst (Format name@domain.tld) werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden." - -#: mod/settings.php:839 -msgid "Repair OStatus subscriptions" -msgstr "OStatus Abonnements reparieren" - -#: mod/settings.php:848 mod/settings.php:849 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s" - -#: mod/settings.php:848 mod/settings.php:849 -msgid "enabled" -msgstr "eingeschaltet" - -#: mod/settings.php:848 mod/settings.php:849 -msgid "disabled" -msgstr "ausgeschaltet" - -#: mod/settings.php:849 -msgid "GNU Social (OStatus)" -msgstr "GNU Social (OStatus)" - -#: mod/settings.php:883 -msgid "Email access is disabled on this site." -msgstr "Zugriff auf E-Mails für diese Seite deaktiviert." - -#: mod/settings.php:895 -msgid "Email/Mailbox Setup" -msgstr "E-Mail/Postfach-Einstellungen" - -#: mod/settings.php:896 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Wenn Du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für Dein Postfach an." - -#: mod/settings.php:897 -msgid "Last successful email check:" -msgstr "Letzter erfolgreicher E-Mail Check" - -#: mod/settings.php:899 -msgid "IMAP server name:" -msgstr "IMAP-Server-Name:" - -#: mod/settings.php:900 -msgid "IMAP port:" -msgstr "IMAP-Port:" - -#: mod/settings.php:901 -msgid "Security:" -msgstr "Sicherheit:" - -#: mod/settings.php:901 mod/settings.php:906 -msgid "None" -msgstr "Keine" - -#: mod/settings.php:902 -msgid "Email login name:" -msgstr "E-Mail-Login-Name:" - -#: mod/settings.php:903 -msgid "Email password:" -msgstr "E-Mail-Passwort:" - -#: mod/settings.php:904 -msgid "Reply-to address:" -msgstr "Reply-to Adresse:" - -#: mod/settings.php:905 -msgid "Send public posts to all email contacts:" -msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:" - -#: mod/settings.php:906 -msgid "Action after import:" -msgstr "Aktion nach Import:" - -#: mod/settings.php:906 -msgid "Move to folder" -msgstr "In einen Ordner verschieben" - -#: mod/settings.php:907 -msgid "Move to folder:" -msgstr "In diesen Ordner verschieben:" - -#: mod/settings.php:943 mod/admin.php:942 -msgid "No special theme for mobile devices" -msgstr "Kein spezielles Theme für mobile Geräte verwenden." - -#: mod/settings.php:1003 -msgid "Display Settings" -msgstr "Anzeige-Einstellungen" - -#: mod/settings.php:1009 mod/settings.php:1032 -msgid "Display Theme:" -msgstr "Theme:" - -#: mod/settings.php:1010 -msgid "Mobile Theme:" -msgstr "Mobiles Theme" - -#: mod/settings.php:1011 -msgid "Suppress warning of insecure networks" -msgstr "Warnung wegen unsicheren Netzwerken unterdrücken" - -#: mod/settings.php:1011 -msgid "" -"Should the system suppress the warning that the current group contains " -"members of networks that can't receive non public postings." -msgstr "Soll das System Warnungen unterdrücken, die angezeigt werden weil von dir eingerichtete Kontakt-Gruppen Accounts aus Netzwerken beinhalten, die keine nicht öffentlichen Beiträge empfangen können." - -#: mod/settings.php:1012 -msgid "Update browser every xx seconds" -msgstr "Browser alle xx Sekunden aktualisieren" - -#: mod/settings.php:1012 -msgid "Minimum of 10 seconds. Enter -1 to disable it." -msgstr "Minimum sind 10 Sekunden. Gib -1 ein um abzuschalten." - -#: mod/settings.php:1013 -msgid "Number of items to display per page:" -msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: " - -#: mod/settings.php:1013 mod/settings.php:1014 -msgid "Maximum of 100 items" -msgstr "Maximal 100 Beiträge" - -#: mod/settings.php:1014 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:" - -#: mod/settings.php:1015 -msgid "Don't show emoticons" -msgstr "Keine Smilies anzeigen" - -#: mod/settings.php:1016 -msgid "Calendar" -msgstr "Kalender" - -#: mod/settings.php:1017 -msgid "Beginning of week:" -msgstr "Wochenbeginn:" - -#: mod/settings.php:1018 -msgid "Don't show notices" -msgstr "Info-Popups nicht anzeigen" - -#: mod/settings.php:1019 -msgid "Infinite scroll" -msgstr "Endloses Scrollen" - -#: mod/settings.php:1020 -msgid "Automatic updates only at the top of the network page" -msgstr "Automatische Updates nur, wenn Du oben auf der Netzwerkseite bist." - -#: mod/settings.php:1021 -msgid "Bandwith Saver Mode" -msgstr "Bandbreiten-Spar-Modus" - -#: mod/settings.php:1021 -msgid "" -"When enabled, embedded content is not displayed on automatic updates, they " -"only show on page reload." -msgstr "Wenn aktiviert, wird der eingebettete Inhalt nicht automatisch aktualisiert. In diesem Fall Seite bitte neu laden." - -#: mod/settings.php:1023 -msgid "General Theme Settings" -msgstr "Allgemeine Themeneinstellungen" - -#: mod/settings.php:1024 -msgid "Custom Theme Settings" -msgstr "Benutzerdefinierte Theme Einstellungen" - -#: mod/settings.php:1025 -msgid "Content Settings" -msgstr "Einstellungen zum Inhalt" - -#: mod/settings.php:1026 view/theme/duepuntozero/config.php:63 -#: view/theme/frio/config.php:66 view/theme/quattro/config.php:69 -#: view/theme/vier/config.php:114 -msgid "Theme settings" -msgstr "Themeneinstellungen" - -#: mod/settings.php:1110 -msgid "Account Types" -msgstr "Kontenarten" - -#: mod/settings.php:1111 -msgid "Personal Page Subtypes" -msgstr "Unterarten der persönlichen Seite" - -#: mod/settings.php:1112 -msgid "Community Forum Subtypes" -msgstr "Unterarten des Gemeinschaftsforums" - -#: mod/settings.php:1119 -msgid "Personal Page" -msgstr "Persönliche Seite" - -#: mod/settings.php:1120 -msgid "This account is a regular personal profile" -msgstr "Dieses Konto ist ein normales persönliches Profil" - -#: mod/settings.php:1123 -msgid "Organisation Page" -msgstr "Organisationsseite" - -#: mod/settings.php:1124 -msgid "This account is a profile for an organisation" -msgstr "Diese Konto ist ein Profil für eine Organisation" - -#: mod/settings.php:1127 -msgid "News Page" -msgstr "Nachrichtenseite" - -#: mod/settings.php:1128 -msgid "This account is a news account/reflector" -msgstr "Dieses Konto ist ein News-Konto bzw. -Spiegel" - -#: mod/settings.php:1131 -msgid "Community Forum" -msgstr "Gemeinschaftsforum" - -#: mod/settings.php:1132 -msgid "" -"This account is a community forum where people can discuss with each other" -msgstr "Dieses Konto ist ein Gemeinschaftskonto wo sich Leute untereinander austauschen können" - -#: mod/settings.php:1135 -msgid "Normal Account Page" -msgstr "Normales Konto" - -#: mod/settings.php:1136 -msgid "This account is a normal personal profile" -msgstr "Dieses Konto ist ein normales persönliches Profil" - -#: mod/settings.php:1139 -msgid "Soapbox Page" -msgstr "Marktschreier-Konto" - -#: mod/settings.php:1140 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert" - -#: mod/settings.php:1143 -msgid "Public Forum" -msgstr "Öffentliches Forum" - -#: mod/settings.php:1144 -msgid "Automatically approve all contact requests" -msgstr "Bestätige alle Kontaktanfragen automatisch" - -#: mod/settings.php:1147 -msgid "Automatic Friend Page" -msgstr "Automatische Freunde Seite" - -#: mod/settings.php:1148 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert" - -#: mod/settings.php:1151 -msgid "Private Forum [Experimental]" -msgstr "Privates Forum [Versuchsstadium]" - -#: mod/settings.php:1152 -msgid "Private forum - approved members only" -msgstr "Privates Forum, nur für Mitglieder" - -#: mod/settings.php:1163 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:1163 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID." - -#: mod/settings.php:1171 -msgid "Publish your default profile in your local site directory?" -msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?" - -#: mod/settings.php:1171 -msgid "Your profile may be visible in public." -msgstr "Dein Profil könnte öffentlich abrufbar sein." - -#: mod/settings.php:1177 -msgid "Publish your default profile in the global social directory?" -msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?" - -#: mod/settings.php:1184 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?" - -#: mod/settings.php:1188 -msgid "" -"If enabled, posting public messages to Diaspora and other networks isn't " -"possible." -msgstr "Wenn aktiviert, ist das senden öffentliche Nachrichten zu Diaspora und anderen Netzwerken nicht möglich" - -#: mod/settings.php:1193 -msgid "Allow friends to post to your profile page?" -msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?" - -#: mod/settings.php:1198 -msgid "Allow friends to tag your posts?" -msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?" - -#: mod/settings.php:1203 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?" - -#: mod/settings.php:1208 -msgid "Permit unknown people to send you private mail?" -msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?" - -#: mod/settings.php:1216 -msgid "Profile is not published." -msgstr "Profil ist nicht veröffentlicht." - -#: mod/settings.php:1224 -#, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "Die Adresse deines Profils lautet '%s' oder '%s'." - -#: mod/settings.php:1231 -msgid "Automatically expire posts after this many days:" -msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:" - -#: mod/settings.php:1231 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht." - -#: mod/settings.php:1232 -msgid "Advanced expiration settings" -msgstr "Erweiterte Verfallseinstellungen" - -#: mod/settings.php:1233 -msgid "Advanced Expiration" -msgstr "Erweitertes Verfallen" - -#: mod/settings.php:1234 -msgid "Expire posts:" -msgstr "Beiträge verfallen lassen:" - -#: mod/settings.php:1235 -msgid "Expire personal notes:" -msgstr "Persönliche Notizen verfallen lassen:" - -#: mod/settings.php:1236 -msgid "Expire starred posts:" -msgstr "Markierte Beiträge verfallen lassen:" - -#: mod/settings.php:1237 -msgid "Expire photos:" -msgstr "Fotos verfallen lassen:" - -#: mod/settings.php:1238 -msgid "Only expire posts by others:" -msgstr "Nur Beiträge anderer verfallen:" - -#: mod/settings.php:1269 -msgid "Account Settings" -msgstr "Kontoeinstellungen" - -#: mod/settings.php:1277 -msgid "Password Settings" -msgstr "Passwort-Einstellungen" - -#: mod/settings.php:1279 -msgid "Leave password fields blank unless changing" -msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern" - -#: mod/settings.php:1280 -msgid "Current Password:" -msgstr "Aktuelles Passwort:" - -#: mod/settings.php:1280 mod/settings.php:1281 -msgid "Your current password to confirm the changes" -msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen" - -#: mod/settings.php:1281 -msgid "Password:" -msgstr "Passwort:" - -#: mod/settings.php:1285 -msgid "Basic Settings" -msgstr "Grundeinstellungen" - -#: mod/settings.php:1287 -msgid "Email Address:" -msgstr "E-Mail-Adresse:" - -#: mod/settings.php:1288 -msgid "Your Timezone:" -msgstr "Deine Zeitzone:" - -#: mod/settings.php:1289 -msgid "Your Language:" -msgstr "Deine Sprache:" - -#: mod/settings.php:1289 -msgid "" -"Set the language we use to show you friendica interface and to send you " -"emails" -msgstr "Wähle die Sprache, in der wir Dir die Friendica-Oberfläche präsentieren sollen und Dir E-Mail schicken" - -#: mod/settings.php:1290 -msgid "Default Post Location:" -msgstr "Standardstandort:" - -#: mod/settings.php:1291 -msgid "Use Browser Location:" -msgstr "Standort des Browsers verwenden:" - -#: mod/settings.php:1294 -msgid "Security and Privacy Settings" -msgstr "Sicherheits- und Privatsphäre-Einstellungen" - -#: mod/settings.php:1296 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximale Anzahl vonKontaktanfragen/Tag:" - -#: mod/settings.php:1296 mod/settings.php:1326 -msgid "(to prevent spam abuse)" -msgstr "(um SPAM zu vermeiden)" - -#: mod/settings.php:1297 -msgid "Default Post Permissions" -msgstr "Standard-Zugriffsrechte für Beiträge" - -#: mod/settings.php:1298 -msgid "(click to open/close)" -msgstr "(klicke zum öffnen/schließen)" - -#: mod/settings.php:1309 -msgid "Default Private Post" -msgstr "Privater Standardbeitrag" - -#: mod/settings.php:1310 -msgid "Default Public Post" -msgstr "Öffentlicher Standardbeitrag" - -#: mod/settings.php:1314 -msgid "Default Permissions for New Posts" -msgstr "Standardberechtigungen für neue Beiträge" - -#: mod/settings.php:1326 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:" - -#: mod/settings.php:1329 -msgid "Notification Settings" -msgstr "Benachrichtigungseinstellungen" - -#: mod/settings.php:1330 -msgid "By default post a status message when:" -msgstr "Standardmäßig eine Statusnachricht posten, wenn:" - -#: mod/settings.php:1331 -msgid "accepting a friend request" -msgstr "– Du eine Kontaktanfrage akzeptierst" - -#: mod/settings.php:1332 -msgid "joining a forum/community" -msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst" - -#: mod/settings.php:1333 -msgid "making an interesting profile change" -msgstr "– Du eine interessante Änderung an Deinem Profil durchführst" - -#: mod/settings.php:1334 -msgid "Send a notification email when:" -msgstr "Benachrichtigungs-E-Mail senden wenn:" - -#: mod/settings.php:1335 -msgid "You receive an introduction" -msgstr "– Du eine Kontaktanfrage erhältst" - -#: mod/settings.php:1336 -msgid "Your introductions are confirmed" -msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde" - -#: mod/settings.php:1337 -msgid "Someone writes on your profile wall" -msgstr "– jemand etwas auf Deine Pinnwand schreibt" - -#: mod/settings.php:1338 -msgid "Someone writes a followup comment" -msgstr "– jemand auch einen Kommentar verfasst" - -#: mod/settings.php:1339 -msgid "You receive a private message" -msgstr "– Du eine private Nachricht erhältst" - -#: mod/settings.php:1340 -msgid "You receive a friend suggestion" -msgstr "– Du eine Empfehlung erhältst" - -#: mod/settings.php:1341 -msgid "You are tagged in a post" -msgstr "– Du in einem Beitrag erwähnt wirst" - -#: mod/settings.php:1342 -msgid "You are poked/prodded/etc. in a post" -msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst" - -#: mod/settings.php:1344 -msgid "Activate desktop notifications" -msgstr "Desktop Benachrichtigungen einschalten" - -#: mod/settings.php:1344 -msgid "Show desktop popup on new notifications" -msgstr "Desktop Benachrichtigungen einschalten" - -#: mod/settings.php:1346 -msgid "Text-only notification emails" -msgstr "Benachrichtigungs E-Mail als Rein-Text." - -#: mod/settings.php:1348 -msgid "Send text only notification emails, without the html part" -msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil" - -#: mod/settings.php:1350 -msgid "Advanced Account/Page Type Settings" -msgstr "Erweiterte Konto-/Seitentyp-Einstellungen" - -#: mod/settings.php:1351 -msgid "Change the behaviour of this account for special situations" -msgstr "Verhalten dieses Kontos in bestimmten Situationen:" - -#: mod/settings.php:1354 -msgid "Relocate" -msgstr "Umziehen" - -#: mod/settings.php:1355 -msgid "" -"If you have moved this profile from another server, and some of your " -"contacts don't receive your updates, try pushing this button." -msgstr "Wenn Du Dein Profil von einem anderen Server umgezogen hast und einige Deiner Kontakte Deine Beiträge nicht erhalten, verwende diesen Button." - -#: mod/settings.php:1356 -msgid "Resend relocate message to contacts" -msgstr "Umzugsbenachrichtigung erneut an Kontakte senden" - -#: mod/uexport.php:37 -msgid "Export account" -msgstr "Account exportieren" - -#: mod/uexport.php:37 -msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen." - -#: mod/uexport.php:38 -msgid "Export all" -msgstr "Alles exportieren" - -#: mod/uexport.php:38 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" -msgstr "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert)." - -#: mod/videos.php:124 -msgid "Do you really want to delete this video?" -msgstr "Möchtest Du dieses Video wirklich löschen?" - -#: mod/videos.php:129 -msgid "Delete Video" -msgstr "Video Löschen" - -#: mod/videos.php:208 -msgid "No videos selected" -msgstr "Keine Videos ausgewählt" - -#: mod/videos.php:402 -msgid "Recent Videos" -msgstr "Neueste Videos" - -#: mod/videos.php:404 -msgid "Upload New Videos" -msgstr "Neues Video hochladen" - -#: mod/install.php:106 -msgid "Friendica Communications Server - Setup" -msgstr "Friendica-Server für soziale Netzwerke – Setup" - -#: mod/install.php:112 -msgid "Could not connect to database." -msgstr "Verbindung zur Datenbank gescheitert." - -#: mod/install.php:116 -msgid "Could not create table." -msgstr "Tabelle konnte nicht angelegt werden." - -#: mod/install.php:122 -msgid "Your Friendica site database has been installed." -msgstr "Die Datenbank Deiner Friendicaseite wurde installiert." - -#: mod/install.php:127 -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:128 mod/install.php:200 mod/install.php:547 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Lies bitte die \"INSTALL.txt\"." - -#: mod/install.php:140 -msgid "Database already in use." -msgstr "Die Datenbank wird bereits verwendet." - -#: mod/install.php:197 -msgid "System check" -msgstr "Systemtest" - -#: mod/install.php:202 -msgid "Check again" -msgstr "Noch einmal testen" - -#: mod/install.php:221 -msgid "Database connection" -msgstr "Datenbankverbindung" - -#: mod/install.php:222 -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:223 -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:224 -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:228 -msgid "Database Server Name" -msgstr "Datenbank-Server" - -#: mod/install.php:229 -msgid "Database Login Name" -msgstr "Datenbank-Nutzer" - -#: mod/install.php:230 -msgid "Database Login Password" -msgstr "Datenbank-Passwort" - -#: mod/install.php:230 -msgid "For security reasons the password must not be empty" -msgstr "Aus Sicherheitsgründen darf das Passwort nicht leer sein." - -#: mod/install.php:231 -msgid "Database Name" -msgstr "Datenbank-Name" - -#: mod/install.php:232 mod/install.php:273 -msgid "Site administrator email address" -msgstr "E-Mail-Adresse des Administrators" - -#: mod/install.php:232 mod/install.php:273 -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:236 mod/install.php:276 -msgid "Please select a default timezone for your website" -msgstr "Bitte wähle die Standardzeitzone Deiner Webseite" - -#: mod/install.php:263 -msgid "Site settings" -msgstr "Server-Einstellungen" - -#: mod/install.php:277 -msgid "System Language:" -msgstr "Systemsprache:" - -#: mod/install.php:277 -msgid "" -"Set the default language for your Friendica installation interface and to " -"send emails." -msgstr "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand" - -#: mod/install.php:317 -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:318 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run the background processing. See 'Setup the poller'" -msgstr "Wenn auf deinem Server keine Kommandozeilenversion von PHP installiert ist, kannst du den Hintergrundprozess nicht einrichten. Hier findest du alternative Möglichkeiten'für das Poller Setup'" - -#: mod/install.php:322 -msgid "PHP executable path" -msgstr "Pfad zu PHP" - -#: mod/install.php:322 -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:327 -msgid "Command line PHP" -msgstr "Kommandozeilen-PHP" - -#: mod/install.php:336 -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:337 -msgid "Found PHP version: " -msgstr "Gefundene PHP Version:" - -#: mod/install.php:339 -msgid "PHP cli binary" -msgstr "PHP CLI Binary" - -#: mod/install.php:350 -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:351 -msgid "This is required for message delivery to work." -msgstr "Dies wird für die Auslieferung von Nachrichten benötigt." - -#: mod/install.php:353 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: mod/install.php:376 -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:377 -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:379 -msgid "Generate encryption keys" -msgstr "Schlüssel erzeugen" - -#: mod/install.php:386 -msgid "libCurl PHP module" -msgstr "PHP: libCurl-Modul" - -#: mod/install.php:387 -msgid "GD graphics PHP module" -msgstr "PHP: GD-Grafikmodul" - -#: mod/install.php:388 -msgid "OpenSSL PHP module" -msgstr "PHP: OpenSSL-Modul" - -#: mod/install.php:389 -msgid "PDO or MySQLi PHP module" -msgstr "PDO oder MySQLi PHP Modul" - -#: mod/install.php:390 -msgid "mb_string PHP module" -msgstr "PHP: mb_string-Modul" - -#: mod/install.php:391 -msgid "XML PHP module" -msgstr "XML PHP Modul" - -#: mod/install.php:392 -msgid "iconv module" -msgstr "iconv module" - -#: mod/install.php:396 mod/install.php:398 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite module" - -#: mod/install.php:396 -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:404 -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:408 -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:412 -msgid "Error: openssl PHP module required but not installed." -msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert." - -#: mod/install.php:416 -msgid "Error: PDO or MySQLi PHP module required but not installed." -msgstr "Fehler: PDO oder MySQLi PHP Modul erforderlich, aber nicht installiert." - -#: mod/install.php:420 -msgid "Error: The MySQL driver for PDO is not installed." -msgstr "Fehler: der MySQL Treiber für PDO 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: iconv PHP module required but not installed." -msgstr "Fehler: Das iconv-Modul von PHP ist nicht installiert." - -#: mod/install.php:438 -msgid "Error, XML PHP module required but not installed." -msgstr "Fehler: XML PHP Modul erforderlich aber nicht installiert." - -#: mod/install.php:450 -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:451 -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:452 -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:453 -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:456 -msgid ".htconfig.php is writable" -msgstr "Schreibrechte auf .htconfig.php" - -#: mod/install.php:466 -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:467 -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:468 -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:469 -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:472 -msgid "view/smarty3 is writable" -msgstr "view/smarty3 ist schreibbar" - -#: mod/install.php:488 -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:490 -msgid "Url rewrite is working" -msgstr "URL rewrite funktioniert" - -#: mod/install.php:509 -msgid "ImageMagick PHP extension is not installed" -msgstr "ImageMagicx PHP Erweiterung ist nicht installiert." - -#: mod/install.php:511 -msgid "ImageMagick PHP extension is installed" -msgstr "ImageMagick PHP Erweiterung ist installiert" - -#: mod/install.php:513 -msgid "ImageMagick supports GIF" -msgstr "ImageMagick unterstützt GIF" - -#: mod/install.php:520 -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:545 -msgid "

What next

" -msgstr "

Wie geht es weiter?

" - -#: mod/install.php:546 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten." - -#: mod/item.php:116 +#: mod/item.php:118 msgid "Unable to locate original post." msgstr "Konnte den Originalbeitrag nicht finden." -#: mod/item.php:344 +#: mod/item.php:345 msgid "Empty post discarded." msgstr "Leerer Beitrag wurde verworfen." @@ -7254,217 +5901,141 @@ msgstr "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den msgid "%s posted an update." msgstr "%s hat ein Update veröffentlicht." -#: mod/notifications.php:35 -msgid "Invalid request identifier." -msgstr "Invalid request identifier." +#: mod/regmod.php:60 +msgid "Account approved." +msgstr "Konto freigegeben." -#: mod/notifications.php:44 mod/notifications.php:180 -#: mod/notifications.php:227 -msgid "Discard" -msgstr "Verwerfen" - -#: mod/notifications.php:105 -msgid "Network Notifications" -msgstr "Netzwerk Benachrichtigungen" - -#: mod/notifications.php:117 -msgid "Personal Notifications" -msgstr "Persönliche Benachrichtigungen" - -#: mod/notifications.php:123 -msgid "Home Notifications" -msgstr "Pinnwand Benachrichtigungen" - -#: mod/notifications.php:152 -msgid "Show Ignored Requests" -msgstr "Zeige ignorierte Anfragen" - -#: mod/notifications.php:152 -msgid "Hide Ignored Requests" -msgstr "Verberge ignorierte Anfragen" - -#: mod/notifications.php:164 mod/notifications.php:234 -msgid "Notification type: " -msgstr "Benachrichtigungstyp: " - -#: mod/notifications.php:167 +#: mod/regmod.php:88 #, php-format -msgid "suggested by %s" -msgstr "vorgeschlagen von %s" +msgid "Registration revoked for %s" +msgstr "Registrierung für %s wurde zurückgezogen" -#: mod/notifications.php:173 mod/notifications.php:252 -msgid "Post a new friend activity" -msgstr "Neue-Kontakt Nachricht senden" +#: mod/regmod.php:100 +msgid "Please login." +msgstr "Bitte melde Dich an." -#: mod/notifications.php:173 mod/notifications.php:252 -msgid "if applicable" -msgstr "falls anwendbar" +#: mod/uimport.php:70 +msgid "Move account" +msgstr "Account umziehen" -#: mod/notifications.php:176 mod/notifications.php:261 mod/admin.php:1506 -msgid "Approve" -msgstr "Genehmigen" +#: mod/uimport.php:71 +msgid "You can import an account from another Friendica server." +msgstr "Du kannst einen Account von einem anderen Friendica Server importieren." -#: mod/notifications.php:195 -msgid "Claims to be known to you: " -msgstr "Behauptet Dich zu kennen: " - -#: mod/notifications.php:196 -msgid "yes" -msgstr "ja" - -#: mod/notifications.php:196 -msgid "no" -msgstr "nein" - -#: mod/notifications.php:197 mod/notifications.php:202 -msgid "Shall your connection be bidirectional or not?" -msgstr "Soll die Verbindung beidseitig sein oder nicht?" - -#: mod/notifications.php:198 mod/notifications.php:203 -#, php-format +#: mod/uimport.php:72 msgid "" -"Accepting %s as a friend allows %s to subscribe to your posts, and you will " -"also receive updates from them in your news feed." -msgstr "Akzeptierst du %s als Kontakt, erlaubst du damit das Lesen deiner Beiträge und abonnierst selbst auch die Beiträge von %s." +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also" +" to inform your friends that you moved here." +msgstr "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Kontakte darüber zu informieren, dass Du hierher umgezogen bist." -#: mod/notifications.php:199 -#, php-format +#: mod/uimport.php:73 msgid "" -"Accepting %s as a subscriber allows them to subscribe to your posts, but you" -" will not receive updates from them in your news feed." -msgstr "Wenn du %s als Abonnent akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten." +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (GNU Social/Statusnet) oder von Diaspora importieren" -#: mod/notifications.php:204 -#, php-format +#: mod/uimport.php:74 +msgid "Account file" +msgstr "Account Datei" + +#: mod/uimport.php:74 msgid "" -"Accepting %s as a sharer allows them to subscribe to your posts, but you " -"will not receive updates from them in your news feed." -msgstr "Wenn du %s als Teilenden akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten." +"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/notifications.php:215 -msgid "Friend" -msgstr "Kontakt" - -#: mod/notifications.php:216 -msgid "Sharer" -msgstr "Teilenden" - -#: mod/notifications.php:216 -msgid "Subscriber" -msgstr "Abonnent" - -#: mod/notifications.php:272 -msgid "No introductions." -msgstr "Keine Kontaktanfragen." - -#: mod/notifications.php:313 -msgid "Show unread" -msgstr "Ungelesene anzeigen" - -#: mod/notifications.php:313 -msgid "Show all" -msgstr "Alle anzeigen" - -#: mod/notifications.php:319 -#, php-format -msgid "No more %s notifications." -msgstr "Keine weiteren %s Benachrichtigungen" - -#: mod/ping.php:270 -msgid "{0} wants to be your friend" -msgstr "{0} möchte mit Dir in Kontakt treten" - -#: mod/ping.php:285 -msgid "{0} sent you a message" -msgstr "{0} schickte Dir eine Nachricht" - -#: mod/ping.php:300 -msgid "{0} requested registration" -msgstr "{0} möchte sich registrieren" - -#: mod/admin.php:96 +#: mod/admin.php:97 msgid "Theme settings updated." msgstr "Themeneinstellungen aktualisiert." -#: mod/admin.php:165 mod/admin.php:1054 +#: mod/admin.php:166 mod/admin.php:1060 msgid "Site" msgstr "Seite" -#: mod/admin.php:166 mod/admin.php:988 mod/admin.php:1498 mod/admin.php:1514 +#: mod/admin.php:167 mod/admin.php:994 mod/admin.php:1504 mod/admin.php:1520 msgid "Users" msgstr "Nutzer" -#: mod/admin.php:168 mod/admin.php:1892 mod/admin.php:1942 +#: mod/admin.php:168 mod/admin.php:1622 mod/admin.php:1685 mod/settings.php:76 +msgid "Plugins" +msgstr "Plugins" + +#: mod/admin.php:169 mod/admin.php:1898 mod/admin.php:1948 msgid "Themes" msgstr "Themen" -#: mod/admin.php:170 +#: mod/admin.php:170 mod/settings.php:54 +msgid "Additional features" +msgstr "Zusätzliche Features" + +#: mod/admin.php:171 msgid "DB updates" msgstr "DB Updates" -#: mod/admin.php:171 mod/admin.php:512 +#: mod/admin.php:172 mod/admin.php:513 msgid "Inspect Queue" msgstr "Warteschlange Inspizieren" -#: mod/admin.php:172 mod/admin.php:288 +#: mod/admin.php:173 mod/admin.php:289 msgid "Server Blocklist" msgstr "Server Blockliste" -#: mod/admin.php:173 mod/admin.php:478 +#: mod/admin.php:174 mod/admin.php:479 msgid "Federation Statistics" msgstr "Federation Statistik" -#: mod/admin.php:187 mod/admin.php:198 mod/admin.php:2016 +#: mod/admin.php:188 mod/admin.php:199 mod/admin.php:2022 msgid "Logs" msgstr "Protokolle" -#: mod/admin.php:188 mod/admin.php:2084 +#: mod/admin.php:189 mod/admin.php:2090 msgid "View Logs" msgstr "Protokolle anzeigen" -#: mod/admin.php:189 +#: mod/admin.php:190 msgid "probe address" msgstr "Adresse untersuchen" -#: mod/admin.php:190 +#: mod/admin.php:191 msgid "check webfinger" msgstr "Webfinger überprüfen" -#: mod/admin.php:197 +#: mod/admin.php:198 msgid "Plugin Features" msgstr "Plugin Features" -#: mod/admin.php:199 +#: mod/admin.php:200 msgid "diagnostics" msgstr "Diagnose" -#: mod/admin.php:200 +#: mod/admin.php:201 msgid "User registrations waiting for confirmation" msgstr "Nutzeranmeldungen die auf Bestätigung warten" -#: mod/admin.php:279 +#: mod/admin.php:280 msgid "The blocked domain" msgstr "Die blockierte Domain" -#: mod/admin.php:280 mod/admin.php:293 +#: mod/admin.php:281 mod/admin.php:294 msgid "The reason why you blocked this domain." msgstr "Die Begründung warum du diese Domain blockiert hast." -#: mod/admin.php:281 +#: mod/admin.php:282 msgid "Delete domain" msgstr "Domain löschen" -#: mod/admin.php:281 +#: mod/admin.php:282 msgid "Check to delete this entry from the blocklist" msgstr "Markieren, um diesen Eintrag von der Blocklist zu entfernen" -#: mod/admin.php:287 mod/admin.php:477 mod/admin.php:511 mod/admin.php:586 -#: mod/admin.php:1053 mod/admin.php:1497 mod/admin.php:1615 mod/admin.php:1678 -#: mod/admin.php:1891 mod/admin.php:1941 mod/admin.php:2015 mod/admin.php:2083 +#: mod/admin.php:288 mod/admin.php:478 mod/admin.php:512 mod/admin.php:592 +#: mod/admin.php:1059 mod/admin.php:1503 mod/admin.php:1621 mod/admin.php:1684 +#: mod/admin.php:1897 mod/admin.php:1947 mod/admin.php:2021 mod/admin.php:2089 msgid "Administration" msgstr "Administration" -#: mod/admin.php:289 +#: mod/admin.php:290 msgid "" "This page can be used to define a black list of servers from the federated " "network that are not allowed to interact with your node. For all entered " @@ -7472,109 +6043,109 @@ msgid "" "server." msgstr "Auf dieser Seite kannst du die Liste der blockierten Domains aus dem föderalen Netzwerk verwalten, denen es untersagt ist mit deinem Knoten zu interagieren. Für jede der blockierten Domains musst du außerdem einen Grund für die Sperrung angeben." -#: mod/admin.php:290 +#: mod/admin.php:291 msgid "" "The list of blocked servers will be made publically available on the " "/friendica page so that your users and people investigating communication " "problems can find the reason easily." msgstr "Die Liste der blockierten Domains wird auf der /friendica Seite öffentlich einsehbar gemacht, damit deine Nutzer und Personen die Kommunikationsprobleme erkunden, die Ursachen einfach finden können." -#: mod/admin.php:291 +#: mod/admin.php:292 msgid "Add new entry to block list" msgstr "Neuen Eintrag in die Blockliste" -#: mod/admin.php:292 +#: mod/admin.php:293 msgid "Server Domain" msgstr "Domain des Servers" -#: mod/admin.php:292 +#: mod/admin.php:293 msgid "" "The domain of the new server to add to the block list. Do not include the " "protocol." msgstr "Der Domain-Name des Servers der geblockt werden soll. Gib das Protokoll nicht mit an!" -#: mod/admin.php:293 +#: mod/admin.php:294 msgid "Block reason" msgstr "Begründung der Blockierung" -#: mod/admin.php:294 +#: mod/admin.php:295 msgid "Add Entry" msgstr "Eintrag hinzufügen" -#: mod/admin.php:295 +#: mod/admin.php:296 msgid "Save changes to the blocklist" msgstr "Änderungen der Blockliste speichern" -#: mod/admin.php:296 +#: mod/admin.php:297 msgid "Current Entries in the Blocklist" msgstr "Aktuelle Einträge der Blockliste" -#: mod/admin.php:299 +#: mod/admin.php:300 msgid "Delete entry from blocklist" msgstr "Eintrag von der Blockliste entfernen" -#: mod/admin.php:302 +#: mod/admin.php:303 msgid "Delete entry from blocklist?" msgstr "Eintrag von der Blockliste entfernen?" -#: mod/admin.php:327 +#: mod/admin.php:328 msgid "Server added to blocklist." msgstr "Server zur Blockliste hinzugefügt." -#: mod/admin.php:343 +#: mod/admin.php:344 msgid "Site blocklist updated." msgstr "Blockliste aktualisiert." -#: mod/admin.php:408 +#: mod/admin.php:409 msgid "unknown" msgstr "Unbekannt" -#: mod/admin.php:471 +#: mod/admin.php:472 msgid "" "This page offers you some numbers to the known part of the federated social " "network your Friendica node is part of. These numbers are not complete but " "only reflect the part of the network your node is aware of." msgstr "Diese Seite präsentiert einige Zahlen zu dem bekannten Teil des föderalen sozialen Netzwerks, von dem deine Friendica Installation ein Teil ist. Diese Zahlen sind nicht absolut und reflektieren nur den Teil des Netzwerks, den dein Knoten kennt." -#: mod/admin.php:472 +#: mod/admin.php:473 msgid "" "The Auto Discovered Contact Directory feature is not enabled, it " "will improve the data displayed here." msgstr "Die Funktion um Automatisch ein Kontaktverzeichnis erstellen ist nicht aktiv. Es wird die hier angezeigten Daten verbessern." -#: mod/admin.php:484 +#: mod/admin.php:485 #, php-format msgid "Currently this node is aware of %d nodes from the following platforms:" msgstr "Momentan kennt dieser Knoten %d andere Knoten der folgenden Plattformen:" -#: mod/admin.php:514 +#: mod/admin.php:515 msgid "ID" msgstr "ID" -#: mod/admin.php:515 +#: mod/admin.php:516 msgid "Recipient Name" msgstr "Empfänger Name" -#: mod/admin.php:516 +#: mod/admin.php:517 msgid "Recipient Profile" msgstr "Empfänger Profil" -#: mod/admin.php:518 +#: mod/admin.php:519 msgid "Created" msgstr "Erstellt" -#: mod/admin.php:519 +#: mod/admin.php:520 msgid "Last Tried" msgstr "Zuletzt versucht" -#: mod/admin.php:520 +#: mod/admin.php:521 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:545 +#: mod/admin.php:546 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -7585,423 +6156,443 @@ msgid "" "automatic conversion.
" msgstr "Deine DB verwendet derzeit noch MyISAM Tabellen. Du solltest die Datenbank Engine auf InnoDB umstellen, da Friendica in Zukunft InnoDB Features verwenden wird. Eine Anleitung zur Umstellung der Datenbank kannst du hier finden. Du kannst außerdem mit dem Befehl php include/dbstructure.php toinnodb auf der Kommandozeile die Umstellung automatisch vornehmen lassen." -#: mod/admin.php:550 +#: mod/admin.php:555 msgid "" -"You are using a MySQL version which does not support all features that " -"Friendica uses. You should consider switching to MariaDB." -msgstr "Du verwendets eine MySQL Version die nicht alle Features unterstützt die Friendica verwendet. Wir empfehlen dir einen Wechsel auf MariaDB, falls dies möglich ist." +"The database update failed. Please run \"php include/dbstructure.php " +"update\" from the command line and have a look at the errors that might " +"appear." +msgstr "Das Update der Datenbank ist fehlgeschlagen. Bitte führe 'php include/dbstructure.php update' in der Kommandozeile aus und achte auf eventuell auftretende Fehlermeldungen." -#: mod/admin.php:554 mod/admin.php:1447 +#: mod/admin.php:560 mod/admin.php:1453 msgid "Normal Account" msgstr "Normales Konto" -#: mod/admin.php:555 mod/admin.php:1448 +#: mod/admin.php:561 mod/admin.php:1454 msgid "Soapbox Account" msgstr "Marktschreier-Konto" -#: mod/admin.php:556 mod/admin.php:1449 +#: mod/admin.php:562 mod/admin.php:1455 msgid "Community/Celebrity Account" msgstr "Forum/Promi-Konto" -#: mod/admin.php:557 mod/admin.php:1450 +#: mod/admin.php:563 mod/admin.php:1456 msgid "Automatic Friend Account" msgstr "Automatisches Freundekonto" -#: mod/admin.php:558 +#: mod/admin.php:564 msgid "Blog Account" msgstr "Blog-Konto" -#: mod/admin.php:559 +#: mod/admin.php:565 msgid "Private Forum" msgstr "Privates Forum" -#: mod/admin.php:581 +#: mod/admin.php:587 msgid "Message queues" msgstr "Nachrichten-Warteschlangen" -#: mod/admin.php:587 +#: mod/admin.php:593 msgid "Summary" msgstr "Zusammenfassung" -#: mod/admin.php:589 +#: mod/admin.php:595 msgid "Registered users" msgstr "Registrierte Nutzer" -#: mod/admin.php:591 +#: mod/admin.php:597 msgid "Pending registrations" msgstr "Anstehende Anmeldungen" -#: mod/admin.php:592 +#: mod/admin.php:598 msgid "Version" msgstr "Version" -#: mod/admin.php:597 +#: mod/admin.php:603 msgid "Active plugins" msgstr "Aktive Plugins" -#: mod/admin.php:622 +#: mod/admin.php:628 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:914 +#: mod/admin.php:920 msgid "Site settings updated." msgstr "Seiteneinstellungen aktualisiert." -#: mod/admin.php:971 +#: mod/admin.php:948 mod/settings.php:944 +msgid "No special theme for mobile devices" +msgstr "Kein spezielles Theme für mobile Geräte verwenden." + +#: mod/admin.php:977 msgid "No community page" msgstr "Keine Gemeinschaftsseite" -#: mod/admin.php:972 +#: mod/admin.php:978 msgid "Public postings from users of this site" msgstr "Öffentliche Beiträge von Nutzer_innen dieser Seite" -#: mod/admin.php:973 +#: mod/admin.php:979 msgid "Global community page" msgstr "Globale Gemeinschaftsseite" -#: mod/admin.php:979 +#: mod/admin.php:984 mod/contacts.php:541 +msgid "Never" +msgstr "Niemals" + +#: mod/admin.php:985 msgid "At post arrival" msgstr "Beim Empfang von Nachrichten" -#: mod/admin.php:989 +#: mod/admin.php:993 mod/contacts.php:568 +msgid "Disabled" +msgstr "Deaktiviert" + +#: mod/admin.php:995 msgid "Users, Global Contacts" msgstr "Nutzer, globale Kontakte" -#: mod/admin.php:990 +#: mod/admin.php:996 msgid "Users, Global Contacts/fallback" msgstr "Nutzer, globale Kontakte / Fallback" -#: mod/admin.php:994 +#: mod/admin.php:1000 msgid "One month" msgstr "ein Monat" -#: mod/admin.php:995 +#: mod/admin.php:1001 msgid "Three months" msgstr "drei Monate" -#: mod/admin.php:996 +#: mod/admin.php:1002 msgid "Half a year" msgstr "ein halbes Jahr" -#: mod/admin.php:997 +#: mod/admin.php:1003 msgid "One year" msgstr "ein Jahr" -#: mod/admin.php:1002 +#: mod/admin.php:1008 msgid "Multi user instance" msgstr "Mehrbenutzer Instanz" -#: mod/admin.php:1025 +#: mod/admin.php:1031 msgid "Closed" msgstr "Geschlossen" -#: mod/admin.php:1026 +#: mod/admin.php:1032 msgid "Requires approval" msgstr "Bedarf der Zustimmung" -#: mod/admin.php:1027 +#: mod/admin.php:1033 msgid "Open" msgstr "Offen" -#: mod/admin.php:1031 +#: mod/admin.php:1037 msgid "No SSL policy, links will track page SSL state" msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten" -#: mod/admin.php:1032 +#: mod/admin.php:1038 msgid "Force all links to use SSL" msgstr "SSL für alle Links erzwingen" -#: mod/admin.php:1033 +#: mod/admin.php:1039 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:1057 +#: mod/admin.php:1061 mod/admin.php:1686 mod/admin.php:1949 mod/admin.php:2023 +#: mod/admin.php:2176 mod/settings.php:682 mod/settings.php:793 +#: mod/settings.php:842 mod/settings.php:909 mod/settings.php:1006 +#: mod/settings.php:1272 +msgid "Save Settings" +msgstr "Einstellungen speichern" + +#: mod/admin.php:1063 msgid "File upload" msgstr "Datei hochladen" -#: mod/admin.php:1058 +#: mod/admin.php:1064 msgid "Policies" msgstr "Regeln" -#: mod/admin.php:1060 +#: mod/admin.php:1066 msgid "Auto Discovered Contact Directory" msgstr "Automatisch ein Kontaktverzeichnis erstellen" -#: mod/admin.php:1061 +#: mod/admin.php:1067 msgid "Performance" msgstr "Performance" -#: mod/admin.php:1062 +#: mod/admin.php:1068 msgid "Worker" msgstr "Worker" -#: mod/admin.php:1063 +#: mod/admin.php:1069 msgid "" "Relocate - WARNING: advanced function. Could make this server unreachable." msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen." -#: mod/admin.php:1066 +#: mod/admin.php:1072 msgid "Site name" msgstr "Seitenname" -#: mod/admin.php:1067 +#: mod/admin.php:1073 msgid "Host name" msgstr "Host Name" -#: mod/admin.php:1068 +#: mod/admin.php:1074 msgid "Sender Email" msgstr "Absender für Emails" -#: mod/admin.php:1068 +#: mod/admin.php:1074 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:1069 +#: mod/admin.php:1075 msgid "Banner/Logo" msgstr "Banner/Logo" -#: mod/admin.php:1070 +#: mod/admin.php:1076 msgid "Shortcut icon" msgstr "Shortcut Icon" -#: mod/admin.php:1070 +#: mod/admin.php:1076 msgid "Link to an icon that will be used for browsers." msgstr "Link zu einem Icon, das Browser verwenden werden." -#: mod/admin.php:1071 +#: mod/admin.php:1077 msgid "Touch icon" msgstr "Touch Icon" -#: mod/admin.php:1071 +#: mod/admin.php:1077 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:1072 +#: mod/admin.php:1078 msgid "Additional Info" msgstr "Zusätzliche Informationen" -#: mod/admin.php:1072 +#: mod/admin.php:1078 #, 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:1073 +#: mod/admin.php:1079 msgid "System language" msgstr "Systemsprache" -#: mod/admin.php:1074 +#: mod/admin.php:1080 msgid "System theme" msgstr "Systemweites Theme" -#: mod/admin.php:1074 +#: mod/admin.php:1080 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:1075 +#: mod/admin.php:1081 msgid "Mobile system theme" msgstr "Systemweites mobiles Theme" -#: mod/admin.php:1075 +#: mod/admin.php:1081 msgid "Theme for mobile devices" msgstr "Thema für mobile Geräte" -#: mod/admin.php:1076 +#: mod/admin.php:1082 msgid "SSL link policy" msgstr "Regeln für SSL Links" -#: mod/admin.php:1076 +#: mod/admin.php:1082 msgid "Determines whether generated links should be forced to use SSL" msgstr "Bestimmt, ob generierte Links SSL verwenden müssen" -#: mod/admin.php:1077 +#: mod/admin.php:1083 msgid "Force SSL" msgstr "Erzwinge SSL" -#: mod/admin.php:1077 +#: mod/admin.php:1083 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:1078 +#: mod/admin.php:1084 msgid "Hide help entry from navigation menu" msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü" -#: mod/admin.php:1078 +#: mod/admin.php:1084 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:1079 +#: mod/admin.php:1085 msgid "Single user instance" msgstr "Ein-Nutzer Instanz" -#: mod/admin.php:1079 +#: mod/admin.php:1085 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:1080 +#: mod/admin.php:1086 msgid "Maximum image size" msgstr "Maximale Bildgröße" -#: mod/admin.php:1080 +#: mod/admin.php:1086 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:1081 +#: mod/admin.php:1087 msgid "Maximum image length" msgstr "Maximale Bildlänge" -#: mod/admin.php:1081 +#: mod/admin.php:1087 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:1082 +#: mod/admin.php:1088 msgid "JPEG image quality" msgstr "Qualität des JPEG Bildes" -#: mod/admin.php:1082 +#: mod/admin.php:1088 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:1084 +#: mod/admin.php:1090 msgid "Register policy" msgstr "Registrierungsmethode" -#: mod/admin.php:1085 +#: mod/admin.php:1091 msgid "Maximum Daily Registrations" msgstr "Maximum täglicher Registrierungen" -#: mod/admin.php:1085 +#: mod/admin.php:1091 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:1086 +#: mod/admin.php:1092 msgid "Register text" msgstr "Registrierungstext" -#: mod/admin.php:1086 +#: mod/admin.php:1092 msgid "Will be displayed prominently on the registration page." msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt." -#: mod/admin.php:1087 +#: mod/admin.php:1093 msgid "Accounts abandoned after x days" msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt" -#: mod/admin.php:1087 +#: mod/admin.php:1093 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:1088 +#: mod/admin.php:1094 msgid "Allowed friend domains" msgstr "Erlaubte Domains für Kontakte" -#: mod/admin.php:1088 +#: mod/admin.php:1094 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Liste der Domains, die für Kontakte erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." -#: mod/admin.php:1089 +#: mod/admin.php:1095 msgid "Allowed email domains" msgstr "Erlaubte Domains für E-Mails" -#: mod/admin.php:1089 +#: mod/admin.php:1095 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:1090 +#: mod/admin.php:1096 msgid "Block public" msgstr "Öffentlichen Zugriff blockieren" -#: mod/admin.php:1090 +#: mod/admin.php:1096 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:1091 +#: mod/admin.php:1097 msgid "Force publish" msgstr "Erzwinge Veröffentlichung" -#: mod/admin.php:1091 +#: mod/admin.php:1097 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:1092 +#: mod/admin.php:1098 msgid "Global directory URL" msgstr "URL des weltweiten Verzeichnisses" -#: mod/admin.php:1092 +#: mod/admin.php:1098 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:1093 +#: mod/admin.php:1099 msgid "Allow threaded items" msgstr "Erlaube Threads in Diskussionen" -#: mod/admin.php:1093 +#: mod/admin.php:1099 msgid "Allow infinite level threading for items on this site." msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite." -#: mod/admin.php:1094 +#: mod/admin.php:1100 msgid "Private posts by default for new users" msgstr "Private Beiträge als Standard für neue Nutzer" -#: mod/admin.php:1094 +#: mod/admin.php:1100 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:1095 +#: mod/admin.php:1101 msgid "Don't include post content in email notifications" msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden" -#: mod/admin.php:1095 +#: mod/admin.php:1101 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:1096 +#: mod/admin.php:1102 msgid "Disallow public access to addons listed in the apps menu." msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten." -#: mod/admin.php:1096 +#: mod/admin.php:1102 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:1097 +#: mod/admin.php:1103 msgid "Don't embed private images in posts" msgstr "Private Bilder nicht in Beiträgen einbetten." -#: mod/admin.php:1097 +#: mod/admin.php:1103 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 " @@ -8009,220 +6600,220 @@ msgid "" "while." msgstr "Ersetze lokal gehostete private Fotos in Beiträgen nicht mit einer eingebetteten Kopie des Bildes. Dies bedeutet, dass Kontakte, die Beiträge mit privaten Fotos erhalten sich zunächst auf den jeweiligen Servern authentifizieren müssen bevor die Bilder geladen und angezeigt werden, was eine gewisse Zeit dauert." -#: mod/admin.php:1098 +#: mod/admin.php:1104 msgid "Allow Users to set remote_self" msgstr "Nutzern erlauben das remote_self Flag zu setzen" -#: mod/admin.php:1098 +#: mod/admin.php:1104 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:1099 +#: mod/admin.php:1105 msgid "Block multiple registrations" msgstr "Unterbinde Mehrfachregistrierung" -#: mod/admin.php:1099 +#: mod/admin.php:1105 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:1100 +#: mod/admin.php:1106 msgid "OpenID support" msgstr "OpenID Unterstützung" -#: mod/admin.php:1100 +#: mod/admin.php:1106 msgid "OpenID support for registration and logins." msgstr "OpenID-Unterstützung für Registrierung und Login." -#: mod/admin.php:1101 +#: mod/admin.php:1107 msgid "Fullname check" msgstr "Namen auf Vollständigkeit überprüfen" -#: mod/admin.php:1101 +#: mod/admin.php:1107 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:1102 +#: mod/admin.php:1108 msgid "Community Page Style" msgstr "Art der Gemeinschaftsseite" -#: mod/admin.php:1102 +#: mod/admin.php:1108 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:1103 +#: mod/admin.php:1109 msgid "Posts per user on community page" msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite" -#: mod/admin.php:1103 +#: mod/admin.php:1109 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:1104 +#: mod/admin.php:1110 msgid "Enable OStatus support" msgstr "OStatus Unterstützung aktivieren" -#: mod/admin.php:1104 +#: mod/admin.php:1110 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:1105 +#: mod/admin.php:1111 msgid "OStatus conversation completion interval" msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen" -#: mod/admin.php:1105 +#: mod/admin.php:1111 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:1106 +#: mod/admin.php:1112 msgid "Only import OStatus threads from our contacts" msgstr "Nur OStatus Konversationen unserer Kontakte importieren" -#: mod/admin.php:1106 +#: mod/admin.php:1112 msgid "" "Normally we import every content from our OStatus contacts. With this option" " we only store threads that are started by a contact that is known on our " "system." msgstr "Normalerweise werden alle Inhalte von OStatus Kontakten importiert. Mit dieser Option werden nur solche Konversationen gespeichert, die von Kontakten der Nutzer dieses Knotens gestartet wurden." -#: mod/admin.php:1107 +#: mod/admin.php:1113 msgid "OStatus support can only be enabled if threading is enabled." msgstr "OStatus Unterstützung kann nur aktiviert werden wenn \"Threading\" aktiviert ist. " -#: mod/admin.php:1109 +#: mod/admin.php:1115 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "Diaspora Unterstützung kann nicht aktiviert werden da Friendica in ein Unterverzeichnis installiert ist." -#: mod/admin.php:1110 +#: mod/admin.php:1116 msgid "Enable Diaspora support" msgstr "Diaspora Unterstützung aktivieren" -#: mod/admin.php:1110 +#: mod/admin.php:1116 msgid "Provide built-in Diaspora network compatibility." msgstr "Verwende die eingebaute Diaspora-Verknüpfung." -#: mod/admin.php:1111 +#: mod/admin.php:1117 msgid "Only allow Friendica contacts" msgstr "Nur Friendica-Kontakte erlauben" -#: mod/admin.php:1111 +#: mod/admin.php:1117 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:1112 +#: mod/admin.php:1118 msgid "Verify SSL" msgstr "SSL Überprüfen" -#: mod/admin.php:1112 +#: mod/admin.php:1118 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:1113 +#: mod/admin.php:1119 msgid "Proxy user" msgstr "Proxy Nutzer" -#: mod/admin.php:1114 +#: mod/admin.php:1120 msgid "Proxy URL" msgstr "Proxy URL" -#: mod/admin.php:1115 +#: mod/admin.php:1121 msgid "Network timeout" msgstr "Netzwerk Wartezeit" -#: mod/admin.php:1115 +#: mod/admin.php:1121 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:1116 +#: mod/admin.php:1122 msgid "Maximum Load Average" msgstr "Maximum Load Average" -#: mod/admin.php:1116 +#: mod/admin.php:1122 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:1117 +#: mod/admin.php:1123 msgid "Maximum Load Average (Frontend)" msgstr "Maximum Load Average (Frontend)" -#: mod/admin.php:1117 +#: mod/admin.php:1123 msgid "Maximum system load before the frontend quits service - default 50." msgstr "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50." -#: mod/admin.php:1118 +#: mod/admin.php:1124 msgid "Minimal Memory" msgstr "Minimaler Speicher" -#: mod/admin.php:1118 +#: mod/admin.php:1124 msgid "" "Minimal free memory in MB for the poller. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "Minimal freier Speicher in MB für den Poller. Benötigt Zugriff auf /proc/meminfo - Standard 0 (Deaktiviert)." -#: mod/admin.php:1119 +#: mod/admin.php:1125 msgid "Maximum table size for optimization" msgstr "Maximale Tabellengröße zur Optimierung" -#: mod/admin.php:1119 +#: mod/admin.php:1125 msgid "" "Maximum table size (in MB) for the automatic optimization - default 100 MB. " "Enter -1 to disable it." msgstr "Maximale Tabellengröße (in MB) für die automatische Optimierung - Standard 100 MB. Gib -1 für Deaktivierung ein." -#: mod/admin.php:1120 +#: mod/admin.php:1126 msgid "Minimum level of fragmentation" msgstr "Minimaler Fragmentationsgrad" -#: mod/admin.php:1120 +#: mod/admin.php:1126 msgid "" "Minimum fragmenation level to start the automatic optimization - default " "value is 30%." msgstr "Minimales Fragmentationsgrad von Datenbanktabellen um die automatische Optimierung einzuleiten - Standardwert ist 30%" -#: mod/admin.php:1122 +#: mod/admin.php:1128 msgid "Periodical check of global contacts" msgstr "Regelmäßig globale Kontakte überprüfen" -#: mod/admin.php:1122 +#: mod/admin.php:1128 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:1123 +#: mod/admin.php:1129 msgid "Days between requery" msgstr "Tage zwischen erneuten Abfragen" -#: mod/admin.php:1123 +#: mod/admin.php:1129 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:1124 +#: mod/admin.php:1130 msgid "Discover contacts from other servers" msgstr "Neue Kontakte auf anderen Servern entdecken" -#: mod/admin.php:1124 +#: mod/admin.php:1130 msgid "" "Periodically query other servers for contacts. You can choose between " "'users': the users on the remote system, 'Global Contacts': active contacts " @@ -8232,32 +6823,32 @@ msgid "" "Global Contacts'." msgstr "Regelmäßig andere Server nach potentiellen Kontakten absuchen. Du kannst zwischen 'Nutzern', den tatsächlichen Nutzern des anderen Systems und 'globalen Kontakten', aktiven Kontakten die auf dem System bekannt sind, wählen. Der Fallback-Mechanismus ist für ältere Friendica und Redmatrix Server gedacht, bei denen globale Kontakte noch nicht verfügbar sind. Durch den Fallbackmodus entsteht auf deinem Server eine wesentlich höhere Last, empfohlen wird der Modus 'Nutzer, globale Kontakte'." -#: mod/admin.php:1125 +#: mod/admin.php:1131 msgid "Timeframe for fetching global contacts" msgstr "Zeitfenster für globale Kontakte" -#: mod/admin.php:1125 +#: mod/admin.php:1131 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:1126 +#: mod/admin.php:1132 msgid "Search the local directory" msgstr "Lokales Verzeichnis durchsuchen" -#: mod/admin.php:1126 +#: mod/admin.php:1132 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:1128 +#: mod/admin.php:1134 msgid "Publish server information" msgstr "Server Informationen veröffentlichen" -#: mod/admin.php:1128 +#: mod/admin.php:1134 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 " @@ -8265,133 +6856,133 @@ msgid "" " href='http://the-federation.info/'>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:1130 +#: mod/admin.php:1136 msgid "Suppress Tags" msgstr "Tags Unterdrücken" -#: mod/admin.php:1130 +#: mod/admin.php:1136 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:1131 +#: mod/admin.php:1137 msgid "Path to item cache" msgstr "Pfad zum Eintrag Cache" -#: mod/admin.php:1131 +#: mod/admin.php:1137 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:1132 +#: mod/admin.php:1138 msgid "Cache duration in seconds" msgstr "Cache-Dauer in Sekunden" -#: mod/admin.php:1132 +#: mod/admin.php:1138 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:1133 +#: mod/admin.php:1139 msgid "Maximum numbers of comments per post" msgstr "Maximale Anzahl von Kommentaren pro Beitrag" -#: mod/admin.php:1133 +#: mod/admin.php:1139 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:1134 +#: mod/admin.php:1140 msgid "Temp path" msgstr "Temp Pfad" -#: mod/admin.php:1134 +#: mod/admin.php:1140 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:1135 +#: mod/admin.php:1141 msgid "Base path to installation" msgstr "Basis-Pfad zur Installation" -#: mod/admin.php:1135 +#: mod/admin.php:1141 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:1136 +#: mod/admin.php:1142 msgid "Disable picture proxy" msgstr "Bilder Proxy deaktivieren" -#: mod/admin.php:1136 +#: mod/admin.php:1142 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:1137 +#: mod/admin.php:1143 msgid "Only search in tags" msgstr "Nur in Tags suchen" -#: mod/admin.php:1137 +#: mod/admin.php:1143 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:1139 +#: mod/admin.php:1145 msgid "New base url" msgstr "Neue Basis-URL" -#: mod/admin.php:1139 +#: mod/admin.php:1145 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:1141 +#: mod/admin.php:1147 msgid "RINO Encryption" msgstr "RINO Verschlüsselung" -#: mod/admin.php:1141 +#: mod/admin.php:1147 msgid "Encryption layer between nodes." msgstr "Verschlüsselung zwischen Friendica Instanzen" -#: mod/admin.php:1143 +#: mod/admin.php:1149 msgid "Maximum number of parallel workers" msgstr "Maximale Anzahl parallel laufender Worker" -#: mod/admin.php:1143 +#: mod/admin.php:1149 msgid "" "On shared hosters set this to 2. On larger systems, values of 10 are great. " "Default value is 4." msgstr "Wenn dein Knoten bei einem Shared Hoster ist, setzte diesen Wert auf 2. Auf größeren Systemen funktioniert ein Wert von 10 recht gut. Standardeinstellung sind 4." -#: mod/admin.php:1144 +#: mod/admin.php:1150 msgid "Don't use 'proc_open' with the worker" msgstr "'proc_open' nicht mit den Workern verwenden" -#: mod/admin.php:1144 +#: mod/admin.php:1150 msgid "" "Enable this if your system doesn't allow the use of 'proc_open'. This can " "happen on shared hosters. If this is enabled you should increase the " "frequency of poller calls in your crontab." msgstr "Aktiviere diese Option, wenn dein System die Verwendung von 'proc_open' verhindert. Dies könnte auf Shared Hostern der Fall sein. Wenn du diese Option aktivierst, solltest du die Frequenz der poller Aufrufe in deiner crontab erhöhen." -#: mod/admin.php:1145 +#: mod/admin.php:1151 msgid "Enable fastlane" msgstr "Aktiviere Fastlane" -#: mod/admin.php:1145 +#: mod/admin.php:1151 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes" " with higher priority are blocked by processes of lower priority." msgstr "Wenn aktiviert, wird der Fastlane-Mechanismus einen weiteren Worker-Prozeß starten wenn Prozesse mit höherer Priorität von Prozessen mit niedrigerer Priorität blockiert werden." -#: mod/admin.php:1146 +#: mod/admin.php:1152 msgid "Enable frontend worker" msgstr "Aktiviere den Frontend Worker" -#: mod/admin.php:1146 +#: mod/admin.php:1152 msgid "" "When enabled the Worker process is triggered when backend access is " "performed (e.g. messages being delivered). On smaller sites you might want " @@ -8401,66 +6992,66 @@ msgid "" "this." msgstr "Ist diese Option aktiv, wird der Worker Prozess durch Aktionen am Frontend gestartet (z.B. wenn Nachrichten zugestellt werden). Auf kleineren Seiten sollte yourdomain.tld/worker regelmäßig, beispielsweise durch einen externen Cron Anbieter, aufgerufen werden. Du solltest dies Option nur dann aktivieren, wenn du keinen Cron Job auf deinem eigenen Server starten kannst. Damit diese Option einen Effekt hat, muss der Worker Prozess aktiviert sein." -#: mod/admin.php:1176 +#: mod/admin.php:1182 msgid "Update has been marked successful" msgstr "Update wurde als erfolgreich markiert" -#: mod/admin.php:1184 +#: mod/admin.php:1190 #, php-format msgid "Database structure update %s was successfully applied." msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt." -#: mod/admin.php:1187 +#: mod/admin.php:1193 #, 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:1201 +#: mod/admin.php:1207 #, php-format msgid "Executing %s failed with error: %s" msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s" -#: mod/admin.php:1204 +#: mod/admin.php:1210 #, php-format msgid "Update %s was successfully applied." msgstr "Update %s war erfolgreich." -#: mod/admin.php:1207 +#: mod/admin.php:1213 #, 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:1210 +#: mod/admin.php:1216 #, 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:1230 +#: mod/admin.php:1236 msgid "No failed updates." msgstr "Keine fehlgeschlagenen Updates." -#: mod/admin.php:1231 +#: mod/admin.php:1237 msgid "Check database structure" msgstr "Datenbank Struktur überprüfen" -#: mod/admin.php:1236 +#: mod/admin.php:1242 msgid "Failed Updates" msgstr "Fehlgeschlagene Updates" -#: mod/admin.php:1237 +#: mod/admin.php:1243 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:1238 +#: mod/admin.php:1244 msgid "Mark success (if update was manually applied)" msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)" -#: mod/admin.php:1239 +#: mod/admin.php:1245 msgid "Attempt to execute this update step automatically" msgstr "Versuchen, diesen Schritt automatisch auszuführen" -#: mod/admin.php:1273 +#: mod/admin.php:1279 #, php-format msgid "" "\n" @@ -8468,7 +7059,7 @@ msgid "" "\t\t\t\tthe administrator of %2$s has set up an account for you." msgstr "\nHallo %1$s,\n\nauf %2$s wurde ein Account für Dich angelegt." -#: mod/admin.php:1276 +#: mod/admin.php:1282 #, php-format msgid "" "\n" @@ -8498,158 +7089,172 @@ msgid "" "\t\t\tThank you and welcome to %4$s." msgstr "\nNachfolgend die Anmelde-Details:\n\tAdresse der Seite:\t%1$s\n\tBenutzername:\t%2$s\n\tPasswort:\t%3$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nNun viel Spaß, gute Begegnungen und willkommen auf %4$s." -#: mod/admin.php:1320 +#: mod/admin.php:1326 #, 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:1327 +#: mod/admin.php:1333 #, 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:1374 +#: mod/admin.php:1380 #, php-format msgid "User '%s' deleted" msgstr "Nutzer '%s' gelöscht" -#: mod/admin.php:1382 +#: mod/admin.php:1388 #, php-format msgid "User '%s' unblocked" msgstr "Nutzer '%s' entsperrt" -#: mod/admin.php:1382 +#: mod/admin.php:1388 #, php-format msgid "User '%s' blocked" msgstr "Nutzer '%s' gesperrt" -#: mod/admin.php:1490 mod/admin.php:1516 +#: mod/admin.php:1496 mod/admin.php:1522 msgid "Register date" msgstr "Anmeldedatum" -#: mod/admin.php:1490 mod/admin.php:1516 +#: mod/admin.php:1496 mod/admin.php:1522 msgid "Last login" msgstr "Letzte Anmeldung" -#: mod/admin.php:1490 mod/admin.php:1516 +#: mod/admin.php:1496 mod/admin.php:1522 msgid "Last item" msgstr "Letzter Beitrag" -#: mod/admin.php:1499 +#: mod/admin.php:1496 mod/settings.php:45 +msgid "Account" +msgstr "Nutzerkonto" + +#: mod/admin.php:1505 msgid "Add User" msgstr "Nutzer hinzufügen" -#: mod/admin.php:1500 +#: mod/admin.php:1506 msgid "select all" msgstr "Alle auswählen" -#: mod/admin.php:1501 +#: mod/admin.php:1507 msgid "User registrations waiting for confirm" msgstr "Neuanmeldungen, die auf Deine Bestätigung warten" -#: mod/admin.php:1502 +#: mod/admin.php:1508 msgid "User waiting for permanent deletion" msgstr "Nutzer wartet auf permanente Löschung" -#: mod/admin.php:1503 +#: mod/admin.php:1509 msgid "Request date" msgstr "Anfragedatum" -#: mod/admin.php:1504 +#: mod/admin.php:1510 msgid "No registrations." msgstr "Keine Neuanmeldungen." -#: mod/admin.php:1505 +#: mod/admin.php:1511 msgid "Note from the user" msgstr "Hinweis vom Nutzer" -#: mod/admin.php:1507 +#: mod/admin.php:1513 msgid "Deny" msgstr "Verwehren" -#: mod/admin.php:1511 +#: mod/admin.php:1515 mod/contacts.php:616 mod/contacts.php:816 +#: mod/contacts.php:994 +msgid "Block" +msgstr "Sperren" + +#: mod/admin.php:1516 mod/contacts.php:616 mod/contacts.php:816 +#: mod/contacts.php:994 +msgid "Unblock" +msgstr "Entsperren" + +#: mod/admin.php:1517 msgid "Site admin" msgstr "Seitenadministrator" -#: mod/admin.php:1512 +#: mod/admin.php:1518 msgid "Account expired" msgstr "Account ist abgelaufen" -#: mod/admin.php:1515 +#: mod/admin.php:1521 msgid "New User" msgstr "Neuer Nutzer" -#: mod/admin.php:1516 +#: mod/admin.php:1522 msgid "Deleted since" msgstr "Gelöscht seit" -#: mod/admin.php:1521 +#: mod/admin.php:1527 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:1522 +#: mod/admin.php:1528 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:1532 +#: mod/admin.php:1538 msgid "Name of the new user." msgstr "Name des neuen Nutzers" -#: mod/admin.php:1533 +#: mod/admin.php:1539 msgid "Nickname" msgstr "Spitzname" -#: mod/admin.php:1533 +#: mod/admin.php:1539 msgid "Nickname of the new user." msgstr "Spitznamen für den neuen Nutzer" -#: mod/admin.php:1534 +#: mod/admin.php:1540 msgid "Email address of the new user." msgstr "Email Adresse des neuen Nutzers" -#: mod/admin.php:1577 +#: mod/admin.php:1583 #, php-format msgid "Plugin %s disabled." msgstr "Plugin %s deaktiviert." -#: mod/admin.php:1581 +#: mod/admin.php:1587 #, php-format msgid "Plugin %s enabled." msgstr "Plugin %s aktiviert." -#: mod/admin.php:1592 mod/admin.php:1844 +#: mod/admin.php:1598 mod/admin.php:1850 msgid "Disable" msgstr "Ausschalten" -#: mod/admin.php:1594 mod/admin.php:1846 +#: mod/admin.php:1600 mod/admin.php:1852 msgid "Enable" msgstr "Einschalten" -#: mod/admin.php:1617 mod/admin.php:1893 +#: mod/admin.php:1623 mod/admin.php:1899 msgid "Toggle" msgstr "Umschalten" -#: mod/admin.php:1625 mod/admin.php:1902 +#: mod/admin.php:1631 mod/admin.php:1908 msgid "Author: " msgstr "Autor:" -#: mod/admin.php:1626 mod/admin.php:1903 +#: mod/admin.php:1632 mod/admin.php:1909 msgid "Maintainer: " msgstr "Betreuer:" -#: mod/admin.php:1681 +#: mod/admin.php:1687 msgid "Reload active plugins" msgstr "Aktive Plugins neu laden" -#: mod/admin.php:1686 +#: mod/admin.php:1692 #, php-format msgid "" "There are currently no plugins available on your node. You can find the " @@ -8657,70 +7262,70 @@ msgid "" "in the open plugin registry at %2$s" msgstr "Es sind derzeit keine Plugins auf diesem Knoten verfügbar. Du findest das offizielle Plugin-Repository unter %1$s und weitere eventuell interessante Plugins im offenen Plugins-Verzeichnis auf %2$s." -#: mod/admin.php:1805 +#: mod/admin.php:1811 msgid "No themes found." msgstr "Keine Themen gefunden." -#: mod/admin.php:1884 +#: mod/admin.php:1890 msgid "Screenshot" msgstr "Bildschirmfoto" -#: mod/admin.php:1944 +#: mod/admin.php:1950 msgid "Reload active themes" msgstr "Aktives Theme neu laden" -#: mod/admin.php:1949 +#: mod/admin.php:1955 #, php-format msgid "No themes found on the system. They should be paced in %1$s" msgstr "Es wurden keine Themes auf dem System gefunden. Diese sollten in %1$s patziert werden." -#: mod/admin.php:1950 +#: mod/admin.php:1956 msgid "[Experimental]" msgstr "[Experimentell]" -#: mod/admin.php:1951 +#: mod/admin.php:1957 msgid "[Unsupported]" msgstr "[Nicht unterstützt]" -#: mod/admin.php:1975 +#: mod/admin.php:1981 msgid "Log settings updated." msgstr "Protokolleinstellungen aktualisiert." -#: mod/admin.php:2007 +#: mod/admin.php:2013 msgid "PHP log currently enabled." msgstr "PHP Protokollierung ist derzeit aktiviert." -#: mod/admin.php:2009 +#: mod/admin.php:2015 msgid "PHP log currently disabled." msgstr "PHP Protokollierung ist derzeit nicht aktiviert." -#: mod/admin.php:2018 +#: mod/admin.php:2024 msgid "Clear" msgstr "löschen" -#: mod/admin.php:2023 +#: mod/admin.php:2029 msgid "Enable Debugging" msgstr "Protokoll führen" -#: mod/admin.php:2024 +#: mod/admin.php:2030 msgid "Log file" msgstr "Protokolldatei" -#: mod/admin.php:2024 +#: mod/admin.php:2030 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:2025 +#: mod/admin.php:2031 msgid "Log level" msgstr "Protokoll-Level" -#: mod/admin.php:2028 +#: mod/admin.php:2034 msgid "PHP logging" msgstr "PHP Protokollieren" -#: mod/admin.php:2029 +#: mod/admin.php:2035 msgid "" "To enable logging of PHP errors and warnings you can add the following to " "the .htconfig.php file of your installation. The filename set in the " @@ -8729,87 +7334,1445 @@ msgid "" "'display_errors' is to enable these options, set to '0' to disable them." msgstr "Um PHP Warnungen und Fehler zu protokollieren, kannst du die folgenden Zeilen zur .htconfig.php Datei deiner Installation hinzufügen. Den Dateinamen der Log-Datei legst du in der Zeile mit dem 'error_log' fest, Er ist relativ zum Friendica-Stammverzeichnis und muss schreibbar durch den Webserver sein. Eine \"1\" als Option für die Punkte 'log_errors' und 'display_errors' aktiviert die Funktionen zum Protokollieren bzw. Anzeigen der Fehler, eine \"0\" deaktiviert sie." -#: mod/admin.php:2160 +#: mod/admin.php:2165 mod/admin.php:2166 mod/settings.php:783 +msgid "Off" +msgstr "Aus" + +#: mod/admin.php:2165 mod/admin.php:2166 mod/settings.php:783 +msgid "On" +msgstr "An" + +#: mod/admin.php:2166 #, php-format msgid "Lock feature %s" msgstr "Feature festlegen: %s" -#: mod/admin.php:2168 +#: mod/admin.php:2174 msgid "Manage Additional Features" msgstr "Zusätzliche Features Verwalten" -#: object/Item.php:359 +#: mod/contacts.php:137 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "%d Kontakt bearbeitet." +msgstr[1] "%d Kontakte bearbeitet." + +#: mod/contacts.php:172 mod/contacts.php:381 +msgid "Could not access contact record." +msgstr "Konnte nicht auf die Kontaktdaten zugreifen." + +#: mod/contacts.php:186 +msgid "Could not locate selected profile." +msgstr "Konnte das ausgewählte Profil nicht finden." + +#: mod/contacts.php:219 +msgid "Contact updated." +msgstr "Kontakt aktualisiert." + +#: mod/contacts.php:402 +msgid "Contact has been blocked" +msgstr "Kontakt wurde blockiert" + +#: mod/contacts.php:402 +msgid "Contact has been unblocked" +msgstr "Kontakt wurde wieder freigegeben" + +#: mod/contacts.php:413 +msgid "Contact has been ignored" +msgstr "Kontakt wurde ignoriert" + +#: mod/contacts.php:413 +msgid "Contact has been unignored" +msgstr "Kontakt wird nicht mehr ignoriert" + +#: mod/contacts.php:425 +msgid "Contact has been archived" +msgstr "Kontakt wurde archiviert" + +#: mod/contacts.php:425 +msgid "Contact has been unarchived" +msgstr "Kontakt wurde aus dem Archiv geholt" + +#: mod/contacts.php:450 +msgid "Drop contact" +msgstr "Kontakt löschen" + +#: mod/contacts.php:453 mod/contacts.php:812 +msgid "Do you really want to delete this contact?" +msgstr "Möchtest Du wirklich diesen Kontakt löschen?" + +#: mod/contacts.php:472 +msgid "Contact has been removed." +msgstr "Kontakt wurde entfernt." + +#: mod/contacts.php:509 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Du hast mit %s eine beidseitige Freundschaft" + +#: mod/contacts.php:513 +#, php-format +msgid "You are sharing with %s" +msgstr "Du teilst mit %s" + +#: mod/contacts.php:518 +#, php-format +msgid "%s is sharing with you" +msgstr "%s teilt mit Dir" + +#: mod/contacts.php:538 +msgid "Private communications are not available for this contact." +msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar." + +#: mod/contacts.php:545 +msgid "(Update was successful)" +msgstr "(Aktualisierung war erfolgreich)" + +#: mod/contacts.php:545 +msgid "(Update was not successful)" +msgstr "(Aktualisierung war nicht erfolgreich)" + +#: mod/contacts.php:547 mod/contacts.php:975 +msgid "Suggest friends" +msgstr "Kontakte vorschlagen" + +#: mod/contacts.php:551 +#, php-format +msgid "Network type: %s" +msgstr "Netzwerktyp: %s" + +#: mod/contacts.php:564 +msgid "Communications lost with this contact!" +msgstr "Verbindungen mit diesem Kontakt verloren!" + +#: mod/contacts.php:567 +msgid "Fetch further information for feeds" +msgstr "Weitere Informationen zu Feeds holen" + +#: mod/contacts.php:568 +msgid "Fetch information" +msgstr "Beziehe Information" + +#: mod/contacts.php:568 +msgid "Fetch information and keywords" +msgstr "Beziehe Information und Schlüsselworte" + +#: mod/contacts.php:586 +msgid "Contact" +msgstr "Kontakt" + +#: mod/contacts.php:589 +msgid "Profile Visibility" +msgstr "Profil-Sichtbarkeit" + +#: mod/contacts.php:590 +#, 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:591 +msgid "Contact Information / Notes" +msgstr "Kontakt Informationen / Notizen" + +#: mod/contacts.php:592 +msgid "Edit contact notes" +msgstr "Notizen zum Kontakt bearbeiten" + +#: mod/contacts.php:598 +msgid "Block/Unblock contact" +msgstr "Kontakt blockieren/freischalten" + +#: mod/contacts.php:599 +msgid "Ignore contact" +msgstr "Ignoriere den Kontakt" + +#: mod/contacts.php:600 +msgid "Repair URL settings" +msgstr "URL Einstellungen reparieren" + +#: mod/contacts.php:601 +msgid "View conversations" +msgstr "Unterhaltungen anzeigen" + +#: mod/contacts.php:607 +msgid "Last update:" +msgstr "Letzte Aktualisierung: " + +#: mod/contacts.php:609 +msgid "Update public posts" +msgstr "Öffentliche Beiträge aktualisieren" + +#: mod/contacts.php:611 mod/contacts.php:985 +msgid "Update now" +msgstr "Jetzt aktualisieren" + +#: mod/contacts.php:617 mod/contacts.php:817 mod/contacts.php:1002 +msgid "Unignore" +msgstr "Ignorieren aufheben" + +#: mod/contacts.php:621 +msgid "Currently blocked" +msgstr "Derzeit geblockt" + +#: mod/contacts.php:622 +msgid "Currently ignored" +msgstr "Derzeit ignoriert" + +#: mod/contacts.php:623 +msgid "Currently archived" +msgstr "Momentan archiviert" + +#: mod/contacts.php:624 +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:625 +msgid "Notification for new posts" +msgstr "Benachrichtigung bei neuen Beiträgen" + +#: mod/contacts.php:625 +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:628 +msgid "Blacklisted keywords" +msgstr "Blacklistete Schlüsselworte " + +#: mod/contacts.php:628 +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 +msgid "Actions" +msgstr "Aktionen" + +#: mod/contacts.php:649 +msgid "Contact Settings" +msgstr "Kontakteinstellungen" + +#: mod/contacts.php:695 +msgid "Suggestions" +msgstr "Kontaktvorschläge" + +#: mod/contacts.php:698 +msgid "Suggest potential friends" +msgstr "Kontakte vorschlagen" + +#: mod/contacts.php:706 +msgid "Show all contacts" +msgstr "Alle Kontakte anzeigen" + +#: mod/contacts.php:711 +msgid "Unblocked" +msgstr "Ungeblockt" + +#: mod/contacts.php:714 +msgid "Only show unblocked contacts" +msgstr "Nur nicht-blockierte Kontakte anzeigen" + +#: mod/contacts.php:720 +msgid "Blocked" +msgstr "Geblockt" + +#: mod/contacts.php:723 +msgid "Only show blocked contacts" +msgstr "Nur blockierte Kontakte anzeigen" + +#: mod/contacts.php:729 +msgid "Ignored" +msgstr "Ignoriert" + +#: mod/contacts.php:732 +msgid "Only show ignored contacts" +msgstr "Nur ignorierte Kontakte anzeigen" + +#: mod/contacts.php:738 +msgid "Archived" +msgstr "Archiviert" + +#: mod/contacts.php:741 +msgid "Only show archived contacts" +msgstr "Nur archivierte Kontakte anzeigen" + +#: mod/contacts.php:747 +msgid "Hidden" +msgstr "Verborgen" + +#: mod/contacts.php:750 +msgid "Only show hidden contacts" +msgstr "Nur verborgene Kontakte anzeigen" + +#: mod/contacts.php:807 +msgid "Search your contacts" +msgstr "Suche in deinen Kontakten" + +#: mod/contacts.php:815 mod/settings.php:162 mod/settings.php:708 +msgid "Update" +msgstr "Aktualisierungen" + +#: mod/contacts.php:818 mod/contacts.php:1010 +msgid "Archive" +msgstr "Archivieren" + +#: mod/contacts.php:818 mod/contacts.php:1010 +msgid "Unarchive" +msgstr "Aus Archiv zurückholen" + +#: mod/contacts.php:821 +msgid "Batch Actions" +msgstr "Stapelverarbeitung" + +#: mod/contacts.php:867 +msgid "View all contacts" +msgstr "Alle Kontakte anzeigen" + +#: mod/contacts.php:877 +msgid "View all common friends" +msgstr "Alle Kontakte anzeigen" + +#: mod/contacts.php:884 +msgid "Advanced Contact Settings" +msgstr "Fortgeschrittene Kontakteinstellungen" + +#: mod/contacts.php:918 +msgid "Mutual Friendship" +msgstr "Beidseitige Freundschaft" + +#: mod/contacts.php:922 +msgid "is a fan of yours" +msgstr "ist ein Fan von dir" + +#: mod/contacts.php:926 +msgid "you are a fan of" +msgstr "Du bist Fan von" + +#: mod/contacts.php:996 +msgid "Toggle Blocked status" +msgstr "Geblockt-Status ein-/ausschalten" + +#: mod/contacts.php:1004 +msgid "Toggle Ignored status" +msgstr "Ignoriert-Status ein-/ausschalten" + +#: mod/contacts.php:1012 +msgid "Toggle Archive status" +msgstr "Archiviert-Status ein-/ausschalten" + +#: mod/contacts.php:1020 +msgid "Delete contact" +msgstr "Lösche den Kontakt" + +#: mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl." + +#: mod/profile_photo.php:77 mod/profile_photo.php:85 mod/profile_photo.php:93 +#: mod/profile_photo.php:322 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Verkleinern der Bildgröße von [%s] scheiterte." + +#: mod/profile_photo.php:127 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird." + +#: mod/profile_photo.php:136 +msgid "Unable to process image" +msgstr "Bild konnte nicht verarbeitet werden" + +#: mod/profile_photo.php:253 +msgid "Upload File:" +msgstr "Datei hochladen:" + +#: mod/profile_photo.php:254 +msgid "Select a profile:" +msgstr "Profil auswählen:" + +#: mod/profile_photo.php:256 +msgid "Upload" +msgstr "Hochladen" + +#: mod/profile_photo.php:259 +msgid "or" +msgstr "oder" + +#: mod/profile_photo.php:259 +msgid "skip this step" +msgstr "diesen Schritt überspringen" + +#: mod/profile_photo.php:259 +msgid "select a photo from your photo albums" +msgstr "wähle ein Foto aus deinen Fotoalben" + +#: mod/profile_photo.php:273 +msgid "Crop Image" +msgstr "Bild zurechtschneiden" + +#: mod/profile_photo.php:274 +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:276 +msgid "Done Editing" +msgstr "Bearbeitung abgeschlossen" + +#: mod/profile_photo.php:312 +msgid "Image uploaded successfully." +msgstr "Bild erfolgreich hochgeladen." + +#: mod/profiles.php:42 +msgid "Profile deleted." +msgstr "Profil gelöscht." + +#: mod/profiles.php:58 mod/profiles.php:94 +msgid "Profile-" +msgstr "Profil-" + +#: mod/profiles.php:77 mod/profiles.php:122 +msgid "New profile created." +msgstr "Neues Profil angelegt." + +#: mod/profiles.php:100 +msgid "Profile unavailable to clone." +msgstr "Profil nicht zum Duplizieren verfügbar." + +#: mod/profiles.php:196 +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: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 "XMPP" +msgstr "XMPP" + +#: mod/profiles.php:375 +msgid "Homepage" +msgstr "Webseite" + +#: mod/profiles.php:379 mod/profiles.php:698 +msgid "Interests" +msgstr "Interessen" + +#: mod/profiles.php:383 +msgid "Address" +msgstr "Adresse" + +#: mod/profiles.php:390 mod/profiles.php:694 +msgid "Location" +msgstr "Wohnort" + +#: mod/profiles.php:475 +msgid "Profile updated." +msgstr "Profil aktualisiert." + +#: mod/profiles.php:567 +msgid " and " +msgstr " und " + +#: mod/profiles.php:576 +msgid "public profile" +msgstr "öffentliches Profil" + +#: mod/profiles.php:579 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s hat %2$s geändert auf “%3$s”" + +#: mod/profiles.php:580 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr " – %1$ss %2$s besuchen" + +#: mod/profiles.php:582 +#, 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:640 +msgid "Hide contacts and friends:" +msgstr "Kontakte und Freunde verbergen" + +#: mod/profiles.php:645 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?" + +#: mod/profiles.php:670 +msgid "Show more profile fields:" +msgstr "Zeige mehr Profil-Felder:" + +#: mod/profiles.php:682 +msgid "Profile Actions" +msgstr "Profilaktionen" + +#: mod/profiles.php:683 +msgid "Edit Profile Details" +msgstr "Profil bearbeiten" + +#: mod/profiles.php:685 +msgid "Change Profile Photo" +msgstr "Profilbild ändern" + +#: mod/profiles.php:686 +msgid "View this profile" +msgstr "Dieses Profil anzeigen" + +#: mod/profiles.php:688 +msgid "Create a new profile using these settings" +msgstr "Neues Profil anlegen und diese Einstellungen verwenden" + +#: mod/profiles.php:689 +msgid "Clone this profile" +msgstr "Dieses Profil duplizieren" + +#: mod/profiles.php:690 +msgid "Delete this profile" +msgstr "Dieses Profil löschen" + +#: mod/profiles.php:692 +msgid "Basic information" +msgstr "Grundinformationen" + +#: mod/profiles.php:693 +msgid "Profile picture" +msgstr "Profilbild" + +#: mod/profiles.php:695 +msgid "Preferences" +msgstr "Vorlieben" + +#: mod/profiles.php:696 +msgid "Status information" +msgstr "Status Informationen" + +#: mod/profiles.php:697 +msgid "Additional information" +msgstr "Zusätzliche Informationen" + +#: mod/profiles.php:700 +msgid "Relation" +msgstr "Beziehung" + +#: mod/profiles.php:704 +msgid "Your Gender:" +msgstr "Dein Geschlecht:" + +#: mod/profiles.php:705 +msgid " Marital Status:" +msgstr " Beziehungsstatus:" + +#: mod/profiles.php:707 +msgid "Example: fishing photography software" +msgstr "Beispiel: Fischen Fotografie Software" + +#: mod/profiles.php:712 +msgid "Profile Name:" +msgstr "Profilname:" + +#: mod/profiles.php:714 +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:715 +msgid "Your Full Name:" +msgstr "Dein kompletter Name:" + +#: mod/profiles.php:716 +msgid "Title/Description:" +msgstr "Titel/Beschreibung:" + +#: mod/profiles.php:719 +msgid "Street Address:" +msgstr "Adresse:" + +#: mod/profiles.php:720 +msgid "Locality/City:" +msgstr "Wohnort:" + +#: mod/profiles.php:721 +msgid "Region/State:" +msgstr "Region/Bundesstaat:" + +#: mod/profiles.php:722 +msgid "Postal/Zip Code:" +msgstr "Postleitzahl:" + +#: mod/profiles.php:723 +msgid "Country:" +msgstr "Land:" + +#: mod/profiles.php:727 +msgid "Who: (if applicable)" +msgstr "Wer: (falls anwendbar)" + +#: mod/profiles.php:727 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com" + +#: mod/profiles.php:728 +msgid "Since [date]:" +msgstr "Seit [Datum]:" + +#: mod/profiles.php:730 +msgid "Tell us about yourself..." +msgstr "Erzähle uns ein bisschen von Dir …" + +#: mod/profiles.php:731 +msgid "XMPP (Jabber) address:" +msgstr "XMPP (Jabber) Adresse" + +#: mod/profiles.php:731 +msgid "" +"The XMPP address will be propagated to your contacts so that they can follow" +" you." +msgstr "Die XMPP Adresse wird an deine Kontakte verteilt werden, so dass sie auch über XMPP mit dir in Kontakt treten können." + +#: mod/profiles.php:732 +msgid "Homepage URL:" +msgstr "Adresse der Homepage:" + +#: mod/profiles.php:735 +msgid "Religious Views:" +msgstr "Religiöse Ansichten:" + +#: mod/profiles.php:736 +msgid "Public Keywords:" +msgstr "Öffentliche Schlüsselwörter:" + +#: mod/profiles.php:736 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Wird verwendet, um potentielle Kontakte zu finden, kann von Kontakten eingesehen werden)" + +#: mod/profiles.php:737 +msgid "Private Keywords:" +msgstr "Private Schlüsselwörter:" + +#: mod/profiles.php:737 +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:740 +msgid "Musical interests" +msgstr "Musikalische Interessen" + +#: mod/profiles.php:741 +msgid "Books, literature" +msgstr "Bücher, Literatur" + +#: mod/profiles.php:742 +msgid "Television" +msgstr "Fernsehen" + +#: mod/profiles.php:743 +msgid "Film/dance/culture/entertainment" +msgstr "Filme/Tänze/Kultur/Unterhaltung" + +#: mod/profiles.php:744 +msgid "Hobbies/Interests" +msgstr "Hobbies/Interessen" + +#: mod/profiles.php:745 +msgid "Love/romance" +msgstr "Liebe/Romantik" + +#: mod/profiles.php:746 +msgid "Work/employment" +msgstr "Arbeit/Anstellung" + +#: mod/profiles.php:747 +msgid "School/education" +msgstr "Schule/Ausbildung" + +#: mod/profiles.php:748 +msgid "Contact information and Social Networks" +msgstr "Kontaktinformationen und Soziale Netzwerke" + +#: mod/profiles.php:789 +msgid "Edit/Manage Profiles" +msgstr "Bearbeite/Verwalte Profile" + +#: mod/settings.php:62 +msgid "Display" +msgstr "Anzeige" + +#: mod/settings.php:69 mod/settings.php:891 +msgid "Social Networks" +msgstr "Soziale Netzwerke" + +#: mod/settings.php:90 +msgid "Connected apps" +msgstr "Verbundene Programme" + +#: mod/settings.php:104 +msgid "Remove account" +msgstr "Konto löschen" + +#: mod/settings.php:159 +msgid "Missing some important data!" +msgstr "Wichtige Daten fehlen!" + +#: mod/settings.php:273 +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:278 +msgid "Email settings updated." +msgstr "E-Mail Einstellungen bearbeitet." + +#: mod/settings.php:293 +msgid "Features updated" +msgstr "Features aktualisiert" + +#: mod/settings.php:363 +msgid "Relocate message has been send to your contacts" +msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet." + +#: mod/settings.php:382 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert." + +#: mod/settings.php:390 +msgid "Wrong password." +msgstr "Falsches Passwort." + +#: mod/settings.php:401 +msgid "Password changed." +msgstr "Passwort geändert." + +#: mod/settings.php:403 +msgid "Password update failed. Please try again." +msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal." + +#: mod/settings.php:483 +msgid " Please use a shorter name." +msgstr " Bitte verwende einen kürzeren Namen." + +#: mod/settings.php:485 +msgid " Name too short." +msgstr " Name ist zu kurz." + +#: mod/settings.php:494 +msgid "Wrong Password" +msgstr "Falsches Passwort" + +#: mod/settings.php:499 +msgid " Not valid email." +msgstr " Keine gültige E-Mail." + +#: mod/settings.php:505 +msgid " Cannot change to that email." +msgstr "Ändern der E-Mail nicht möglich. " + +#: mod/settings.php:561 +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:565 +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:605 +msgid "Settings updated." +msgstr "Einstellungen aktualisiert." + +#: mod/settings.php:681 mod/settings.php:707 mod/settings.php:743 +msgid "Add application" +msgstr "Programm hinzufügen" + +#: mod/settings.php:685 mod/settings.php:711 +msgid "Consumer Key" +msgstr "Consumer Key" + +#: mod/settings.php:686 mod/settings.php:712 +msgid "Consumer Secret" +msgstr "Consumer Secret" + +#: mod/settings.php:687 mod/settings.php:713 +msgid "Redirect" +msgstr "Umleiten" + +#: mod/settings.php:688 mod/settings.php:714 +msgid "Icon url" +msgstr "Icon URL" + +#: mod/settings.php:699 +msgid "You can't edit this application." +msgstr "Du kannst dieses Programm nicht bearbeiten." + +#: mod/settings.php:742 +msgid "Connected Apps" +msgstr "Verbundene Programme" + +#: mod/settings.php:746 +msgid "Client key starts with" +msgstr "Anwenderschlüssel beginnt mit" + +#: mod/settings.php:747 +msgid "No name" +msgstr "Kein Name" + +#: mod/settings.php:748 +msgid "Remove authorization" +msgstr "Autorisierung entziehen" + +#: mod/settings.php:760 +msgid "No Plugin settings configured" +msgstr "Keine Plugin-Einstellungen konfiguriert" + +#: mod/settings.php:769 +msgid "Plugin Settings" +msgstr "Plugin-Einstellungen" + +#: mod/settings.php:791 +msgid "Additional Features" +msgstr "Zusätzliche Features" + +#: mod/settings.php:801 mod/settings.php:805 +msgid "General Social Media Settings" +msgstr "Allgemeine Einstellungen zu Sozialen Medien" + +#: mod/settings.php:811 +msgid "Disable intelligent shortening" +msgstr "Intelligentes Link kürzen ausschalten" + +#: mod/settings.php:813 +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:819 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen" + +#: mod/settings.php:821 +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:827 +msgid "Default group for OStatus contacts" +msgstr "Voreingestellte Gruppe für OStatus Kontakte" + +#: mod/settings.php:835 +msgid "Your legacy GNU Social account" +msgstr "Dein alter GNU Social Account" + +#: mod/settings.php:837 +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:840 +msgid "Repair OStatus subscriptions" +msgstr "OStatus Abonnements reparieren" + +#: mod/settings.php:849 mod/settings.php:850 +#, 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:849 mod/settings.php:850 +msgid "enabled" +msgstr "eingeschaltet" + +#: mod/settings.php:849 mod/settings.php:850 +msgid "disabled" +msgstr "ausgeschaltet" + +#: mod/settings.php:850 +msgid "GNU Social (OStatus)" +msgstr "GNU Social (OStatus)" + +#: mod/settings.php:884 +msgid "Email access is disabled on this site." +msgstr "Zugriff auf E-Mails für diese Seite deaktiviert." + +#: mod/settings.php:896 +msgid "Email/Mailbox Setup" +msgstr "E-Mail/Postfach-Einstellungen" + +#: mod/settings.php:897 +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:898 +msgid "Last successful email check:" +msgstr "Letzter erfolgreicher E-Mail Check" + +#: mod/settings.php:900 +msgid "IMAP server name:" +msgstr "IMAP-Server-Name:" + +#: mod/settings.php:901 +msgid "IMAP port:" +msgstr "IMAP-Port:" + +#: mod/settings.php:902 +msgid "Security:" +msgstr "Sicherheit:" + +#: mod/settings.php:902 mod/settings.php:907 +msgid "None" +msgstr "Keine" + +#: mod/settings.php:903 +msgid "Email login name:" +msgstr "E-Mail-Login-Name:" + +#: mod/settings.php:904 +msgid "Email password:" +msgstr "E-Mail-Passwort:" + +#: mod/settings.php:905 +msgid "Reply-to address:" +msgstr "Reply-to Adresse:" + +#: mod/settings.php:906 +msgid "Send public posts to all email contacts:" +msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:" + +#: mod/settings.php:907 +msgid "Action after import:" +msgstr "Aktion nach Import:" + +#: mod/settings.php:907 +msgid "Move to folder" +msgstr "In einen Ordner verschieben" + +#: mod/settings.php:908 +msgid "Move to folder:" +msgstr "In diesen Ordner verschieben:" + +#: mod/settings.php:1004 +msgid "Display Settings" +msgstr "Anzeige-Einstellungen" + +#: mod/settings.php:1010 mod/settings.php:1033 +msgid "Display Theme:" +msgstr "Theme:" + +#: mod/settings.php:1011 +msgid "Mobile Theme:" +msgstr "Mobiles Theme" + +#: mod/settings.php:1012 +msgid "Suppress warning of insecure networks" +msgstr "Warnung wegen unsicheren Netzwerken unterdrücken" + +#: mod/settings.php:1012 +msgid "" +"Should the system suppress the warning that the current group contains " +"members of networks that can't receive non public postings." +msgstr "Soll das System Warnungen unterdrücken, die angezeigt werden weil von dir eingerichtete Kontakt-Gruppen Accounts aus Netzwerken beinhalten, die keine nicht öffentlichen Beiträge empfangen können." + +#: mod/settings.php:1013 +msgid "Update browser every xx seconds" +msgstr "Browser alle xx Sekunden aktualisieren" + +#: mod/settings.php:1013 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "Minimum sind 10 Sekunden. Gib -1 ein um abzuschalten." + +#: mod/settings.php:1014 +msgid "Number of items to display per page:" +msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: " + +#: mod/settings.php:1014 mod/settings.php:1015 +msgid "Maximum of 100 items" +msgstr "Maximal 100 Beiträge" + +#: mod/settings.php:1015 +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:1016 +msgid "Don't show emoticons" +msgstr "Keine Smilies anzeigen" + +#: mod/settings.php:1017 +msgid "Calendar" +msgstr "Kalender" + +#: mod/settings.php:1018 +msgid "Beginning of week:" +msgstr "Wochenbeginn:" + +#: mod/settings.php:1019 +msgid "Don't show notices" +msgstr "Info-Popups nicht anzeigen" + +#: mod/settings.php:1020 +msgid "Infinite scroll" +msgstr "Endloses Scrollen" + +#: mod/settings.php:1021 +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:1022 +msgid "Bandwith Saver Mode" +msgstr "Bandbreiten-Spar-Modus" + +#: mod/settings.php:1022 +msgid "" +"When enabled, embedded content is not displayed on automatic updates, they " +"only show on page reload." +msgstr "Wenn aktiviert, wird der eingebettete Inhalt nicht automatisch aktualisiert. In diesem Fall Seite bitte neu laden." + +#: mod/settings.php:1024 +msgid "General Theme Settings" +msgstr "Allgemeine Themeneinstellungen" + +#: mod/settings.php:1025 +msgid "Custom Theme Settings" +msgstr "Benutzerdefinierte Theme Einstellungen" + +#: mod/settings.php:1026 +msgid "Content Settings" +msgstr "Einstellungen zum Inhalt" + +#: mod/settings.php:1027 view/theme/duepuntozero/config.php:66 +#: view/theme/frio/config.php:69 view/theme/quattro/config.php:72 +#: view/theme/vier/config.php:115 +msgid "Theme settings" +msgstr "Themeneinstellungen" + +#: mod/settings.php:1111 +msgid "Account Types" +msgstr "Kontenarten" + +#: mod/settings.php:1112 +msgid "Personal Page Subtypes" +msgstr "Unterarten der persönlichen Seite" + +#: mod/settings.php:1113 +msgid "Community Forum Subtypes" +msgstr "Unterarten des Gemeinschaftsforums" + +#: mod/settings.php:1120 +msgid "Personal Page" +msgstr "Persönliche Seite" + +#: mod/settings.php:1121 +msgid "This account is a regular personal profile" +msgstr "Dieses Konto ist ein normales persönliches Profil" + +#: mod/settings.php:1124 +msgid "Organisation Page" +msgstr "Organisationsseite" + +#: mod/settings.php:1125 +msgid "This account is a profile for an organisation" +msgstr "Diese Konto ist ein Profil für eine Organisation" + +#: mod/settings.php:1128 +msgid "News Page" +msgstr "Nachrichtenseite" + +#: mod/settings.php:1129 +msgid "This account is a news account/reflector" +msgstr "Dieses Konto ist ein News-Konto bzw. -Spiegel" + +#: mod/settings.php:1132 +msgid "Community Forum" +msgstr "Gemeinschaftsforum" + +#: mod/settings.php:1133 +msgid "" +"This account is a community forum where people can discuss with each other" +msgstr "Dieses Konto ist ein Gemeinschaftskonto wo sich Leute untereinander austauschen können" + +#: mod/settings.php:1136 +msgid "Normal Account Page" +msgstr "Normales Konto" + +#: mod/settings.php:1137 +msgid "This account is a normal personal profile" +msgstr "Dieses Konto ist ein normales persönliches Profil" + +#: mod/settings.php:1140 +msgid "Soapbox Page" +msgstr "Marktschreier-Konto" + +#: mod/settings.php:1141 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert" + +#: mod/settings.php:1144 +msgid "Public Forum" +msgstr "Öffentliches Forum" + +#: mod/settings.php:1145 +msgid "Automatically approve all contact requests" +msgstr "Bestätige alle Kontaktanfragen automatisch" + +#: mod/settings.php:1148 +msgid "Automatic Friend Page" +msgstr "Automatische Freunde Seite" + +#: mod/settings.php:1149 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert" + +#: mod/settings.php:1152 +msgid "Private Forum [Experimental]" +msgstr "Privates Forum [Versuchsstadium]" + +#: mod/settings.php:1153 +msgid "Private forum - approved members only" +msgstr "Privates Forum, nur für Mitglieder" + +#: mod/settings.php:1164 +msgid "OpenID:" +msgstr "OpenID:" + +#: mod/settings.php:1164 +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:1172 +msgid "Publish your default profile in your local site directory?" +msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?" + +#: mod/settings.php:1172 +msgid "Your profile may be visible in public." +msgstr "Dein Profil könnte öffentlich abrufbar sein." + +#: mod/settings.php:1178 +msgid "Publish your default profile in the global social directory?" +msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?" + +#: mod/settings.php:1185 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?" + +#: mod/settings.php:1189 +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:1194 +msgid "Allow friends to post to your profile page?" +msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?" + +#: mod/settings.php:1199 +msgid "Allow friends to tag your posts?" +msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?" + +#: mod/settings.php:1204 +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:1209 +msgid "Permit unknown people to send you private mail?" +msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?" + +#: mod/settings.php:1217 +msgid "Profile is not published." +msgstr "Profil ist nicht veröffentlicht." + +#: mod/settings.php:1225 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "Die Adresse deines Profils lautet '%s' oder '%s'." + +#: mod/settings.php:1232 +msgid "Automatically expire posts after this many days:" +msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:" + +#: mod/settings.php:1232 +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:1233 +msgid "Advanced expiration settings" +msgstr "Erweiterte Verfallseinstellungen" + +#: mod/settings.php:1234 +msgid "Advanced Expiration" +msgstr "Erweitertes Verfallen" + +#: mod/settings.php:1235 +msgid "Expire posts:" +msgstr "Beiträge verfallen lassen:" + +#: mod/settings.php:1236 +msgid "Expire personal notes:" +msgstr "Persönliche Notizen verfallen lassen:" + +#: mod/settings.php:1237 +msgid "Expire starred posts:" +msgstr "Markierte Beiträge verfallen lassen:" + +#: mod/settings.php:1238 +msgid "Expire photos:" +msgstr "Fotos verfallen lassen:" + +#: mod/settings.php:1239 +msgid "Only expire posts by others:" +msgstr "Nur Beiträge anderer verfallen:" + +#: mod/settings.php:1270 +msgid "Account Settings" +msgstr "Kontoeinstellungen" + +#: mod/settings.php:1278 +msgid "Password Settings" +msgstr "Passwort-Einstellungen" + +#: mod/settings.php:1280 +msgid "Leave password fields blank unless changing" +msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern" + +#: mod/settings.php:1281 +msgid "Current Password:" +msgstr "Aktuelles Passwort:" + +#: mod/settings.php:1281 mod/settings.php:1282 +msgid "Your current password to confirm the changes" +msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen" + +#: mod/settings.php:1282 +msgid "Password:" +msgstr "Passwort:" + +#: mod/settings.php:1286 +msgid "Basic Settings" +msgstr "Grundeinstellungen" + +#: mod/settings.php:1288 +msgid "Email Address:" +msgstr "E-Mail-Adresse:" + +#: mod/settings.php:1289 +msgid "Your Timezone:" +msgstr "Deine Zeitzone:" + +#: mod/settings.php:1290 +msgid "Your Language:" +msgstr "Deine Sprache:" + +#: mod/settings.php:1290 +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:1291 +msgid "Default Post Location:" +msgstr "Standardstandort:" + +#: mod/settings.php:1292 +msgid "Use Browser Location:" +msgstr "Standort des Browsers verwenden:" + +#: mod/settings.php:1295 +msgid "Security and Privacy Settings" +msgstr "Sicherheits- und Privatsphäre-Einstellungen" + +#: mod/settings.php:1297 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximale Anzahl vonKontaktanfragen/Tag:" + +#: mod/settings.php:1297 mod/settings.php:1327 +msgid "(to prevent spam abuse)" +msgstr "(um SPAM zu vermeiden)" + +#: mod/settings.php:1298 +msgid "Default Post Permissions" +msgstr "Standard-Zugriffsrechte für Beiträge" + +#: mod/settings.php:1299 +msgid "(click to open/close)" +msgstr "(klicke zum öffnen/schließen)" + +#: mod/settings.php:1310 +msgid "Default Private Post" +msgstr "Privater Standardbeitrag" + +#: mod/settings.php:1311 +msgid "Default Public Post" +msgstr "Öffentlicher Standardbeitrag" + +#: mod/settings.php:1315 +msgid "Default Permissions for New Posts" +msgstr "Standardberechtigungen für neue Beiträge" + +#: mod/settings.php:1327 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:" + +#: mod/settings.php:1330 +msgid "Notification Settings" +msgstr "Benachrichtigungseinstellungen" + +#: mod/settings.php:1331 +msgid "By default post a status message when:" +msgstr "Standardmäßig eine Statusnachricht posten, wenn:" + +#: mod/settings.php:1332 +msgid "accepting a friend request" +msgstr "– Du eine Kontaktanfrage akzeptierst" + +#: mod/settings.php:1333 +msgid "joining a forum/community" +msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst" + +#: mod/settings.php:1334 +msgid "making an interesting profile change" +msgstr "– Du eine interessante Änderung an Deinem Profil durchführst" + +#: mod/settings.php:1335 +msgid "Send a notification email when:" +msgstr "Benachrichtigungs-E-Mail senden wenn:" + +#: mod/settings.php:1336 +msgid "You receive an introduction" +msgstr "– Du eine Kontaktanfrage erhältst" + +#: mod/settings.php:1337 +msgid "Your introductions are confirmed" +msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde" + +#: mod/settings.php:1338 +msgid "Someone writes on your profile wall" +msgstr "– jemand etwas auf Deine Pinnwand schreibt" + +#: mod/settings.php:1339 +msgid "Someone writes a followup comment" +msgstr "– jemand auch einen Kommentar verfasst" + +#: mod/settings.php:1340 +msgid "You receive a private message" +msgstr "– Du eine private Nachricht erhältst" + +#: mod/settings.php:1341 +msgid "You receive a friend suggestion" +msgstr "– Du eine Empfehlung erhältst" + +#: mod/settings.php:1342 +msgid "You are tagged in a post" +msgstr "– Du in einem Beitrag erwähnt wirst" + +#: mod/settings.php:1343 +msgid "You are poked/prodded/etc. in a post" +msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst" + +#: mod/settings.php:1345 +msgid "Activate desktop notifications" +msgstr "Desktop Benachrichtigungen einschalten" + +#: mod/settings.php:1345 +msgid "Show desktop popup on new notifications" +msgstr "Desktop Benachrichtigungen einschalten" + +#: mod/settings.php:1347 +msgid "Text-only notification emails" +msgstr "Benachrichtigungs E-Mail als Rein-Text." + +#: mod/settings.php:1349 +msgid "Send text only notification emails, without the html part" +msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil" + +#: mod/settings.php:1351 +msgid "Advanced Account/Page Type Settings" +msgstr "Erweiterte Konto-/Seitentyp-Einstellungen" + +#: mod/settings.php:1352 +msgid "Change the behaviour of this account for special situations" +msgstr "Verhalten dieses Kontos in bestimmten Situationen:" + +#: mod/settings.php:1355 +msgid "Relocate" +msgstr "Umziehen" + +#: mod/settings.php:1356 +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:1357 +msgid "Resend relocate message to contacts" +msgstr "Umzugsbenachrichtigung erneut an Kontakte senden" + +#: object/Item.php:356 msgid "via" msgstr "via" -#: view/theme/duepuntozero/config.php:44 +#: view/theme/duepuntozero/config.php:47 msgid "greenzero" msgstr "greenzero" -#: view/theme/duepuntozero/config.php:45 +#: view/theme/duepuntozero/config.php:48 msgid "purplezero" msgstr "purplezero" -#: view/theme/duepuntozero/config.php:46 +#: view/theme/duepuntozero/config.php:49 msgid "easterbunny" msgstr "easterbunny" -#: view/theme/duepuntozero/config.php:47 +#: view/theme/duepuntozero/config.php:50 msgid "darkzero" msgstr "darkzero" -#: view/theme/duepuntozero/config.php:48 +#: view/theme/duepuntozero/config.php:51 msgid "comix" msgstr "comix" -#: view/theme/duepuntozero/config.php:49 +#: view/theme/duepuntozero/config.php:52 msgid "slackr" msgstr "slackr" -#: view/theme/duepuntozero/config.php:64 +#: view/theme/duepuntozero/config.php:67 msgid "Variations" msgstr "Variationen" -#: view/theme/frio/config.php:47 -msgid "Default" -msgstr "Standard" - -#: view/theme/frio/config.php:59 -msgid "Note: " -msgstr "Hinweis:" - -#: view/theme/frio/config.php:59 -msgid "Check image permissions if all users are allowed to visit the image" -msgstr "Überprüfe, dass alle Benutzer die Berechtigung haben dieses Bild anzusehen" - -#: view/theme/frio/config.php:67 -msgid "Select scheme" -msgstr "Schema auswählen" - -#: view/theme/frio/config.php:68 -msgid "Navigation bar background color" -msgstr "Hintergrundfarbe der Navigationsleiste" - -#: view/theme/frio/config.php:69 -msgid "Navigation bar icon color " -msgstr "Icon Farbe in der Navigationsleiste" - -#: view/theme/frio/config.php:70 -msgid "Link color" -msgstr "Linkfarbe" - -#: view/theme/frio/config.php:71 -msgid "Set the background color" -msgstr "Hintergrundfarbe festlegen" - -#: view/theme/frio/config.php:72 -msgid "Content background transparency" -msgstr "Transparanz des Hintergrunds von Beiträgem" - -#: view/theme/frio/config.php:73 -msgid "Set the background image" -msgstr "Hintergrundbild festlegen" - #: view/theme/frio/php/Image.php:23 msgid "Repeat the image" msgstr "Bild wiederholen" @@ -8842,127 +8805,167 @@ msgstr "Größe anpassen - Optimale Größe" msgid "Resize to best fit and retain aspect ratio." msgstr "Größe anpassen - Optimale Größe und Seitenverhältnisse beibehalten" -#: view/theme/frio/theme.php:226 +#: view/theme/frio/config.php:50 +msgid "Default" +msgstr "Standard" + +#: view/theme/frio/config.php:62 +msgid "Note: " +msgstr "Hinweis:" + +#: view/theme/frio/config.php:62 +msgid "Check image permissions if all users are allowed to visit the image" +msgstr "Überprüfe, dass alle Benutzer die Berechtigung haben dieses Bild anzusehen" + +#: view/theme/frio/config.php:70 +msgid "Select scheme" +msgstr "Schema auswählen" + +#: view/theme/frio/config.php:71 +msgid "Navigation bar background color" +msgstr "Hintergrundfarbe der Navigationsleiste" + +#: view/theme/frio/config.php:72 +msgid "Navigation bar icon color " +msgstr "Icon Farbe in der Navigationsleiste" + +#: view/theme/frio/config.php:73 +msgid "Link color" +msgstr "Linkfarbe" + +#: view/theme/frio/config.php:74 +msgid "Set the background color" +msgstr "Hintergrundfarbe festlegen" + +#: view/theme/frio/config.php:75 +msgid "Content background transparency" +msgstr "Transparanz des Hintergrunds von Beiträgem" + +#: view/theme/frio/config.php:76 +msgid "Set the background image" +msgstr "Hintergrundbild festlegen" + +#: view/theme/frio/theme.php:228 msgid "Guest" msgstr "Gast" -#: view/theme/frio/theme.php:232 +#: view/theme/frio/theme.php:234 msgid "Visitor" msgstr "Besucher" -#: view/theme/quattro/config.php:70 +#: view/theme/quattro/config.php:73 msgid "Alignment" msgstr "Ausrichtung" -#: view/theme/quattro/config.php:70 +#: view/theme/quattro/config.php:73 msgid "Left" msgstr "Links" -#: view/theme/quattro/config.php:70 +#: view/theme/quattro/config.php:73 msgid "Center" msgstr "Mitte" -#: view/theme/quattro/config.php:71 +#: view/theme/quattro/config.php:74 msgid "Color scheme" msgstr "Farbschema" -#: view/theme/quattro/config.php:72 +#: view/theme/quattro/config.php:75 msgid "Posts font size" msgstr "Schriftgröße in Beiträgen" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:76 msgid "Textareas font size" msgstr "Schriftgröße in Eingabefeldern" -#: view/theme/vier/config.php:69 +#: view/theme/vier/config.php:70 msgid "Comma separated list of helper forums" msgstr "Komma-Separierte Liste der Helfer-Foren" -#: view/theme/vier/config.php:115 +#: view/theme/vier/config.php:116 msgid "Set style" msgstr "Stil auswählen" -#: view/theme/vier/config.php:116 +#: view/theme/vier/config.php:117 msgid "Community Pages" msgstr "Foren" -#: view/theme/vier/config.php:117 view/theme/vier/theme.php:149 +#: view/theme/vier/config.php:118 view/theme/vier/theme.php:151 msgid "Community Profiles" msgstr "Community-Profile" -#: view/theme/vier/config.php:118 +#: view/theme/vier/config.php:119 msgid "Help or @NewHere ?" msgstr "Hilfe oder @NewHere" -#: view/theme/vier/config.php:119 view/theme/vier/theme.php:390 +#: view/theme/vier/config.php:120 view/theme/vier/theme.php:392 msgid "Connect Services" msgstr "Verbinde Dienste" -#: view/theme/vier/config.php:120 view/theme/vier/theme.php:197 +#: view/theme/vier/config.php:121 view/theme/vier/theme.php:199 msgid "Find Friends" msgstr "Kontakte finden" -#: view/theme/vier/config.php:121 view/theme/vier/theme.php:179 +#: view/theme/vier/config.php:122 view/theme/vier/theme.php:181 msgid "Last users" msgstr "Letzte Nutzer" -#: view/theme/vier/theme.php:198 +#: view/theme/vier/theme.php:200 msgid "Local Directory" msgstr "Lokales Verzeichnis" -#: view/theme/vier/theme.php:290 +#: view/theme/vier/theme.php:292 msgid "Quick Start" msgstr "Schnell-Start" -#: index.php:433 -msgid "toggle mobile" -msgstr "auf/von Mobile Ansicht wechseln" - -#: boot.php:999 +#: src/App.php:505 msgid "Delete this item?" msgstr "Diesen Beitrag löschen?" -#: boot.php:1001 +#: src/App.php:507 msgid "show fewer" msgstr "weniger anzeigen" -#: boot.php:1729 +#: index.php:436 +msgid "toggle mobile" +msgstr "auf/von Mobile Ansicht wechseln" + +#: boot.php:726 #, php-format msgid "Update %s failed. See error logs." msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen." -#: boot.php:1843 +#: boot.php:838 msgid "Create a New Account" msgstr "Neues Konto erstellen" -#: boot.php:1871 +#: boot.php:866 msgid "Password: " msgstr "Passwort: " -#: boot.php:1872 +#: boot.php:867 msgid "Remember me" msgstr "Anmeldedaten merken" -#: boot.php:1875 +#: boot.php:870 msgid "Or login using OpenID: " msgstr "Oder melde Dich mit Deiner OpenID an: " -#: boot.php:1881 +#: boot.php:876 msgid "Forgot your password?" msgstr "Passwort vergessen?" -#: boot.php:1884 +#: boot.php:879 msgid "Website Terms of Service" msgstr "Website Nutzungsbedingungen" -#: boot.php:1885 +#: boot.php:880 msgid "terms of service" msgstr "Nutzungsbedingungen" -#: boot.php:1887 +#: boot.php:882 msgid "Website Privacy Policy" msgstr "Website Datenschutzerklärung" -#: boot.php:1888 +#: boot.php:883 msgid "privacy policy" msgstr "Datenschutzerklärung" diff --git a/view/lang/de/strings.php b/view/lang/de/strings.php index 31e283643f..dfd1777035 100644 --- a/view/lang/de/strings.php +++ b/view/lang/de/strings.php @@ -5,220 +5,6 @@ function string_plural_select_de($n){ return ($n != 1);; }} ; -$a->strings["Forums"] = "Foren"; -$a->strings["External link to forum"] = "Externer Link zum Forum"; -$a->strings["show more"] = "mehr anzeigen"; -$a->strings["System"] = "System"; -$a->strings["Network"] = "Netzwerk"; -$a->strings["Personal"] = "Persönlich"; -$a->strings["Home"] = "Pinnwand"; -$a->strings["Introductions"] = "Kontaktanfragen"; -$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert"; -$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt"; -$a->strings["%s liked %s's post"] = "%s mag %ss Beitrag"; -$a->strings["%s disliked %s's post"] = "%s mag %ss Beitrag nicht"; -$a->strings["%s is attending %s's event"] = "%s nimmt an %s's Event teil"; -$a->strings["%s is not attending %s's event"] = "%s nimmt nicht an %s's Event teil"; -$a->strings["%s may attend %s's event"] = "%s nimmt eventuell an %s's Event teil"; -$a->strings["%s is now friends with %s"] = "%s ist jetzt mit %s befreundet"; -$a->strings["Friend Suggestion"] = "Kontaktvorschlag"; -$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage"; -$a->strings["New Follower"] = "Neuer Bewunderer"; -$a->strings["Wall Photos"] = "Pinnwand-Bilder"; -$a->strings["(no subject)"] = "(kein Betreff)"; -$a->strings["noreply"] = "noreply"; -$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["photo"] = "Foto"; -$a->strings["status"] = "Status"; -$a->strings["event"] = "Event"; -$a->strings["[no subject]"] = "[kein Betreff]"; -$a->strings["Nothing new here"] = "Keine Neuigkeiten"; -$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen"; -$a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, content"; -$a->strings["Logout"] = "Abmelden"; -$a->strings["End this session"] = "Diese Sitzung beenden"; -$a->strings["Status"] = "Status"; -$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; -$a->strings["Profile"] = "Profil"; -$a->strings["Your profile page"] = "Deine Profilseite"; -$a->strings["Photos"] = "Bilder"; -$a->strings["Your photos"] = "Deine Fotos"; -$a->strings["Videos"] = "Videos"; -$a->strings["Your videos"] = "Deine Videos"; -$a->strings["Events"] = "Veranstaltungen"; -$a->strings["Your events"] = "Deine Ereignisse"; -$a->strings["Personal notes"] = "Persönliche Notizen"; -$a->strings["Your personal notes"] = "Deine persönlichen Notizen"; -$a->strings["Login"] = "Anmeldung"; -$a->strings["Sign in"] = "Anmelden"; -$a->strings["Home Page"] = "Homepage"; -$a->strings["Register"] = "Registrieren"; -$a->strings["Create an account"] = "Nutzerkonto erstellen"; -$a->strings["Help"] = "Hilfe"; -$a->strings["Help and documentation"] = "Hilfe und Dokumentation"; -$a->strings["Apps"] = "Apps"; -$a->strings["Addon applications, utilities, games"] = "Addon Anwendungen, Dienstprogramme, Spiele"; -$a->strings["Search"] = "Suche"; -$a->strings["Search site content"] = "Inhalt der Seite durchsuchen"; -$a->strings["Full Text"] = "Volltext"; -$a->strings["Tags"] = "Tags"; -$a->strings["Contacts"] = "Kontakte"; -$a->strings["Community"] = "Gemeinschaft"; -$a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite"; -$a->strings["Conversations on the network"] = "Unterhaltungen im Netzwerk"; -$a->strings["Events and Calendar"] = "Ereignisse und Kalender"; -$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["Notifications"] = "Benachrichtigungen"; -$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen"; -$a->strings["Mark as seen"] = "Als gelesen markieren"; -$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen"; -$a->strings["Messages"] = "Nachrichten"; -$a->strings["Private mail"] = "Private E-Mail"; -$a->strings["Inbox"] = "Eingang"; -$a->strings["Outbox"] = "Ausgang"; -$a->strings["New Message"] = "Neue Nachricht"; -$a->strings["Manage"] = "Verwalten"; -$a->strings["Manage other pages"] = "Andere Seiten verwalten"; -$a->strings["Delegations"] = "Delegationen"; -$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite"; -$a->strings["Settings"] = "Einstellungen"; -$a->strings["Account settings"] = "Kontoeinstellungen"; -$a->strings["Profiles"] = "Profile"; -$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren"; -$a->strings["Manage/edit friends and contacts"] = " Kontakte verwalten/editieren"; -$a->strings["Admin"] = "Administration"; -$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration"; -$a->strings["Navigation"] = "Navigation"; -$a->strings["Site map"] = "Sitemap"; -$a->strings["Click here to upgrade."] = "Zum Upgraden hier klicken."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Obergrenze Deines Abonnements."; -$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Deinem Abonnement nicht verfügbar."; -$a->strings["Male"] = "Männlich"; -$a->strings["Female"] = "Weiblich"; -$a->strings["Currently Male"] = "Momentan männlich"; -$a->strings["Currently Female"] = "Momentan weiblich"; -$a->strings["Mostly Male"] = "Hauptsächlich männlich"; -$a->strings["Mostly Female"] = "Hauptsächlich weiblich"; -$a->strings["Transgender"] = "Transgender"; -$a->strings["Intersex"] = "Intersex"; -$a->strings["Transsexual"] = "Transsexuell"; -$a->strings["Hermaphrodite"] = "Hermaphrodit"; -$a->strings["Neuter"] = "Neuter"; -$a->strings["Non-specific"] = "Nicht spezifiziert"; -$a->strings["Other"] = "Andere"; -$a->strings["Undecided"] = array( - 0 => "Unentschieden", - 1 => "Unentschieden", -); -$a->strings["Males"] = "Männer"; -$a->strings["Females"] = "Frauen"; -$a->strings["Gay"] = "Schwul"; -$a->strings["Lesbian"] = "Lesbisch"; -$a->strings["No Preference"] = "Keine Vorlieben"; -$a->strings["Bisexual"] = "Bisexuell"; -$a->strings["Autosexual"] = "Autosexual"; -$a->strings["Abstinent"] = "Abstinent"; -$a->strings["Virgin"] = "Jungfrauen"; -$a->strings["Deviant"] = "Deviant"; -$a->strings["Fetish"] = "Fetish"; -$a->strings["Oodles"] = "Oodles"; -$a->strings["Nonsexual"] = "Nonsexual"; -$a->strings["Single"] = "Single"; -$a->strings["Lonely"] = "Einsam"; -$a->strings["Available"] = "Verfügbar"; -$a->strings["Unavailable"] = "Nicht verfügbar"; -$a->strings["Has crush"] = "verknallt"; -$a->strings["Infatuated"] = "verliebt"; -$a->strings["Dating"] = "Dating"; -$a->strings["Unfaithful"] = "Untreu"; -$a->strings["Sex Addict"] = "Sexbesessen"; -$a->strings["Friends"] = "Kontakte"; -$a->strings["Friends/Benefits"] = "Freunde/Zuwendungen"; -$a->strings["Casual"] = "Casual"; -$a->strings["Engaged"] = "Verlobt"; -$a->strings["Married"] = "Verheiratet"; -$a->strings["Imaginarily married"] = "imaginär verheiratet"; -$a->strings["Partners"] = "Partner"; -$a->strings["Cohabiting"] = "zusammenlebend"; -$a->strings["Common law"] = "wilde Ehe"; -$a->strings["Happy"] = "Glücklich"; -$a->strings["Not looking"] = "Nicht auf der Suche"; -$a->strings["Swinger"] = "Swinger"; -$a->strings["Betrayed"] = "Betrogen"; -$a->strings["Separated"] = "Getrennt"; -$a->strings["Unstable"] = "Unstabil"; -$a->strings["Divorced"] = "Geschieden"; -$a->strings["Imaginarily divorced"] = "imaginär geschieden"; -$a->strings["Widowed"] = "Verwitwet"; -$a->strings["Uncertain"] = "Unsicher"; -$a->strings["It's complicated"] = "Ist kompliziert"; -$a->strings["Don't care"] = "Ist mir nicht wichtig"; -$a->strings["Ask me"] = "Frag mich"; -$a->strings["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["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["View Profile"] = "Profil anschauen"; -$a->strings["Connect/Follow"] = "Verbinden/Folgen"; -$a->strings["View Status"] = "Pinnwand anschauen"; -$a->strings["View Photos"] = "Bilder anschauen"; -$a->strings["Network Posts"] = "Netzwerkbeiträge"; -$a->strings["View Contact"] = "Kontakt anzeigen"; -$a->strings["Drop Contact"] = "Kontakt löschen"; -$a->strings["Send PM"] = "Private Nachricht senden"; -$a->strings["Poke"] = "Anstupsen"; -$a->strings["Organisation"] = "Organisation"; -$a->strings["News"] = "Nachrichten"; -$a->strings["Forum"] = "Forum"; -$a->strings["Post to Email"] = "An E-Mail senden"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."; -$a->strings["Hide your profile details from unknown viewers?"] = "Profil-Details vor unbekannten Betrachtern verbergen?"; -$a->strings["Visible to everybody"] = "Für jeden sichtbar"; -$a->strings["show"] = "zeigen"; -$a->strings["don't show"] = "nicht zeigen"; -$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com"; -$a->strings["Permissions"] = "Berechtigungen"; -$a->strings["Close"] = "Schließen"; -$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."; -$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."; -$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."; -$a->strings["Logged out."] = "Abgemeldet."; -$a->strings["Login failed."] = "Anmeldung fehlgeschlagen."; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast."; -$a->strings["The error message was:"] = "Die Fehlermeldung lautete:"; -$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i"; -$a->strings["Starts:"] = "Beginnt:"; -$a->strings["Finishes:"] = "Endet:"; -$a->strings["Location:"] = "Ort:"; -$a->strings["Image/photo"] = "Bild/Foto"; -$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; -$a->strings["$1 wrote:"] = "$1 hat geschrieben:"; -$a->strings["Encrypted content"] = "Verschlüsselter Inhalt"; -$a->strings["Invalid source protocol"] = "Ungültiges Quell-Protokoll"; -$a->strings["Invalid link protocol"] = "Ungültiges Link-Protokoll"; $a->strings["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert"; $a->strings["Block immediately"] = "Sofort blockieren"; $a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller"; @@ -248,6 +34,103 @@ $a->strings["Diaspora Connector"] = "Diaspora"; $a->strings["GNU Social Connector"] = "GNU social Connector"; $a->strings["pnut"] = "pnut"; $a->strings["App.net"] = "App.net"; +$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["Export Public Calendar"] = "Öffentlichen Kalender exportieren"; +$a->strings["Ability for visitors to download the public calendar"] = "Möglichkeit für Besucher den öffentlichen Kalender herunter zu laden"; +$a->strings["Post Composition Features"] = "Beitragserstellung Features"; +$a->strings["Post Preview"] = "Beitragsvorschau"; +$a->strings["Allow previewing posts and comments before publishing them"] = "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben."; +$a->strings["Auto-mention Forums"] = "Foren automatisch erwähnen"; +$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert wurde."; +$a->strings["Network Sidebar Widgets"] = "Widgets für Netzwerk und Seitenleiste"; +$a->strings["Search by Date"] = "Archiv"; +$a->strings["Ability to select posts by date ranges"] = "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"; +$a->strings["List Forums"] = "Zeige Foren"; +$a->strings["Enable widget to display the forums your are connected with"] = "Aktiviere Widget, um die Foren mit denen du verbunden bist anzuzeigen"; +$a->strings["Group Filter"] = "Gruppen Filter"; +$a->strings["Enable widget to display Network posts only from selected group"] = "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."; +$a->strings["Network Filter"] = "Netzwerk Filter"; +$a->strings["Enable widget to display Network posts only from selected network"] = "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren."; +$a->strings["Saved Searches"] = "Gespeicherte Suchen"; +$a->strings["Save search terms for re-use"] = "Speichere Suchanfragen für spätere Wiederholung."; +$a->strings["Network Tabs"] = "Netzwerk Reiter"; +$a->strings["Network Personal Tab"] = "Netzwerk-Reiter: Persönlich"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen Du interagiert hast"; +$a->strings["Network New Tab"] = "Netzwerk-Reiter: Neue"; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden"; +$a->strings["Network Shared Links Tab"] = "Netzwerk-Reiter: Geteilte Links"; +$a->strings["Enable tab to display only Network posts with links in them"] = "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält"; +$a->strings["Post/Comment Tools"] = "Werkzeuge für Beiträge und Kommentare"; +$a->strings["Multiple Deletion"] = "Mehrere Beiträge löschen"; +$a->strings["Select and delete multiple posts/comments at once"] = "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"; +$a->strings["Edit Sent Posts"] = "Gesendete Beiträge editieren"; +$a->strings["Edit and correct posts and comments after sending"] = "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren."; +$a->strings["Tagging"] = "Tagging"; +$a->strings["Ability to tag existing posts"] = "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."; +$a->strings["Post Categories"] = "Beitragskategorien"; +$a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen"; +$a->strings["Saved Folders"] = "Gespeicherte Ordner"; +$a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren"; +$a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'"; +$a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"; +$a->strings["Star Posts"] = "Beiträge Markieren"; +$a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren"; +$a->strings["Mute Post Notifications"] = "Benachrichtigungen für Beiträge Stumm schalten"; +$a->strings["Ability to mute notifications for a thread"] = "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können"; +$a->strings["Advanced Profile Settings"] = "Erweiterte Profil-Einstellungen"; +$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Zeige Besuchern öffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite"; +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen könnten auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."; +$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte"; +$a->strings["Everybody"] = "Alle Kontakte"; +$a->strings["edit"] = "bearbeiten"; +$a->strings["Groups"] = "Gruppen"; +$a->strings["Edit groups"] = "Gruppen bearbeiten"; +$a->strings["Edit group"] = "Gruppe bearbeiten"; +$a->strings["Create a new group"] = "Neue Gruppe erstellen"; +$a->strings["Group Name: "] = "Gruppenname:"; +$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe"; +$a->strings["add"] = "hinzufügen"; +$a->strings["Forums"] = "Foren"; +$a->strings["External link to forum"] = "Externer Link zum Forum"; +$a->strings["show more"] = "mehr anzeigen"; +$a->strings["System"] = "System"; +$a->strings["Network"] = "Netzwerk"; +$a->strings["Personal"] = "Persönlich"; +$a->strings["Home"] = "Pinnwand"; +$a->strings["Introductions"] = "Kontaktanfragen"; +$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert"; +$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt"; +$a->strings["%s liked %s's post"] = "%s mag %ss Beitrag"; +$a->strings["%s disliked %s's post"] = "%s mag %ss Beitrag nicht"; +$a->strings["%s is attending %s's event"] = "%s nimmt an %s's Event teil"; +$a->strings["%s is not attending %s's event"] = "%s nimmt nicht an %s's Event teil"; +$a->strings["%s may attend %s's event"] = "%s nimmt eventuell an %s's Event teil"; +$a->strings["%s is now friends with %s"] = "%s ist jetzt mit %s befreundet"; +$a->strings["Friend Suggestion"] = "Kontaktvorschlag"; +$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage"; +$a->strings["New Follower"] = "Neuer Bewunderer"; +$a->strings["Post to Email"] = "An E-Mail senden"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."; +$a->strings["Hide your profile details from unknown viewers?"] = "Profil-Details vor unbekannten Betrachtern verbergen?"; +$a->strings["Visible to everybody"] = "Für jeden sichtbar"; +$a->strings["show"] = "zeigen"; +$a->strings["don't show"] = "nicht zeigen"; +$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com"; +$a->strings["Permissions"] = "Berechtigungen"; +$a->strings["Close"] = "Schließen"; +$a->strings["Logged out."] = "Abgemeldet."; +$a->strings["Login failed."] = "Anmeldung fehlgeschlagen."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast."; +$a->strings["The error message was:"] = "Die Fehlermeldung lautete:"; +$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i"; +$a->strings["Starts:"] = "Beginnt:"; +$a->strings["Finishes:"] = "Endet:"; +$a->strings["Location:"] = "Ort:"; $a->strings["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"; @@ -258,6 +141,7 @@ $a->strings["%d invitation available"] = array( ); $a->strings["Find People"] = "Leute finden"; $a->strings["Enter name or interest"] = "Name oder Interessen eingeben"; +$a->strings["Connect/Follow"] = "Verbinden/Folgen"; $a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln"; $a->strings["Find"] = "Finde"; $a->strings["Friend Suggestions"] = "Kontaktvorschläge"; @@ -266,13 +150,17 @@ $a->strings["Random Profile"] = "Zufälliges Profil"; $a->strings["Invite Friends"] = "Freunde einladen"; $a->strings["Networks"] = "Netzwerke"; $a->strings["All Networks"] = "Alle Netzwerke"; -$a->strings["Saved Folders"] = "Gespeicherte Ordner"; $a->strings["Everything"] = "Alles"; $a->strings["Categories"] = "Kategorien"; $a->strings["%d contact in common"] = array( 0 => "%d gemeinsamer Kontakt", 1 => "%d gemeinsame Kontakte", ); +$a->strings["event"] = "Event"; +$a->strings["status"] = "Status"; +$a->strings["photo"] = "Foto"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht"; $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."; @@ -301,6 +189,13 @@ $a->strings["Please wait"] = "Bitte warten"; $a->strings["remove"] = "löschen"; $a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge"; $a->strings["Follow Thread"] = "Folge der Unterhaltung"; +$a->strings["View Status"] = "Pinnwand anschauen"; +$a->strings["View Profile"] = "Profil anschauen"; +$a->strings["View Photos"] = "Bilder anschauen"; +$a->strings["Network Posts"] = "Netzwerkbeiträge"; +$a->strings["View Contact"] = "Kontakt anzeigen"; +$a->strings["Send PM"] = "Private Nachricht senden"; +$a->strings["Poke"] = "Anstupsen"; $a->strings["%s likes this."] = "%s mag das."; $a->strings["%s doesn't like this."] = "%s mag das nicht."; $a->strings["%s attends."] = "%s nimmt teil."; @@ -366,6 +261,10 @@ $a->strings["Not Attending"] = array( 0 => "Nicht teilnehmend ", 1 => "Nicht teilnehmend", ); +$a->strings["Undecided"] = array( + 0 => "Unentschieden", + 1 => "Unentschieden", +); $a->strings["Miscellaneous"] = "Verschiedenes"; $a->strings["Birthday:"] = "Geburtstag:"; $a->strings["Age: "] = "Alter: "; @@ -389,7 +288,151 @@ $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["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."; +$a->strings["(no subject)"] = "(kein Betreff)"; +$a->strings["noreply"] = "noreply"; +$a->strings["%s\\'s birthday"] = "%ss Geburtstag"; +$a->strings["all-day"] = "ganztägig"; +$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["No events to display"] = "Keine Veranstaltung zum Anzeigen"; +$a->strings["l, F j"] = "l, F j"; +$a->strings["Edit event"] = "Veranstaltung bearbeiten"; +$a->strings["Delete event"] = "Veranstaltung löschen"; +$a->strings["link to source"] = "Link zum Originalbeitrag"; +$a->strings["Export"] = "Exportieren"; +$a->strings["Export calendar as ical"] = "Kalender als ical exportieren"; +$a->strings["Export calendar as csv"] = "Kalender als csv exportieren"; +$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL."; +$a->strings["Blocked domain"] = "Blockierte Daimain"; +$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["%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["Contact Photos"] = "Kontaktbilder"; +$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["newer"] = "neuer"; +$a->strings["older"] = "älter"; +$a->strings["first"] = "erste"; +$a->strings["prev"] = "vorige"; +$a->strings["next"] = "nächste"; +$a->strings["last"] = "letzte"; +$a->strings["Loading more entries..."] = "lade weitere Einträge..."; +$a->strings["The end"] = "Das Ende"; +$a->strings["No contacts"] = "Keine Kontakte"; +$a->strings["%d Contact"] = array( + 0 => "%d Kontakt", + 1 => "%d Kontakte", +); +$a->strings["View Contacts"] = "Kontakte anzeigen"; +$a->strings["Search"] = "Suche"; +$a->strings["Save"] = "Speichern"; +$a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, content"; +$a->strings["Full Text"] = "Volltext"; +$a->strings["Tags"] = "Tags"; +$a->strings["Contacts"] = "Kontakte"; +$a->strings["poke"] = "anstupsen"; +$a->strings["poked"] = "stupste"; +$a->strings["ping"] = "anpingen"; +$a->strings["pinged"] = "pingte"; +$a->strings["prod"] = "knuffen"; +$a->strings["prodded"] = "knuffte"; +$a->strings["slap"] = "ohrfeigen"; +$a->strings["slapped"] = "ohrfeigte"; +$a->strings["finger"] = "befummeln"; +$a->strings["fingered"] = "befummelte"; +$a->strings["rebuff"] = "eine Abfuhr erteilen"; +$a->strings["rebuffed"] = "abfuhrerteilte"; +$a->strings["happy"] = "glücklich"; +$a->strings["sad"] = "traurig"; +$a->strings["mellow"] = "sanft"; +$a->strings["tired"] = "müde"; +$a->strings["perky"] = "frech"; +$a->strings["angry"] = "sauer"; +$a->strings["stupified"] = "verblüfft"; +$a->strings["puzzled"] = "verwirrt"; +$a->strings["interested"] = "interessiert"; +$a->strings["bitter"] = "verbittert"; +$a->strings["cheerful"] = "fröhlich"; +$a->strings["alive"] = "lebendig"; +$a->strings["annoyed"] = "verärgert"; +$a->strings["anxious"] = "unruhig"; +$a->strings["cranky"] = "schrullig"; +$a->strings["disturbed"] = "verstört"; +$a->strings["frustrated"] = "frustriert"; +$a->strings["motivated"] = "motiviert"; +$a->strings["relaxed"] = "entspannt"; +$a->strings["surprised"] = "überrascht"; +$a->strings["View Video"] = "Video ansehen"; +$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["activity"] = "Aktivität"; +$a->strings["comment"] = array( + 0 => "Kommentar", + 1 => "Kommentare", +); +$a->strings["post"] = "Beitrag"; +$a->strings["Item filed"] = "Beitrag abgelegt"; +$a->strings["Drop Contact"] = "Kontakt löschen"; +$a->strings["Organisation"] = "Organisation"; +$a->strings["News"] = "Nachrichten"; +$a->strings["Forum"] = "Forum"; +$a->strings["Image/photo"] = "Bild/Foto"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["$1 wrote:"] = "$1 hat geschrieben:"; +$a->strings["Encrypted content"] = "Verschlüsselter Inhalt"; +$a->strings["Invalid source protocol"] = "Ungültiges Quell-Protokoll"; +$a->strings["Invalid link protocol"] = "Ungültiges Link-Protokoll"; $a->strings["Friendica Notification"] = "Friendica-Benachrichtigung"; $a->strings["Thank You,"] = "Danke,"; $a->strings["%s Administrator"] = "der Administrator von %s"; @@ -449,125 +492,120 @@ $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["all-day"] = "ganztägig"; -$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["No events to display"] = "Keine Veranstaltung zum Anzeigen"; -$a->strings["l, F j"] = "l, F j"; -$a->strings["Edit event"] = "Veranstaltung bearbeiten"; -$a->strings["Delete event"] = "Veranstaltung löschen"; -$a->strings["link to source"] = "Link zum Originalbeitrag"; -$a->strings["Export"] = "Exportieren"; -$a->strings["Export calendar as ical"] = "Kalender als ical exportieren"; -$a->strings["Export calendar as csv"] = "Kalender als csv exportieren"; -$a->strings["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["Export Public Calendar"] = "Öffentlichen Kalender exportieren"; -$a->strings["Ability for visitors to download the public calendar"] = "Möglichkeit für Besucher den öffentlichen Kalender herunter zu laden"; -$a->strings["Post Composition Features"] = "Beitragserstellung Features"; -$a->strings["Post Preview"] = "Beitragsvorschau"; -$a->strings["Allow previewing posts and comments before publishing them"] = "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben."; -$a->strings["Auto-mention Forums"] = "Foren automatisch erwähnen"; -$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert wurde."; -$a->strings["Network Sidebar Widgets"] = "Widgets für Netzwerk und Seitenleiste"; -$a->strings["Search by Date"] = "Archiv"; -$a->strings["Ability to select posts by date ranges"] = "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"; -$a->strings["List Forums"] = "Zeige Foren"; -$a->strings["Enable widget to display the forums your are connected with"] = "Aktiviere Widget, um die Foren mit denen du verbunden bist anzuzeigen"; -$a->strings["Group Filter"] = "Gruppen Filter"; -$a->strings["Enable widget to display Network posts only from selected group"] = "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."; -$a->strings["Network Filter"] = "Netzwerk Filter"; -$a->strings["Enable widget to display Network posts only from selected network"] = "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren."; -$a->strings["Saved Searches"] = "Gespeicherte Suchen"; -$a->strings["Save search terms for re-use"] = "Speichere Suchanfragen für spätere Wiederholung."; -$a->strings["Network Tabs"] = "Netzwerk Reiter"; -$a->strings["Network Personal Tab"] = "Netzwerk-Reiter: Persönlich"; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen Du interagiert hast"; -$a->strings["Network New Tab"] = "Netzwerk-Reiter: Neue"; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden"; -$a->strings["Network Shared Links Tab"] = "Netzwerk-Reiter: Geteilte Links"; -$a->strings["Enable tab to display only Network posts with links in them"] = "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält"; -$a->strings["Post/Comment Tools"] = "Werkzeuge für Beiträge und Kommentare"; -$a->strings["Multiple Deletion"] = "Mehrere Beiträge löschen"; -$a->strings["Select and delete multiple posts/comments at once"] = "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"; -$a->strings["Edit Sent Posts"] = "Gesendete Beiträge editieren"; -$a->strings["Edit and correct posts and comments after sending"] = "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren."; -$a->strings["Tagging"] = "Tagging"; -$a->strings["Ability to tag existing posts"] = "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."; -$a->strings["Post Categories"] = "Beitragskategorien"; -$a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen"; -$a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren"; -$a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'"; -$a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"; -$a->strings["Star Posts"] = "Beiträge Markieren"; -$a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren"; -$a->strings["Mute Post Notifications"] = "Benachrichtigungen für Beiträge Stumm schalten"; -$a->strings["Ability to mute notifications for a thread"] = "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können"; -$a->strings["Advanced Profile Settings"] = "Erweiterte Profil-Einstellungen"; -$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Zeige Besuchern öffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite"; -$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL."; -$a->strings["Blocked domain"] = "Blockierte Daimain"; -$a->strings["Connect URL missing."] = "Connect-URL fehlt"; -$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."; -$a->strings["The profile address specified does not provide adequate information."] = "Die angegebene Profiladresse liefert unzureichende Informationen."; -$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden."; -$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."; -$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können."; -$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen."; -$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen könnten auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."; -$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte"; -$a->strings["Everybody"] = "Alle Kontakte"; -$a->strings["edit"] = "bearbeiten"; -$a->strings["Groups"] = "Gruppen"; -$a->strings["Edit groups"] = "Gruppen bearbeiten"; -$a->strings["Edit group"] = "Gruppe bearbeiten"; -$a->strings["Create a new group"] = "Neue Gruppe erstellen"; -$a->strings["Group Name: "] = "Gruppenname:"; -$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe"; -$a->strings["add"] = "hinzufügen"; +$a->strings["[no subject]"] = "[kein Betreff]"; +$a->strings["Wall Photos"] = "Pinnwand-Bilder"; +$a->strings["Nothing new here"] = "Keine Neuigkeiten"; +$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen"; +$a->strings["Logout"] = "Abmelden"; +$a->strings["End this session"] = "Diese Sitzung beenden"; +$a->strings["Status"] = "Status"; +$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; +$a->strings["Profile"] = "Profil"; +$a->strings["Your profile page"] = "Deine Profilseite"; +$a->strings["Photos"] = "Bilder"; +$a->strings["Your photos"] = "Deine Fotos"; +$a->strings["Videos"] = "Videos"; +$a->strings["Your videos"] = "Deine Videos"; +$a->strings["Events"] = "Veranstaltungen"; +$a->strings["Your events"] = "Deine Ereignisse"; +$a->strings["Personal notes"] = "Persönliche Notizen"; +$a->strings["Your personal notes"] = "Deine persönlichen Notizen"; +$a->strings["Login"] = "Anmeldung"; +$a->strings["Sign in"] = "Anmelden"; +$a->strings["Home Page"] = "Homepage"; +$a->strings["Register"] = "Registrieren"; +$a->strings["Create an account"] = "Nutzerkonto erstellen"; +$a->strings["Help"] = "Hilfe"; +$a->strings["Help and documentation"] = "Hilfe und Dokumentation"; +$a->strings["Apps"] = "Apps"; +$a->strings["Addon applications, utilities, games"] = "Addon Anwendungen, Dienstprogramme, Spiele"; +$a->strings["Search site content"] = "Inhalt der Seite durchsuchen"; +$a->strings["Community"] = "Gemeinschaft"; +$a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite"; +$a->strings["Conversations on the network"] = "Unterhaltungen im Netzwerk"; +$a->strings["Events and Calendar"] = "Ereignisse und Kalender"; +$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["Notifications"] = "Benachrichtigungen"; +$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen"; +$a->strings["Mark as seen"] = "Als gelesen markieren"; +$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen"; +$a->strings["Messages"] = "Nachrichten"; +$a->strings["Private mail"] = "Private E-Mail"; +$a->strings["Inbox"] = "Eingang"; +$a->strings["Outbox"] = "Ausgang"; +$a->strings["New Message"] = "Neue Nachricht"; +$a->strings["Manage"] = "Verwalten"; +$a->strings["Manage other pages"] = "Andere Seiten verwalten"; +$a->strings["Delegations"] = "Delegationen"; +$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite"; +$a->strings["Settings"] = "Einstellungen"; +$a->strings["Account settings"] = "Kontoeinstellungen"; +$a->strings["Profiles"] = "Profile"; +$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren"; +$a->strings["Manage/edit friends and contacts"] = " Kontakte verwalten/editieren"; +$a->strings["Admin"] = "Administration"; +$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration"; +$a->strings["Navigation"] = "Navigation"; +$a->strings["Site map"] = "Sitemap"; +$a->strings["view full size"] = "Volle Größe anzeigen"; +$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["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."; +$a->strings["An invitation is required."] = "Du benötigst eine Einladung."; +$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht überprüft werden."; +$a->strings["Invalid OpenID url"] = "Ungültige OpenID URL"; +$a->strings["Please enter the required information."] = "Bitte trage die erforderlichen Informationen ein."; +$a->strings["Please use a shorter name."] = "Bitte verwende einen kürzeren Namen."; +$a->strings["Name too short."] = "Der Name ist zu kurz."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein."; +$a->strings["Your email domain is not among those allowed on this site."] = "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."; +$a->strings["Not a valid email address."] = "Keine gültige E-Mail-Adresse."; +$a->strings["Cannot use that email."] = "Konnte diese E-Mail-Adresse nicht verwenden."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen."; +$a->strings["Nickname is already registered. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."; +$a->strings["An error occurred during registration. Please try again."] = "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."; +$a->strings["default"] = "Standard"; +$a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."; +$a->strings["Friends"] = "Kontakte"; +$a->strings["Profile Photos"] = "Profilbilder"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde muss noch vom Admin des Knotens geprüft werden."; +$a->strings["Registration at %s"] = "Registrierung als %s"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde eingerichtet."; +$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3\$s\n\tBenutzernamename:\t%1\$s\n\tPasswort:\t%5\$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2\$s."; +$a->strings["Registration details for %s"] = "Details der Registration von %s"; +$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."; +$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."; +$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."; +$a->strings["There are no tables on MyISAM."] = "Es gibt keine MyISAM Tabellen."; +$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["\nError %d occurred during database update:\n%s\n"] = "\nFehler %d beim Update der Datenbank aufgetreten\n%s\n"; +$a->strings["Errors encountered performing database changes: "] = "Fehler beim Ändern der Datenbank aufgetreten"; +$a->strings[": Database update"] = ": Datenbank Update"; +$a->strings["%s: updating %s table."] = "%s: aktualisiere Tabelle %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["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden."; $a->strings["Edit profile"] = "Profil bearbeiten"; @@ -621,44 +659,6 @@ $a->strings["Profile Details"] = "Profildetails"; $a->strings["Photo Albums"] = "Fotoalben"; $a->strings["Personal Notes"] = "Persönliche Notizen"; $a->strings["Only You Can See This"] = "Nur Du kannst das sehen"; -$a->strings["view full size"] = "Volle Größe anzeigen"; -$a->strings["Embedded content"] = "Eingebetteter Inhalt"; -$a->strings["Embedding disabled"] = "Einbettungen deaktiviert"; -$a->strings["Contact Photos"] = "Kontaktbilder"; -$a->strings["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."; -$a->strings["An invitation is required."] = "Du benötigst eine Einladung."; -$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht überprüft werden."; -$a->strings["Invalid OpenID url"] = "Ungültige OpenID URL"; -$a->strings["Please enter the required information."] = "Bitte trage die erforderlichen Informationen ein."; -$a->strings["Please use a shorter name."] = "Bitte verwende einen kürzeren Namen."; -$a->strings["Name too short."] = "Der Name ist zu kurz."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein."; -$a->strings["Your email domain is not among those allowed on this site."] = "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."; -$a->strings["Not a valid email address."] = "Keine gültige E-Mail-Adresse."; -$a->strings["Cannot use that email."] = "Konnte diese E-Mail-Adresse nicht verwenden."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen."; -$a->strings["Nickname is already registered. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."; -$a->strings["An error occurred during registration. Please try again."] = "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."; -$a->strings["default"] = "Standard"; -$a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."; -$a->strings["Profile Photos"] = "Profilbilder"; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde muss noch vom Admin des Knotens geprüft werden."; -$a->strings["Registration at %s"] = "Registrierung als %s"; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde eingerichtet."; -$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3\$s\n\tBenutzernamename:\t%1\$s\n\tPasswort:\t%5\$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2\$s."; -$a->strings["Registration details for %s"] = "Details der Registration von %s"; -$a->strings["There are no tables on MyISAM."] = "Es gibt keine MyISAM Tabellen."; -$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["\nError %d occurred during database update:\n%s\n"] = "\nFehler %d beim Update der Datenbank aufgetreten\n%s\n"; -$a->strings["Errors encountered performing database changes: "] = "Fehler beim Ändern der Datenbank aufgetreten"; -$a->strings[": Database update"] = ": Datenbank Update"; -$a->strings["%s: updating %s table."] = "%s: aktualisiere Tabelle %s"; -$a->strings["%s\\'s birthday"] = "%ss Geburtstag"; -$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora"; -$a->strings["Attachments:"] = "Anhänge:"; $a->strings["[Name Withheld]"] = "[Name unterdrückt]"; $a->strings["Item not found."] = "Beitrag nicht gefunden."; $a->strings["Do you really want to delete this item?"] = "Möchtest Du wirklich dieses Item löschen?"; @@ -669,65 +669,65 @@ $a->strings["%s is now following %s."] = "%s folgt nun %s"; $a->strings["following"] = "folgen"; $a->strings["%s stopped following %s."] = "%s hat aufgehört %s zu folgen"; $a->strings["stopped following"] = "wird nicht mehr gefolgt"; -$a->strings["newer"] = "neuer"; -$a->strings["older"] = "älter"; -$a->strings["first"] = "erste"; -$a->strings["prev"] = "vorige"; -$a->strings["next"] = "nächste"; -$a->strings["last"] = "letzte"; -$a->strings["Loading more entries..."] = "lade weitere Einträge..."; -$a->strings["The end"] = "Das Ende"; -$a->strings["No contacts"] = "Keine Kontakte"; -$a->strings["%d Contact"] = array( - 0 => "%d Kontakt", - 1 => "%d Kontakte", -); -$a->strings["View Contacts"] = "Kontakte anzeigen"; -$a->strings["Save"] = "Speichern"; -$a->strings["poke"] = "anstupsen"; -$a->strings["poked"] = "stupste"; -$a->strings["ping"] = "anpingen"; -$a->strings["pinged"] = "pingte"; -$a->strings["prod"] = "knuffen"; -$a->strings["prodded"] = "knuffte"; -$a->strings["slap"] = "ohrfeigen"; -$a->strings["slapped"] = "ohrfeigte"; -$a->strings["finger"] = "befummeln"; -$a->strings["fingered"] = "befummelte"; -$a->strings["rebuff"] = "eine Abfuhr erteilen"; -$a->strings["rebuffed"] = "abfuhrerteilte"; -$a->strings["happy"] = "glücklich"; -$a->strings["sad"] = "traurig"; -$a->strings["mellow"] = "sanft"; -$a->strings["tired"] = "müde"; -$a->strings["perky"] = "frech"; -$a->strings["angry"] = "sauer"; -$a->strings["stupified"] = "verblüfft"; -$a->strings["puzzled"] = "verwirrt"; -$a->strings["interested"] = "interessiert"; -$a->strings["bitter"] = "verbittert"; -$a->strings["cheerful"] = "fröhlich"; -$a->strings["alive"] = "lebendig"; -$a->strings["annoyed"] = "verärgert"; -$a->strings["anxious"] = "unruhig"; -$a->strings["cranky"] = "schrullig"; -$a->strings["disturbed"] = "verstört"; -$a->strings["frustrated"] = "frustriert"; -$a->strings["motivated"] = "motiviert"; -$a->strings["relaxed"] = "entspannt"; -$a->strings["surprised"] = "überrascht"; -$a->strings["View Video"] = "Video ansehen"; -$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["activity"] = "Aktivität"; -$a->strings["comment"] = array( - 0 => "Kommentar", - 1 => "Kommentare", -); -$a->strings["post"] = "Beitrag"; -$a->strings["Item filed"] = "Beitrag abgelegt"; +$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["Male"] = "Männlich"; +$a->strings["Female"] = "Weiblich"; +$a->strings["Currently Male"] = "Momentan männlich"; +$a->strings["Currently Female"] = "Momentan weiblich"; +$a->strings["Mostly Male"] = "Hauptsächlich männlich"; +$a->strings["Mostly Female"] = "Hauptsächlich weiblich"; +$a->strings["Transgender"] = "Transgender"; +$a->strings["Intersex"] = "Intersex"; +$a->strings["Transsexual"] = "Transsexuell"; +$a->strings["Hermaphrodite"] = "Hermaphrodit"; +$a->strings["Neuter"] = "Neuter"; +$a->strings["Non-specific"] = "Nicht spezifiziert"; +$a->strings["Other"] = "Andere"; +$a->strings["Males"] = "Männer"; +$a->strings["Females"] = "Frauen"; +$a->strings["Gay"] = "Schwul"; +$a->strings["Lesbian"] = "Lesbisch"; +$a->strings["No Preference"] = "Keine Vorlieben"; +$a->strings["Bisexual"] = "Bisexuell"; +$a->strings["Autosexual"] = "Autosexual"; +$a->strings["Abstinent"] = "Abstinent"; +$a->strings["Virgin"] = "Jungfrauen"; +$a->strings["Deviant"] = "Deviant"; +$a->strings["Fetish"] = "Fetish"; +$a->strings["Oodles"] = "Oodles"; +$a->strings["Nonsexual"] = "Nonsexual"; +$a->strings["Single"] = "Single"; +$a->strings["Lonely"] = "Einsam"; +$a->strings["Available"] = "Verfügbar"; +$a->strings["Unavailable"] = "Nicht verfügbar"; +$a->strings["Has crush"] = "verknallt"; +$a->strings["Infatuated"] = "verliebt"; +$a->strings["Dating"] = "Dating"; +$a->strings["Unfaithful"] = "Untreu"; +$a->strings["Sex Addict"] = "Sexbesessen"; +$a->strings["Friends/Benefits"] = "Freunde/Zuwendungen"; +$a->strings["Casual"] = "Casual"; +$a->strings["Engaged"] = "Verlobt"; +$a->strings["Married"] = "Verheiratet"; +$a->strings["Imaginarily married"] = "imaginär verheiratet"; +$a->strings["Partners"] = "Partner"; +$a->strings["Cohabiting"] = "zusammenlebend"; +$a->strings["Common law"] = "wilde Ehe"; +$a->strings["Happy"] = "Glücklich"; +$a->strings["Not looking"] = "Nicht auf der Suche"; +$a->strings["Swinger"] = "Swinger"; +$a->strings["Betrayed"] = "Betrogen"; +$a->strings["Separated"] = "Getrennt"; +$a->strings["Unstable"] = "Unstabil"; +$a->strings["Divorced"] = "Geschieden"; +$a->strings["Imaginarily divorced"] = "imaginär geschieden"; +$a->strings["Widowed"] = "Verwitwet"; +$a->strings["Uncertain"] = "Unsicher"; +$a->strings["It's complicated"] = "Ist kompliziert"; +$a->strings["Don't care"] = "Ist mir nicht wichtig"; +$a->strings["Ask me"] = "Frag mich"; $a->strings["No friends to display."] = "Keine Kontakte zum Anzeigen."; $a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren"; $a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"; @@ -739,101 +739,33 @@ $a->strings["Applications"] = "Anwendungen"; $a->strings["No installed applications."] = "Keine Applikationen installiert."; $a->strings["Item not available."] = "Beitrag nicht verfügbar."; $a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden."; +$a->strings["Source (bbcode) text:"] = "Quelle (bbcode) Text:"; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Eingabe (Diaspora) nach BBCode zu konvertierender Text:"; +$a->strings["Source input: "] = "Originaltext:"; +$a->strings["bb2html (raw HTML): "] = "bb2html (reines HTML): "; +$a->strings["bb2html: "] = "bb2html: "; +$a->strings["bb2html2bb: "] = "bb2html2bb: "; +$a->strings["bb2md: "] = "bb2md: "; +$a->strings["bb2md2html: "] = "bb2md2html: "; +$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; +$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; +$a->strings["Source input (Diaspora format): "] = "Originaltext (Diaspora Format): "; +$a->strings["diaspora2bb: "] = "diaspora2bb: "; $a->strings["The post was created"] = "Der Beitrag wurde angelegt"; +$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt."; +$a->strings["View"] = "Ansehen"; +$a->strings["Previous"] = "Vorherige"; +$a->strings["Next"] = "Nächste"; +$a->strings["list"] = "Liste"; +$a->strings["User not found"] = "Nutzer nicht gefunden"; +$a->strings["This calendar format is not supported"] = "Dieses Kalenderformat wird nicht unterstützt."; +$a->strings["No exportable data found"] = "Keine exportierbaren Daten gefunden"; +$a->strings["calendar"] = "Kalender"; $a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte."; $a->strings["Common Friends"] = "Gemeinsame Kontakte"; -$a->strings["%d contact edited."] = array( - 0 => "%d Kontakt bearbeitet.", - 1 => "%d Kontakte bearbeitet.", -); -$a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen."; -$a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden."; -$a->strings["Contact updated."] = "Kontakt aktualisiert."; -$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen."; -$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert"; -$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben"; -$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert"; -$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert"; -$a->strings["Contact has been archived"] = "Kontakt wurde archiviert"; -$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt"; -$a->strings["Drop contact"] = "Kontakt löschen"; -$a->strings["Do you really want to delete this contact?"] = "Möchtest Du wirklich diesen Kontakt löschen?"; -$a->strings["Contact has been removed."] = "Kontakt wurde entfernt."; -$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft"; -$a->strings["You are sharing with %s"] = "Du teilst mit %s"; -$a->strings["%s is sharing with you"] = "%s teilt mit Dir"; -$a->strings["Private communications are not available for this contact."] = "Private Kommunikation ist für diesen Kontakt nicht verfügbar."; -$a->strings["Never"] = "Niemals"; -$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)"; -$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)"; -$a->strings["Suggest friends"] = "Kontakte vorschlagen"; -$a->strings["Network type: %s"] = "Netzwerktyp: %s"; -$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!"; -$a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen"; -$a->strings["Disabled"] = "Deaktiviert"; -$a->strings["Fetch information"] = "Beziehe Information"; -$a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte"; -$a->strings["Contact"] = "Kontakt"; -$a->strings["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["Last update:"] = "Letzte Aktualisierung: "; -$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren"; -$a->strings["Update now"] = "Jetzt aktualisieren"; -$a->strings["Unblock"] = "Entsperren"; -$a->strings["Block"] = "Sperren"; -$a->strings["Unignore"] = "Ignorieren aufheben"; -$a->strings["Ignore"] = "Ignorieren"; -$a->strings["Currently blocked"] = "Derzeit geblockt"; -$a->strings["Currently ignored"] = "Derzeit ignoriert"; -$a->strings["Currently archived"] = "Momentan archiviert"; -$a->strings["Hide this contact from others"] = "Verbirg diesen Kontakt vor Anderen"; -$a->strings["Replies/likes to your public posts 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["Actions"] = "Aktionen"; -$a->strings["Contact Settings"] = "Kontakteinstellungen"; -$a->strings["Suggestions"] = "Kontaktvorschläge"; -$a->strings["Suggest potential friends"] = "Kontakte 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["Search your contacts"] = "Suche in deinen Kontakten"; -$a->strings["Results for: %s"] = "Ergebnisse für: %s"; -$a->strings["Update"] = "Aktualisierungen"; -$a->strings["Archive"] = "Archivieren"; -$a->strings["Unarchive"] = "Aus Archiv zurückholen"; -$a->strings["Batch Actions"] = "Stapelverarbeitung"; -$a->strings["View all contacts"] = "Alle Kontakte anzeigen"; -$a->strings["View all common friends"] = "Alle Kontakte anzeigen"; -$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen"; -$a->strings["Mutual Friendship"] = "Beidseitige Freundschaft"; -$a->strings["is a fan of yours"] = "ist ein Fan von dir"; -$a->strings["you are a fan of"] = "Du bist Fan von"; -$a->strings["Edit contact"] = "Kontakt bearbeiten"; -$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten"; -$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten"; -$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten"; -$a->strings["Delete contact"] = "Lösche den Kontakt"; +$a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert."; +$a->strings["Not available."] = "Nicht verfügbar."; +$a->strings["No results."] = "Keine Ergebnisse."; $a->strings["No such group"] = "Es gibt keine solche Gruppe"; $a->strings["Group is empty"] = "Gruppe ist leer"; $a->strings["Group: %s"] = "Gruppe: %s"; @@ -851,6 +783,7 @@ $a->strings["Share this"] = "Weitersagen"; $a->strings["share"] = "Teilen"; $a->strings["This is you"] = "Das bist Du"; $a->strings["Comment"] = "Kommentar"; +$a->strings["Submit"] = "Senden"; $a->strings["Bold"] = "Fett"; $a->strings["Italic"] = "Kursiv"; $a->strings["Underline"] = "Unterstrichen"; @@ -908,218 +841,6 @@ $a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte"; $a->strings["Remove"] = "Entfernen"; $a->strings["Add"] = "Hinzufügen"; $a->strings["No entries."] = "Keine Einträge."; -$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen"; -$a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert."; -$a->strings["Global Directory"] = "Weltweites Verzeichnis"; -$a->strings["Find on this site"] = "Auf diesem Server suchen"; -$a->strings["Results for:"] = "Ergebnisse für:"; -$a->strings["Site Directory"] = "Verzeichnis"; -$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein)."; -$a->strings["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["Item not found"] = "Beitrag nicht gefunden"; -$a->strings["Edit post"] = "Beitrag bearbeiten"; -$a->strings["Files"] = "Dateien"; -$a->strings["Not Found"] = "Nicht gefunden"; -$a->strings["- select -"] = "- auswählen -"; -$a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet."; -$a->strings["Suggest Friends"] = "Kontakte vorschlagen"; -$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor"; -$a->strings["No profile"] = "Kein Profil"; -$a->strings["Help:"] = "Hilfe:"; -$a->strings["Page not found."] = "Seite nicht gefunden."; -$a->strings["Welcome to %s"] = "Willkommen zu %s"; -$a->strings["Total invitation limit exceeded."] = "Limit für Einladungen erreicht."; -$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse."; -$a->strings["Please join us on Friendica"] = "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"; -$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["Your message:"] = "Deine Nachricht:"; -$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["Time Conversion"] = "Zeitumrechnung"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann."; -$a->strings["UTC time: %s"] = "UTC Zeit: %s"; -$a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s"; -$a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s"; -$a->strings["Please select your timezone:"] = "Bitte wähle Deine Zeitzone:"; -$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar."; -$a->strings["Visible to:"] = "Sichtbar für:"; -$a->strings["No valid account found."] = "Kein gültiges Konto gefunden."; -$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nHallo %1\$s,\n\nAuf \"%2\$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast."; -$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1\$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2\$s\nBenutzername:\t%3\$s"; -$a->strings["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."; -$a->strings["Password Reset"] = "Passwort zurücksetzen"; -$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt."; -$a->strings["Your new password is"] = "Dein neues Passwort lautet"; -$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort - und dann"; -$a->strings["click here to login"] = "hier klicken, um Dich anzumelden"; -$a->strings["Your password may be changed from the 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["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu."; -$a->strings["is interested in:"] = "ist interessiert an:"; -$a->strings["Profile Match"] = "Profilübereinstimmungen"; -$a->strings["No matches"] = "Keine Übereinstimmungen"; -$a->strings["Mood"] = "Stimmung"; -$a->strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Kontakten"; -$a->strings["Welcome to Friendica"] = "Willkommen bei Friendica"; -$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder"; -$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."; -$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 Kontakte mit anderen im Friendica Netzwerk zu knüpfen.."; -$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 Kontakte und potentiellen Kontakte 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 Kontakte 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 Kontaktliste 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["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 Kontakten 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 Personen 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 Personen zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Leute vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."; -$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte"; -$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Sobald Du einige Kontakte 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["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind"; -$a->strings["No more system notifications."] = "Keine weiteren Systembenachrichtigungen."; -$a->strings["System Notifications"] = "Systembenachrichtigungen"; -$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht."; -$a->strings["Subscribing to OStatus contacts"] = "OStatus Kontakten folgen"; -$a->strings["No contact provided."] = "Keine Kontakte gefunden."; -$a->strings["Couldn't fetch information for contact."] = "Konnte die Kontaktinformationen nicht einholen."; -$a->strings["Couldn't fetch friends for contact."] = "Konnte die Kontaktliste des Kontakts nicht abfragen."; -$a->strings["Done"] = "Erledigt"; -$a->strings["success"] = "Erfolg"; -$a->strings["failed"] = "Fehlgeschlagen"; -$a->strings["Keep this window open until done."] = "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist."; -$a->strings["Not Extended"] = "Nicht erweitert."; -$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["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["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["Permission denied"] = "Zugriff verweigert"; -$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner."; -$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit"; -$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"; -$a->strings["Visible To"] = "Sichtbar für"; -$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)"; -$a->strings["Account approved."] = "Konto freigegeben."; -$a->strings["Registration revoked for %s"] = "Registrierung für %s wurde zurückgezogen"; -$a->strings["Please login."] = "Bitte melde Dich an."; -$a->strings["Remove My Account"] = "Konto löschen"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."; -$a->strings["Please enter your password for verification:"] = "Bitte gib Dein Passwort zur Verifikation ein:"; -$a->strings["Resubscribing to OStatus contacts"] = "Erneuern der OStatus Abonements"; -$a->strings["Error"] = "Fehler"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s"; -$a->strings["Do you really want to delete this suggestion?"] = "Möchtest Du wirklich diese Empfehlung löschen?"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."; -$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen"; -$a->strings["Tag removed"] = "Tag entfernt"; -$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen"; -$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: "; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."; -$a->strings["Import"] = "Import"; -$a->strings["Move account"] = "Account umziehen"; -$a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren."; -$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Kontakte darüber zu informieren, dass Du hierher umgezogen bist."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (GNU Social/Statusnet) oder von Diaspora importieren"; -$a->strings["Account file"] = "Account Datei"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""; -$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"; -$a->strings["No contacts."] = "Keine Kontakte."; -$a->strings["Access denied."] = "Zugriff verweigert."; -$a->strings["Invalid request."] = "Ungültige Anfrage"; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt."; -$a->strings["Or - did you try to upload an empty file?"] = "Oder - hast Du versucht, eine leere Datei hochzuladen?"; -$a->strings["File exceeds size limit of %s"] = "Die Datei ist größer als das erlaubte Limit von %s"; -$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen."; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."; -$a->strings["No recipient selected."] = "Kein Empfänger gewählt."; -$a->strings["Unable to check your home location."] = "Konnte Deinen Heimatort nicht bestimmen."; -$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden."; -$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen."; -$a->strings["Message sent."] = "Nachricht gesendet."; -$a->strings["No recipient."] = "Kein Empfänger."; -$a->strings["Send Private Message"] = "Private Nachricht senden"; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."; -$a->strings["To:"] = "An:"; -$a->strings["Subject:"] = "Betreff:"; -$a->strings["Source (bbcode) text:"] = "Quelle (bbcode) Text:"; -$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Eingabe (Diaspora) nach BBCode zu konvertierender Text:"; -$a->strings["Source input: "] = "Originaltext:"; -$a->strings["bb2html (raw HTML): "] = "bb2html (reines HTML): "; -$a->strings["bb2html: "] = "bb2html: "; -$a->strings["bb2html2bb: "] = "bb2html2bb: "; -$a->strings["bb2md: "] = "bb2md: "; -$a->strings["bb2md2html: "] = "bb2md2html: "; -$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; -$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; -$a->strings["Source input (Diaspora format): "] = "Originaltext (Diaspora Format): "; -$a->strings["diaspora2bb: "] = "diaspora2bb: "; -$a->strings["View"] = "Ansehen"; -$a->strings["Previous"] = "Vorherige"; -$a->strings["Next"] = "Nächste"; -$a->strings["list"] = "Liste"; -$a->strings["User not found"] = "Nutzer nicht gefunden"; -$a->strings["This calendar format is not supported"] = "Dieses Kalenderformat wird nicht unterstützt."; -$a->strings["No exportable data found"] = "Keine exportierbaren Daten gefunden"; -$a->strings["calendar"] = "Kalender"; -$a->strings["Not available."] = "Nicht verfügbar."; -$a->strings["No results."] = "Keine Ergebnisse."; $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."; @@ -1138,47 +859,18 @@ $a->strings["The ID provided by your system is a duplicate on our system. It sho $a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."; $a->strings["Unable to update your contact profile details on our system"] = "Die Updates für Dein Profil konnten nicht gespeichert werden"; $a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten"; -$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert."; -$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."; -$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden", - 1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden", -); -$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen."; -$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler."; -$a->strings["Profile unavailable."] = "Profil nicht verfügbar."; -$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Kontaktanfragen erhalten."; -$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."; -$a->strings["Invalid locator"] = "Ungültiger Locator"; -$a->strings["Invalid email address."] = "Ungültige E-Mail-Adresse."; -$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."; -$a->strings["You have already introduced yourself here."] = "Du hast Dich hier bereits vorgestellt."; -$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob Du bereits mit %s in Kontakt stehst."; -$a->strings["Invalid profile URL."] = "Ungültige Profil-URL."; -$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet."; -$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Entferntes abon­nie­ren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems. "; -$a->strings["Please login to confirm introduction."] = "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen."; -$a->strings["Incorrect identity currently logged in. Please login to 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"] = "Kontaktanfrage"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; -$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:"; -$a->strings["Does %s know you?"] = "Kennt %s Dich?"; -$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste."; -$a->strings["Your Identity Address:"] = "Adresse Deines Profils:"; -$a->strings["Submit Request"] = "Anfrage abschicken"; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen"; +$a->strings["Global Directory"] = "Weltweites Verzeichnis"; +$a->strings["Find on this site"] = "Auf diesem Server suchen"; +$a->strings["Results for:"] = "Ergebnisse für:"; +$a->strings["Site Directory"] = "Verzeichnis"; +$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein)."; $a->strings["People Search - %s"] = "Personensuche - %s"; $a->strings["Forum Search - %s"] = "Forensuche - %s"; +$a->strings["No matches"] = "Keine Übereinstimmungen"; +$a->strings["Item has been removed."] = "Eintrag wurde entfernt."; +$a->strings["Item not found"] = "Beitrag nicht gefunden"; +$a->strings["Edit post"] = "Beitrag bearbeiten"; $a->strings["Event can not end before it has started."] = "Die Veranstaltung kann nicht enden bevor sie beginnt."; $a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."; $a->strings["Create New Event"] = "Neue Veranstaltung erstellen"; @@ -1194,10 +886,19 @@ $a->strings["Title:"] = "Titel:"; $a->strings["Share this event"] = "Veranstaltung teilen"; $a->strings["Failed to remove event"] = "Entfernen der Veranstaltung fehlgeschlagen"; $a->strings["Event removed"] = "Veranstaltung enfternt"; +$a->strings["Files"] = "Dateien"; +$a->strings["Not Found"] = "Nicht gefunden"; +$a->strings["- select -"] = "- auswählen -"; +$a->strings["Submit Request"] = "Anfrage abschicken"; $a->strings["You already added this contact."] = "Du hast den Kontakt bereits hinzugefügt."; $a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."; $a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."; $a->strings["The network type couldn't be detected. Contact can't be added."] = "Der Netzwerktype wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden."; +$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:"; +$a->strings["Does %s know you?"] = "Kennt %s Dich?"; +$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:"; +$a->strings["Your Identity Address:"] = "Adresse Deines Profils:"; +$a->strings["Profile URL"] = "Profil URL"; $a->strings["Contact added"] = "Kontakt hinzugefügt"; $a->strings["This is Friendica, version"] = "Dies ist Friendica, Version"; $a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist"; @@ -1209,10 +910,14 @@ $a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterun $a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert"; $a->strings["On this server the following remote servers are blocked."] = "Auf diesem Server werden die folgenden entfernten Server blockiert."; $a->strings["Reason for the block"] = "Begründung für die Blockierung"; +$a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet."; +$a->strings["Suggest Friends"] = "Kontakte vorschlagen"; +$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor"; $a->strings["Group created."] = "Gruppe erstellt."; $a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen."; $a->strings["Group not found."] = "Gruppe nicht gefunden."; $a->strings["Group name changed."] = "Gruppenname geändert."; +$a->strings["Permission denied"] = "Zugriff verweigert"; $a->strings["Save Group"] = "Gruppe speichern"; $a->strings["Create a group of contacts/friends."] = "Eine Kontaktgruppe anlegen."; $a->strings["Group removed."] = "Gruppe entfernt."; @@ -1221,386 +926,14 @@ $a->strings["Delete Group"] = "Gruppe löschen"; $a->strings["Group Editor"] = "Gruppeneditor"; $a->strings["Edit Group Name"] = "Gruppen Name bearbeiten"; $a->strings["Members"] = "Mitglieder"; +$a->strings["All Contacts"] = "Alle Kontakte"; $a->strings["Remove Contact"] = "Kontakt löschen"; $a->strings["Add Contact"] = "Kontakt hinzufügen"; -$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["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden."; -$a->strings["Do you really want to delete this message?"] = "Möchtest Du wirklich diese Nachricht löschen?"; -$a->strings["Message deleted."] = "Nachricht gelöscht."; -$a->strings["Conversation removed."] = "Unterhaltung gelöscht."; -$a->strings["No messages."] = "Keine Nachrichten."; -$a->strings["Message not available."] = "Nachricht nicht verfügbar."; -$a->strings["Delete message"] = "Nachricht löschen"; -$a->strings["Delete conversation"] = "Unterhaltung löschen"; -$a->strings["No secure communications available. You 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["Unknown sender - %s"] = "'Unbekannter Absender - %s"; -$a->strings["You and %s"] = "Du und %s"; -$a->strings["%s and You"] = "%s und Du"; -$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A"; -$a->strings["%d message"] = array( - 0 => "%d Nachricht", - 1 => "%d Nachrichten", -); -$a->strings["Remove term"] = "Begriff entfernen"; -$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array( - 0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem Netzwerk das keine nicht öffentlichen Beiträge empfangen kann.", - 1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus Netzwerken die keine nicht-öffentlichen Beiträge empfangen können.", -); -$a->strings["Messages in this group won't be send to these receivers."] = "Beiträge in dieser Gruppe werden deshalb nicht an diese Personen zugestellt werden."; -$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["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["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["Recent Photos"] = "Neueste Fotos"; -$a->strings["Upload New Photos"] = "Neue Fotos hochladen"; -$a->strings["everybody"] = "jeder"; -$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar"; -$a->strings["Album not found."] = "Album nicht gefunden."; -$a->strings["Delete Album"] = "Album löschen"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?"; -$a->strings["Delete Photo"] = "Foto löschen"; -$a->strings["Do you really want to delete this photo?"] = "Möchtest Du wirklich dieses Foto löschen?"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt"; -$a->strings["a photo"] = "einem Foto"; -$a->strings["Image file is empty."] = "Bilddatei ist leer."; -$a->strings["No photos selected"] = "Keine Bilder ausgewählt"; -$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt."; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."; -$a->strings["Upload Photos"] = "Bilder hochladen"; -$a->strings["New album name: "] = "Name des neuen Albums: "; -$a->strings["or existing album name: "] = "oder existierender Albumname: "; -$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen"; -$a->strings["Show to Groups"] = "Zeige den Gruppen"; -$a->strings["Show to Contacts"] = "Zeige den Kontakten"; -$a->strings["Private Photo"] = "Privates Foto"; -$a->strings["Public Photo"] = "Öffentliches Foto"; -$a->strings["Edit Album"] = "Album bearbeiten"; -$a->strings["Show Newest First"] = "Zeige neueste zuerst"; -$a->strings["Show Oldest First"] = "Zeige älteste zuerst"; -$a->strings["View Photo"] = "Foto betrachten"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."; -$a->strings["Photo not available"] = "Foto nicht verfügbar"; -$a->strings["View photo"] = "Fotos ansehen"; -$a->strings["Edit photo"] = "Foto bearbeiten"; -$a->strings["Use as profile photo"] = "Als Profilbild verwenden"; -$a->strings["View Full Size"] = "Betrachte Originalgröße"; -$a->strings["Tags: "] = "Tags: "; -$a->strings["[Remove any tag]"] = "[Tag entfernen]"; -$a->strings["New album name"] = "Name des neuen Albums"; -$a->strings["Caption"] = "Bildunterschrift"; -$a->strings["Add a Tag"] = "Tag hinzufügen"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; -$a->strings["Do not rotate"] = "Nicht rotieren"; -$a->strings["Rotate CW (right)"] = "Drehen US (rechts)"; -$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)"; -$a->strings["Private photo"] = "Privates Foto"; -$a->strings["Public photo"] = "Öffentliches Foto"; -$a->strings["Map"] = "Karte"; -$a->strings["View Album"] = "Album betrachten"; -$a->strings["Only logged in users are permitted to perform a probing."] = "Nur eingeloggten Benutzern ist das Untersuchen von Adressen gestattet."; -$a->strings["Tips for New Members"] = "Tipps für neue Nutzer"; -$a->strings["Profile deleted."] = "Profil gelöscht."; -$a->strings["Profile-"] = "Profil-"; -$a->strings["New profile created."] = "Neues Profil angelegt."; -$a->strings["Profile unavailable to clone."] = "Profil nicht zum Duplizieren verfügbar."; -$a->strings["Profile Name is required."] = "Profilname ist erforderlich."; -$a->strings["Marital Status"] = "Familienstand"; -$a->strings["Romantic Partner"] = "Romanze"; -$a->strings["Work/Employment"] = "Arbeit / Beschäftigung"; -$a->strings["Religion"] = "Religion"; -$a->strings["Political Views"] = "Politische Ansichten"; -$a->strings["Gender"] = "Geschlecht"; -$a->strings["Sexual Preference"] = "Sexuelle Vorlieben"; -$a->strings["XMPP"] = "XMPP"; -$a->strings["Homepage"] = "Webseite"; -$a->strings["Interests"] = "Interessen"; -$a->strings["Address"] = "Adresse"; -$a->strings["Location"] = "Wohnort"; -$a->strings["Profile updated."] = "Profil aktualisiert."; -$a->strings[" and "] = " und "; -$a->strings["public profile"] = "öffentliches Profil"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s hat %2\$s geändert auf “%3\$s”"; -$a->strings[" - Visit %1\$s's %2\$s"] = " – %1\$ss %2\$s besuchen"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat folgendes aktualisiert %2\$s, verändert wurde %3\$s."; -$a->strings["Hide contacts and friends:"] = "Kontakte und Freunde verbergen"; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"; -$a->strings["Show more profile fields:"] = "Zeige mehr Profil-Felder:"; -$a->strings["Profile Actions"] = "Profilaktionen"; -$a->strings["Edit Profile Details"] = "Profil bearbeiten"; -$a->strings["Change Profile Photo"] = "Profilbild ändern"; -$a->strings["View this profile"] = "Dieses Profil anzeigen"; -$a->strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen verwenden"; -$a->strings["Clone this profile"] = "Dieses Profil duplizieren"; -$a->strings["Delete this profile"] = "Dieses Profil löschen"; -$a->strings["Basic information"] = "Grundinformationen"; -$a->strings["Profile picture"] = "Profilbild"; -$a->strings["Preferences"] = "Vorlieben"; -$a->strings["Status information"] = "Status Informationen"; -$a->strings["Additional information"] = "Zusätzliche Informationen"; -$a->strings["Relation"] = "Beziehung"; -$a->strings["Your Gender:"] = "Dein Geschlecht:"; -$a->strings[" Marital Status:"] = " Beziehungsstatus:"; -$a->strings["Example: fishing photography software"] = "Beispiel: Fischen Fotografie Software"; -$a->strings["Profile Name:"] = "Profilname:"; -$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["Your Full Name:"] = "Dein kompletter Name:"; -$a->strings["Title/Description:"] = "Titel/Beschreibung:"; -$a->strings["Street Address:"] = "Adresse:"; -$a->strings["Locality/City:"] = "Wohnort:"; -$a->strings["Region/State:"] = "Region/Bundesstaat:"; -$a->strings["Postal/Zip Code:"] = "Postleitzahl:"; -$a->strings["Country:"] = "Land:"; -$a->strings["Who: (if applicable)"] = "Wer: (falls anwendbar)"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com"; -$a->strings["Since [date]:"] = "Seit [Datum]:"; -$a->strings["Tell us about yourself..."] = "Erzähle uns ein bisschen von Dir …"; -$a->strings["XMPP (Jabber) address:"] = "XMPP (Jabber) Adresse"; -$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "Die XMPP Adresse wird an deine Kontakte verteilt werden, so dass sie auch über XMPP mit dir in Kontakt treten können."; -$a->strings["Homepage URL:"] = "Adresse der Homepage:"; -$a->strings["Religious Views:"] = "Religiöse Ansichten:"; -$a->strings["Public Keywords:"] = "Öffentliche Schlüsselwörter:"; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Wird verwendet, um potentielle Kontakte zu finden, kann von Kontakten eingesehen werden)"; -$a->strings["Private Keywords:"] = "Private Schlüsselwörter:"; -$a->strings["(Used for searching profiles, never shown to others)"] = "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"; -$a->strings["Musical interests"] = "Musikalische Interessen"; -$a->strings["Books, literature"] = "Bücher, Literatur"; -$a->strings["Television"] = "Fernsehen"; -$a->strings["Film/dance/culture/entertainment"] = "Filme/Tänze/Kultur/Unterhaltung"; -$a->strings["Hobbies/Interests"] = "Hobbies/Interessen"; -$a->strings["Love/romance"] = "Liebe/Romantik"; -$a->strings["Work/employment"] = "Arbeit/Anstellung"; -$a->strings["School/education"] = "Schule/Ausbildung"; -$a->strings["Contact information and Social Networks"] = "Kontaktinformationen und Soziale Netzwerke"; -$a->strings["Edit/Manage Profiles"] = "Bearbeite/Verwalte Profile"; -$a->strings["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["Registration successful."] = "Registrierung erfolgreich."; -$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; -$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; -$a->strings["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["Note for the admin"] = "Hinweis für den Admin"; -$a->strings["Leave a message for the admin, why you want to join this node"] = "Hinterlasse eine Nachricht an den Admin, warum du einen Account auf dieser Instanz haben möchtest."; -$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; -$a->strings["Your invitation ID: "] = "ID Deiner Einladung: "; -$a->strings["Registration"] = "Registrierung"; -$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Dein vollständiger Name (z.B. Hans Mustermann, echt oder echt erscheinend):"; -$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["Import your profile to this friendica instance"] = "Importiere Dein Profil auf diese Friendica Instanz"; -$a->strings["Only logged in users are permitted to perform a search."] = "Nur eingeloggten Benutzern ist das Suchen gestattet."; -$a->strings["Too Many Requests"] = "Zu viele Abfragen"; -$a->strings["Only one search per minute is permitted for not logged in users."] = "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet."; -$a->strings["Items tagged with: %s"] = "Beiträge die mit %s getaggt sind"; -$a->strings["Account"] = "Nutzerkonto"; -$a->strings["Additional features"] = "Zusätzliche Features"; -$a->strings["Display"] = "Anzeige"; -$a->strings["Social Networks"] = "Soziale Netzwerke"; -$a->strings["Plugins"] = "Plugins"; -$a->strings["Connected apps"] = "Verbundene Programme"; -$a->strings["Export personal data"] = "Persönliche Daten exportieren"; -$a->strings["Remove account"] = "Konto löschen"; -$a->strings["Missing some important data!"] = "Wichtige Daten fehlen!"; -$a->strings["Failed to connect with email account using the settings provided."] = "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich."; -$a->strings["Email settings updated."] = "E-Mail Einstellungen bearbeitet."; -$a->strings["Features updated"] = "Features aktualisiert"; -$a->strings["Relocate message has been send to your contacts"] = "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."; -$a->strings["Wrong password."] = "Falsches Passwort."; -$a->strings["Password changed."] = "Passwort geändert."; -$a->strings["Password update failed. Please try again."] = "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."; -$a->strings[" Please use a shorter name."] = " Bitte verwende einen kürzeren Namen."; -$a->strings[" Name too short."] = " Name ist zu kurz."; -$a->strings["Wrong Password"] = "Falsches Passwort"; -$a->strings[" Not valid email."] = " Keine gültige E-Mail."; -$a->strings[" Cannot change to that email."] = "Ändern der E-Mail nicht möglich. "; -$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt."; -$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte."; -$a->strings["Settings updated."] = "Einstellungen aktualisiert."; -$a->strings["Add application"] = "Programm hinzufügen"; -$a->strings["Save Settings"] = "Einstellungen speichern"; -$a->strings["Consumer Key"] = "Consumer Key"; -$a->strings["Consumer Secret"] = "Consumer Secret"; -$a->strings["Redirect"] = "Umleiten"; -$a->strings["Icon url"] = "Icon URL"; -$a->strings["You can't edit this application."] = "Du kannst dieses Programm nicht bearbeiten."; -$a->strings["Connected Apps"] = "Verbundene Programme"; -$a->strings["Client key starts with"] = "Anwenderschlüssel beginnt mit"; -$a->strings["No name"] = "Kein Name"; -$a->strings["Remove authorization"] = "Autorisierung entziehen"; -$a->strings["No Plugin settings configured"] = "Keine Plugin-Einstellungen konfiguriert"; -$a->strings["Plugin Settings"] = "Plugin-Einstellungen"; -$a->strings["Off"] = "Aus"; -$a->strings["On"] = "An"; -$a->strings["Additional Features"] = "Zusätzliche Features"; -$a->strings["General Social Media Settings"] = "Allgemeine Einstellungen zu Sozialen Medien"; -$a->strings["Disable intelligent shortening"] = "Intelligentes Link kürzen ausschalten"; -$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "Normalerweise versucht das System den besten Link zu finden um ihn zu gekürzten Postings hinzu zu fügen. Wird diese Option ausgewählt wird stets ein Link auf die originale Friendica Nachricht beigefügt."; -$a->strings["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["Default group for OStatus contacts"] = "Voreingestellte Gruppe für OStatus Kontakte"; -$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["enabled"] = "eingeschaltet"; -$a->strings["disabled"] = "ausgeschaltet"; -$a->strings["GNU Social (OStatus)"] = "GNU Social (OStatus)"; -$a->strings["Email access is disabled on this site."] = "Zugriff auf E-Mails für diese Seite deaktiviert."; -$a->strings["Email/Mailbox Setup"] = "E-Mail/Postfach-Einstellungen"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Wenn Du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für Dein Postfach an."; -$a->strings["Last successful email check:"] = "Letzter erfolgreicher E-Mail Check"; -$a->strings["IMAP server name:"] = "IMAP-Server-Name:"; -$a->strings["IMAP port:"] = "IMAP-Port:"; -$a->strings["Security:"] = "Sicherheit:"; -$a->strings["None"] = "Keine"; -$a->strings["Email login name:"] = "E-Mail-Login-Name:"; -$a->strings["Email password:"] = "E-Mail-Passwort:"; -$a->strings["Reply-to address:"] = "Reply-to Adresse:"; -$a->strings["Send public posts to all email contacts:"] = "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"; -$a->strings["Action after import:"] = "Aktion nach Import:"; -$a->strings["Move to folder"] = "In einen Ordner verschieben"; -$a->strings["Move to folder:"] = "In diesen Ordner verschieben:"; -$a->strings["No special theme for mobile devices"] = "Kein spezielles Theme für mobile Geräte verwenden."; -$a->strings["Display Settings"] = "Anzeige-Einstellungen"; -$a->strings["Display Theme:"] = "Theme:"; -$a->strings["Mobile Theme:"] = "Mobiles Theme"; -$a->strings["Suppress warning of insecure networks"] = "Warnung wegen unsicheren Netzwerken unterdrücken"; -$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = "Soll das System Warnungen unterdrücken, die angezeigt werden weil von dir eingerichtete Kontakt-Gruppen Accounts aus Netzwerken beinhalten, die keine nicht öffentlichen Beiträge empfangen können."; -$a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren"; -$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimum sind 10 Sekunden. 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:"; -$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."; -$a->strings["Bandwith Saver Mode"] = "Bandbreiten-Spar-Modus"; -$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "Wenn aktiviert, wird der eingebettete Inhalt nicht automatisch aktualisiert. In diesem Fall Seite bitte neu laden."; -$a->strings["General Theme Settings"] = "Allgemeine Themeneinstellungen"; -$a->strings["Custom Theme Settings"] = "Benutzerdefinierte Theme Einstellungen"; -$a->strings["Content Settings"] = "Einstellungen zum Inhalt"; -$a->strings["Theme settings"] = "Themeneinstellungen"; -$a->strings["Account Types"] = "Kontenarten"; -$a->strings["Personal Page Subtypes"] = "Unterarten der persönlichen Seite"; -$a->strings["Community Forum Subtypes"] = "Unterarten des Gemeinschaftsforums"; -$a->strings["Personal Page"] = "Persönliche Seite"; -$a->strings["This account is a regular personal profile"] = "Dieses Konto ist ein normales persönliches Profil"; -$a->strings["Organisation Page"] = "Organisationsseite"; -$a->strings["This account is a profile for an organisation"] = "Diese Konto ist ein Profil für eine Organisation"; -$a->strings["News Page"] = "Nachrichtenseite"; -$a->strings["This account is a news account/reflector"] = "Dieses Konto ist ein News-Konto bzw. -Spiegel"; -$a->strings["Community Forum"] = "Gemeinschaftsforum"; -$a->strings["This account is a community forum where people can discuss with each other"] = "Dieses Konto ist ein Gemeinschaftskonto wo sich Leute untereinander austauschen können"; -$a->strings["Normal Account Page"] = "Normales Konto"; -$a->strings["This account is a normal personal profile"] = "Dieses Konto ist ein normales persönliches Profil"; -$a->strings["Soapbox Page"] = "Marktschreier-Konto"; -$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"; -$a->strings["Public Forum"] = "Öffentliches Forum"; -$a->strings["Automatically approve all contact requests"] = "Bestätige alle Kontaktanfragen automatisch"; -$a->strings["Automatic Friend Page"] = "Automatische Freunde Seite"; -$a->strings["Automatically approve all connection/friend requests as friends"] = "Kontaktanfragen werden automatisch als Freund akzeptiert"; -$a->strings["Private Forum [Experimental]"] = "Privates Forum [Versuchsstadium]"; -$a->strings["Private forum - approved members only"] = "Privates Forum, nur für Mitglieder"; -$a->strings["OpenID:"] = "OpenID:"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID."; -$a->strings["Publish your default profile in your local site directory?"] = "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"; -$a->strings["Your profile may be visible in public."] = "Dein Profil könnte öffentlich abrufbar sein."; -$a->strings["Publish your default profile in the global social directory?"] = "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"; -$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"; -$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Wenn aktiviert, ist das senden öffentliche Nachrichten zu Diaspora und anderen Netzwerken nicht möglich"; -$a->strings["Allow friends to post to your profile page?"] = "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?"; -$a->strings["Allow friends to tag your posts?"] = "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"; -$a->strings["Permit unknown people to send you private mail?"] = "Dürfen Dir Unbekannte private Nachrichten schicken?"; -$a->strings["Profile is not published."] = "Profil ist nicht veröffentlicht."; -$a->strings["Your Identity Address is '%s' or '%s'."] = "Die Adresse deines Profils lautet '%s' oder '%s'."; -$a->strings["Automatically expire posts after this many days:"] = "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht."; -$a->strings["Advanced expiration settings"] = "Erweiterte Verfallseinstellungen"; -$a->strings["Advanced Expiration"] = "Erweitertes Verfallen"; -$a->strings["Expire posts:"] = "Beiträge verfallen lassen:"; -$a->strings["Expire personal notes:"] = "Persönliche Notizen verfallen lassen:"; -$a->strings["Expire starred posts:"] = "Markierte Beiträge verfallen lassen:"; -$a->strings["Expire photos:"] = "Fotos verfallen lassen:"; -$a->strings["Only expire posts by others:"] = "Nur Beiträge anderer verfallen:"; -$a->strings["Account Settings"] = "Kontoeinstellungen"; -$a->strings["Password Settings"] = "Passwort-Einstellungen"; -$a->strings["Leave password fields blank unless changing"] = "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern"; -$a->strings["Current Password:"] = "Aktuelles Passwort:"; -$a->strings["Your current password to confirm the changes"] = "Dein aktuelles Passwort um die Änderungen zu bestätigen"; -$a->strings["Password:"] = "Passwort:"; -$a->strings["Basic Settings"] = "Grundeinstellungen"; -$a->strings["Email Address:"] = "E-Mail-Adresse:"; -$a->strings["Your Timezone:"] = "Deine Zeitzone:"; -$a->strings["Your Language:"] = "Deine Sprache:"; -$a->strings["Set the language we use to show you friendica interface and to send you emails"] = "Wähle die Sprache, in der wir Dir die Friendica-Oberfläche präsentieren sollen und Dir E-Mail schicken"; -$a->strings["Default Post Location:"] = "Standardstandort:"; -$a->strings["Use Browser Location:"] = "Standort des Browsers verwenden:"; -$a->strings["Security and Privacy Settings"] = "Sicherheits- und Privatsphäre-Einstellungen"; -$a->strings["Maximum Friend Requests/Day:"] = "Maximale Anzahl vonKontaktanfragen/Tag:"; -$a->strings["(to prevent spam abuse)"] = "(um SPAM zu vermeiden)"; -$a->strings["Default Post Permissions"] = "Standard-Zugriffsrechte für Beiträge"; -$a->strings["(click to open/close)"] = "(klicke zum öffnen/schließen)"; -$a->strings["Default Private Post"] = "Privater Standardbeitrag"; -$a->strings["Default Public Post"] = "Öffentlicher Standardbeitrag"; -$a->strings["Default Permissions for New Posts"] = "Standardberechtigungen für neue Beiträge"; -$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"; -$a->strings["Notification Settings"] = "Benachrichtigungseinstellungen"; -$a->strings["By default post a status message when:"] = "Standardmäßig eine Statusnachricht posten, wenn:"; -$a->strings["accepting a friend request"] = "– Du eine Kontaktanfrage akzeptierst"; -$a->strings["joining a forum/community"] = "– Du einem Forum/einer Gemeinschaftsseite beitrittst"; -$a->strings["making an interesting profile change"] = "– Du eine interessante Änderung an Deinem Profil durchführst"; -$a->strings["Send a notification email when:"] = "Benachrichtigungs-E-Mail senden wenn:"; -$a->strings["You receive an introduction"] = "– Du eine Kontaktanfrage erhältst"; -$a->strings["Your introductions are confirmed"] = "– eine Deiner Kontaktanfragen akzeptiert wurde"; -$a->strings["Someone writes on your profile wall"] = "– jemand etwas auf Deine Pinnwand schreibt"; -$a->strings["Someone writes a followup comment"] = "– jemand auch einen Kommentar verfasst"; -$a->strings["You receive a private message"] = "– Du eine private Nachricht erhältst"; -$a->strings["You receive a friend suggestion"] = "– Du eine Empfehlung erhältst"; -$a->strings["You are tagged in a post"] = "– Du in einem Beitrag erwähnt wirst"; -$a->strings["You are poked/prodded/etc. in a post"] = "– Du von jemandem angestupst oder sonstwie behandelt wirst"; -$a->strings["Activate desktop notifications"] = "Desktop Benachrichtigungen einschalten"; -$a->strings["Show desktop popup on new notifications"] = "Desktop Benachrichtigungen einschalten"; -$a->strings["Text-only notification emails"] = "Benachrichtigungs E-Mail als Rein-Text."; -$a->strings["Send text only notification emails, without the html part"] = "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil"; -$a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Konto-/Seitentyp-Einstellungen"; -$a->strings["Change the behaviour of this account for special situations"] = "Verhalten dieses Kontos in bestimmten Situationen:"; -$a->strings["Relocate"] = "Umziehen"; -$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Wenn Du Dein Profil von einem anderen Server umgezogen hast und einige Deiner Kontakte Deine Beiträge nicht erhalten, verwende diesen Button."; -$a->strings["Resend relocate message to contacts"] = "Umzugsbenachrichtigung erneut an Kontakte senden"; -$a->strings["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["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["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"; +$a->strings["No profile"] = "Kein Profil"; +$a->strings["Help:"] = "Hilfe:"; +$a->strings["Page not found."] = "Seite nicht gefunden."; +$a->strings["Welcome to %s"] = "Willkommen zu %s"; $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."; @@ -1674,22 +1007,154 @@ $a->strings["ImageMagick supports GIF"] = "ImageMagick unterstützt GIF"; $a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen."; $a->strings["

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["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["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["Your message:"] = "Deine Nachricht:"; +$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["Time Conversion"] = "Zeitumrechnung"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann."; +$a->strings["UTC time: %s"] = "UTC Zeit: %s"; +$a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s"; +$a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s"; +$a->strings["Please select your timezone:"] = "Bitte wähle Deine Zeitzone:"; +$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar."; +$a->strings["Visible to:"] = "Sichtbar für:"; +$a->strings["No valid account found."] = "Kein gültiges Konto gefunden."; +$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nHallo %1\$s,\n\nAuf \"%2\$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast."; +$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1\$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2\$s\nBenutzername:\t%3\$s"; +$a->strings["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."; +$a->strings["Password Reset"] = "Passwort zurücksetzen"; +$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt."; +$a->strings["Your new password is"] = "Dein neues Passwort lautet"; +$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort - und dann"; +$a->strings["click here to login"] = "hier klicken, um Dich anzumelden"; +$a->strings["Your password may be changed from the 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["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast."; +$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten aus: "; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu."; +$a->strings["is interested in:"] = "ist interessiert an:"; +$a->strings["Profile Match"] = "Profilübereinstimmungen"; +$a->strings["No recipient selected."] = "Kein Empfänger gewählt."; +$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden."; +$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden."; +$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen."; +$a->strings["Message sent."] = "Nachricht gesendet."; +$a->strings["Do you really want to delete this message?"] = "Möchtest Du wirklich diese Nachricht löschen?"; +$a->strings["Message deleted."] = "Nachricht gelöscht."; +$a->strings["Conversation removed."] = "Unterhaltung gelöscht."; +$a->strings["Send Private Message"] = "Private Nachricht senden"; +$a->strings["To:"] = "An:"; +$a->strings["Subject:"] = "Betreff:"; +$a->strings["No messages."] = "Keine Nachrichten."; +$a->strings["Message not available."] = "Nachricht nicht verfügbar."; +$a->strings["Delete message"] = "Nachricht löschen"; +$a->strings["Delete conversation"] = "Unterhaltung löschen"; +$a->strings["No secure communications available. You 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["Unknown sender - %s"] = "'Unbekannter Absender - %s"; +$a->strings["You and %s"] = "Du und %s"; +$a->strings["%s and You"] = "%s und Du"; +$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A"; +$a->strings["%d message"] = array( + 0 => "%d Nachricht", + 1 => "%d Nachrichten", +); +$a->strings["Mood"] = "Stimmung"; +$a->strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Kontakten"; +$a->strings["Results for: %s"] = "Ergebnisse für: %s"; +$a->strings["Remove term"] = "Begriff entfernen"; +$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array( + 0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem Netzwerk das keine nicht öffentlichen Beiträge empfangen kann.", + 1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus Netzwerken die keine nicht-öffentlichen Beiträge empfangen können.", +); +$a->strings["Messages in this group won't be send to these receivers."] = "Beiträge in dieser Gruppe werden deshalb nicht an diese Personen zugestellt werden."; +$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["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["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 Kontakte mit anderen im Friendica Netzwerk zu knüpfen.."; +$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 Kontakte und potentiellen Kontakte 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 Kontakte 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 Kontaktliste 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["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 Kontakten 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 Personen 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 Personen zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Leute vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."; +$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte"; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Sobald Du einige Kontakte 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["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["Invalid request identifier."] = "Invalid request identifier."; $a->strings["Discard"] = "Verwerfen"; +$a->strings["Ignore"] = "Ignorieren"; $a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen"; +$a->strings["System Notifications"] = "Systembenachrichtigungen"; $a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen"; $a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen"; $a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen"; $a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen"; $a->strings["Notification type: "] = "Benachrichtigungstyp: "; $a->strings["suggested by %s"] = "vorgeschlagen von %s"; +$a->strings["Hide this contact from others"] = "Verbirg diesen Kontakt vor Anderen"; $a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden"; $a->strings["if applicable"] = "falls anwendbar"; $a->strings["Approve"] = "Genehmigen"; @@ -1707,13 +1172,201 @@ $a->strings["No introductions."] = "Keine Kontaktanfragen."; $a->strings["Show unread"] = "Ungelesene anzeigen"; $a->strings["Show all"] = "Alle anzeigen"; $a->strings["No more %s notifications."] = "Keine weiteren %s Benachrichtigungen"; +$a->strings["No more system notifications."] = "Keine weiteren Systembenachrichtigungen."; +$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht."; +$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet."; +$a->strings["Subscribing to OStatus contacts"] = "OStatus Kontakten folgen"; +$a->strings["No contact provided."] = "Keine Kontakte gefunden."; +$a->strings["Couldn't fetch information for contact."] = "Konnte die Kontaktinformationen nicht einholen."; +$a->strings["Couldn't fetch friends for contact."] = "Konnte die Kontaktliste des Kontakts nicht abfragen."; +$a->strings["Done"] = "Erledigt"; +$a->strings["success"] = "Erfolg"; +$a->strings["failed"] = "Fehlgeschlagen"; +$a->strings["Keep this window open until done."] = "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist."; +$a->strings["Not Extended"] = "Nicht erweitert."; +$a->strings["Recent Photos"] = "Neueste Fotos"; +$a->strings["Upload New Photos"] = "Neue Fotos hochladen"; +$a->strings["everybody"] = "jeder"; +$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar"; +$a->strings["Album not found."] = "Album nicht gefunden."; +$a->strings["Delete Album"] = "Album löschen"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?"; +$a->strings["Delete Photo"] = "Foto löschen"; +$a->strings["Do you really want to delete this photo?"] = "Möchtest Du wirklich dieses Foto löschen?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt"; +$a->strings["a photo"] = "einem Foto"; +$a->strings["Image exceeds size limit of %s"] = "Bildgröße überschreitet das Limit von %s"; +$a->strings["Image file is empty."] = "Bilddatei ist leer."; +$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten."; +$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert."; +$a->strings["No photos selected"] = "Keine Bilder ausgewählt"; +$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt."; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."; +$a->strings["Upload Photos"] = "Bilder hochladen"; +$a->strings["New album name: "] = "Name des neuen Albums: "; +$a->strings["or existing album name: "] = "oder existierender Albumname: "; +$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen"; +$a->strings["Show to Groups"] = "Zeige den Gruppen"; +$a->strings["Show to Contacts"] = "Zeige den Kontakten"; +$a->strings["Private Photo"] = "Privates Foto"; +$a->strings["Public Photo"] = "Öffentliches Foto"; +$a->strings["Edit Album"] = "Album bearbeiten"; +$a->strings["Show Newest First"] = "Zeige neueste zuerst"; +$a->strings["Show Oldest First"] = "Zeige älteste zuerst"; +$a->strings["View Photo"] = "Foto betrachten"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."; +$a->strings["Photo not available"] = "Foto nicht verfügbar"; +$a->strings["View photo"] = "Fotos ansehen"; +$a->strings["Edit photo"] = "Foto bearbeiten"; +$a->strings["Use as profile photo"] = "Als Profilbild verwenden"; +$a->strings["View Full Size"] = "Betrachte Originalgröße"; +$a->strings["Tags: "] = "Tags: "; +$a->strings["[Remove any tag]"] = "[Tag entfernen]"; +$a->strings["New album name"] = "Name des neuen Albums"; +$a->strings["Caption"] = "Bildunterschrift"; +$a->strings["Add a Tag"] = "Tag hinzufügen"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; +$a->strings["Do not rotate"] = "Nicht rotieren"; +$a->strings["Rotate CW (right)"] = "Drehen US (rechts)"; +$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)"; +$a->strings["Private photo"] = "Privates Foto"; +$a->strings["Public photo"] = "Öffentliches Foto"; +$a->strings["Map"] = "Karte"; +$a->strings["View Album"] = "Album betrachten"; $a->strings["{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["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["Tips for New Members"] = "Tipps für neue Nutzer"; +$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner."; +$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit"; +$a->strings["Visible To"] = "Sichtbar für"; +$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)"; +$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."; +$a->strings["Failed to send email message. Here your accout details:
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["Registration successful."] = "Registrierung erfolgreich."; +$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; +$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."; +$a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): "; +$a->strings["Include your profile in member directory?"] = "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?"; +$a->strings["Note for the admin"] = "Hinweis für den Admin"; +$a->strings["Leave a message for the admin, why you want to join this node"] = "Hinterlasse eine Nachricht an den Admin, warum du einen Account auf dieser Instanz haben möchtest."; +$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; +$a->strings["Your invitation ID: "] = "ID Deiner Einladung: "; +$a->strings["Registration"] = "Registrierung"; +$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Dein vollständiger Name (z.B. Hans Mustermann, echt oder echt erscheinend):"; +$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["Import"] = "Import"; +$a->strings["Import your profile to this friendica instance"] = "Importiere Dein Profil auf diese Friendica Instanz"; +$a->strings["Remove My Account"] = "Konto löschen"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."; +$a->strings["Please enter your password for verification:"] = "Bitte gib Dein Passwort zur Verifikation ein:"; +$a->strings["Resubscribing to OStatus contacts"] = "Erneuern der OStatus Abonements"; +$a->strings["Error"] = "Fehler"; +$a->strings["Only logged in users are permitted to perform a search."] = "Nur eingeloggten Benutzern ist das Suchen gestattet."; +$a->strings["Too Many Requests"] = "Zu viele Abfragen"; +$a->strings["Only one search per minute is permitted for not logged in users."] = "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet."; +$a->strings["Items tagged with: %s"] = "Beiträge die mit %s getaggt sind"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s"; +$a->strings["Do you really want to delete this suggestion?"] = "Möchtest Du wirklich diese Empfehlung löschen?"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."; +$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen"; +$a->strings["Tag removed"] = "Tag entfernt"; +$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen"; +$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: "; +$a->strings["Export account"] = "Account exportieren"; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen."; +$a->strings["Export all"] = "Alles exportieren"; +$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert)."; +$a->strings["Export personal data"] = "Persönliche Daten exportieren"; +$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"; +$a->strings["Do you really want to delete this video?"] = "Möchtest Du dieses Video wirklich löschen?"; +$a->strings["Delete Video"] = "Video Löschen"; +$a->strings["No videos selected"] = "Keine Videos ausgewählt"; +$a->strings["Recent Videos"] = "Neueste Videos"; +$a->strings["Upload New Videos"] = "Neues Video hochladen"; +$a->strings["No contacts."] = "Keine Kontakte."; +$a->strings["Access denied."] = "Zugriff verweigert."; +$a->strings["Invalid request."] = "Ungültige Anfrage"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt."; +$a->strings["Or - did you try to upload an empty file?"] = "Oder - hast Du versucht, eine leere Datei hochzuladen?"; +$a->strings["File exceeds size limit of %s"] = "Die Datei ist größer als das erlaubte Limit von %s"; +$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen."; +$a->strings["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["Only logged in users are permitted to perform a probing."] = "Nur eingeloggten Benutzern ist das Untersuchen von Adressen gestattet."; +$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert."; +$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."; +$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden", + 1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden", +); +$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen."; +$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler."; +$a->strings["Profile unavailable."] = "Profil nicht verfügbar."; +$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Kontaktanfragen erhalten."; +$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."; +$a->strings["Invalid locator"] = "Ungültiger Locator"; +$a->strings["Invalid email address."] = "Ungültige E-Mail-Adresse."; +$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."; +$a->strings["You have already introduced yourself here."] = "Du hast Dich hier bereits vorgestellt."; +$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob Du bereits mit %s in Kontakt stehst."; +$a->strings["Invalid profile URL."] = "Ungültige Profil-URL."; +$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen."; +$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet."; +$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Entferntes abon­nie­ren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems. "; +$a->strings["Please login to confirm introduction."] = "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen."; +$a->strings["Incorrect identity currently logged in. Please login to 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"] = "Kontaktanfrage"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste."; +$a->strings["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["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 Kontakte darüber zu informieren, dass Du hierher umgezogen bist."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (GNU Social/Statusnet) oder von Diaspora importieren"; +$a->strings["Account file"] = "Account Datei"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""; $a->strings["Theme settings updated."] = "Themeneinstellungen aktualisiert."; $a->strings["Site"] = "Seite"; $a->strings["Users"] = "Nutzer"; +$a->strings["Plugins"] = "Plugins"; $a->strings["Themes"] = "Themen"; +$a->strings["Additional features"] = "Zusätzliche Features"; $a->strings["DB updates"] = "DB Updates"; $a->strings["Inspect Queue"] = "Warteschlange Inspizieren"; $a->strings["Server Blocklist"] = "Server Blockliste"; @@ -1754,7 +1407,7 @@ $a->strings["Created"] = "Erstellt"; $a->strings["Last Tried"] = "Zuletzt versucht"; $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."] = "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."; $a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the command php include/dbstructure.php toinnodb of your Friendica installation for an automatic conversion.
"] = "Deine DB verwendet derzeit noch MyISAM Tabellen. Du solltest die Datenbank Engine auf InnoDB umstellen, da Friendica in Zukunft InnoDB Features verwenden wird. Eine Anleitung zur Umstellung der Datenbank kannst du hier finden. Du kannst außerdem mit dem Befehl php include/dbstructure.php toinnodb auf der Kommandozeile die Umstellung automatisch vornehmen lassen."; -$a->strings["You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB."] = "Du verwendets eine MySQL Version die nicht alle Features unterstützt die Friendica verwendet. Wir empfehlen dir einen Wechsel auf MariaDB, falls dies möglich ist."; +$a->strings["The database update failed. Please run \"php include/dbstructure.php update\" from the command line and have a look at the errors that might appear."] = "Das Update der Datenbank ist fehlgeschlagen. Bitte führe 'php include/dbstructure.php update' in der Kommandozeile aus und achte auf eventuell auftretende Fehlermeldungen."; $a->strings["Normal Account"] = "Normales Konto"; $a->strings["Soapbox Account"] = "Marktschreier-Konto"; $a->strings["Community/Celebrity Account"] = "Forum/Promi-Konto"; @@ -1769,10 +1422,13 @@ $a->strings["Version"] = "Version"; $a->strings["Active plugins"] = "Aktive Plugins"; $a->strings["Can not parse base url. Must have at least ://"] = "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus :// bestehen"; $a->strings["Site settings updated."] = "Seiteneinstellungen aktualisiert."; +$a->strings["No special theme for mobile devices"] = "Kein spezielles Theme für mobile Geräte verwenden."; $a->strings["No community page"] = "Keine Gemeinschaftsseite"; $a->strings["Public postings from users of this site"] = "Öffentliche Beiträge von Nutzer_innen dieser Seite"; $a->strings["Global community page"] = "Globale Gemeinschaftsseite"; +$a->strings["Never"] = "Niemals"; $a->strings["At post arrival"] = "Beim Empfang von Nachrichten"; +$a->strings["Disabled"] = "Deaktiviert"; $a->strings["Users, Global Contacts"] = "Nutzer, globale Kontakte"; $a->strings["Users, Global Contacts/fallback"] = "Nutzer, globale Kontakte / Fallback"; $a->strings["One month"] = "ein Monat"; @@ -1786,6 +1442,7 @@ $a->strings["Open"] = "Offen"; $a->strings["No SSL policy, links will track page SSL state"] = "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"; $a->strings["Force all links to use SSL"] = "SSL für alle Links erzwingen"; $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)"; +$a->strings["Save Settings"] = "Einstellungen speichern"; $a->strings["File upload"] = "Datei hochladen"; $a->strings["Policies"] = "Regeln"; $a->strings["Auto Discovered Contact Directory"] = "Automatisch ein Kontaktverzeichnis erstellen"; @@ -1958,6 +1615,7 @@ $a->strings["User '%s' blocked"] = "Nutzer '%s' gesperrt"; $a->strings["Register date"] = "Anmeldedatum"; $a->strings["Last login"] = "Letzte Anmeldung"; $a->strings["Last item"] = "Letzter Beitrag"; +$a->strings["Account"] = "Nutzerkonto"; $a->strings["Add User"] = "Nutzer hinzufügen"; $a->strings["select all"] = "Alle auswählen"; $a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf Deine Bestätigung warten"; @@ -1966,6 +1624,8 @@ $a->strings["Request date"] = "Anfragedatum"; $a->strings["No registrations."] = "Keine Neuanmeldungen."; $a->strings["Note from the user"] = "Hinweis vom Nutzer"; $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"; @@ -2001,8 +1661,348 @@ $a->strings["Must be writable by web server. Relative to your Friendica top-leve $a->strings["Log level"] = "Protokoll-Level"; $a->strings["PHP logging"] = "PHP Protokollieren"; $a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = "Um PHP Warnungen und Fehler zu protokollieren, kannst du die folgenden Zeilen zur .htconfig.php Datei deiner Installation hinzufügen. Den Dateinamen der Log-Datei legst du in der Zeile mit dem 'error_log' fest, Er ist relativ zum Friendica-Stammverzeichnis und muss schreibbar durch den Webserver sein. Eine \"1\" als Option für die Punkte 'log_errors' und 'display_errors' aktiviert die Funktionen zum Protokollieren bzw. Anzeigen der Fehler, eine \"0\" deaktiviert sie."; +$a->strings["Off"] = "Aus"; +$a->strings["On"] = "An"; $a->strings["Lock feature %s"] = "Feature festlegen: %s"; $a->strings["Manage Additional Features"] = "Zusätzliche Features Verwalten"; +$a->strings["%d contact edited."] = array( + 0 => "%d Kontakt bearbeitet.", + 1 => "%d Kontakte bearbeitet.", +); +$a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen."; +$a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden."; +$a->strings["Contact updated."] = "Kontakt aktualisiert."; +$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert"; +$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben"; +$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert"; +$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert"; +$a->strings["Contact has been archived"] = "Kontakt wurde archiviert"; +$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt"; +$a->strings["Drop contact"] = "Kontakt löschen"; +$a->strings["Do you really want to delete this contact?"] = "Möchtest Du wirklich diesen Kontakt löschen?"; +$a->strings["Contact has been removed."] = "Kontakt wurde entfernt."; +$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft"; +$a->strings["You are sharing with %s"] = "Du teilst mit %s"; +$a->strings["%s is sharing with you"] = "%s teilt mit Dir"; +$a->strings["Private communications are not available for this contact."] = "Private Kommunikation ist für diesen Kontakt nicht verfügbar."; +$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)"; +$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)"; +$a->strings["Suggest friends"] = "Kontakte vorschlagen"; +$a->strings["Network type: %s"] = "Netzwerktyp: %s"; +$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!"; +$a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen"; +$a->strings["Fetch information"] = "Beziehe Information"; +$a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte"; +$a->strings["Contact"] = "Kontakt"; +$a->strings["Profile Visibility"] = "Profil-Sichtbarkeit"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft."; +$a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen"; +$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbeiten"; +$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freischalten"; +$a->strings["Ignore contact"] = "Ignoriere den Kontakt"; +$a->strings["Repair URL settings"] = "URL Einstellungen reparieren"; +$a->strings["View conversations"] = "Unterhaltungen anzeigen"; +$a->strings["Last update:"] = "Letzte Aktualisierung: "; +$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren"; +$a->strings["Update now"] = "Jetzt aktualisieren"; +$a->strings["Unignore"] = "Ignorieren aufheben"; +$a->strings["Currently blocked"] = "Derzeit geblockt"; +$a->strings["Currently ignored"] = "Derzeit ignoriert"; +$a->strings["Currently archived"] = "Momentan archiviert"; +$a->strings["Replies/likes to your public posts 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["Actions"] = "Aktionen"; +$a->strings["Contact Settings"] = "Kontakteinstellungen"; +$a->strings["Suggestions"] = "Kontaktvorschläge"; +$a->strings["Suggest potential friends"] = "Kontakte vorschlagen"; +$a->strings["Show all contacts"] = "Alle Kontakte anzeigen"; +$a->strings["Unblocked"] = "Ungeblockt"; +$a->strings["Only show unblocked contacts"] = "Nur nicht-blockierte Kontakte anzeigen"; +$a->strings["Blocked"] = "Geblockt"; +$a->strings["Only show blocked contacts"] = "Nur blockierte Kontakte anzeigen"; +$a->strings["Ignored"] = "Ignoriert"; +$a->strings["Only show ignored contacts"] = "Nur ignorierte Kontakte anzeigen"; +$a->strings["Archived"] = "Archiviert"; +$a->strings["Only show archived contacts"] = "Nur archivierte Kontakte anzeigen"; +$a->strings["Hidden"] = "Verborgen"; +$a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen"; +$a->strings["Search your contacts"] = "Suche in deinen Kontakten"; +$a->strings["Update"] = "Aktualisierungen"; +$a->strings["Archive"] = "Archivieren"; +$a->strings["Unarchive"] = "Aus Archiv zurückholen"; +$a->strings["Batch Actions"] = "Stapelverarbeitung"; +$a->strings["View all contacts"] = "Alle Kontakte anzeigen"; +$a->strings["View all common friends"] = "Alle Kontakte anzeigen"; +$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen"; +$a->strings["Mutual Friendship"] = "Beidseitige Freundschaft"; +$a->strings["is a fan of yours"] = "ist ein Fan von dir"; +$a->strings["you are a fan of"] = "Du bist Fan von"; +$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten"; +$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten"; +$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten"; +$a->strings["Delete contact"] = "Lösche den Kontakt"; +$a->strings["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["Profile deleted."] = "Profil gelöscht."; +$a->strings["Profile-"] = "Profil-"; +$a->strings["New profile created."] = "Neues Profil angelegt."; +$a->strings["Profile unavailable to clone."] = "Profil nicht zum Duplizieren verfügbar."; +$a->strings["Profile Name is required."] = "Profilname ist erforderlich."; +$a->strings["Marital Status"] = "Familienstand"; +$a->strings["Romantic Partner"] = "Romanze"; +$a->strings["Work/Employment"] = "Arbeit / Beschäftigung"; +$a->strings["Religion"] = "Religion"; +$a->strings["Political Views"] = "Politische Ansichten"; +$a->strings["Gender"] = "Geschlecht"; +$a->strings["Sexual Preference"] = "Sexuelle Vorlieben"; +$a->strings["XMPP"] = "XMPP"; +$a->strings["Homepage"] = "Webseite"; +$a->strings["Interests"] = "Interessen"; +$a->strings["Address"] = "Adresse"; +$a->strings["Location"] = "Wohnort"; +$a->strings["Profile updated."] = "Profil aktualisiert."; +$a->strings[" and "] = " und "; +$a->strings["public profile"] = "öffentliches Profil"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s hat %2\$s geändert auf “%3\$s”"; +$a->strings[" - Visit %1\$s's %2\$s"] = " – %1\$ss %2\$s besuchen"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat folgendes aktualisiert %2\$s, verändert wurde %3\$s."; +$a->strings["Hide contacts and friends:"] = "Kontakte und Freunde verbergen"; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"; +$a->strings["Show more profile fields:"] = "Zeige mehr Profil-Felder:"; +$a->strings["Profile Actions"] = "Profilaktionen"; +$a->strings["Edit Profile Details"] = "Profil bearbeiten"; +$a->strings["Change Profile Photo"] = "Profilbild ändern"; +$a->strings["View this profile"] = "Dieses Profil anzeigen"; +$a->strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen verwenden"; +$a->strings["Clone this profile"] = "Dieses Profil duplizieren"; +$a->strings["Delete this profile"] = "Dieses Profil löschen"; +$a->strings["Basic information"] = "Grundinformationen"; +$a->strings["Profile picture"] = "Profilbild"; +$a->strings["Preferences"] = "Vorlieben"; +$a->strings["Status information"] = "Status Informationen"; +$a->strings["Additional information"] = "Zusätzliche Informationen"; +$a->strings["Relation"] = "Beziehung"; +$a->strings["Your Gender:"] = "Dein Geschlecht:"; +$a->strings[" Marital Status:"] = " Beziehungsstatus:"; +$a->strings["Example: fishing photography software"] = "Beispiel: Fischen Fotografie Software"; +$a->strings["Profile Name:"] = "Profilname:"; +$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["Your Full Name:"] = "Dein kompletter Name:"; +$a->strings["Title/Description:"] = "Titel/Beschreibung:"; +$a->strings["Street Address:"] = "Adresse:"; +$a->strings["Locality/City:"] = "Wohnort:"; +$a->strings["Region/State:"] = "Region/Bundesstaat:"; +$a->strings["Postal/Zip Code:"] = "Postleitzahl:"; +$a->strings["Country:"] = "Land:"; +$a->strings["Who: (if applicable)"] = "Wer: (falls anwendbar)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com"; +$a->strings["Since [date]:"] = "Seit [Datum]:"; +$a->strings["Tell us about yourself..."] = "Erzähle uns ein bisschen von Dir …"; +$a->strings["XMPP (Jabber) address:"] = "XMPP (Jabber) Adresse"; +$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "Die XMPP Adresse wird an deine Kontakte verteilt werden, so dass sie auch über XMPP mit dir in Kontakt treten können."; +$a->strings["Homepage URL:"] = "Adresse der Homepage:"; +$a->strings["Religious Views:"] = "Religiöse Ansichten:"; +$a->strings["Public Keywords:"] = "Öffentliche Schlüsselwörter:"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Wird verwendet, um potentielle Kontakte zu finden, kann von Kontakten eingesehen werden)"; +$a->strings["Private Keywords:"] = "Private Schlüsselwörter:"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"; +$a->strings["Musical interests"] = "Musikalische Interessen"; +$a->strings["Books, literature"] = "Bücher, Literatur"; +$a->strings["Television"] = "Fernsehen"; +$a->strings["Film/dance/culture/entertainment"] = "Filme/Tänze/Kultur/Unterhaltung"; +$a->strings["Hobbies/Interests"] = "Hobbies/Interessen"; +$a->strings["Love/romance"] = "Liebe/Romantik"; +$a->strings["Work/employment"] = "Arbeit/Anstellung"; +$a->strings["School/education"] = "Schule/Ausbildung"; +$a->strings["Contact information and Social Networks"] = "Kontaktinformationen und Soziale Netzwerke"; +$a->strings["Edit/Manage Profiles"] = "Bearbeite/Verwalte Profile"; +$a->strings["Display"] = "Anzeige"; +$a->strings["Social Networks"] = "Soziale Netzwerke"; +$a->strings["Connected apps"] = "Verbundene Programme"; +$a->strings["Remove account"] = "Konto löschen"; +$a->strings["Missing some important data!"] = "Wichtige Daten fehlen!"; +$a->strings["Failed to connect with email account using the settings provided."] = "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich."; +$a->strings["Email settings updated."] = "E-Mail Einstellungen bearbeitet."; +$a->strings["Features updated"] = "Features aktualisiert"; +$a->strings["Relocate message has been send to your contacts"] = "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet."; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."; +$a->strings["Wrong password."] = "Falsches Passwort."; +$a->strings["Password changed."] = "Passwort geändert."; +$a->strings["Password update failed. Please try again."] = "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."; +$a->strings[" Please use a shorter name."] = " Bitte verwende einen kürzeren Namen."; +$a->strings[" Name too short."] = " Name ist zu kurz."; +$a->strings["Wrong Password"] = "Falsches Passwort"; +$a->strings[" Not valid email."] = " Keine gültige E-Mail."; +$a->strings[" Cannot change to that email."] = "Ändern der E-Mail nicht möglich. "; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt."; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte."; +$a->strings["Settings updated."] = "Einstellungen aktualisiert."; +$a->strings["Add application"] = "Programm hinzufügen"; +$a->strings["Consumer Key"] = "Consumer Key"; +$a->strings["Consumer Secret"] = "Consumer Secret"; +$a->strings["Redirect"] = "Umleiten"; +$a->strings["Icon url"] = "Icon URL"; +$a->strings["You can't edit this application."] = "Du kannst dieses Programm nicht bearbeiten."; +$a->strings["Connected Apps"] = "Verbundene Programme"; +$a->strings["Client key starts with"] = "Anwenderschlüssel beginnt mit"; +$a->strings["No name"] = "Kein Name"; +$a->strings["Remove authorization"] = "Autorisierung entziehen"; +$a->strings["No Plugin settings configured"] = "Keine Plugin-Einstellungen konfiguriert"; +$a->strings["Plugin Settings"] = "Plugin-Einstellungen"; +$a->strings["Additional Features"] = "Zusätzliche Features"; +$a->strings["General Social Media Settings"] = "Allgemeine Einstellungen zu Sozialen Medien"; +$a->strings["Disable intelligent shortening"] = "Intelligentes Link kürzen ausschalten"; +$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "Normalerweise versucht das System den besten Link zu finden um ihn zu gekürzten Postings hinzu zu fügen. Wird diese Option ausgewählt wird stets ein Link auf die originale Friendica Nachricht beigefügt."; +$a->strings["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["Default group for OStatus contacts"] = "Voreingestellte Gruppe für OStatus Kontakte"; +$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["enabled"] = "eingeschaltet"; +$a->strings["disabled"] = "ausgeschaltet"; +$a->strings["GNU Social (OStatus)"] = "GNU Social (OStatus)"; +$a->strings["Email access is disabled on this site."] = "Zugriff auf E-Mails für diese Seite deaktiviert."; +$a->strings["Email/Mailbox Setup"] = "E-Mail/Postfach-Einstellungen"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Wenn Du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für Dein Postfach an."; +$a->strings["Last successful email check:"] = "Letzter erfolgreicher E-Mail Check"; +$a->strings["IMAP server name:"] = "IMAP-Server-Name:"; +$a->strings["IMAP port:"] = "IMAP-Port:"; +$a->strings["Security:"] = "Sicherheit:"; +$a->strings["None"] = "Keine"; +$a->strings["Email login name:"] = "E-Mail-Login-Name:"; +$a->strings["Email password:"] = "E-Mail-Passwort:"; +$a->strings["Reply-to address:"] = "Reply-to Adresse:"; +$a->strings["Send public posts to all email contacts:"] = "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"; +$a->strings["Action after import:"] = "Aktion nach Import:"; +$a->strings["Move to folder"] = "In einen Ordner verschieben"; +$a->strings["Move to folder:"] = "In diesen Ordner verschieben:"; +$a->strings["Display Settings"] = "Anzeige-Einstellungen"; +$a->strings["Display Theme:"] = "Theme:"; +$a->strings["Mobile Theme:"] = "Mobiles Theme"; +$a->strings["Suppress warning of insecure networks"] = "Warnung wegen unsicheren Netzwerken unterdrücken"; +$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = "Soll das System Warnungen unterdrücken, die angezeigt werden weil von dir eingerichtete Kontakt-Gruppen Accounts aus Netzwerken beinhalten, die keine nicht öffentlichen Beiträge empfangen können."; +$a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren"; +$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimum sind 10 Sekunden. 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:"; +$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."; +$a->strings["Bandwith Saver Mode"] = "Bandbreiten-Spar-Modus"; +$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "Wenn aktiviert, wird der eingebettete Inhalt nicht automatisch aktualisiert. In diesem Fall Seite bitte neu laden."; +$a->strings["General Theme Settings"] = "Allgemeine Themeneinstellungen"; +$a->strings["Custom Theme Settings"] = "Benutzerdefinierte Theme Einstellungen"; +$a->strings["Content Settings"] = "Einstellungen zum Inhalt"; +$a->strings["Theme settings"] = "Themeneinstellungen"; +$a->strings["Account Types"] = "Kontenarten"; +$a->strings["Personal Page Subtypes"] = "Unterarten der persönlichen Seite"; +$a->strings["Community Forum Subtypes"] = "Unterarten des Gemeinschaftsforums"; +$a->strings["Personal Page"] = "Persönliche Seite"; +$a->strings["This account is a regular personal profile"] = "Dieses Konto ist ein normales persönliches Profil"; +$a->strings["Organisation Page"] = "Organisationsseite"; +$a->strings["This account is a profile for an organisation"] = "Diese Konto ist ein Profil für eine Organisation"; +$a->strings["News Page"] = "Nachrichtenseite"; +$a->strings["This account is a news account/reflector"] = "Dieses Konto ist ein News-Konto bzw. -Spiegel"; +$a->strings["Community Forum"] = "Gemeinschaftsforum"; +$a->strings["This account is a community forum where people can discuss with each other"] = "Dieses Konto ist ein Gemeinschaftskonto wo sich Leute untereinander austauschen können"; +$a->strings["Normal Account Page"] = "Normales Konto"; +$a->strings["This account is a normal personal profile"] = "Dieses Konto ist ein normales persönliches Profil"; +$a->strings["Soapbox Page"] = "Marktschreier-Konto"; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"; +$a->strings["Public Forum"] = "Öffentliches Forum"; +$a->strings["Automatically approve all contact requests"] = "Bestätige alle Kontaktanfragen automatisch"; +$a->strings["Automatic Friend Page"] = "Automatische Freunde Seite"; +$a->strings["Automatically approve all connection/friend requests as friends"] = "Kontaktanfragen werden automatisch als Freund akzeptiert"; +$a->strings["Private Forum [Experimental]"] = "Privates Forum [Versuchsstadium]"; +$a->strings["Private forum - approved members only"] = "Privates Forum, nur für Mitglieder"; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID."; +$a->strings["Publish your default profile in your local site directory?"] = "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"; +$a->strings["Your profile may be visible in public."] = "Dein Profil könnte öffentlich abrufbar sein."; +$a->strings["Publish your default profile in the global social directory?"] = "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"; +$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Wenn aktiviert, ist das senden öffentliche Nachrichten zu Diaspora und anderen Netzwerken nicht möglich"; +$a->strings["Allow friends to post to your profile page?"] = "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?"; +$a->strings["Allow friends to tag your posts?"] = "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"; +$a->strings["Permit unknown people to send you private mail?"] = "Dürfen Dir Unbekannte private Nachrichten schicken?"; +$a->strings["Profile is not published."] = "Profil ist nicht veröffentlicht."; +$a->strings["Your Identity Address is '%s' or '%s'."] = "Die Adresse deines Profils lautet '%s' oder '%s'."; +$a->strings["Automatically expire posts after this many days:"] = "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht."; +$a->strings["Advanced expiration settings"] = "Erweiterte Verfallseinstellungen"; +$a->strings["Advanced Expiration"] = "Erweitertes Verfallen"; +$a->strings["Expire posts:"] = "Beiträge verfallen lassen:"; +$a->strings["Expire personal notes:"] = "Persönliche Notizen verfallen lassen:"; +$a->strings["Expire starred posts:"] = "Markierte Beiträge verfallen lassen:"; +$a->strings["Expire photos:"] = "Fotos verfallen lassen:"; +$a->strings["Only expire posts by others:"] = "Nur Beiträge anderer verfallen:"; +$a->strings["Account Settings"] = "Kontoeinstellungen"; +$a->strings["Password Settings"] = "Passwort-Einstellungen"; +$a->strings["Leave password fields blank unless changing"] = "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern"; +$a->strings["Current Password:"] = "Aktuelles Passwort:"; +$a->strings["Your current password to confirm the changes"] = "Dein aktuelles Passwort um die Änderungen zu bestätigen"; +$a->strings["Password:"] = "Passwort:"; +$a->strings["Basic Settings"] = "Grundeinstellungen"; +$a->strings["Email Address:"] = "E-Mail-Adresse:"; +$a->strings["Your Timezone:"] = "Deine Zeitzone:"; +$a->strings["Your Language:"] = "Deine Sprache:"; +$a->strings["Set the language we use to show you friendica interface and to send you emails"] = "Wähle die Sprache, in der wir Dir die Friendica-Oberfläche präsentieren sollen und Dir E-Mail schicken"; +$a->strings["Default Post Location:"] = "Standardstandort:"; +$a->strings["Use Browser Location:"] = "Standort des Browsers verwenden:"; +$a->strings["Security and Privacy Settings"] = "Sicherheits- und Privatsphäre-Einstellungen"; +$a->strings["Maximum Friend Requests/Day:"] = "Maximale Anzahl vonKontaktanfragen/Tag:"; +$a->strings["(to prevent spam abuse)"] = "(um SPAM zu vermeiden)"; +$a->strings["Default Post Permissions"] = "Standard-Zugriffsrechte für Beiträge"; +$a->strings["(click to open/close)"] = "(klicke zum öffnen/schließen)"; +$a->strings["Default Private Post"] = "Privater Standardbeitrag"; +$a->strings["Default Public Post"] = "Öffentlicher Standardbeitrag"; +$a->strings["Default Permissions for New Posts"] = "Standardberechtigungen für neue Beiträge"; +$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"; +$a->strings["Notification Settings"] = "Benachrichtigungseinstellungen"; +$a->strings["By default post a status message when:"] = "Standardmäßig eine Statusnachricht posten, wenn:"; +$a->strings["accepting a friend request"] = "– Du eine Kontaktanfrage akzeptierst"; +$a->strings["joining a forum/community"] = "– Du einem Forum/einer Gemeinschaftsseite beitrittst"; +$a->strings["making an interesting profile change"] = "– Du eine interessante Änderung an Deinem Profil durchführst"; +$a->strings["Send a notification email when:"] = "Benachrichtigungs-E-Mail senden wenn:"; +$a->strings["You receive an introduction"] = "– Du eine Kontaktanfrage erhältst"; +$a->strings["Your introductions are confirmed"] = "– eine Deiner Kontaktanfragen akzeptiert wurde"; +$a->strings["Someone writes on your profile wall"] = "– jemand etwas auf Deine Pinnwand schreibt"; +$a->strings["Someone writes a followup comment"] = "– jemand auch einen Kommentar verfasst"; +$a->strings["You receive a private message"] = "– Du eine private Nachricht erhältst"; +$a->strings["You receive a friend suggestion"] = "– Du eine Empfehlung erhältst"; +$a->strings["You are tagged in a post"] = "– Du in einem Beitrag erwähnt wirst"; +$a->strings["You are poked/prodded/etc. in a post"] = "– Du von jemandem angestupst oder sonstwie behandelt wirst"; +$a->strings["Activate desktop notifications"] = "Desktop Benachrichtigungen einschalten"; +$a->strings["Show desktop popup on new notifications"] = "Desktop Benachrichtigungen einschalten"; +$a->strings["Text-only notification emails"] = "Benachrichtigungs E-Mail als Rein-Text."; +$a->strings["Send text only notification emails, without the html part"] = "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil"; +$a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Konto-/Seitentyp-Einstellungen"; +$a->strings["Change the behaviour of this account for special situations"] = "Verhalten dieses Kontos in bestimmten Situationen:"; +$a->strings["Relocate"] = "Umziehen"; +$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Wenn Du Dein Profil von einem anderen Server umgezogen hast und einige Deiner Kontakte Deine Beiträge nicht erhalten, verwende diesen Button."; +$a->strings["Resend relocate message to contacts"] = "Umzugsbenachrichtigung erneut an Kontakte senden"; $a->strings["via"] = "via"; $a->strings["greenzero"] = "greenzero"; $a->strings["purplezero"] = "purplezero"; @@ -2011,6 +2011,14 @@ $a->strings["darkzero"] = "darkzero"; $a->strings["comix"] = "comix"; $a->strings["slackr"] = "slackr"; $a->strings["Variations"] = "Variationen"; +$a->strings["Repeat the image"] = "Bild wiederholen"; +$a->strings["Will repeat your image to fill the background."] = "Wiederholt das Bild um den Hintergrund auszufüllen."; +$a->strings["Stretch"] = "Strecken"; +$a->strings["Will stretch to width/height of the image."] = "Streckt Breite/Höhe des Bildes."; +$a->strings["Resize fill and-clip"] = "Größe anpassen - Ausfüllen und abschneiden"; +$a->strings["Resize to fill and retain aspect ratio."] = "Größe anpassen: Ausfüllen und Seitenverhältnis beibehalten"; +$a->strings["Resize best fit"] = "Größe anpassen - Optimale Größe"; +$a->strings["Resize to best fit and retain aspect ratio."] = "Größe anpassen - Optimale Größe und Seitenverhältnisse beibehalten"; $a->strings["Default"] = "Standard"; $a->strings["Note: "] = "Hinweis:"; $a->strings["Check image permissions if all users are allowed to visit the image"] = "Überprüfe, dass alle Benutzer die Berechtigung haben dieses Bild anzusehen"; @@ -2021,14 +2029,6 @@ $a->strings["Link color"] = "Linkfarbe"; $a->strings["Set the background color"] = "Hintergrundfarbe festlegen"; $a->strings["Content background transparency"] = "Transparanz des Hintergrunds von Beiträgem"; $a->strings["Set the background image"] = "Hintergrundbild festlegen"; -$a->strings["Repeat the image"] = "Bild wiederholen"; -$a->strings["Will repeat your image to fill the background."] = "Wiederholt das Bild um den Hintergrund auszufüllen."; -$a->strings["Stretch"] = "Strecken"; -$a->strings["Will stretch to width/height of the image."] = "Streckt Breite/Höhe des Bildes."; -$a->strings["Resize fill and-clip"] = "Größe anpassen - Ausfüllen und abschneiden"; -$a->strings["Resize to fill and retain aspect ratio."] = "Größe anpassen: Ausfüllen und Seitenverhältnis beibehalten"; -$a->strings["Resize best fit"] = "Größe anpassen - Optimale Größe"; -$a->strings["Resize to best fit and retain aspect ratio."] = "Größe anpassen - Optimale Größe und Seitenverhältnisse beibehalten"; $a->strings["Guest"] = "Gast"; $a->strings["Visitor"] = "Besucher"; $a->strings["Alignment"] = "Ausrichtung"; @@ -2047,9 +2047,9 @@ $a->strings["Find Friends"] = "Kontakte finden"; $a->strings["Last users"] = "Letzte Nutzer"; $a->strings["Local Directory"] = "Lokales Verzeichnis"; $a->strings["Quick Start"] = "Schnell-Start"; -$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln"; $a->strings["Delete this item?"] = "Diesen Beitrag löschen?"; $a->strings["show fewer"] = "weniger anzeigen"; +$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln"; $a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."; $a->strings["Create a New Account"] = "Neues Konto erstellen"; $a->strings["Password: "] = "Passwort: "; From 3e68feb315bc514247c5c168476f296b29c60686 Mon Sep 17 00:00:00 2001 From: Andy H3 Date: Mon, 29 May 2017 15:35:04 +0700 Subject: [PATCH 053/125] Update messages.po --- view/lang/en-GB/messages.po | 12759 +++++++++++++++++----------------- 1 file changed, 6381 insertions(+), 6378 deletions(-) diff --git a/view/lang/en-GB/messages.po b/view/lang/en-GB/messages.po index 06dfc9a005..e32209b0b5 100644 --- a/view/lang/en-GB/messages.po +++ b/view/lang/en-GB/messages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-05-03 07:08+0200\n" -"PO-Revision-Date: 2017-05-23 11:00+0000\n" +"POT-Creation-Date: 2017-05-28 11:09+0200\n" +"PO-Revision-Date: 2017-05-29 07:16+0000\n" "Last-Translator: Andy H3 \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/Friendica/friendica/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -18,18 +18,382 @@ msgstr "" "Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1093 -#: view/theme/vier/theme.php:254 +#: include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Unknown | Not categorised" + +#: include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Block immediately" + +#: 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 "Known to me, but no opinion" + +#: include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "OK, probably harmless" + +#: include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Reputable, has my trust" + +#: include/contact_selectors.php:56 mod/admin.php:986 +msgid "Frequently" +msgstr "Frequently" + +#: include/contact_selectors.php:57 mod/admin.php:987 +msgid "Hourly" +msgstr "Hourly" + +#: include/contact_selectors.php:58 mod/admin.php:988 +msgid "Twice daily" +msgstr "Twice daily" + +#: include/contact_selectors.php:59 mod/admin.php:989 +msgid "Daily" +msgstr "Daily" + +#: include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Weekly" + +#: include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Monthly" + +#: include/contact_selectors.php:76 mod/dfrn_request.php:886 +msgid "Friendica" +msgstr "Friendica" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: include/contact_selectors.php:79 include/contact_selectors.php:86 +#: mod/admin.php:1496 mod/admin.php:1509 mod/admin.php:1522 mod/admin.php:1540 +msgid "Email" +msgstr "Email" + +#: include/contact_selectors.php:80 mod/dfrn_request.php:888 +#: mod/settings.php:849 +msgid "Diaspora" +msgstr "Diaspora" + +#: include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" + +#: include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" + +#: include/contact_selectors.php:88 +msgid "pump.io" +msgstr "Pump.io" + +#: include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" + +#: include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Diaspora connector" + +#: include/contact_selectors.php:91 +msgid "GNU Social Connector" +msgstr "GNU Social connector" + +#: include/contact_selectors.php:92 +msgid "pnut" +msgstr "Pnut" + +#: include/contact_selectors.php:93 +msgid "App.net" +msgstr "App.net" + +#: include/features.php:65 +msgid "General Features" +msgstr "General" + +#: include/features.php:67 +msgid "Multiple Profiles" +msgstr "Multiple profiles" + +#: include/features.php:67 +msgid "Ability to create multiple profiles" +msgstr "Ability to create multiple profiles" + +#: include/features.php:68 +msgid "Photo Location" +msgstr "Photo location" + +#: include/features.php:68 +msgid "" +"Photo metadata is normally stripped. This extracts the location (if present)" +" prior to stripping metadata and links it to a map." +msgstr "Photo metadata is normally removed. This extracts the location (if present) prior to removing metadata and links it to a map." + +#: include/features.php:69 +msgid "Export Public Calendar" +msgstr "Export public calendar" + +#: include/features.php:69 +msgid "Ability for visitors to download the public calendar" +msgstr "Ability for visitors to download the public calendar" + +#: include/features.php:74 +msgid "Post Composition Features" +msgstr "Post composition" + +#: include/features.php:75 +msgid "Post Preview" +msgstr "Post preview" + +#: include/features.php:75 +msgid "Allow previewing posts and comments before publishing them" +msgstr "Allow previewing posts and comments before publishing them" + +#: include/features.php:76 +msgid "Auto-mention Forums" +msgstr "Auto-mention forums" + +#: include/features.php:76 +msgid "" +"Add/remove mention when a forum page is selected/deselected in ACL window." +msgstr "Add/Remove mention when a forum page is selected or deselected in the ACL window." + +#: include/features.php:81 +msgid "Network Sidebar Widgets" +msgstr "Network sidebars" + +#: include/features.php:82 +msgid "Search by Date" +msgstr "Search by date" + +#: include/features.php:82 +msgid "Ability to select posts by date ranges" +msgstr "Ability to select posts by date ranges" + +#: include/features.php:83 include/features.php:113 +msgid "List Forums" +msgstr "List forums" + +#: include/features.php:83 +msgid "Enable widget to display the forums your are connected with" +msgstr "Enable widget to display the forums your are connected with" + +#: include/features.php:84 +msgid "Group Filter" +msgstr "Group filter" + +#: include/features.php:84 +msgid "Enable widget to display Network posts only from selected group" +msgstr "Enable widget to display network posts only from selected group" + +#: include/features.php:85 +msgid "Network Filter" +msgstr "Network filter" + +#: include/features.php:85 +msgid "Enable widget to display Network posts only from selected network" +msgstr "Enable widget to display network posts only from selected network" + +#: include/features.php:86 mod/network.php:209 mod/search.php:37 +msgid "Saved Searches" +msgstr "Saved searches" + +#: include/features.php:86 +msgid "Save search terms for re-use" +msgstr "Save search terms for re-use" + +#: include/features.php:91 +msgid "Network Tabs" +msgstr "Network tabs" + +#: include/features.php:92 +msgid "Network Personal Tab" +msgstr "Network personal tab" + +#: include/features.php:92 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Enable tab to display only network posts that you've interacted with" + +#: include/features.php:93 +msgid "Network New Tab" +msgstr "Network new tab" + +#: include/features.php:93 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "Enable tab to display only new network posts (last 12 hours)" + +#: include/features.php:94 +msgid "Network Shared Links Tab" +msgstr "Network shared links tab" + +#: include/features.php:94 +msgid "Enable tab to display only Network posts with links in them" +msgstr "Enable tab to display only network posts with links in them" + +#: include/features.php:99 +msgid "Post/Comment Tools" +msgstr "Post/Comment tools" + +#: include/features.php:100 +msgid "Multiple Deletion" +msgstr "Multiple deletion" + +#: include/features.php:100 +msgid "Select and delete multiple posts/comments at once" +msgstr "Select and delete multiple posts/comments at once" + +#: include/features.php:101 +msgid "Edit Sent Posts" +msgstr "Edit sent posts" + +#: include/features.php:101 +msgid "Edit and correct posts and comments after sending" +msgstr "Ability to editing posts and comments after sending" + +#: include/features.php:102 +msgid "Tagging" +msgstr "Tagging" + +#: include/features.php:102 +msgid "Ability to tag existing posts" +msgstr "Ability to tag existing posts" + +#: include/features.php:103 +msgid "Post Categories" +msgstr "Post categories" + +#: include/features.php:103 +msgid "Add categories to your posts" +msgstr "Add categories to your posts" + +#: include/features.php:104 include/contact_widgets.php:162 +msgid "Saved Folders" +msgstr "Saved Folders" + +#: include/features.php:104 +msgid "Ability to file posts under folders" +msgstr "Ability to file posts under folders" + +#: include/features.php:105 +msgid "Dislike Posts" +msgstr "Dislike posts" + +#: include/features.php:105 +msgid "Ability to dislike posts/comments" +msgstr "Ability to dislike posts/comments" + +#: include/features.php:106 +msgid "Star Posts" +msgstr "Star posts" + +#: include/features.php:106 +msgid "Ability to mark special posts with a star indicator" +msgstr "Ability to highlight posts with a star" + +#: include/features.php:107 +msgid "Mute Post Notifications" +msgstr "Mute post notifications" + +#: include/features.php:107 +msgid "Ability to mute notifications for a thread" +msgstr "Ability to mute notifications for a thread" + +#: include/features.php:112 +msgid "Advanced Profile Settings" +msgstr "Advanced profiles" + +#: include/features.php:113 +msgid "Show visitors public community forums at the Advanced Profile Page" +msgstr "Show visitors of public community forums at the advanced profile page" + +#: 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 "A deleted group with this name has been 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/group.php:210 +msgid "Default privacy group for new contacts" +msgstr "Default privacy group for new contacts" + +#: include/group.php:243 +msgid "Everybody" +msgstr "Everybody" + +#: include/group.php:266 +msgid "edit" +msgstr "edit" + +#: include/group.php:287 mod/newmember.php:39 +msgid "Groups" +msgstr "Groups" + +#: include/group.php:289 +msgid "Edit groups" +msgstr "Edit groups" + +#: include/group.php:291 +msgid "Edit group" +msgstr "Edit group" + +#: include/group.php:292 +msgid "Create a new group" +msgstr "Create new group" + +#: include/group.php:293 mod/group.php:100 mod/group.php:197 +msgid "Group Name: " +msgstr "Group name: " + +#: include/group.php:295 +msgid "Contacts not in any group" +msgstr "Contacts not in any group" + +#: include/group.php:297 mod/network.php:210 +msgid "add" +msgstr "add" + +#: include/ForumManager.php:116 include/text.php:1094 include/nav.php:133 +#: view/theme/vier/theme.php:256 msgid "Forums" msgstr "Forums" -#: include/ForumManager.php:116 view/theme/vier/theme.php:256 +#: include/ForumManager.php:118 view/theme/vier/theme.php:258 msgid "External link to forum" msgstr "External link to forum" -#: include/ForumManager.php:119 include/contact_widgets.php:269 -#: include/items.php:2450 mod/content.php:624 object/Item.php:420 -#: view/theme/vier/theme.php:259 boot.php:1000 +#: include/ForumManager.php:121 include/contact_widgets.php:271 +#: include/items.php:2432 mod/content.php:625 object/Item.php:417 +#: view/theme/vier/theme.php:261 src/App.php:506 msgid "show more" msgstr "Show more..." @@ -37,22 +401,22 @@ msgstr "Show more..." msgid "System" msgstr "System" -#: include/NotificationsManager.php:160 include/nav.php:158 mod/admin.php:517 -#: view/theme/frio/theme.php:253 +#: include/NotificationsManager.php:160 include/nav.php:160 mod/admin.php:518 +#: view/theme/frio/theme.php:255 msgid "Network" msgstr "Network" -#: include/NotificationsManager.php:167 mod/network.php:832 -#: mod/profiles.php:696 +#: include/NotificationsManager.php:167 mod/network.php:835 +#: mod/profiles.php:699 msgid "Personal" msgstr "Personal" -#: include/NotificationsManager.php:174 include/nav.php:105 -#: include/nav.php:161 +#: include/NotificationsManager.php:174 include/nav.php:107 +#: include/nav.php:163 msgid "Home" msgstr "Home" -#: include/NotificationsManager.php:181 include/nav.php:166 +#: include/NotificationsManager.php:181 include/nav.php:168 msgid "Introductions" msgstr "Introductions" @@ -108,347 +472,2409 @@ msgstr "Friend/Contact request" msgid "New Follower" msgstr "New follower" -#: include/Photo.php:1038 include/Photo.php:1054 include/Photo.php:1062 -#: include/Photo.php:1087 include/message.php:146 mod/wall_upload.php:249 -#: mod/item.php:467 -msgid "Wall Photos" -msgstr "Wall photos" +#: include/acl_selectors.php:355 +msgid "Post to Email" +msgstr "Post to email" -#: include/delivery.php:427 -msgid "(no subject)" -msgstr "(no subject)" +#: include/acl_selectors.php:360 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Connectors are disabled since \"%s\" is enabled." -#: include/delivery.php:439 include/enotify.php:43 -msgid "noreply" -msgstr "noreply" +#: include/acl_selectors.php:361 mod/settings.php:1189 +msgid "Hide your profile details from unknown viewers?" +msgstr "Hide profile details from unknown viewers?" -#: include/like.php:27 include/conversation.php:153 include/diaspora.php:1576 +#: include/acl_selectors.php:367 +msgid "Visible to everybody" +msgstr "Visible to everybody" + +#: include/acl_selectors.php:368 view/theme/vier/config.php:109 +msgid "show" +msgstr "show" + +#: include/acl_selectors.php:369 view/theme/vier/config.php:109 +msgid "don't show" +msgstr "don't show" + +#: include/acl_selectors.php:375 mod/editpost.php:125 +msgid "CC: email addresses" +msgstr "CC: email addresses" + +#: include/acl_selectors.php:376 mod/editpost.php:132 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Example: bob@example.com, mary@example.com" + +#: include/acl_selectors.php:378 mod/events.php:511 mod/photos.php:1198 +#: mod/photos.php:1595 +msgid "Permissions" +msgstr "Permissions" + +#: include/acl_selectors.php:379 +msgid "Close" +msgstr "Close" + +#: include/auth.php:52 +msgid "Logged out." +msgstr "Logged out." + +#: include/auth.php:123 include/auth.php:185 mod/openid.php:110 +msgid "Login failed." +msgstr "Login failed." + +#: include/auth.php:139 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 "We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID." + +#: include/auth.php:139 include/user.php:75 +msgid "The error message was:" +msgstr "The error message was:" + +#: include/bb2diaspora.php:233 include/event.php:19 mod/localtime.php:13 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" + +#: include/bb2diaspora.php:239 include/event.php:36 include/event.php:56 +#: include/event.php:459 +msgid "Starts:" +msgstr "Starts:" + +#: include/bb2diaspora.php:247 include/event.php:39 include/event.php:62 +#: include/event.php:460 +msgid "Finishes:" +msgstr "Finishes:" + +#: include/bb2diaspora.php:256 include/event.php:43 include/event.php:69 +#: include/event.php:461 include/identity.php:342 mod/directory.php:135 +#: mod/events.php:496 mod/notifications.php:246 mod/contacts.php:639 +msgid "Location:" +msgstr "Location:" + +#: include/contact_widgets.php:8 +msgid "Add New Contact" +msgstr "Add new contact" + +#: include/contact_widgets.php:9 +msgid "Enter address or web location" +msgstr "Enter address or web location" + +#: include/contact_widgets.php:10 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Example: jo@example.com, http://example.com/jo" + +#: include/contact_widgets.php:12 include/identity.php:230 +#: mod/allfriends.php:87 mod/dirfind.php:209 mod/match.php:92 +#: mod/suggest.php:103 +msgid "Connect" +msgstr "Connect" + +#: include/contact_widgets.php:26 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invitation available" +msgstr[1] "%d invitations available" + +#: include/contact_widgets.php:32 +msgid "Find People" +msgstr "Find people" + +#: include/contact_widgets.php:33 +msgid "Enter name or interest" +msgstr "Enter name or interest" + +#: include/contact_widgets.php:34 include/conversation.php:1018 +#: include/Contact.php:389 mod/allfriends.php:71 mod/dirfind.php:212 +#: mod/follow.php:108 mod/match.php:77 mod/suggest.php:85 mod/contacts.php:613 +msgid "Connect/Follow" +msgstr "Connect/Follow" + +#: include/contact_widgets.php:35 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Examples: Robert Morgenstein, fishing" + +#: include/contact_widgets.php:36 mod/directory.php:202 mod/contacts.php:809 +msgid "Find" +msgstr "Find" + +#: include/contact_widgets.php:37 mod/suggest.php:116 +#: view/theme/vier/theme.php:203 +msgid "Friend Suggestions" +msgstr "Friend suggestions" + +#: include/contact_widgets.php:38 view/theme/vier/theme.php:202 +msgid "Similar Interests" +msgstr "Similar interests" + +#: include/contact_widgets.php:39 +msgid "Random Profile" +msgstr "Random profile" + +#: include/contact_widgets.php:40 view/theme/vier/theme.php:204 +msgid "Invite Friends" +msgstr "Invite friends" + +#: include/contact_widgets.php:127 +msgid "Networks" +msgstr "Networks" + +#: include/contact_widgets.php:130 +msgid "All Networks" +msgstr "All networks" + +#: include/contact_widgets.php:165 include/contact_widgets.php:200 +msgid "Everything" +msgstr "Everything" + +#: include/contact_widgets.php:197 +msgid "Categories" +msgstr "Categories" + +#: include/contact_widgets.php:266 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d contact in common" +msgstr[1] "%d contacts in common" + +#: include/conversation.php:134 include/conversation.php:286 +#: include/like.php:183 include/text.php:1871 +msgid "event" +msgstr "event" + +#: include/conversation.php:137 include/conversation.php:147 +#: include/conversation.php:289 include/conversation.php:298 +#: include/like.php:181 include/diaspora.php:1653 mod/subthread.php:89 +#: mod/tagger.php:63 +msgid "status" +msgstr "status" + +#: include/conversation.php:142 include/conversation.php:294 +#: include/like.php:181 include/text.php:1873 mod/subthread.php:89 +#: mod/tagger.php:63 +msgid "photo" +msgstr "photo" + +#: include/conversation.php:154 include/like.php:30 include/diaspora.php:1649 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s likes %2$s's %3$s" -#: include/like.php:31 include/like.php:36 include/conversation.php:156 +#: include/conversation.php:157 include/like.php:34 include/like.php:39 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "%1$s doesn't like %2$s's %3$s" -#: include/like.php:41 +#: include/conversation.php:160 +#, php-format +msgid "%1$s attends %2$s's %3$s" +msgstr "%1$s goes to %2$s's %3$s" + +#: include/conversation.php:163 +#, php-format +msgid "%1$s doesn't attend %2$s's %3$s" +msgstr "%1$s doesn't go %2$s's %3$s" + +#: include/conversation.php:166 +#, php-format +msgid "%1$s attends maybe %2$s's %3$s" +msgstr "%1$s might go to %2$s's %3$s" + +#: include/conversation.php:199 mod/dfrn_confirm.php:480 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s is now friends with %2$s" + +#: include/conversation.php:240 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s poked %2$s" + +#: include/conversation.php:261 mod/mood.php:64 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s is currently %2$s" + +#: include/conversation.php:308 mod/tagger.php:96 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s tagged %2$s's %3$s with %4$s" + +#: include/conversation.php:335 +msgid "post/item" +msgstr "Post/Item" + +#: include/conversation.php:336 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s marked %2$s's %3$s as favourite" + +#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1664 +#: mod/profiles.php:344 +msgid "Likes" +msgstr "Likes" + +#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1664 +#: mod/profiles.php:348 +msgid "Dislikes" +msgstr "Dislikes" + +#: include/conversation.php:616 include/conversation.php:1542 +#: mod/content.php:374 mod/photos.php:1665 +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Attending" +msgstr[1] "Attending" + +#: include/conversation.php:616 mod/content.php:374 mod/photos.php:1665 +msgid "Not attending" +msgstr "Not attending" + +#: include/conversation.php:616 mod/content.php:374 mod/photos.php:1665 +msgid "Might attend" +msgstr "Might attend" + +#: include/conversation.php:748 mod/content.php:454 mod/content.php:760 +#: mod/photos.php:1730 object/Item.php:137 +msgid "Select" +msgstr "Select" + +#: include/conversation.php:749 mod/content.php:455 mod/content.php:761 +#: mod/photos.php:1731 mod/admin.php:1514 mod/contacts.php:819 +#: mod/contacts.php:1018 mod/settings.php:745 object/Item.php:138 +msgid "Delete" +msgstr "Delete" + +#: include/conversation.php:792 mod/content.php:488 mod/content.php:916 +#: mod/content.php:917 object/Item.php:353 object/Item.php:354 +#, php-format +msgid "View %s's profile @ %s" +msgstr "View %s's profile @ %s" + +#: include/conversation.php:804 object/Item.php:341 +msgid "Categories:" +msgstr "Categories:" + +#: include/conversation.php:805 object/Item.php:342 +msgid "Filed under:" +msgstr "Filed under:" + +#: include/conversation.php:812 mod/content.php:498 mod/content.php:929 +#: object/Item.php:367 +#, php-format +msgid "%s from %s" +msgstr "%s from %s" + +#: include/conversation.php:828 mod/content.php:514 +msgid "View in context" +msgstr "View in context" + +#: include/conversation.php:830 include/conversation.php:1299 +#: mod/content.php:516 mod/content.php:954 mod/editpost.php:116 +#: mod/message.php:339 mod/message.php:524 mod/photos.php:1629 +#: mod/wallmessage.php:142 object/Item.php:392 +msgid "Please wait" +msgstr "Please wait" + +#: include/conversation.php:907 +msgid "remove" +msgstr "Remove" + +#: include/conversation.php:911 +msgid "Delete Selected Items" +msgstr "Delete selected items" + +#: include/conversation.php:1003 +msgid "Follow Thread" +msgstr "Follow thread" + +#: include/conversation.php:1004 include/Contact.php:432 +msgid "View Status" +msgstr "View status" + +#: include/conversation.php:1005 include/conversation.php:1021 +#: include/Contact.php:375 include/Contact.php:388 include/Contact.php:433 +#: mod/allfriends.php:70 mod/directory.php:153 mod/dirfind.php:211 +#: mod/match.php:76 mod/suggest.php:84 +msgid "View Profile" +msgstr "View profile" + +#: include/conversation.php:1006 include/Contact.php:434 +msgid "View Photos" +msgstr "View photos" + +#: include/conversation.php:1007 include/Contact.php:435 +msgid "Network Posts" +msgstr "Network posts" + +#: include/conversation.php:1008 include/Contact.php:436 +msgid "View Contact" +msgstr "View contact" + +#: include/conversation.php:1009 include/Contact.php:438 +msgid "Send PM" +msgstr "Send PM" + +#: include/conversation.php:1013 include/Contact.php:439 +msgid "Poke" +msgstr "Poke" + +#: include/conversation.php:1140 +#, php-format +msgid "%s likes this." +msgstr "%s likes this." + +#: include/conversation.php:1143 +#, php-format +msgid "%s doesn't like this." +msgstr "%s doesn't like this." + +#: include/conversation.php:1146 +#, php-format +msgid "%s attends." +msgstr "%s attends." + +#: include/conversation.php:1149 +#, php-format +msgid "%s doesn't attend." +msgstr "%s doesn't attend." + +#: include/conversation.php:1152 +#, php-format +msgid "%s attends maybe." +msgstr "%s may attend." + +#: include/conversation.php:1163 +msgid "and" +msgstr "and" + +#: include/conversation.php:1169 +#, php-format +msgid ", and %d other people" +msgstr ", and %d other people" + +#: include/conversation.php:1178 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d people like this" + +#: include/conversation.php:1179 +#, php-format +msgid "%s like this." +msgstr "%s like this." + +#: include/conversation.php:1182 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d people don't like this" + +#: include/conversation.php:1183 +#, php-format +msgid "%s don't like this." +msgstr "%s don't like this." + +#: include/conversation.php:1186 +#, php-format +msgid "%2$d people attend" +msgstr "%2$d people attend" + +#: include/conversation.php:1187 +#, php-format +msgid "%s attend." +msgstr "%s attend." + +#: include/conversation.php:1190 +#, php-format +msgid "%2$d people don't attend" +msgstr "%2$d people don't attend" + +#: include/conversation.php:1191 +#, php-format +msgid "%s don't attend." +msgstr "%s don't attend." + +#: include/conversation.php:1194 +#, php-format +msgid "%2$d people attend maybe" +msgstr "%2$d people attend maybe" + +#: include/conversation.php:1195 +#, php-format +msgid "%s anttend maybe." +msgstr "%s attend maybe." + +#: include/conversation.php:1224 include/conversation.php:1240 +msgid "Visible to everybody" +msgstr "Visible to everybody" + +#: include/conversation.php:1225 include/conversation.php:1241 +#: mod/message.php:273 mod/message.php:280 mod/message.php:420 +#: mod/message.php:427 mod/wallmessage.php:116 mod/wallmessage.php:123 +msgid "Please enter a link URL:" +msgstr "Please enter a link URL:" + +#: include/conversation.php:1226 include/conversation.php:1242 +msgid "Please enter a video link/URL:" +msgstr "Please enter a video link/URL:" + +#: include/conversation.php:1227 include/conversation.php:1243 +msgid "Please enter an audio link/URL:" +msgstr "Please enter an audio link/URL:" + +#: include/conversation.php:1228 include/conversation.php:1244 +msgid "Tag term:" +msgstr "Tag term:" + +#: include/conversation.php:1229 include/conversation.php:1245 +#: mod/filer.php:31 +msgid "Save to Folder:" +msgstr "Save to folder:" + +#: include/conversation.php:1230 include/conversation.php:1246 +msgid "Where are you right now?" +msgstr "Where are you right now?" + +#: include/conversation.php:1231 +msgid "Delete item(s)?" +msgstr "Delete item(s)?" + +#: include/conversation.php:1280 +msgid "Share" +msgstr "Share" + +#: include/conversation.php:1281 mod/editpost.php:102 mod/message.php:337 +#: mod/message.php:521 mod/wallmessage.php:140 +msgid "Upload photo" +msgstr "Upload photo" + +#: include/conversation.php:1282 mod/editpost.php:103 +msgid "upload photo" +msgstr "upload photo" + +#: include/conversation.php:1283 mod/editpost.php:104 +msgid "Attach file" +msgstr "Attach file" + +#: include/conversation.php:1284 mod/editpost.php:105 +msgid "attach file" +msgstr "attach file" + +#: include/conversation.php:1285 mod/editpost.php:106 mod/message.php:338 +#: mod/message.php:522 mod/wallmessage.php:141 +msgid "Insert web link" +msgstr "Insert web link" + +#: include/conversation.php:1286 mod/editpost.php:107 +msgid "web link" +msgstr "web link" + +#: include/conversation.php:1287 mod/editpost.php:108 +msgid "Insert video link" +msgstr "Insert video link" + +#: include/conversation.php:1288 mod/editpost.php:109 +msgid "video link" +msgstr "video link" + +#: include/conversation.php:1289 mod/editpost.php:110 +msgid "Insert audio link" +msgstr "Insert audio link" + +#: include/conversation.php:1290 mod/editpost.php:111 +msgid "audio link" +msgstr "audio link" + +#: include/conversation.php:1291 mod/editpost.php:112 +msgid "Set your location" +msgstr "Set your location" + +#: include/conversation.php:1292 mod/editpost.php:113 +msgid "set location" +msgstr "set location" + +#: include/conversation.php:1293 mod/editpost.php:114 +msgid "Clear browser location" +msgstr "Clear browser location" + +#: include/conversation.php:1294 mod/editpost.php:115 +msgid "clear location" +msgstr "clear location" + +#: include/conversation.php:1296 mod/editpost.php:129 +msgid "Set title" +msgstr "Set title" + +#: include/conversation.php:1298 mod/editpost.php:131 +msgid "Categories (comma-separated list)" +msgstr "Categories (comma-separated list)" + +#: include/conversation.php:1300 mod/editpost.php:117 +msgid "Permission settings" +msgstr "Permission settings" + +#: include/conversation.php:1301 mod/editpost.php:146 +msgid "permissions" +msgstr "permissions" + +#: include/conversation.php:1309 mod/editpost.php:126 +msgid "Public post" +msgstr "Public post" + +#: include/conversation.php:1314 mod/content.php:738 mod/editpost.php:137 +#: mod/events.php:506 mod/photos.php:1649 mod/photos.php:1691 +#: mod/photos.php:1771 object/Item.php:711 +msgid "Preview" +msgstr "Preview" + +#: include/conversation.php:1318 include/items.php:2165 mod/editpost.php:140 +#: mod/fbrowser.php:102 mod/fbrowser.php:137 mod/follow.php:126 +#: mod/message.php:211 mod/photos.php:247 mod/photos.php:339 +#: mod/suggest.php:34 mod/tagrm.php:13 mod/tagrm.php:98 mod/videos.php:134 +#: mod/dfrn_request.php:894 mod/contacts.php:458 mod/settings.php:683 +#: mod/settings.php:709 +msgid "Cancel" +msgstr "Cancel" + +#: include/conversation.php:1324 +msgid "Post to Groups" +msgstr "Post to groups" + +#: include/conversation.php:1325 +msgid "Post to Contacts" +msgstr "Post to contacts" + +#: include/conversation.php:1326 +msgid "Private post" +msgstr "Private post" + +#: include/conversation.php:1331 include/identity.php:270 mod/editpost.php:144 +msgid "Message" +msgstr "Message" + +#: include/conversation.php:1332 mod/editpost.php:145 +msgid "Browser" +msgstr "Browser" + +#: include/conversation.php:1514 +msgid "View all" +msgstr "View all" + +#: include/conversation.php:1536 +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Like" +msgstr[1] "Likes" + +#: include/conversation.php:1539 +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Dislike" +msgstr[1] "Dislikes" + +#: include/conversation.php:1545 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Not attending" +msgstr[1] "Not attending" + +#: include/conversation.php:1548 include/profile_selectors.php:6 +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "Undecided" +msgstr[1] "Undecided" + +#: include/datetime.php:66 include/datetime.php:68 mod/profiles.php:701 +msgid "Miscellaneous" +msgstr "Miscellaneous" + +#: include/datetime.php:196 include/identity.php:656 +msgid "Birthday:" +msgstr "Birthday:" + +#: include/datetime.php:198 mod/profiles.php:724 +msgid "Age: " +msgstr "Age: " + +#: include/datetime.php:200 +msgid "YYYY-MM-DD or MM-DD" +msgstr "YYYY-MM-DD or MM-DD" + +#: include/datetime.php:370 +msgid "never" +msgstr "never" + +#: include/datetime.php:376 +msgid "less than a second ago" +msgstr "less than a second ago" + +#: include/datetime.php:379 +msgid "year" +msgstr "year" + +#: include/datetime.php:379 +msgid "years" +msgstr "years" + +#: include/datetime.php:380 include/event.php:453 mod/cal.php:281 +#: mod/events.php:387 +msgid "month" +msgstr "month" + +#: include/datetime.php:380 +msgid "months" +msgstr "months" + +#: include/datetime.php:381 include/event.php:454 mod/cal.php:282 +#: mod/events.php:388 +msgid "week" +msgstr "week" + +#: include/datetime.php:381 +msgid "weeks" +msgstr "weeks" + +#: include/datetime.php:382 include/event.php:455 mod/cal.php:283 +#: mod/events.php:389 +msgid "day" +msgstr "day" + +#: include/datetime.php:382 +msgid "days" +msgstr "days" + +#: include/datetime.php:383 +msgid "hour" +msgstr "hour" + +#: include/datetime.php:383 +msgid "hours" +msgstr "hours" + +#: include/datetime.php:384 +msgid "minute" +msgstr "minute" + +#: include/datetime.php:384 +msgid "minutes" +msgstr "minutes" + +#: include/datetime.php:385 +msgid "second" +msgstr "second" + +#: include/datetime.php:385 +msgid "seconds" +msgstr "seconds" + +#: include/datetime.php:394 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s ago" + +#: include/datetime.php:620 +#, php-format +msgid "%s's birthday" +msgstr "%s's birthday" + +#: include/datetime.php:621 include/dfrn.php:1254 +#, php-format +msgid "Happy Birthday %s" +msgstr "Happy Birthday, %s!" + +#: include/delivery.php:428 +msgid "(no subject)" +msgstr "(no subject)" + +#: include/delivery.php:440 include/enotify.php:46 +msgid "noreply" +msgstr "noreply" + +#: include/dfrn.php:1253 +#, php-format +msgid "%s\\'s birthday" +msgstr "%s\\'s birthday" + +#: include/event.php:408 +msgid "all-day" +msgstr "All-day" + +#: include/event.php:410 +msgid "Sun" +msgstr "Sun" + +#: include/event.php:411 +msgid "Mon" +msgstr "Mon" + +#: include/event.php:412 +msgid "Tue" +msgstr "Tue" + +#: include/event.php:413 +msgid "Wed" +msgstr "Wed" + +#: include/event.php:414 +msgid "Thu" +msgstr "Thu" + +#: include/event.php:415 +msgid "Fri" +msgstr "Fri" + +#: include/event.php:416 +msgid "Sat" +msgstr "Sat" + +#: include/event.php:418 include/text.php:1199 mod/settings.php:982 +msgid "Sunday" +msgstr "Sunday" + +#: include/event.php:419 include/text.php:1199 mod/settings.php:982 +msgid "Monday" +msgstr "Monday" + +#: include/event.php:420 include/text.php:1199 +msgid "Tuesday" +msgstr "Tuesday" + +#: include/event.php:421 include/text.php:1199 +msgid "Wednesday" +msgstr "Wednesday" + +#: include/event.php:422 include/text.php:1199 +msgid "Thursday" +msgstr "Thursday" + +#: include/event.php:423 include/text.php:1199 +msgid "Friday" +msgstr "Friday" + +#: include/event.php:424 include/text.php:1199 +msgid "Saturday" +msgstr "Saturday" + +#: include/event.php:426 +msgid "Jan" +msgstr "Jan" + +#: include/event.php:427 +msgid "Feb" +msgstr "Feb" + +#: include/event.php:428 +msgid "Mar" +msgstr "Mar" + +#: include/event.php:429 +msgid "Apr" +msgstr "Apr" + +#: include/event.php:430 include/event.php:443 include/text.php:1203 +msgid "May" +msgstr "May" + +#: include/event.php:431 +msgid "Jun" +msgstr "Jun" + +#: include/event.php:432 +msgid "Jul" +msgstr "Jul" + +#: include/event.php:433 +msgid "Aug" +msgstr "Aug" + +#: include/event.php:434 +msgid "Sept" +msgstr "Sep" + +#: include/event.php:435 +msgid "Oct" +msgstr "Oct" + +#: include/event.php:436 +msgid "Nov" +msgstr "Nov" + +#: include/event.php:437 +msgid "Dec" +msgstr "Dec" + +#: include/event.php:439 include/text.php:1203 +msgid "January" +msgstr "January" + +#: include/event.php:440 include/text.php:1203 +msgid "February" +msgstr "February" + +#: include/event.php:441 include/text.php:1203 +msgid "March" +msgstr "March" + +#: include/event.php:442 include/text.php:1203 +msgid "April" +msgstr "April" + +#: include/event.php:444 include/text.php:1203 +msgid "June" +msgstr "June" + +#: include/event.php:445 include/text.php:1203 +msgid "July" +msgstr "July" + +#: include/event.php:446 include/text.php:1203 +msgid "August" +msgstr "August" + +#: include/event.php:447 include/text.php:1203 +msgid "September" +msgstr "September" + +#: include/event.php:448 include/text.php:1203 +msgid "October" +msgstr "October" + +#: include/event.php:449 include/text.php:1203 +msgid "November" +msgstr "November" + +#: include/event.php:450 include/text.php:1203 +msgid "December" +msgstr "December" + +#: include/event.php:452 mod/cal.php:280 mod/events.php:386 +msgid "today" +msgstr "today" + +#: include/event.php:457 +msgid "No events to display" +msgstr "No events to display" + +#: include/event.php:570 +msgid "l, F j" +msgstr "l, F j" + +#: include/event.php:592 +msgid "Edit event" +msgstr "Edit event" + +#: include/event.php:593 +msgid "Delete event" +msgstr "Delete event" + +#: include/event.php:619 include/text.php:1601 include/text.php:1608 +msgid "link to source" +msgstr "Link to source" + +#: include/event.php:873 +msgid "Export" +msgstr "Export" + +#: include/event.php:874 +msgid "Export calendar as ical" +msgstr "Export calendar as ical" + +#: include/event.php:875 +msgid "Export calendar as csv" +msgstr "Export calendar as csv" + +#: include/follow.php:84 mod/dfrn_request.php:514 +msgid "Disallowed profile URL." +msgstr "Disallowed profile URL." + +#: include/follow.php:89 mod/friendica.php:115 mod/dfrn_request.php:520 +#: mod/admin.php:280 mod/admin.php:298 +msgid "Blocked domain" +msgstr "Blocked domain" + +#: include/follow.php:94 +msgid "Connect URL missing." +msgstr "Connect URL missing." + +#: include/follow.php:122 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "This site is not configured to allow communications with other networks." + +#: include/follow.php:123 include/follow.php:137 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "No compatible communication protocols or feeds were discovered." + +#: include/follow.php:135 +msgid "The profile address specified does not provide adequate information." +msgstr "The profile address specified does not provide adequate information." + +#: include/follow.php:140 +msgid "An author or name was not found." +msgstr "An author or name was not found." + +#: include/follow.php:143 +msgid "No browser URL could be matched to this address." +msgstr "No browser URL could be matched to this address." + +#: include/follow.php:146 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Unable to match @-style identity address with a known protocol or email contact." + +#: include/follow.php:147 +msgid "Use mailto: in front of address to force email check." +msgstr "Use mailto: in front of address to force email check." + +#: include/follow.php:153 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "The profile address specified belongs to a network which has been disabled on this site." + +#: include/follow.php:158 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Limited profile: This person will be unable to receive direct/private messages from you." + +#: include/follow.php:259 +msgid "Unable to retrieve contact information." +msgstr "Unable to retrieve contact information." + +#: include/like.php:44 #, php-format msgid "%1$s is attending %2$s's %3$s" msgstr "%1$s is going to %2$s's %3$s" -#: include/like.php:46 +#: include/like.php:49 #, php-format msgid "%1$s is not attending %2$s's %3$s" msgstr "%1$s is not going to %2$s's %3$s" -#: include/like.php:51 +#: include/like.php:54 #, php-format msgid "%1$s may attend %2$s's %3$s" msgstr "%1$s may go to %2$s's %3$s" -#: include/like.php:178 include/conversation.php:141 -#: include/conversation.php:293 include/text.php:1872 mod/subthread.php:88 -#: mod/tagger.php:62 -msgid "photo" -msgstr "photo" +#: include/photos.php:57 include/photos.php:66 mod/fbrowser.php:42 +#: mod/fbrowser.php:63 mod/photos.php:189 mod/photos.php:1125 +#: mod/photos.php:1258 mod/photos.php:1279 mod/photos.php:1841 +#: mod/photos.php:1855 +msgid "Contact Photos" +msgstr "Contact photos" -#: include/like.php:178 include/conversation.php:136 -#: include/conversation.php:146 include/conversation.php:288 -#: include/conversation.php:297 include/diaspora.php:1580 mod/subthread.php:88 -#: mod/tagger.php:62 -msgid "status" -msgstr "status" +#: include/security.php:63 +msgid "Welcome " +msgstr "Welcome " -#: include/like.php:180 include/conversation.php:133 -#: include/conversation.php:285 include/text.php:1870 -msgid "event" -msgstr "event" +#: include/security.php:64 +msgid "Please upload a profile photo." +msgstr "Please upload a profile photo." -#: include/message.php:15 include/message.php:169 -msgid "[no subject]" -msgstr "[no subject]" +#: include/security.php:67 +msgid "Welcome back " +msgstr "Welcome back " -#: include/nav.php:35 mod/navigation.php:19 -msgid "Nothing new here" -msgstr "Nothing new here" +#: include/security.php:431 +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 "The form security token was incorrect. This probably happened because the form has not been submitted within 3 hours." -#: include/nav.php:39 mod/navigation.php:23 -msgid "Clear notifications" -msgstr "Clear notifications" +#: include/text.php:308 +msgid "newer" +msgstr "Later posts" -#: include/nav.php:40 include/text.php:1083 -msgid "@name, !forum, #tags, content" -msgstr "@name, !forum, #tags, content" +#: include/text.php:309 +msgid "older" +msgstr "Earlier posts" -#: include/nav.php:78 view/theme/frio/theme.php:243 boot.php:1867 -msgid "Logout" -msgstr "Logout" +#: include/text.php:314 +msgid "first" +msgstr "first" -#: include/nav.php:78 view/theme/frio/theme.php:243 -msgid "End this session" -msgstr "End this session" +#: include/text.php:315 +msgid "prev" +msgstr "prev" -#: include/nav.php:81 include/identity.php:769 mod/contacts.php:645 -#: mod/contacts.php:841 view/theme/frio/theme.php:246 -msgid "Status" -msgstr "Status" +#: include/text.php:349 +msgid "next" +msgstr "next" -#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:246 -msgid "Your posts and conversations" -msgstr "My posts and conversations" +#: include/text.php:350 +msgid "last" +msgstr "last" -#: include/nav.php:82 include/identity.php:622 include/identity.php:744 -#: include/identity.php:777 mod/contacts.php:647 mod/contacts.php:849 -#: mod/newmember.php:32 mod/profperm.php:105 view/theme/frio/theme.php:247 -msgid "Profile" -msgstr "Profile" +#: include/text.php:404 +msgid "Loading more entries..." +msgstr "Loading more entries..." -#: include/nav.php:82 view/theme/frio/theme.php:247 -msgid "Your profile page" -msgstr "My profile page" +#: include/text.php:405 +msgid "The end" +msgstr "The end" -#: include/nav.php:83 include/identity.php:785 mod/fbrowser.php:31 -#: view/theme/frio/theme.php:248 -msgid "Photos" -msgstr "Photos" +#: include/text.php:956 +msgid "No contacts" +msgstr "No contacts" -#: include/nav.php:83 view/theme/frio/theme.php:248 -msgid "Your photos" -msgstr "My photos" +#: include/text.php:981 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d contact" +msgstr[1] "%d contacts" -#: include/nav.php:84 include/identity.php:793 include/identity.php:796 -#: view/theme/frio/theme.php:249 -msgid "Videos" -msgstr "Videos" +#: include/text.php:994 +msgid "View Contacts" +msgstr "View contacts" -#: include/nav.php:84 view/theme/frio/theme.php:249 -msgid "Your videos" -msgstr "My videos" - -#: include/nav.php:85 include/nav.php:149 include/identity.php:805 -#: include/identity.php:816 mod/cal.php:270 mod/events.php:374 -#: view/theme/frio/theme.php:250 view/theme/frio/theme.php:254 -msgid "Events" -msgstr "Events" - -#: include/nav.php:85 view/theme/frio/theme.php:250 -msgid "Your events" -msgstr "My events" - -#: include/nav.php:86 -msgid "Personal notes" -msgstr "Personal notes" - -#: include/nav.php:86 -msgid "Your personal notes" -msgstr "My personal notes" - -#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1868 -msgid "Login" -msgstr "Login" - -#: include/nav.php:95 -msgid "Sign in" -msgstr "Sign in" - -#: include/nav.php:105 -msgid "Home Page" -msgstr "Home page" - -#: include/nav.php:109 mod/register.php:289 boot.php:1844 -msgid "Register" -msgstr "Register" - -#: include/nav.php:109 -msgid "Create an account" -msgstr "Create an account" - -#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:297 -msgid "Help" -msgstr "Help" - -#: include/nav.php:115 -msgid "Help and documentation" -msgstr "Help and documentation" - -#: include/nav.php:119 -msgid "Apps" -msgstr "Apps" - -#: include/nav.php:119 -msgid "Addon applications, utilities, games" -msgstr "Addon applications, utilities, games" - -#: include/nav.php:123 include/text.php:1080 mod/search.php:149 +#: include/text.php:1081 include/nav.php:125 mod/search.php:152 msgid "Search" msgstr "Search" -#: include/nav.php:123 -msgid "Search site content" -msgstr "Search site content" +#: include/text.php:1082 mod/editpost.php:101 mod/filer.php:32 +#: mod/notes.php:64 +msgid "Save" +msgstr "Save" -#: include/nav.php:126 include/text.php:1088 +#: include/text.php:1084 include/nav.php:42 +msgid "@name, !forum, #tags, content" +msgstr "@name, !forum, #tags, content" + +#: include/text.php:1089 include/nav.php:128 msgid "Full Text" msgstr "Full text" -#: include/nav.php:127 include/text.php:1089 +#: include/text.php:1090 include/nav.php:129 msgid "Tags" msgstr "Tags" -#: include/nav.php:128 include/nav.php:192 include/identity.php:838 -#: include/identity.php:841 include/text.php:1090 mod/contacts.php:800 -#: mod/contacts.php:861 mod/viewcontacts.php:121 view/theme/frio/theme.php:257 +#: include/text.php:1091 include/nav.php:130 include/nav.php:194 +#: include/identity.php:853 include/identity.php:856 mod/viewcontacts.php:124 +#: mod/contacts.php:803 mod/contacts.php:864 view/theme/frio/theme.php:259 msgid "Contacts" msgstr "Contacts" -#: include/nav.php:143 include/nav.php:145 mod/community.php:32 +#: include/text.php:1145 +msgid "poke" +msgstr "poke" + +#: include/text.php:1145 +msgid "poked" +msgstr "poked" + +#: include/text.php:1146 +msgid "ping" +msgstr "ping" + +#: include/text.php:1146 +msgid "pinged" +msgstr "pinged" + +#: include/text.php:1147 +msgid "prod" +msgstr "prod" + +#: include/text.php:1147 +msgid "prodded" +msgstr "prodded" + +#: include/text.php:1148 +msgid "slap" +msgstr "slap" + +#: include/text.php:1148 +msgid "slapped" +msgstr "slapped" + +#: include/text.php:1149 +msgid "finger" +msgstr "finger" + +#: include/text.php:1149 +msgid "fingered" +msgstr "fingered" + +#: include/text.php:1150 +msgid "rebuff" +msgstr "rebuff" + +#: include/text.php:1150 +msgid "rebuffed" +msgstr "rebuffed" + +#: include/text.php:1164 +msgid "happy" +msgstr "happy" + +#: include/text.php:1165 +msgid "sad" +msgstr "sad" + +#: include/text.php:1166 +msgid "mellow" +msgstr "mellow" + +#: include/text.php:1167 +msgid "tired" +msgstr "tired" + +#: include/text.php:1168 +msgid "perky" +msgstr "perky" + +#: include/text.php:1169 +msgid "angry" +msgstr "angry" + +#: include/text.php:1170 +msgid "stupified" +msgstr "stupified" + +#: include/text.php:1171 +msgid "puzzled" +msgstr "puzzled" + +#: include/text.php:1172 +msgid "interested" +msgstr "interested" + +#: include/text.php:1173 +msgid "bitter" +msgstr "bitter" + +#: include/text.php:1174 +msgid "cheerful" +msgstr "cheerful" + +#: include/text.php:1175 +msgid "alive" +msgstr "alive" + +#: include/text.php:1176 +msgid "annoyed" +msgstr "annoyed" + +#: include/text.php:1177 +msgid "anxious" +msgstr "anxious" + +#: include/text.php:1178 +msgid "cranky" +msgstr "cranky" + +#: include/text.php:1179 +msgid "disturbed" +msgstr "disturbed" + +#: include/text.php:1180 +msgid "frustrated" +msgstr "frustrated" + +#: include/text.php:1181 +msgid "motivated" +msgstr "motivated" + +#: include/text.php:1182 +msgid "relaxed" +msgstr "relaxed" + +#: include/text.php:1183 +msgid "surprised" +msgstr "surprised" + +#: include/text.php:1393 mod/videos.php:388 +msgid "View Video" +msgstr "View video" + +#: include/text.php:1425 +msgid "bytes" +msgstr "bytes" + +#: include/text.php:1457 include/text.php:1469 +msgid "Click to open/close" +msgstr "Click to open/close" + +#: include/text.php:1595 +msgid "View on separate page" +msgstr "View on separate page" + +#: include/text.php:1596 +msgid "view on separate page" +msgstr "view on separate page" + +#: include/text.php:1875 +msgid "activity" +msgstr "activity" + +#: include/text.php:1877 mod/content.php:624 object/Item.php:416 +#: object/Item.php:428 +msgid "comment" +msgid_plural "comments" +msgstr[0] "comment" +msgstr[1] "comments" + +#: include/text.php:1878 +msgid "post" +msgstr "post" + +#: include/text.php:2046 +msgid "Item filed" +msgstr "Item filed" + +#: include/Contact.php:437 +msgid "Drop Contact" +msgstr "Drop contact" + +#: include/Contact.php:819 +msgid "Organisation" +msgstr "Organisation" + +#: include/Contact.php:822 +msgid "News" +msgstr "News" + +#: include/Contact.php:825 +msgid "Forum" +msgstr "Forum" + +#: include/bbcode.php:419 include/bbcode.php:1178 include/bbcode.php:1179 +msgid "Image/photo" +msgstr "Image/Photo" + +#: include/bbcode.php:536 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" + +#: include/bbcode.php:1135 include/bbcode.php:1157 +msgid "$1 wrote:" +msgstr "$1 wrote:" + +#: include/bbcode.php:1187 include/bbcode.php:1188 +msgid "Encrypted content" +msgstr "Encrypted content" + +#: include/bbcode.php:1303 +msgid "Invalid source protocol" +msgstr "Invalid source protocol" + +#: include/bbcode.php:1313 +msgid "Invalid link protocol" +msgstr "Invalid link protocol" + +#: include/enotify.php:27 +msgid "Friendica Notification" +msgstr "Friendica notification" + +#: include/enotify.php:30 +msgid "Thank You," +msgstr "Thank you" + +#: include/enotify.php:33 +#, php-format +msgid "%s Administrator" +msgstr "%s Administrator" + +#: include/enotify.php:35 +#, php-format +msgid "%1$s, %2$s Administrator" +msgstr "%1$s, %2$s Administrator" + +#: include/enotify.php:73 +#, php-format +msgid "%s " +msgstr "%s " + +#: include/enotify.php:86 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica:Notify] New mail received at %s" + +#: include/enotify.php:88 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s sent you a new private message at %2$s." + +#: include/enotify.php:89 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s sent you %2$s." + +#: include/enotify.php:89 +msgid "a private message" +msgstr "a private message" + +#: include/enotify.php:91 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Please visit %s to view or reply to your private messages." + +#: include/enotify.php:137 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "%1$s commented on [url=%2$s]a %3$s[/url]" + +#: include/enotify.php:144 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" + +#: include/enotify.php:152 +#, 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:162 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Friendica:Notify] Comment to conversation #%1$d by %2$s" + +#: include/enotify.php:164 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s commented on an item/conversation you have been following." + +#: include/enotify.php:167 include/enotify.php:181 include/enotify.php:195 +#: include/enotify.php:209 include/enotify.php:227 include/enotify.php:241 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Please visit %s to view or reply to the conversation." + +#: include/enotify.php:174 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "[Friendica:Notify] %s posted to your profile wall" + +#: include/enotify.php:176 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s posted to your profile wall at %2$s" + +#: include/enotify.php:177 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "%1$s posted to [url=%2$s]your wall[/url]" + +#: include/enotify.php:188 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica:Notify] %s tagged you" + +#: include/enotify.php:190 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s tagged you at %2$s" + +#: include/enotify.php:191 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "%1$s [url=%2$s]tagged you[/url]." + +#: include/enotify.php:202 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "[Friendica:Notify] %s shared a new post" + +#: include/enotify.php:204 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "%1$s shared a new post at %2$s" + +#: include/enotify.php:205 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "%1$s [url=%2$s]shared a post[/url]." + +#: include/enotify.php:216 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "[Friendica:Notify] %1$s poked you" + +#: include/enotify.php:218 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s poked you at %2$s" + +#: include/enotify.php:219 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "%1$s [url=%2$s]poked you[/url]." + +#: include/enotify.php:234 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica:Notify] %s tagged your post" + +#: include/enotify.php:236 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s tagged your post at %2$s" + +#: include/enotify.php:237 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "%1$s tagged [url=%2$s]your post[/url]" + +#: include/enotify.php:248 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica:Notify] Introduction received" + +#: include/enotify.php:250 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "You've received an introduction from '%1$s' at %2$s" + +#: include/enotify.php:251 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "You've received [url=%1$s]an introduction[/url] from %2$s." + +#: include/enotify.php:255 include/enotify.php:298 +#, php-format +msgid "You may visit their profile at %s" +msgstr "You may visit their profile at %s" + +#: include/enotify.php:257 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Please visit %s to approve or reject the introduction." + +#: include/enotify.php:265 +msgid "[Friendica:Notify] A new person is sharing with you" +msgstr "[Friendica:Notify] A new person is sharing with you" + +#: include/enotify.php:267 include/enotify.php:268 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "%1$s is sharing with you at %2$s" + +#: include/enotify.php:274 +msgid "[Friendica:Notify] You have a new follower" +msgstr "[Friendica:Notify] You have a new follower" + +#: include/enotify.php:276 include/enotify.php:277 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "You have a new follower at %2$s : %1$s" + +#: include/enotify.php:288 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "[Friendica:Notify] Friend suggestion received" + +#: include/enotify.php:290 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "You've received a friend suggestion from '%1$s' at %2$s" + +#: include/enotify.php:291 +#, php-format +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." + +#: include/enotify.php:296 +msgid "Name:" +msgstr "Name:" + +#: include/enotify.php:297 +msgid "Photo:" +msgstr "Photo:" + +#: include/enotify.php:300 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Please visit %s to approve or reject the suggestion." + +#: include/enotify.php:308 include/enotify.php:322 +msgid "[Friendica:Notify] Connection accepted" +msgstr "[Friendica:Notify] Connection accepted" + +#: include/enotify.php:310 include/enotify.php:324 +#, php-format +msgid "'%1$s' has accepted your connection request at %2$s" +msgstr "'%1$s' has accepted your connection request at %2$s" + +#: include/enotify.php:311 include/enotify.php:325 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "%2$s has accepted your [url=%1$s]connection request[/url]." + +#: include/enotify.php:315 +msgid "" +"You are now mutual friends and may exchange status updates, photos, and " +"email without restriction." +msgstr "You are now mutual friends and may exchange status updates, photos, and email without restriction." + +#: include/enotify.php:317 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "Please visit %s if you wish to make any changes to this relationship." + +#: include/enotify.php:329 +#, 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' has chosen to accept you as \"Follower\". This 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." + +#: include/enotify.php:331 +#, php-format +msgid "" +"'%1$s' may choose to extend this into a two-way or more permissive " +"relationship in the future." +msgstr "'%1$s' may choose to extend this into a two-way or more permissive relationship in the future." + +#: include/enotify.php:333 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "Please visit %s if you wish to make any changes to this relationship." + +#: include/enotify.php:343 +msgid "[Friendica System:Notify] registration request" +msgstr "[Friendica:Notify] registration request" + +#: include/enotify.php:345 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "You've received a registration request from '%1$s' at %2$s." + +#: include/enotify.php:346 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "You've received a [url=%1$s]registration request[/url] from %2$s." + +#: include/enotify.php:350 +#, php-format +msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" +msgstr "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" + +#: include/enotify.php:353 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "Please visit %s to approve or reject the request." + +#: include/message.php:14 include/message.php:168 +msgid "[no subject]" +msgstr "[no subject]" + +#: include/message.php:145 include/Photo.php:1075 include/Photo.php:1091 +#: include/Photo.php:1099 include/Photo.php:1124 mod/wall_upload.php:249 +#: mod/item.php:468 +msgid "Wall Photos" +msgstr "Wall photos" + +#: include/nav.php:37 mod/navigation.php:21 +msgid "Nothing new here" +msgstr "Nothing new here" + +#: include/nav.php:41 mod/navigation.php:25 +msgid "Clear notifications" +msgstr "Clear notifications" + +#: include/nav.php:80 view/theme/frio/theme.php:245 boot.php:862 +msgid "Logout" +msgstr "Logout" + +#: include/nav.php:80 view/theme/frio/theme.php:245 +msgid "End this session" +msgstr "End this session" + +#: include/nav.php:83 include/identity.php:784 mod/contacts.php:648 +#: mod/contacts.php:844 view/theme/frio/theme.php:248 +msgid "Status" +msgstr "Status" + +#: include/nav.php:83 include/nav.php:163 view/theme/frio/theme.php:248 +msgid "Your posts and conversations" +msgstr "My posts and conversations" + +#: include/nav.php:84 include/identity.php:632 include/identity.php:759 +#: include/identity.php:792 mod/newmember.php:20 mod/profperm.php:107 +#: mod/contacts.php:650 mod/contacts.php:852 view/theme/frio/theme.php:249 +msgid "Profile" +msgstr "Profile" + +#: include/nav.php:84 view/theme/frio/theme.php:249 +msgid "Your profile page" +msgstr "My profile page" + +#: include/nav.php:85 include/identity.php:800 mod/fbrowser.php:33 +#: view/theme/frio/theme.php:250 +msgid "Photos" +msgstr "Photos" + +#: include/nav.php:85 view/theme/frio/theme.php:250 +msgid "Your photos" +msgstr "My photos" + +#: include/nav.php:86 include/identity.php:808 include/identity.php:811 +#: view/theme/frio/theme.php:251 +msgid "Videos" +msgstr "Videos" + +#: include/nav.php:86 view/theme/frio/theme.php:251 +msgid "Your videos" +msgstr "My videos" + +#: include/nav.php:87 include/nav.php:151 include/identity.php:820 +#: include/identity.php:831 mod/cal.php:272 mod/events.php:377 +#: view/theme/frio/theme.php:252 view/theme/frio/theme.php:256 +msgid "Events" +msgstr "Events" + +#: include/nav.php:87 view/theme/frio/theme.php:252 +msgid "Your events" +msgstr "My events" + +#: include/nav.php:88 +msgid "Personal notes" +msgstr "Personal notes" + +#: include/nav.php:88 +msgid "Your personal notes" +msgstr "My personal notes" + +#: include/nav.php:97 mod/bookmarklet.php:14 boot.php:863 +msgid "Login" +msgstr "Login" + +#: include/nav.php:97 +msgid "Sign in" +msgstr "Sign in" + +#: include/nav.php:107 +msgid "Home Page" +msgstr "Home page" + +#: include/nav.php:111 mod/register.php:291 boot.php:839 +msgid "Register" +msgstr "Register" + +#: include/nav.php:111 +msgid "Create an account" +msgstr "Create account" + +#: include/nav.php:117 mod/help.php:50 view/theme/vier/theme.php:299 +msgid "Help" +msgstr "Help" + +#: include/nav.php:117 +msgid "Help and documentation" +msgstr "Help and documentation" + +#: include/nav.php:121 +msgid "Apps" +msgstr "Apps" + +#: include/nav.php:121 +msgid "Addon applications, utilities, games" +msgstr "Addon applications, utilities, games" + +#: include/nav.php:125 +msgid "Search site content" +msgstr "Search site content" + +#: include/nav.php:145 include/nav.php:147 mod/community.php:32 msgid "Community" msgstr "Community" -#: include/nav.php:143 +#: include/nav.php:145 msgid "Conversations on this site" msgstr "Public conversations on this site" -#: include/nav.php:145 +#: include/nav.php:147 msgid "Conversations on the network" msgstr "Conversations on the network" -#: include/nav.php:149 include/identity.php:808 include/identity.php:819 -#: view/theme/frio/theme.php:254 +#: include/nav.php:151 include/identity.php:823 include/identity.php:834 +#: view/theme/frio/theme.php:256 msgid "Events and Calendar" msgstr "Events and calendar" -#: include/nav.php:152 +#: include/nav.php:154 msgid "Directory" msgstr "Directory" -#: include/nav.php:152 +#: include/nav.php:154 msgid "People directory" msgstr "People directory" -#: include/nav.php:154 +#: include/nav.php:156 msgid "Information" msgstr "Information" -#: include/nav.php:154 +#: include/nav.php:156 msgid "Information about this friendica instance" msgstr "Information about this Friendica instance" -#: include/nav.php:158 view/theme/frio/theme.php:253 +#: include/nav.php:160 view/theme/frio/theme.php:255 msgid "Conversations from your friends" msgstr "My friends' conversations" -#: include/nav.php:159 +#: include/nav.php:161 msgid "Network Reset" msgstr "Network reset" -#: include/nav.php:159 +#: include/nav.php:161 msgid "Load Network page with no filters" msgstr "Load network page without filters" -#: include/nav.php:166 +#: include/nav.php:168 msgid "Friend Requests" msgstr "Friend requests" -#: include/nav.php:169 mod/notifications.php:96 +#: include/nav.php:171 mod/notifications.php:98 msgid "Notifications" msgstr "Notifications" -#: include/nav.php:170 +#: include/nav.php:172 msgid "See all notifications" msgstr "See all notifications" -#: include/nav.php:171 mod/settings.php:906 +#: include/nav.php:173 mod/settings.php:907 msgid "Mark as seen" msgstr "Mark as seen" -#: include/nav.php:171 +#: include/nav.php:173 msgid "Mark all system notifications seen" msgstr "Mark all system notifications seen" -#: include/nav.php:175 mod/message.php:179 view/theme/frio/theme.php:255 +#: include/nav.php:177 mod/message.php:181 view/theme/frio/theme.php:257 msgid "Messages" msgstr "Messages" -#: include/nav.php:175 view/theme/frio/theme.php:255 +#: include/nav.php:177 view/theme/frio/theme.php:257 msgid "Private mail" msgstr "Private messages" -#: include/nav.php:176 +#: include/nav.php:178 msgid "Inbox" msgstr "Inbox" -#: include/nav.php:177 +#: include/nav.php:179 msgid "Outbox" msgstr "Outbox" -#: include/nav.php:178 mod/message.php:16 +#: include/nav.php:180 mod/message.php:18 msgid "New Message" msgstr "New Message" -#: include/nav.php:181 +#: include/nav.php:183 msgid "Manage" msgstr "Manage" -#: include/nav.php:181 +#: include/nav.php:183 msgid "Manage other pages" msgstr "Manage other pages" -#: include/nav.php:184 mod/settings.php:81 +#: include/nav.php:186 mod/settings.php:83 msgid "Delegations" msgstr "Delegations" -#: include/nav.php:184 mod/delegate.php:130 +#: include/nav.php:186 mod/delegate.php:132 msgid "Delegate Page Management" msgstr "Delegate page management" -#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111 -#: mod/admin.php:1618 mod/admin.php:1894 view/theme/frio/theme.php:256 +#: include/nav.php:188 mod/newmember.php:15 mod/admin.php:1624 +#: mod/admin.php:1900 mod/settings.php:113 view/theme/frio/theme.php:258 msgid "Settings" msgstr "Settings" -#: include/nav.php:186 view/theme/frio/theme.php:256 +#: include/nav.php:188 view/theme/frio/theme.php:258 msgid "Account settings" msgstr "Account settings" -#: include/nav.php:189 include/identity.php:290 +#: include/nav.php:191 include/identity.php:296 msgid "Profiles" msgstr "Profiles" -#: include/nav.php:189 +#: include/nav.php:191 msgid "Manage/Edit Profiles" msgstr "Manage/Edit profiles" -#: include/nav.php:192 view/theme/frio/theme.php:257 +#: include/nav.php:194 view/theme/frio/theme.php:259 msgid "Manage/edit friends and contacts" msgstr "Manage/Edit friends and contacts" -#: include/nav.php:197 mod/admin.php:196 +#: include/nav.php:199 mod/admin.php:197 msgid "Admin" msgstr "Admin" -#: include/nav.php:197 +#: include/nav.php:199 msgid "Site setup and configuration" msgstr "Site setup and configuration" -#: include/nav.php:200 +#: include/nav.php:202 msgid "Navigation" msgstr "Navigation" -#: include/nav.php:200 +#: include/nav.php:202 msgid "Site map" msgstr "Site map" -#: include/plugin.php:530 include/plugin.php:532 +#: include/network.php:687 +msgid "view full size" +msgstr "view full size" + +#: include/oembed.php:256 +msgid "Embedded content" +msgstr "Embedded content" + +#: include/oembed.php:264 +msgid "Embedding disabled" +msgstr "Embedding disabled" + +#: include/uimport.php:85 +msgid "Error decoding account file" +msgstr "Error decoding account file" + +#: include/uimport.php:91 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Error! No version data in file! Is this a Friendica account file?" + +#: include/uimport.php:108 include/uimport.php:119 +msgid "Error! Cannot check nickname" +msgstr "Error! Cannot check nickname." + +#: include/uimport.php:112 include/uimport.php:123 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "User '%s' already exists on this server!" + +#: include/uimport.php:145 +msgid "User creation error" +msgstr "User creation error" + +#: include/uimport.php:166 +msgid "User profile creation error" +msgstr "User profile creation error" + +#: include/uimport.php:215 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d contact not imported" +msgstr[1] "%d contacts not imported" + +#: include/uimport.php:281 +msgid "Done. You can now login with your username and password" +msgstr "Done. You can now login with your username and password" + +#: include/user.php:39 mod/settings.php:377 +msgid "Passwords do not match. Password unchanged." +msgstr "Passwords do not match. Password unchanged." + +#: include/user.php:48 +msgid "An invitation is required." +msgstr "An invitation is required." + +#: include/user.php:53 +msgid "Invitation could not be verified." +msgstr "Invitation could not be verified." + +#: include/user.php:61 +msgid "Invalid OpenID url" +msgstr "Invalid OpenID URL" + +#: include/user.php:82 +msgid "Please enter the required information." +msgstr "Please enter the required information." + +#: include/user.php:96 +msgid "Please use a shorter name." +msgstr "Please use a shorter name." + +#: include/user.php:98 +msgid "Name too short." +msgstr "Name too short." + +#: include/user.php:106 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "That doesn't appear to be your full (i.e first and last) name." + +#: include/user.php:111 +msgid "Your email domain is not among those allowed on this site." +msgstr "Your email domain is not allowed on this site." + +#: include/user.php:114 +msgid "Not a valid email address." +msgstr "Not a valid email address." + +#: include/user.php:127 +msgid "Cannot use that email." +msgstr "Cannot use that email." + +#: include/user.php:133 +msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." +msgstr "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." + +#: include/user.php:140 include/user.php:228 +msgid "Nickname is already registered. Please choose another." +msgstr "Nickname is already registered. Please choose another." + +#: include/user.php:150 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Nickname was once registered here and may not be re-used. Please choose another." + +#: include/user.php:166 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "SERIOUS ERROR: Generation of security keys failed." + +#: include/user.php:214 +msgid "An error occurred during registration. Please try again." +msgstr "An error occurred during registration. Please try again." + +#: include/user.php:237 view/theme/duepuntozero/config.php:46 +msgid "default" +msgstr "default" + +#: include/user.php:247 +msgid "An error occurred creating your default profile. Please try again." +msgstr "An error occurred creating your default profile. Please try again." + +#: include/user.php:260 include/user.php:264 include/profile_selectors.php:42 +msgid "Friends" +msgstr "Friends" + +#: include/user.php:306 include/user.php:314 include/user.php:322 +#: include/api.php:3697 mod/photos.php:73 mod/photos.php:189 +#: mod/photos.php:776 mod/photos.php:1258 mod/photos.php:1279 +#: mod/photos.php:1865 mod/profile_photo.php:74 mod/profile_photo.php:82 +#: mod/profile_photo.php:90 mod/profile_photo.php:214 +#: mod/profile_photo.php:309 mod/profile_photo.php:319 +msgid "Profile Photos" +msgstr "Profile photos" + +#: include/user.php:397 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" +"\t" +msgstr "\n\t\tDear %1$s,\n\t\t\tThank you for registering at %2$s. Your account is pending approval by the administrator.\n\t" + +#: include/user.php:407 +#, php-format +msgid "Registration at %s" +msgstr "Registration at %s" + +#: include/user.php:417 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t" +msgstr "\n\t\tDear %1$s,\n\t\t\tThank you for registering at %2$s. Your account has been created.\n\t" + +#: include/user.php:421 +#, php-format +msgid "" +"\n" +"\t\tThe login details are as follows:\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t%1$s\n" +"\t\t\tPassword:\t%5$s\n" +"\n" +"\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\tin.\n" +"\n" +"\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\tthan that.\n" +"\n" +"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\tIf you are new and do not know anybody here, they may help\n" +"\t\tyou to make some new and interesting friends.\n" +"\n" +"\n" +"\t\tThank you and welcome to %2$s." +msgstr "\n\t\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 for your account \"Settings\" 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 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, these settings may help to\n\t\tmake new and interesting friends.\n\n\n\t\tThank you and welcome to %2$s." + +#: include/user.php:453 mod/admin.php:1314 +#, php-format +msgid "Registration details for %s" +msgstr "Registration details for %s" + +#: include/api.php:1102 +#, php-format +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "Daily posting limit of %d posts reached. This post was rejected." + +#: include/api.php:1123 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." +msgstr "Weekly posting limit of %d posts reached. This post was rejected." + +#: include/api.php:1144 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "Monthly posting limit of %d posts reached. This post was rejected." + +#: include/dba.php:57 include/dba_pdo.php:75 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Cannot locate DNS info for database server '%s'" + +#: include/dbstructure.php:25 +msgid "There are no tables on MyISAM." +msgstr "There are no tables on MyISAM." + +#: include/dbstructure.php:66 +#, php-format +msgid "" +"\n" +"\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." +msgstr "\n\t\t\tThe Friendica 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\n might be invalid." + +#: include/dbstructure.php:71 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "The error message is\n[pre]%s[/pre]" + +#: include/dbstructure.php:195 +#, php-format +msgid "" +"\n" +"Error %d occurred during database update:\n" +"%s\n" +msgstr "\nError %d occurred during database update:\n%s\n" + +#: include/dbstructure.php:198 +msgid "Errors encountered performing database changes: " +msgstr "Errors encountered performing database changes: " + +#: include/dbstructure.php:206 +msgid ": Database update" +msgstr ": Database update" + +#: include/dbstructure.php:438 +#, php-format +msgid "%s: updating %s table." +msgstr "%s: updating %s table." + +#: include/diaspora.php:2214 +msgid "Sharing notification from Diaspora network" +msgstr "Sharing notification from Diaspora network" + +#: include/diaspora.php:3234 +msgid "Attachments:" +msgstr "Attachments:" + +#: include/identity.php:45 +msgid "Requested account is not available." +msgstr "Requested account is unavailable." + +#: include/identity.php:54 mod/profile.php:22 +msgid "Requested profile is not available." +msgstr "Requested profile is unavailable." + +#: include/identity.php:98 include/identity.php:325 include/identity.php:755 +msgid "Edit profile" +msgstr "Edit profile" + +#: include/identity.php:265 +msgid "Atom feed" +msgstr "Atom feed" + +#: include/identity.php:296 +msgid "Manage/edit profiles" +msgstr "Manage/Edit profiles" + +#: include/identity.php:301 include/identity.php:327 mod/profiles.php:790 +msgid "Change profile photo" +msgstr "Change profile photo" + +#: include/identity.php:302 mod/profiles.php:791 +msgid "Create New Profile" +msgstr "Create new profile" + +#: include/identity.php:312 mod/profiles.php:780 +msgid "Profile Image" +msgstr "Profile image" + +#: include/identity.php:315 mod/profiles.php:782 +msgid "visible to everybody" +msgstr "Visible to everybody" + +#: include/identity.php:316 mod/profiles.php:687 mod/profiles.php:783 +msgid "Edit visibility" +msgstr "Edit visibility" + +#: include/identity.php:344 include/identity.php:644 mod/directory.php:137 +#: mod/notifications.php:252 +msgid "Gender:" +msgstr "Gender:" + +#: include/identity.php:347 include/identity.php:665 mod/directory.php:139 +msgid "Status:" +msgstr "Status:" + +#: include/identity.php:349 include/identity.php:682 mod/directory.php:141 +msgid "Homepage:" +msgstr "Homepage:" + +#: include/identity.php:351 include/identity.php:702 mod/directory.php:143 +#: mod/notifications.php:248 mod/contacts.php:643 +msgid "About:" +msgstr "About:" + +#: include/identity.php:353 mod/contacts.php:641 +msgid "XMPP:" +msgstr "XMPP:" + +#: include/identity.php:439 mod/notifications.php:260 mod/contacts.php:58 +msgid "Network:" +msgstr "Network:" + +#: include/identity.php:468 include/identity.php:558 +msgid "g A l F d" +msgstr "g A l F d" + +#: include/identity.php:469 include/identity.php:559 +msgid "F d" +msgstr "F d" + +#: include/identity.php:520 include/identity.php:609 +msgid "[today]" +msgstr "[today]" + +#: include/identity.php:532 +msgid "Birthday Reminders" +msgstr "Birthday reminders" + +#: include/identity.php:533 +msgid "Birthdays this week:" +msgstr "Birthdays this week:" + +#: include/identity.php:595 +msgid "[No description]" +msgstr "[No description]" + +#: include/identity.php:620 +msgid "Event Reminders" +msgstr "Event reminders" + +#: include/identity.php:621 +msgid "Events this week:" +msgstr "Events this week:" + +#: include/identity.php:641 mod/settings.php:1287 +msgid "Full Name:" +msgstr "Full name:" + +#: include/identity.php:648 +msgid "j F, Y" +msgstr "j F, Y" + +#: include/identity.php:649 +msgid "j F" +msgstr "j F" + +#: include/identity.php:661 +msgid "Age:" +msgstr "Age:" + +#: include/identity.php:674 +#, php-format +msgid "for %1$d %2$s" +msgstr "for %1$d %2$s" + +#: include/identity.php:678 mod/profiles.php:706 +msgid "Sexual Preference:" +msgstr "Sexual preference:" + +#: include/identity.php:686 mod/profiles.php:733 +msgid "Hometown:" +msgstr "Home town:" + +#: include/identity.php:690 mod/follow.php:139 mod/notifications.php:250 +#: mod/contacts.php:645 +msgid "Tags:" +msgstr "Tags:" + +#: include/identity.php:694 mod/profiles.php:734 +msgid "Political Views:" +msgstr "Political views:" + +#: include/identity.php:698 +msgid "Religion:" +msgstr "Religion:" + +#: include/identity.php:706 +msgid "Hobbies/Interests:" +msgstr "Hobbies/Interests:" + +#: include/identity.php:710 mod/profiles.php:738 +msgid "Likes:" +msgstr "Likes:" + +#: include/identity.php:714 mod/profiles.php:739 +msgid "Dislikes:" +msgstr "Dislikes:" + +#: include/identity.php:718 +msgid "Contact information and Social Networks:" +msgstr "Contact information and social networks:" + +#: include/identity.php:722 +msgid "Musical interests:" +msgstr "Musical interests:" + +#: include/identity.php:726 +msgid "Books, literature:" +msgstr "Books/Literature:" + +#: include/identity.php:730 +msgid "Television:" +msgstr "Television:" + +#: include/identity.php:734 +msgid "Film/dance/culture/entertainment:" +msgstr "Arts, film, dance, culture, entertainment:" + +#: include/identity.php:738 +msgid "Love/Romance:" +msgstr "Love/Romance:" + +#: include/identity.php:742 +msgid "Work/employment:" +msgstr "Work/Employment:" + +#: include/identity.php:746 +msgid "School/education:" +msgstr "School/Education:" + +#: include/identity.php:751 +msgid "Forums:" +msgstr "Forums:" + +#: include/identity.php:760 mod/events.php:509 +msgid "Basic" +msgstr "Basic" + +#: include/identity.php:761 mod/events.php:510 mod/admin.php:1065 +#: mod/contacts.php:881 +msgid "Advanced" +msgstr "Advanced" + +#: include/identity.php:787 mod/follow.php:147 mod/contacts.php:847 +msgid "Status Messages and Posts" +msgstr "Status Messages and Posts" + +#: include/identity.php:795 mod/contacts.php:855 +msgid "Profile Details" +msgstr "Profile Details" + +#: include/identity.php:803 mod/photos.php:95 +msgid "Photo Albums" +msgstr "Photo Albums" + +#: include/identity.php:842 mod/notes.php:49 +msgid "Personal Notes" +msgstr "Personal notes" + +#: include/identity.php:845 +msgid "Only You Can See This" +msgstr "Only you can see this." + +#: include/items.php:1736 mod/dfrn_confirm.php:738 mod/dfrn_request.php:759 +msgid "[Name Withheld]" +msgstr "[Name Withheld]" + +#: include/items.php:2121 mod/display.php:105 mod/display.php:280 +#: mod/display.php:485 mod/notice.php:17 mod/viewsrc.php:16 mod/admin.php:248 +#: mod/admin.php:1571 mod/admin.php:1822 +msgid "Item not found." +msgstr "Item not found." + +#: include/items.php:2160 +msgid "Do you really want to delete this item?" +msgstr "Do you really want to delete this item?" + +#: include/items.php:2162 mod/api.php:107 mod/follow.php:115 +#: mod/message.php:208 mod/register.php:247 mod/suggest.php:31 +#: mod/dfrn_request.php:880 mod/contacts.php:455 mod/profiles.php:643 +#: mod/profiles.php:646 mod/profiles.php:673 mod/settings.php:1172 +#: mod/settings.php:1178 mod/settings.php:1185 mod/settings.php:1189 +#: mod/settings.php:1194 mod/settings.php:1199 mod/settings.php:1204 +#: mod/settings.php:1209 mod/settings.php:1235 mod/settings.php:1236 +#: mod/settings.php:1237 mod/settings.php:1238 mod/settings.php:1239 +msgid "Yes" +msgstr "Yes" + +#: include/items.php:2309 mod/allfriends.php:14 mod/api.php:28 mod/api.php:33 +#: mod/attach.php:35 mod/cal.php:301 mod/common.php:20 mod/crepair.php:105 +#: mod/delegate.php:14 mod/dfrn_confirm.php:63 mod/dirfind.php:15 +#: mod/display.php:482 mod/editpost.php:12 mod/events.php:188 +#: mod/follow.php:13 mod/follow.php:76 mod/follow.php:160 mod/fsuggest.php:80 +#: mod/group.php:20 mod/invite.php:17 mod/invite.php:105 mod/manage.php:103 +#: mod/message.php:48 mod/message.php:173 mod/mood.php:116 mod/network.php:7 +#: mod/nogroup.php:29 mod/notes.php:25 mod/notifications.php:73 +#: mod/ostatus_subscribe.php:11 mod/photos.php:168 mod/photos.php:1111 +#: mod/poke.php:155 mod/register.php:44 mod/repair_ostatus.php:11 +#: mod/suggest.php:60 mod/viewcontacts.php:49 mod/wall_attach.php:69 +#: mod/wall_attach.php:72 mod/wall_upload.php:101 mod/wall_upload.php:104 +#: mod/wallmessage.php:11 mod/wallmessage.php:35 mod/wallmessage.php:75 +#: mod/wallmessage.php:99 mod/item.php:197 mod/item.php:209 mod/regmod.php:106 +#: mod/uimport.php:26 mod/contacts.php:363 mod/profile_photo.php:19 +#: mod/profile_photo.php:179 mod/profile_photo.php:190 +#: mod/profile_photo.php:203 mod/profiles.php:172 mod/profiles.php:610 +#: mod/settings.php:24 mod/settings.php:132 mod/settings.php:669 index.php:410 +msgid "Permission denied." +msgstr "Permission denied." + +#: include/items.php:2426 +msgid "Archives" +msgstr "Archives" + +#: include/ostatus.php:1962 +#, php-format +msgid "%s is now following %s." +msgstr "%s is now following %s." + +#: include/ostatus.php:1963 +msgid "following" +msgstr "following" + +#: include/ostatus.php:1966 +#, php-format +msgid "%s stopped following %s." +msgstr "%s stopped following %s." + +#: include/ostatus.php:1967 +msgid "stopped following" +msgstr "stopped following" + +#: include/plugin.php:531 include/plugin.php:533 msgid "Click here to upgrade." msgstr "Click here to upgrade." -#: include/plugin.php:538 +#: include/plugin.php:539 msgid "This action exceeds the limits set by your subscription plan." msgstr "This action exceeds the limits set by your subscription plan." -#: include/plugin.php:543 +#: include/plugin.php:544 msgid "This action is not available under your subscription plan." msgstr "This action is not available under your subscription plan." @@ -504,12 +2930,6 @@ msgstr "Non-specific" msgid "Other" msgstr "Other" -#: include/profile_selectors.php:6 include/conversation.php:1547 -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "Undecided" -msgstr[1] "Undecided" - #: include/profile_selectors.php:23 msgid "Males" msgstr "Males" @@ -598,10 +3018,6 @@ msgstr "Unfaithful" msgid "Sex Addict" msgstr "Sex addict" -#: include/profile_selectors.php:42 include/user.php:263 include/user.php:267 -msgid "Friends" -msgstr "Friends" - #: include/profile_selectors.php:42 msgid "Friends/Benefits" msgstr "Friends with benefits" @@ -686,3301 +3102,1255 @@ msgstr "Don't care" msgid "Ask me" msgstr "Ask me" -#: include/security.php:61 -msgid "Welcome " -msgstr "Welcome " - -#: include/security.php:62 -msgid "Please upload a profile photo." -msgstr "Please upload a profile photo." - -#: include/security.php:65 -msgid "Welcome back " -msgstr "Welcome back " - -#: include/security.php:429 -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 "The form security token was incorrect. This probably happened because the form has not been submitted within 3 hours." - -#: include/uimport.php:91 -msgid "Error decoding account file" -msgstr "Error decoding account file" - -#: include/uimport.php:97 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Error! No version data in file! Is this a Friendica account file?" - -#: include/uimport.php:113 include/uimport.php:124 -msgid "Error! Cannot check nickname" -msgstr "Error! Cannot check nickname." - -#: include/uimport.php:117 include/uimport.php:128 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "User '%s' already exists on this server!" - -#: include/uimport.php:150 -msgid "User creation error" -msgstr "User creation error" - -#: include/uimport.php:170 -msgid "User profile creation error" -msgstr "User profile creation error" - -#: include/uimport.php:219 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d contact not imported" -msgstr[1] "%d contacts not imported" - -#: include/uimport.php:289 -msgid "Done. You can now login with your username and password" -msgstr "Done. You can now login with your username and password" - -#: include/Contact.php:395 include/Contact.php:408 include/Contact.php:453 -#: include/conversation.php:1004 include/conversation.php:1020 -#: mod/allfriends.php:68 mod/directory.php:157 mod/match.php:73 -#: mod/suggest.php:82 mod/dirfind.php:209 -msgid "View Profile" -msgstr "View profile" - -#: include/Contact.php:409 include/contact_widgets.php:32 -#: include/conversation.php:1017 mod/allfriends.php:69 mod/contacts.php:610 -#: mod/match.php:74 mod/suggest.php:83 mod/dirfind.php:210 mod/follow.php:106 -msgid "Connect/Follow" -msgstr "Connect/Follow" - -#: include/Contact.php:452 include/conversation.php:1003 -msgid "View Status" -msgstr "View status" - -#: include/Contact.php:454 include/conversation.php:1005 -msgid "View Photos" -msgstr "View photos" - -#: include/Contact.php:455 include/conversation.php:1006 -msgid "Network Posts" -msgstr "Network posts" - -#: include/Contact.php:456 include/conversation.php:1007 -msgid "View Contact" -msgstr "View contact" - -#: include/Contact.php:457 -msgid "Drop Contact" -msgstr "Drop contact" - -#: include/Contact.php:458 include/conversation.php:1008 -msgid "Send PM" -msgstr "Send PM" - -#: include/Contact.php:459 include/conversation.php:1012 -msgid "Poke" -msgstr "Poke" - -#: include/Contact.php:840 -msgid "Organisation" -msgstr "Organisation" - -#: include/Contact.php:843 -msgid "News" -msgstr "News" - -#: include/Contact.php:846 -msgid "Forum" -msgstr "Forum" - -#: include/acl_selectors.php:353 -msgid "Post to Email" -msgstr "Post to email" - -#: include/acl_selectors.php:358 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "Connectors are disabled since \"%s\" is enabled." - -#: include/acl_selectors.php:359 mod/settings.php:1188 -msgid "Hide your profile details from unknown viewers?" -msgstr "Hide profile details from unknown viewers?" - -#: include/acl_selectors.php:365 -msgid "Visible to everybody" -msgstr "Visible to everybody" - -#: include/acl_selectors.php:366 view/theme/vier/config.php:108 -msgid "show" -msgstr "show" - -#: include/acl_selectors.php:367 view/theme/vier/config.php:108 -msgid "don't show" -msgstr "don't show" - -#: include/acl_selectors.php:373 mod/editpost.php:123 -msgid "CC: email addresses" -msgstr "CC: email addresses" - -#: include/acl_selectors.php:374 mod/editpost.php:130 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Example: bob@example.com, mary@example.com" - -#: include/acl_selectors.php:376 mod/events.php:508 mod/photos.php:1196 -#: mod/photos.php:1593 -msgid "Permissions" -msgstr "Permissions" - -#: include/acl_selectors.php:377 -msgid "Close" -msgstr "Close" - -#: include/api.php:1089 -#, php-format -msgid "Daily posting limit of %d posts reached. The post was rejected." -msgstr "Daily posting limit of %d posts reached. This post was rejected." - -#: include/api.php:1110 -#, php-format -msgid "Weekly posting limit of %d posts reached. The post was rejected." -msgstr "Weekly posting limit of %d posts reached. This post was rejected." - -#: include/api.php:1131 -#, php-format -msgid "Monthly posting limit of %d posts reached. The post was rejected." -msgstr "Monthly posting limit of %d posts reached. This post was rejected." - -#: include/auth.php:51 -msgid "Logged out." -msgstr "Logged out." - -#: include/auth.php:122 include/auth.php:184 mod/openid.php:110 -msgid "Login failed." -msgstr "Login failed." - -#: include/auth.php:138 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 "We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID." - -#: include/auth.php:138 include/user.php:75 -msgid "The error message was:" -msgstr "The error message was:" - -#: include/bb2diaspora.php:230 include/event.php:17 mod/localtime.php:12 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" - -#: include/bb2diaspora.php:236 include/event.php:34 include/event.php:54 -#: include/event.php:525 -msgid "Starts:" -msgstr "Starts:" - -#: include/bb2diaspora.php:244 include/event.php:37 include/event.php:60 -#: include/event.php:526 -msgid "Finishes:" -msgstr "Finishes:" - -#: include/bb2diaspora.php:253 include/event.php:41 include/event.php:67 -#: include/event.php:527 include/identity.php:336 mod/contacts.php:636 -#: mod/directory.php:139 mod/events.php:493 mod/notifications.php:244 -msgid "Location:" -msgstr "Location:" - -#: include/bbcode.php:380 include/bbcode.php:1132 include/bbcode.php:1133 -msgid "Image/photo" -msgstr "Image/Photo" - -#: include/bbcode.php:497 -#, php-format -msgid "%2$s %3$s" -msgstr "%2$s %3$s" - -#: include/bbcode.php:1089 include/bbcode.php:1111 -msgid "$1 wrote:" -msgstr "$1 wrote:" - -#: include/bbcode.php:1141 include/bbcode.php:1142 -msgid "Encrypted content" -msgstr "Encrypted content" - -#: include/bbcode.php:1257 -msgid "Invalid source protocol" -msgstr "Invalid source protocol" - -#: include/bbcode.php:1267 -msgid "Invalid link protocol" -msgstr "Invalid link protocol" - -#: include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Unknown | Not categorised" - -#: include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Block immediately" - -#: 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 "Known to me, but no opinion" - -#: include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "OK, probably harmless" - -#: include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Reputable, has my trust" - -#: include/contact_selectors.php:56 mod/admin.php:980 -msgid "Frequently" -msgstr "Frequently" - -#: include/contact_selectors.php:57 mod/admin.php:981 -msgid "Hourly" -msgstr "Hourly" - -#: include/contact_selectors.php:58 mod/admin.php:982 -msgid "Twice daily" -msgstr "Twice daily" - -#: include/contact_selectors.php:59 mod/admin.php:983 -msgid "Daily" -msgstr "Daily" - -#: include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Weekly" - -#: include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Monthly" - -#: include/contact_selectors.php:76 mod/dfrn_request.php:886 -msgid "Friendica" -msgstr "Friendica" - -#: include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: include/contact_selectors.php:79 include/contact_selectors.php:86 -#: mod/admin.php:1490 mod/admin.php:1503 mod/admin.php:1516 mod/admin.php:1534 -msgid "Email" -msgstr "Email" - -#: include/contact_selectors.php:80 mod/dfrn_request.php:888 -#: mod/settings.php:848 -msgid "Diaspora" -msgstr "Diaspora" - -#: include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" - -#: include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" - -#: include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: include/contact_selectors.php:87 -msgid "Google+" -msgstr "Google+" - -#: include/contact_selectors.php:88 -msgid "pump.io" -msgstr "Pump.io" - -#: include/contact_selectors.php:89 -msgid "Twitter" -msgstr "Twitter" - -#: include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "Diaspora connector" - -#: include/contact_selectors.php:91 -msgid "GNU Social Connector" -msgstr "GNU Social connector" - -#: include/contact_selectors.php:92 -msgid "pnut" -msgstr "Pnut" - -#: include/contact_selectors.php:93 -msgid "App.net" -msgstr "App.net" - -#: include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Add new contact" - -#: include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Enter address or web location" - -#: include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Example: jo@example.com, http://example.com/jo" - -#: include/contact_widgets.php:10 include/identity.php:224 -#: mod/allfriends.php:85 mod/match.php:89 mod/suggest.php:101 -#: mod/dirfind.php:207 -msgid "Connect" -msgstr "Connect" - -#: include/contact_widgets.php:24 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invitation available" -msgstr[1] "%d invitations available" - -#: include/contact_widgets.php:30 -msgid "Find People" -msgstr "Find people" - -#: include/contact_widgets.php:31 -msgid "Enter name or interest" -msgstr "Enter name or interest" - -#: include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Examples: Robert Morgenstein, fishing" - -#: include/contact_widgets.php:34 mod/contacts.php:806 mod/directory.php:206 -msgid "Find" -msgstr "Find" - -#: include/contact_widgets.php:35 mod/suggest.php:114 -#: view/theme/vier/theme.php:201 -msgid "Friend Suggestions" -msgstr "Friend suggestions" - -#: include/contact_widgets.php:36 view/theme/vier/theme.php:200 -msgid "Similar Interests" -msgstr "Similar interests" - -#: include/contact_widgets.php:37 -msgid "Random Profile" -msgstr "Random profile" - -#: include/contact_widgets.php:38 view/theme/vier/theme.php:202 -msgid "Invite Friends" -msgstr "Invite friends" - -#: include/contact_widgets.php:125 -msgid "Networks" -msgstr "Networks" - -#: include/contact_widgets.php:128 -msgid "All Networks" -msgstr "All networks" - -#: include/contact_widgets.php:160 include/features.php:104 -msgid "Saved Folders" -msgstr "Saved Folders" - -#: include/contact_widgets.php:163 include/contact_widgets.php:198 -msgid "Everything" -msgstr "Everything" - -#: include/contact_widgets.php:195 -msgid "Categories" -msgstr "Categories" - -#: include/contact_widgets.php:264 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d contact in common" -msgstr[1] "%d contacts in common" - -#: include/conversation.php:159 -#, php-format -msgid "%1$s attends %2$s's %3$s" -msgstr "%1$s goes to %2$s's %3$s" - -#: include/conversation.php:162 -#, php-format -msgid "%1$s doesn't attend %2$s's %3$s" -msgstr "%1$s doesn't go %2$s's %3$s" - -#: include/conversation.php:165 -#, php-format -msgid "%1$s attends maybe %2$s's %3$s" -msgstr "%1$s might go to %2$s's %3$s" - -#: include/conversation.php:198 mod/dfrn_confirm.php:478 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s is now friends with %2$s" - -#: include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s poked %2$s" - -#: include/conversation.php:260 mod/mood.php:63 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s is currently %2$s" - -#: include/conversation.php:307 mod/tagger.php:95 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s tagged %2$s's %3$s with %4$s" - -#: include/conversation.php:334 -msgid "post/item" -msgstr "Post/Item" - -#: include/conversation.php:335 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s marked %2$s's %3$s as favourite" - -#: include/conversation.php:614 mod/content.php:372 mod/photos.php:1662 -#: mod/profiles.php:340 -msgid "Likes" -msgstr "Likes" - -#: include/conversation.php:614 mod/content.php:372 mod/photos.php:1662 -#: mod/profiles.php:344 -msgid "Dislikes" -msgstr "Dislikes" - -#: include/conversation.php:615 include/conversation.php:1541 -#: mod/content.php:373 mod/photos.php:1663 -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Attending" -msgstr[1] "Attending" - -#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1663 -msgid "Not attending" -msgstr "Not attending" - -#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1663 -msgid "Might attend" -msgstr "Might attend" - -#: include/conversation.php:747 mod/content.php:453 mod/content.php:759 -#: mod/photos.php:1728 object/Item.php:137 -msgid "Select" -msgstr "Select" - -#: include/conversation.php:748 mod/contacts.php:816 mod/contacts.php:1015 -#: mod/content.php:454 mod/content.php:760 mod/photos.php:1729 -#: mod/settings.php:744 mod/admin.php:1508 object/Item.php:138 -msgid "Delete" -msgstr "Delete" - -#: include/conversation.php:791 mod/content.php:487 mod/content.php:915 -#: mod/content.php:916 object/Item.php:356 object/Item.php:357 -#, php-format -msgid "View %s's profile @ %s" -msgstr "View %s's profile @ %s" - -#: include/conversation.php:803 object/Item.php:344 -msgid "Categories:" -msgstr "Categories:" - -#: include/conversation.php:804 object/Item.php:345 -msgid "Filed under:" -msgstr "Filed under:" - -#: include/conversation.php:811 mod/content.php:497 mod/content.php:928 -#: object/Item.php:370 -#, php-format -msgid "%s from %s" -msgstr "%s from %s" - -#: include/conversation.php:827 mod/content.php:513 -msgid "View in context" -msgstr "View in context" - -#: include/conversation.php:829 include/conversation.php:1298 -#: mod/content.php:515 mod/content.php:953 mod/editpost.php:114 -#: mod/wallmessage.php:140 mod/message.php:337 mod/message.php:522 -#: mod/photos.php:1627 object/Item.php:395 -msgid "Please wait" -msgstr "Please wait" - -#: include/conversation.php:906 -msgid "remove" -msgstr "Remove" - -#: include/conversation.php:910 -msgid "Delete Selected Items" -msgstr "Delete selected items" - -#: include/conversation.php:1002 -msgid "Follow Thread" -msgstr "Follow thread" - -#: include/conversation.php:1139 -#, php-format -msgid "%s likes this." -msgstr "%s likes this." - -#: include/conversation.php:1142 -#, php-format -msgid "%s doesn't like this." -msgstr "%s doesn't like this." - -#: include/conversation.php:1145 -#, php-format -msgid "%s attends." -msgstr "%s attends." - -#: include/conversation.php:1148 -#, php-format -msgid "%s doesn't attend." -msgstr "%s doesn't attend." - -#: include/conversation.php:1151 -#, php-format -msgid "%s attends maybe." -msgstr "%s may attend." - -#: include/conversation.php:1162 -msgid "and" -msgstr "and" - -#: include/conversation.php:1168 -#, php-format -msgid ", and %d other people" -msgstr ", and %d other people" - -#: include/conversation.php:1177 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d people like this" - -#: include/conversation.php:1178 -#, php-format -msgid "%s like this." -msgstr "%s like this." - -#: include/conversation.php:1181 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d people don't like this" - -#: include/conversation.php:1182 -#, php-format -msgid "%s don't like this." -msgstr "%s don't like this." - -#: include/conversation.php:1185 -#, php-format -msgid "%2$d people attend" -msgstr "%2$d people attend" - -#: include/conversation.php:1186 -#, php-format -msgid "%s attend." -msgstr "%s attend." - -#: include/conversation.php:1189 -#, php-format -msgid "%2$d people don't attend" -msgstr "%2$d people don't attend" - -#: include/conversation.php:1190 -#, php-format -msgid "%s don't attend." -msgstr "%s don't attend." - -#: include/conversation.php:1193 -#, php-format -msgid "%2$d people attend maybe" -msgstr "%2$d people attend maybe" - -#: include/conversation.php:1194 -#, php-format -msgid "%s anttend maybe." -msgstr "%s attend maybe." - -#: include/conversation.php:1223 include/conversation.php:1239 -msgid "Visible to everybody" -msgstr "Visible to everybody" - -#: include/conversation.php:1224 include/conversation.php:1240 -#: mod/wallmessage.php:114 mod/wallmessage.php:121 mod/message.php:271 -#: mod/message.php:278 mod/message.php:418 mod/message.php:425 -msgid "Please enter a link URL:" -msgstr "Please enter a link URL:" - -#: include/conversation.php:1225 include/conversation.php:1241 -msgid "Please enter a video link/URL:" -msgstr "Please enter a video link/URL:" - -#: include/conversation.php:1226 include/conversation.php:1242 -msgid "Please enter an audio link/URL:" -msgstr "Please enter an audio link/URL:" - -#: include/conversation.php:1227 include/conversation.php:1243 -msgid "Tag term:" -msgstr "Tag term:" - -#: include/conversation.php:1228 include/conversation.php:1244 -#: mod/filer.php:30 -msgid "Save to Folder:" -msgstr "Save to folder:" - -#: include/conversation.php:1229 include/conversation.php:1245 -msgid "Where are you right now?" -msgstr "Where are you right now?" - -#: include/conversation.php:1230 -msgid "Delete item(s)?" -msgstr "Delete item(s)?" - -#: include/conversation.php:1279 -msgid "Share" -msgstr "Share" - -#: include/conversation.php:1280 mod/editpost.php:100 mod/wallmessage.php:138 -#: mod/message.php:335 mod/message.php:519 -msgid "Upload photo" -msgstr "Upload photo" - -#: include/conversation.php:1281 mod/editpost.php:101 -msgid "upload photo" -msgstr "upload photo" - -#: include/conversation.php:1282 mod/editpost.php:102 -msgid "Attach file" -msgstr "Attach file" - -#: include/conversation.php:1283 mod/editpost.php:103 -msgid "attach file" -msgstr "attach file" - -#: include/conversation.php:1284 mod/editpost.php:104 mod/wallmessage.php:139 -#: mod/message.php:336 mod/message.php:520 -msgid "Insert web link" -msgstr "Insert web link" - -#: include/conversation.php:1285 mod/editpost.php:105 -msgid "web link" -msgstr "web link" - -#: include/conversation.php:1286 mod/editpost.php:106 -msgid "Insert video link" -msgstr "Insert video link" - -#: include/conversation.php:1287 mod/editpost.php:107 -msgid "video link" -msgstr "video link" - -#: include/conversation.php:1288 mod/editpost.php:108 -msgid "Insert audio link" -msgstr "Insert audio link" - -#: include/conversation.php:1289 mod/editpost.php:109 -msgid "audio link" -msgstr "audio link" - -#: include/conversation.php:1290 mod/editpost.php:110 -msgid "Set your location" -msgstr "Set your location" - -#: include/conversation.php:1291 mod/editpost.php:111 -msgid "set location" -msgstr "set location" - -#: include/conversation.php:1292 mod/editpost.php:112 -msgid "Clear browser location" -msgstr "Clear browser location" - -#: include/conversation.php:1293 mod/editpost.php:113 -msgid "clear location" -msgstr "clear location" - -#: include/conversation.php:1295 mod/editpost.php:127 -msgid "Set title" -msgstr "Set title" - -#: include/conversation.php:1297 mod/editpost.php:129 -msgid "Categories (comma-separated list)" -msgstr "Categories (comma-separated list)" - -#: include/conversation.php:1299 mod/editpost.php:115 -msgid "Permission settings" -msgstr "Permission settings" - -#: include/conversation.php:1300 mod/editpost.php:144 -msgid "permissions" -msgstr "permissions" - -#: include/conversation.php:1308 mod/editpost.php:124 -msgid "Public post" -msgstr "Public post" - -#: include/conversation.php:1313 mod/content.php:737 mod/editpost.php:135 -#: mod/events.php:503 mod/photos.php:1647 mod/photos.php:1689 -#: mod/photos.php:1769 object/Item.php:714 -msgid "Preview" -msgstr "Preview" - -#: include/conversation.php:1317 include/items.php:2167 mod/contacts.php:455 -#: mod/editpost.php:138 mod/fbrowser.php:100 mod/fbrowser.php:135 -#: mod/suggest.php:32 mod/tagrm.php:11 mod/tagrm.php:96 -#: mod/dfrn_request.php:894 mod/follow.php:124 mod/message.php:209 -#: mod/photos.php:245 mod/photos.php:337 mod/settings.php:682 -#: mod/settings.php:708 mod/videos.php:132 -msgid "Cancel" -msgstr "Cancel" - -#: include/conversation.php:1323 -msgid "Post to Groups" -msgstr "Post to groups" - -#: include/conversation.php:1324 -msgid "Post to Contacts" -msgstr "Post to contacts" - -#: include/conversation.php:1325 -msgid "Private post" -msgstr "Private post" - -#: include/conversation.php:1330 include/identity.php:264 mod/editpost.php:142 -msgid "Message" -msgstr "Message" - -#: include/conversation.php:1331 mod/editpost.php:143 -msgid "Browser" -msgstr "Browser" - -#: include/conversation.php:1513 -msgid "View all" -msgstr "View all" - -#: include/conversation.php:1535 -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Like" -msgstr[1] "Likes" - -#: include/conversation.php:1538 -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Dislike" -msgstr[1] "Dislikes" - -#: include/conversation.php:1544 -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Not attending" -msgstr[1] "Not attending" - -#: include/datetime.php:66 include/datetime.php:68 mod/profiles.php:698 -msgid "Miscellaneous" -msgstr "Miscellaneous" - -#: include/datetime.php:196 include/identity.php:644 -msgid "Birthday:" -msgstr "Birthday:" - -#: include/datetime.php:198 mod/profiles.php:721 -msgid "Age: " -msgstr "Age: " - -#: include/datetime.php:200 -msgid "YYYY-MM-DD or MM-DD" -msgstr "YYYY-MM-DD or MM-DD" - -#: include/datetime.php:370 -msgid "never" -msgstr "never" - -#: include/datetime.php:376 -msgid "less than a second ago" -msgstr "less than a second ago" - -#: include/datetime.php:379 -msgid "year" -msgstr "year" - -#: include/datetime.php:379 -msgid "years" -msgstr "years" - -#: include/datetime.php:380 include/event.php:519 mod/cal.php:279 -#: mod/events.php:384 -msgid "month" -msgstr "month" - -#: include/datetime.php:380 -msgid "months" -msgstr "months" - -#: include/datetime.php:381 include/event.php:520 mod/cal.php:280 -#: mod/events.php:385 -msgid "week" -msgstr "week" - -#: include/datetime.php:381 -msgid "weeks" -msgstr "weeks" - -#: include/datetime.php:382 include/event.php:521 mod/cal.php:281 -#: mod/events.php:386 -msgid "day" -msgstr "day" - -#: include/datetime.php:382 -msgid "days" -msgstr "days" - -#: include/datetime.php:383 -msgid "hour" -msgstr "hour" - -#: include/datetime.php:383 -msgid "hours" -msgstr "hours" - -#: include/datetime.php:384 -msgid "minute" -msgstr "minute" - -#: include/datetime.php:384 -msgid "minutes" -msgstr "minutes" - -#: include/datetime.php:385 -msgid "second" -msgstr "second" - -#: include/datetime.php:385 -msgid "seconds" -msgstr "seconds" - -#: include/datetime.php:394 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s ago" - -#: include/datetime.php:620 -#, php-format -msgid "%s's birthday" -msgstr "%s's birthday" - -#: include/datetime.php:621 include/dfrn.php:1252 -#, php-format -msgid "Happy Birthday %s" -msgstr "Happy Birthday, %s!" - -#: include/dba_pdo.php:72 include/dba.php:47 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Cannot locate DNS info for database server '%s'" - -#: include/enotify.php:24 -msgid "Friendica Notification" -msgstr "Friendica notification" - -#: include/enotify.php:27 -msgid "Thank You," -msgstr "Thank you" - -#: include/enotify.php:30 -#, php-format -msgid "%s Administrator" -msgstr "%s Administrator" - -#: include/enotify.php:32 -#, php-format -msgid "%1$s, %2$s Administrator" -msgstr "%1$s, %2$s Administrator" - -#: include/enotify.php:70 -#, php-format -msgid "%s " -msgstr "%s " - -#: include/enotify.php:83 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica:Notify] New mail received at %s" - -#: include/enotify.php:85 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s sent you a new private message at %2$s." - -#: include/enotify.php:86 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s sent you %2$s." - -#: include/enotify.php:86 -msgid "a private message" -msgstr "a private message" - -#: include/enotify.php:88 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Please visit %s to view or reply to your private messages." - -#: include/enotify.php:134 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "%1$s commented on [url=%2$s]a %3$s[/url]" - -#: include/enotify.php:141 -#, php-format -msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" -msgstr "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" - -#: include/enotify.php:149 -#, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "%1$s commented on [url=%2$s]your %3$s[/url]" - -#: include/enotify.php:159 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Friendica:Notify] Comment to conversation #%1$d by %2$s" - -#: include/enotify.php:161 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s commented on an item/conversation you have been following." - -#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192 -#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Please visit %s to view or reply to the conversation." - -#: include/enotify.php:171 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica:Notify] %s posted to your profile wall" - -#: include/enotify.php:173 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s posted to your profile wall at %2$s" - -#: include/enotify.php:174 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "%1$s posted to [url=%2$s]your wall[/url]" - -#: include/enotify.php:185 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Notify] %s tagged you" - -#: include/enotify.php:187 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s tagged you at %2$s" - -#: include/enotify.php:188 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [url=%2$s]tagged you[/url]." - -#: include/enotify.php:199 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" -msgstr "[Friendica:Notify] %s shared a new post" - -#: include/enotify.php:201 -#, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "%1$s shared a new post at %2$s" - -#: include/enotify.php:202 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "%1$s [url=%2$s]shared a post[/url]." - -#: include/enotify.php:213 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica:Notify] %1$s poked you" - -#: include/enotify.php:215 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s poked you at %2$s" - -#: include/enotify.php:216 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "%1$s [url=%2$s]poked you[/url]." - -#: include/enotify.php:231 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica:Notify] %s tagged your post" - -#: include/enotify.php:233 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s tagged your post at %2$s" - -#: include/enotify.php:234 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s tagged [url=%2$s]your post[/url]" - -#: include/enotify.php:245 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Notify] Introduction received" - -#: include/enotify.php:247 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "You've received an introduction from '%1$s' at %2$s" - -#: include/enotify.php:248 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "You've received [url=%1$s]an introduction[/url] from %2$s." - -#: include/enotify.php:252 include/enotify.php:295 -#, php-format -msgid "You may visit their profile at %s" -msgstr "You may visit their profile at %s" - -#: include/enotify.php:254 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Please visit %s to approve or reject the introduction." - -#: include/enotify.php:262 -msgid "[Friendica:Notify] A new person is sharing with you" -msgstr "[Friendica:Notify] A new person is sharing with you" - -#: include/enotify.php:264 include/enotify.php:265 -#, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "%1$s is sharing with you at %2$s" - -#: include/enotify.php:271 -msgid "[Friendica:Notify] You have a new follower" -msgstr "[Friendica:Notify] You have a new follower" - -#: include/enotify.php:273 include/enotify.php:274 -#, php-format -msgid "You have a new follower at %2$s : %1$s" -msgstr "You have a new follower at %2$s : %1$s" - -#: include/enotify.php:285 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "[Friendica:Notify] Friend suggestion received" - -#: include/enotify.php:287 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "You've received a friend suggestion from '%1$s' at %2$s" - -#: include/enotify.php:288 -#, php-format -msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." - -#: include/enotify.php:293 -msgid "Name:" -msgstr "Name:" - -#: include/enotify.php:294 -msgid "Photo:" -msgstr "Photo:" - -#: include/enotify.php:297 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Please visit %s to approve or reject the suggestion." - -#: include/enotify.php:305 include/enotify.php:319 -msgid "[Friendica:Notify] Connection accepted" -msgstr "[Friendica:Notify] Connection accepted" - -#: include/enotify.php:307 include/enotify.php:321 -#, php-format -msgid "'%1$s' has accepted your connection request at %2$s" -msgstr "'%1$s' has accepted your connection request at %2$s" - -#: include/enotify.php:308 include/enotify.php:322 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." -msgstr "%2$s has accepted your [url=%1$s]connection request[/url]." - -#: include/enotify.php:312 -msgid "" -"You are now mutual friends and may exchange status updates, photos, and " -"email without restriction." -msgstr "You are now mutual friends and may exchange status updates, photos, and email without restriction." - -#: include/enotify.php:314 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "Please visit %s if you wish to make any changes to this relationship." - -#: include/enotify.php:326 -#, php-format -msgid "" -"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " -"communication - such as private messaging and some profile interactions. If " -"this is a celebrity or community page, these settings were applied " -"automatically." -msgstr "'%1$s' has chosen to accept you as \"Follower\". This 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." - -#: include/enotify.php:328 -#, php-format -msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future." -msgstr "'%1$s' may choose to extend this into a two-way or more permissive relationship in the future." - -#: include/enotify.php:330 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "Please visit %s if you wish to make any changes to this relationship." - -#: include/enotify.php:340 -msgid "[Friendica System:Notify] registration request" -msgstr "[Friendica:Notify] registration request" - -#: include/enotify.php:342 -#, php-format -msgid "You've received a registration request from '%1$s' at %2$s" -msgstr "You've received a registration request from '%1$s' at %2$s." - -#: include/enotify.php:343 -#, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." -msgstr "You've received a [url=%1$s]registration request[/url] from %2$s." - -#: include/enotify.php:347 -#, php-format -msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" -msgstr "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" - -#: include/enotify.php:350 -#, php-format -msgid "Please visit %s to approve or reject the request." -msgstr "Please visit %s to approve or reject the request." - -#: include/event.php:474 -msgid "all-day" -msgstr "All-day" - -#: include/event.php:476 -msgid "Sun" -msgstr "Sun" - -#: include/event.php:477 -msgid "Mon" -msgstr "Mon" - -#: include/event.php:478 -msgid "Tue" -msgstr "Tue" - -#: include/event.php:479 -msgid "Wed" -msgstr "Wed" - -#: include/event.php:480 -msgid "Thu" -msgstr "Thu" - -#: include/event.php:481 -msgid "Fri" -msgstr "Fri" - -#: include/event.php:482 -msgid "Sat" -msgstr "Sat" - -#: include/event.php:484 include/text.php:1198 mod/settings.php:981 -msgid "Sunday" -msgstr "Sunday" - -#: include/event.php:485 include/text.php:1198 mod/settings.php:981 -msgid "Monday" -msgstr "Monday" - -#: include/event.php:486 include/text.php:1198 -msgid "Tuesday" -msgstr "Tuesday" - -#: include/event.php:487 include/text.php:1198 -msgid "Wednesday" -msgstr "Wednesday" - -#: include/event.php:488 include/text.php:1198 -msgid "Thursday" -msgstr "Thursday" - -#: include/event.php:489 include/text.php:1198 -msgid "Friday" -msgstr "Friday" - -#: include/event.php:490 include/text.php:1198 -msgid "Saturday" -msgstr "Saturday" - -#: include/event.php:492 -msgid "Jan" -msgstr "Jan" - -#: include/event.php:493 -msgid "Feb" -msgstr "Feb" - -#: include/event.php:494 -msgid "Mar" -msgstr "Mar" - -#: include/event.php:495 -msgid "Apr" -msgstr "Apr" - -#: include/event.php:496 include/event.php:509 include/text.php:1202 -msgid "May" -msgstr "May" - -#: include/event.php:497 -msgid "Jun" -msgstr "Jun" - -#: include/event.php:498 -msgid "Jul" -msgstr "Jul" - -#: include/event.php:499 -msgid "Aug" -msgstr "Aug" - -#: include/event.php:500 -msgid "Sept" -msgstr "Sep" - -#: include/event.php:501 -msgid "Oct" -msgstr "Oct" - -#: include/event.php:502 -msgid "Nov" -msgstr "Nov" - -#: include/event.php:503 -msgid "Dec" -msgstr "Dec" - -#: include/event.php:505 include/text.php:1202 -msgid "January" -msgstr "January" - -#: include/event.php:506 include/text.php:1202 -msgid "February" -msgstr "February" - -#: include/event.php:507 include/text.php:1202 -msgid "March" -msgstr "March" - -#: include/event.php:508 include/text.php:1202 -msgid "April" -msgstr "April" - -#: include/event.php:510 include/text.php:1202 -msgid "June" -msgstr "June" - -#: include/event.php:511 include/text.php:1202 -msgid "July" -msgstr "July" - -#: include/event.php:512 include/text.php:1202 -msgid "August" -msgstr "August" - -#: include/event.php:513 include/text.php:1202 -msgid "September" -msgstr "September" - -#: include/event.php:514 include/text.php:1202 -msgid "October" -msgstr "October" - -#: include/event.php:515 include/text.php:1202 -msgid "November" -msgstr "November" - -#: include/event.php:516 include/text.php:1202 -msgid "December" -msgstr "December" - -#: include/event.php:518 mod/cal.php:278 mod/events.php:383 -msgid "today" -msgstr "today" - -#: include/event.php:523 -msgid "No events to display" -msgstr "No events to display" - -#: include/event.php:636 -msgid "l, F j" -msgstr "l, F j" - -#: include/event.php:658 -msgid "Edit event" -msgstr "Edit event" - -#: include/event.php:659 -msgid "Delete event" -msgstr "Delete event" - -#: include/event.php:685 include/text.php:1600 include/text.php:1607 -msgid "link to source" -msgstr "Link to source" - -#: include/event.php:939 -msgid "Export" -msgstr "Export" - -#: include/event.php:940 -msgid "Export calendar as ical" -msgstr "Export calendar as ical" - -#: include/event.php:941 -msgid "Export calendar as csv" -msgstr "Export calendar as csv" - -#: include/features.php:65 -msgid "General Features" -msgstr "General" - -#: include/features.php:67 -msgid "Multiple Profiles" -msgstr "Multiple profiles" - -#: include/features.php:67 -msgid "Ability to create multiple profiles" -msgstr "Ability to create multiple profiles" - -#: include/features.php:68 -msgid "Photo Location" -msgstr "Photo location" - -#: include/features.php:68 -msgid "" -"Photo metadata is normally stripped. This extracts the location (if present)" -" prior to stripping metadata and links it to a map." -msgstr "Photo metadata is normally removed. This extracts the location (if present) prior to removing metadata and links it to a map." - -#: include/features.php:69 -msgid "Export Public Calendar" -msgstr "Export public calendar" - -#: include/features.php:69 -msgid "Ability for visitors to download the public calendar" -msgstr "Ability for visitors to download the public calendar" - -#: include/features.php:74 -msgid "Post Composition Features" -msgstr "Post composition" - -#: include/features.php:75 -msgid "Post Preview" -msgstr "Post preview" - -#: include/features.php:75 -msgid "Allow previewing posts and comments before publishing them" -msgstr "Allow previewing posts and comments before publishing them" - -#: include/features.php:76 -msgid "Auto-mention Forums" -msgstr "Auto-mention forums" - -#: include/features.php:76 -msgid "" -"Add/remove mention when a forum page is selected/deselected in ACL window." -msgstr "Add/Remove mention when a forum page is selected or deselected in the ACL window." - -#: include/features.php:81 -msgid "Network Sidebar Widgets" -msgstr "Network sidebars" - -#: include/features.php:82 -msgid "Search by Date" -msgstr "Search by date" - -#: include/features.php:82 -msgid "Ability to select posts by date ranges" -msgstr "Ability to select posts by date ranges" - -#: include/features.php:83 include/features.php:113 -msgid "List Forums" -msgstr "List forums" - -#: include/features.php:83 -msgid "Enable widget to display the forums your are connected with" -msgstr "Enable widget to display the forums your are connected with" - -#: include/features.php:84 -msgid "Group Filter" -msgstr "Group filter" - -#: include/features.php:84 -msgid "Enable widget to display Network posts only from selected group" -msgstr "Enable widget to display network posts only from selected group" - -#: include/features.php:85 -msgid "Network Filter" -msgstr "Network filter" - -#: include/features.php:85 -msgid "Enable widget to display Network posts only from selected network" -msgstr "Enable widget to display network posts only from selected network" - -#: include/features.php:86 mod/network.php:206 mod/search.php:34 -msgid "Saved Searches" -msgstr "Saved searches" - -#: include/features.php:86 -msgid "Save search terms for re-use" -msgstr "Save search terms for re-use" - -#: include/features.php:91 -msgid "Network Tabs" -msgstr "Network tabs" - -#: include/features.php:92 -msgid "Network Personal Tab" -msgstr "Network personal tab" - -#: include/features.php:92 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Enable tab to display only network posts that you've interacted with" - -#: include/features.php:93 -msgid "Network New Tab" -msgstr "Network new tab" - -#: include/features.php:93 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "Enable tab to display only new network posts (last 12 hours)" - -#: include/features.php:94 -msgid "Network Shared Links Tab" -msgstr "Network shared links tab" - -#: include/features.php:94 -msgid "Enable tab to display only Network posts with links in them" -msgstr "Enable tab to display only network posts with links in them" - -#: include/features.php:99 -msgid "Post/Comment Tools" -msgstr "Post/Comment tools" - -#: include/features.php:100 -msgid "Multiple Deletion" -msgstr "Multiple deletion" - -#: include/features.php:100 -msgid "Select and delete multiple posts/comments at once" -msgstr "Select and delete multiple posts/comments at once" - -#: include/features.php:101 -msgid "Edit Sent Posts" -msgstr "Edit sent posts" - -#: include/features.php:101 -msgid "Edit and correct posts and comments after sending" -msgstr "Ability to editing posts and comments after sending" - -#: include/features.php:102 -msgid "Tagging" -msgstr "Tagging" - -#: include/features.php:102 -msgid "Ability to tag existing posts" -msgstr "Ability to tag existing posts" - -#: include/features.php:103 -msgid "Post Categories" -msgstr "Post categories" - -#: include/features.php:103 -msgid "Add categories to your posts" -msgstr "Add categories to your posts" - -#: include/features.php:104 -msgid "Ability to file posts under folders" -msgstr "Ability to file posts under folders" - -#: include/features.php:105 -msgid "Dislike Posts" -msgstr "Dislike posts" - -#: include/features.php:105 -msgid "Ability to dislike posts/comments" -msgstr "Ability to dislike posts/comments" - -#: include/features.php:106 -msgid "Star Posts" -msgstr "Star posts" - -#: include/features.php:106 -msgid "Ability to mark special posts with a star indicator" -msgstr "Ability to highlight posts with a star" - -#: include/features.php:107 -msgid "Mute Post Notifications" -msgstr "Mute post notifications" - -#: include/features.php:107 -msgid "Ability to mute notifications for a thread" -msgstr "Ability to mute notifications for a thread" - -#: include/features.php:112 -msgid "Advanced Profile Settings" -msgstr "Advanced profiles" - -#: include/features.php:113 -msgid "Show visitors public community forums at the Advanced Profile Page" -msgstr "Show visitors of public community forums at the advanced profile page" - -#: include/follow.php:81 mod/dfrn_request.php:512 -msgid "Disallowed profile URL." -msgstr "Disallowed profile URL." - -#: include/follow.php:86 mod/dfrn_request.php:518 mod/friendica.php:114 -#: mod/admin.php:279 mod/admin.php:297 -msgid "Blocked domain" -msgstr "Blocked domain" - -#: include/follow.php:91 -msgid "Connect URL missing." -msgstr "Connect URL missing." - -#: include/follow.php:119 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "This site is not configured to allow communications with other networks." - -#: include/follow.php:120 include/follow.php:134 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "No compatible communication protocols or feeds were discovered." - -#: include/follow.php:132 -msgid "The profile address specified does not provide adequate information." -msgstr "The profile address specified does not provide adequate information." - -#: include/follow.php:137 -msgid "An author or name was not found." -msgstr "An author or name was not found." - -#: include/follow.php:140 -msgid "No browser URL could be matched to this address." -msgstr "No browser URL could be matched to this address." - -#: include/follow.php:143 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Unable to match @-style identity address with a known protocol or email contact." - -#: include/follow.php:144 -msgid "Use mailto: in front of address to force email check." -msgstr "Use mailto: in front of address to force email check." - -#: include/follow.php:150 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "The profile address specified belongs to a network which has been disabled on this site." - -#: include/follow.php:155 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Limited profile: This person will be unable to receive direct/private messages from you." - -#: include/follow.php:256 -msgid "Unable to retrieve contact information." -msgstr "Unable to retrieve contact information." - -#: 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 "A deleted group with this name has been 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/group.php:210 -msgid "Default privacy group for new contacts" -msgstr "Default privacy group for new contacts" - -#: include/group.php:243 -msgid "Everybody" -msgstr "Everybody" - -#: include/group.php:266 -msgid "edit" -msgstr "edit" - -#: include/group.php:287 mod/newmember.php:61 -msgid "Groups" -msgstr "Groups" - -#: include/group.php:289 -msgid "Edit groups" -msgstr "Edit groups" - -#: include/group.php:291 -msgid "Edit group" -msgstr "Edit group" - -#: include/group.php:292 -msgid "Create a new group" -msgstr "Create new group" - -#: include/group.php:293 mod/group.php:99 mod/group.php:196 -msgid "Group Name: " -msgstr "Group name: " - -#: include/group.php:295 -msgid "Contacts not in any group" -msgstr "Contacts not in any group" - -#: include/group.php:297 mod/network.php:207 -msgid "add" -msgstr "add" - -#: include/identity.php:43 -msgid "Requested account is not available." -msgstr "Requested account is unavailable." - -#: include/identity.php:52 mod/profile.php:21 -msgid "Requested profile is not available." -msgstr "Requested profile is unavailable." - -#: include/identity.php:96 include/identity.php:319 include/identity.php:740 -msgid "Edit profile" -msgstr "Edit profile" - -#: include/identity.php:259 -msgid "Atom feed" -msgstr "Atom feed" - -#: include/identity.php:290 -msgid "Manage/edit profiles" -msgstr "Manage/Edit profiles" - -#: include/identity.php:295 include/identity.php:321 mod/profiles.php:787 -msgid "Change profile photo" -msgstr "Change profile photo" - -#: include/identity.php:296 mod/profiles.php:788 -msgid "Create New Profile" -msgstr "Create new profile" - -#: include/identity.php:306 mod/profiles.php:777 -msgid "Profile Image" -msgstr "Profile image" - -#: include/identity.php:309 mod/profiles.php:779 -msgid "visible to everybody" -msgstr "Visible to everybody" - -#: include/identity.php:310 mod/profiles.php:684 mod/profiles.php:780 -msgid "Edit visibility" -msgstr "Edit visibility" - -#: include/identity.php:338 include/identity.php:633 mod/directory.php:141 -#: mod/notifications.php:250 -msgid "Gender:" -msgstr "Gender:" - -#: include/identity.php:341 include/identity.php:651 mod/directory.php:143 -msgid "Status:" -msgstr "Status:" - -#: include/identity.php:343 include/identity.php:667 mod/directory.php:145 -msgid "Homepage:" -msgstr "Home page:" - -#: include/identity.php:345 include/identity.php:687 mod/contacts.php:640 -#: mod/directory.php:147 mod/notifications.php:246 -msgid "About:" -msgstr "About:" - -#: include/identity.php:347 mod/contacts.php:638 -msgid "XMPP:" -msgstr "XMPP:" - -#: include/identity.php:433 mod/contacts.php:55 mod/notifications.php:258 -msgid "Network:" -msgstr "Network:" - -#: include/identity.php:462 include/identity.php:552 -msgid "g A l F d" -msgstr "g A l F d" - -#: include/identity.php:463 include/identity.php:553 -msgid "F d" -msgstr "F d" - -#: include/identity.php:514 include/identity.php:599 -msgid "[today]" -msgstr "[today]" - -#: include/identity.php:526 -msgid "Birthday Reminders" -msgstr "Birthday reminders" - -#: include/identity.php:527 -msgid "Birthdays this week:" -msgstr "Birthdays this week:" - -#: include/identity.php:586 -msgid "[No description]" -msgstr "[No description]" - -#: include/identity.php:610 -msgid "Event Reminders" -msgstr "Event reminders" - -#: include/identity.php:611 -msgid "Events this week:" -msgstr "Events this week:" - -#: include/identity.php:631 mod/settings.php:1286 -msgid "Full Name:" -msgstr "Full name:" - -#: include/identity.php:636 -msgid "j F, Y" -msgstr "j F, Y" - -#: include/identity.php:637 -msgid "j F" -msgstr "j F" - -#: include/identity.php:648 -msgid "Age:" -msgstr "Age:" - -#: include/identity.php:659 -#, php-format -msgid "for %1$d %2$s" -msgstr "for %1$d %2$s" - -#: include/identity.php:663 mod/profiles.php:703 -msgid "Sexual Preference:" -msgstr "Sexual preference:" - -#: include/identity.php:671 mod/profiles.php:730 -msgid "Hometown:" -msgstr "Home town:" - -#: include/identity.php:675 mod/contacts.php:642 mod/follow.php:137 -#: mod/notifications.php:248 -msgid "Tags:" -msgstr "Tags:" - -#: include/identity.php:679 mod/profiles.php:731 -msgid "Political Views:" -msgstr "Political views:" - -#: include/identity.php:683 -msgid "Religion:" -msgstr "Religion:" - -#: include/identity.php:691 -msgid "Hobbies/Interests:" -msgstr "Hobbies/Interests:" - -#: include/identity.php:695 mod/profiles.php:735 -msgid "Likes:" -msgstr "Likes:" - -#: include/identity.php:699 mod/profiles.php:736 -msgid "Dislikes:" -msgstr "Dislikes:" - -#: include/identity.php:703 -msgid "Contact information and Social Networks:" -msgstr "Contact information and social networks:" - -#: include/identity.php:707 -msgid "Musical interests:" -msgstr "Musical interests:" - -#: include/identity.php:711 -msgid "Books, literature:" -msgstr "Books/Literature:" - -#: include/identity.php:715 -msgid "Television:" -msgstr "Television:" - -#: include/identity.php:719 -msgid "Film/dance/culture/entertainment:" -msgstr "Arts, film, dance, culture, entertainment:" - -#: include/identity.php:723 -msgid "Love/Romance:" -msgstr "Love/Romance:" - -#: include/identity.php:727 -msgid "Work/employment:" -msgstr "Work/Employment:" - -#: include/identity.php:731 -msgid "School/education:" -msgstr "School/Education:" - -#: include/identity.php:736 -msgid "Forums:" -msgstr "Forums:" - -#: include/identity.php:745 mod/events.php:506 -msgid "Basic" -msgstr "Basic" - -#: include/identity.php:746 mod/contacts.php:878 mod/events.php:507 -#: mod/admin.php:1059 -msgid "Advanced" -msgstr "Advanced" - -#: include/identity.php:772 mod/contacts.php:844 mod/follow.php:145 -msgid "Status Messages and Posts" -msgstr "Status Messages and Posts" - -#: include/identity.php:780 mod/contacts.php:852 -msgid "Profile Details" -msgstr "Profile Details" - -#: include/identity.php:788 mod/photos.php:93 -msgid "Photo Albums" -msgstr "Photo Albums" - -#: include/identity.php:827 mod/notes.php:47 -msgid "Personal Notes" -msgstr "Personal notes" - -#: include/identity.php:830 -msgid "Only You Can See This" -msgstr "Only you can see this." - -#: include/network.php:687 -msgid "view full size" -msgstr "view full size" - -#: include/oembed.php:255 -msgid "Embedded content" -msgstr "Embedded content" - -#: include/oembed.php:263 -msgid "Embedding disabled" -msgstr "Embedding disabled" - -#: include/photos.php:57 include/photos.php:66 mod/fbrowser.php:40 -#: mod/fbrowser.php:61 mod/photos.php:187 mod/photos.php:1123 -#: mod/photos.php:1256 mod/photos.php:1277 mod/photos.php:1839 -#: mod/photos.php:1853 -msgid "Contact Photos" -msgstr "Contact photos" - -#: include/user.php:39 mod/settings.php:375 -msgid "Passwords do not match. Password unchanged." -msgstr "Passwords do not match. Password unchanged." - -#: include/user.php:48 -msgid "An invitation is required." -msgstr "An invitation is required." - -#: include/user.php:53 -msgid "Invitation could not be verified." -msgstr "Invitation could not be verified." - -#: include/user.php:61 -msgid "Invalid OpenID url" -msgstr "Invalid OpenID URL" - -#: include/user.php:82 -msgid "Please enter the required information." -msgstr "Please enter the required information." - -#: include/user.php:96 -msgid "Please use a shorter name." -msgstr "Please use a shorter name." - -#: include/user.php:98 -msgid "Name too short." -msgstr "Name too short." - -#: include/user.php:106 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "That doesn't appear to be your full (i.e first and last) name." - -#: include/user.php:111 -msgid "Your email domain is not among those allowed on this site." -msgstr "Your email domain is not allowed on this site." - -#: include/user.php:114 -msgid "Not a valid email address." -msgstr "Not a valid email address." - -#: include/user.php:127 -msgid "Cannot use that email." -msgstr "Cannot use that email." - -#: include/user.php:133 -msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." -msgstr "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." - -#: include/user.php:140 include/user.php:228 -msgid "Nickname is already registered. Please choose another." -msgstr "Nickname is already registered. Please choose another." - -#: include/user.php:150 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "Nickname was once registered here and may not be re-used. Please choose another." - -#: include/user.php:166 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "SERIOUS ERROR: Generation of security keys failed." - -#: include/user.php:214 -msgid "An error occurred during registration. Please try again." -msgstr "An error occurred during registration. Please try again." - -#: include/user.php:239 view/theme/duepuntozero/config.php:43 -msgid "default" -msgstr "default" - -#: include/user.php:249 -msgid "An error occurred creating your default profile. Please try again." -msgstr "An error occurred creating your default profile. Please try again." - -#: include/user.php:309 include/user.php:317 include/user.php:325 -#: mod/profile_photo.php:74 mod/profile_photo.php:82 mod/profile_photo.php:90 -#: mod/profile_photo.php:215 mod/profile_photo.php:310 -#: mod/profile_photo.php:320 mod/photos.php:71 mod/photos.php:187 -#: mod/photos.php:774 mod/photos.php:1256 mod/photos.php:1277 -#: mod/photos.php:1863 -msgid "Profile Photos" -msgstr "Profile photos" - -#: include/user.php:400 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" -"\t" -msgstr "\n\t\tDear %1$s,\n\t\t\tThank you for registering at %2$s. Your account is pending approval by the administrator.\n\t" - -#: include/user.php:410 -#, php-format -msgid "Registration at %s" -msgstr "Registration at %s" - -#: include/user.php:420 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t" -msgstr "\n\t\tDear %1$s,\n\t\t\tThank you for registering at %2$s. Your account has been created.\n\t" - -#: include/user.php:424 -#, php-format -msgid "" -"\n" -"\t\tThe login details are as follows:\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t%1$s\n" -"\t\t\tPassword:\t%5$s\n" -"\n" -"\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\tin.\n" -"\n" -"\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\tthan that.\n" -"\n" -"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\tIf you are new and do not know anybody here, they may help\n" -"\t\tyou to make some new and interesting friends.\n" -"\n" -"\n" -"\t\tThank you and welcome to %2$s." -msgstr "\n\t\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 for your account \"Settings\" 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 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, these settings may help to\n\t\tmake new and interesting friends.\n\n\n\t\tThank you and welcome to %2$s." - -#: include/user.php:456 mod/admin.php:1308 -#, php-format -msgid "Registration details for %s" -msgstr "Registration details for %s" - -#: include/dbstructure.php:20 -msgid "There are no tables on MyISAM." -msgstr "There are no tables on MyISAM." - -#: include/dbstructure.php:61 -#, php-format -msgid "" -"\n" -"\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." -msgstr "\n\t\t\tThe Friendica 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\n might be invalid." - -#: include/dbstructure.php:66 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "The error message is\n[pre]%s[/pre]" - -#: include/dbstructure.php:190 -#, php-format -msgid "" -"\n" -"Error %d occurred during database update:\n" -"%s\n" -msgstr "\nError %d occurred during database update:\n%s\n" - -#: include/dbstructure.php:193 -msgid "Errors encountered performing database changes: " -msgstr "Errors encountered performing database changes: " - -#: include/dbstructure.php:201 -msgid ": Database update" -msgstr ": Database update" - -#: include/dbstructure.php:425 -#, php-format -msgid "%s: updating %s table." -msgstr "%s: updating %s table." - -#: include/dfrn.php:1251 -#, php-format -msgid "%s\\'s birthday" -msgstr "%s\\'s birthday" - -#: include/diaspora.php:2137 -msgid "Sharing notification from Diaspora network" -msgstr "Sharing notification from Diaspora network" - -#: include/diaspora.php:3146 -msgid "Attachments:" -msgstr "Attachments:" - -#: include/items.php:1738 mod/dfrn_confirm.php:736 mod/dfrn_request.php:759 -msgid "[Name Withheld]" -msgstr "[Name Withheld]" - -#: include/items.php:2123 mod/display.php:103 mod/display.php:279 -#: mod/display.php:484 mod/notice.php:15 mod/viewsrc.php:15 mod/admin.php:247 -#: mod/admin.php:1565 mod/admin.php:1816 -msgid "Item not found." -msgstr "Item not found." - -#: include/items.php:2162 -msgid "Do you really want to delete this item?" -msgstr "Do you really want to delete this item?" - -#: include/items.php:2164 mod/api.php:105 mod/contacts.php:452 -#: mod/suggest.php:29 mod/dfrn_request.php:880 mod/follow.php:113 -#: mod/message.php:206 mod/profiles.php:640 mod/profiles.php:643 -#: mod/profiles.php:670 mod/register.php:245 mod/settings.php:1171 -#: mod/settings.php:1177 mod/settings.php:1184 mod/settings.php:1188 -#: mod/settings.php:1193 mod/settings.php:1198 mod/settings.php:1203 -#: mod/settings.php:1208 mod/settings.php:1234 mod/settings.php:1235 -#: mod/settings.php:1236 mod/settings.php:1237 mod/settings.php:1238 -msgid "Yes" -msgstr "Yes" - -#: include/items.php:2327 mod/allfriends.php:12 mod/api.php:26 mod/api.php:31 -#: mod/attach.php:33 mod/common.php:18 mod/contacts.php:360 -#: mod/crepair.php:102 mod/delegate.php:12 mod/display.php:481 -#: mod/editpost.php:10 mod/fsuggest.php:79 mod/invite.php:15 -#: mod/invite.php:103 mod/mood.php:115 mod/nogroup.php:27 mod/notes.php:23 -#: mod/ostatus_subscribe.php:9 mod/poke.php:154 mod/profile_photo.php:19 -#: mod/profile_photo.php:180 mod/profile_photo.php:191 -#: mod/profile_photo.php:204 mod/regmod.php:113 mod/repair_ostatus.php:9 -#: mod/suggest.php:58 mod/uimport.php:24 mod/viewcontacts.php:46 -#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wallmessage.php:9 -#: mod/wallmessage.php:33 mod/wallmessage.php:73 mod/wallmessage.php:97 -#: mod/cal.php:299 mod/dfrn_confirm.php:61 mod/dirfind.php:11 -#: mod/events.php:185 mod/follow.php:11 mod/follow.php:74 mod/follow.php:158 -#: mod/group.php:19 mod/manage.php:102 mod/message.php:46 mod/message.php:171 -#: mod/network.php:4 mod/photos.php:166 mod/photos.php:1109 -#: mod/profiles.php:168 mod/profiles.php:607 mod/register.php:42 -#: mod/settings.php:22 mod/settings.php:130 mod/settings.php:668 -#: mod/wall_upload.php:101 mod/wall_upload.php:104 mod/item.php:196 -#: mod/item.php:208 mod/notifications.php:71 index.php:407 -msgid "Permission denied." -msgstr "Permission denied." - -#: include/items.php:2444 -msgid "Archives" -msgstr "Archives" - -#: include/ostatus.php:1947 -#, php-format -msgid "%s is now following %s." -msgstr "%s is now following %s." - -#: include/ostatus.php:1948 -msgid "following" -msgstr "following" - -#: include/ostatus.php:1951 -#, php-format -msgid "%s stopped following %s." -msgstr "%s stopped following %s." - -#: include/ostatus.php:1952 -msgid "stopped following" -msgstr "stopped following" - -#: include/text.php:307 -msgid "newer" -msgstr "Later posts" - -#: include/text.php:308 -msgid "older" -msgstr "Earlier posts" - -#: include/text.php:313 -msgid "first" -msgstr "first" - -#: include/text.php:314 -msgid "prev" -msgstr "prev" - -#: include/text.php:348 -msgid "next" -msgstr "next" - -#: include/text.php:349 -msgid "last" -msgstr "last" - -#: include/text.php:403 -msgid "Loading more entries..." -msgstr "Loading more entries..." - -#: include/text.php:404 -msgid "The end" -msgstr "The end" - -#: include/text.php:955 -msgid "No contacts" -msgstr "No contacts" - -#: include/text.php:980 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d contact" -msgstr[1] "%d contacts" - -#: include/text.php:993 -msgid "View Contacts" -msgstr "View contacts" - -#: include/text.php:1081 mod/editpost.php:99 mod/filer.php:31 mod/notes.php:62 -msgid "Save" -msgstr "Save" - -#: include/text.php:1144 -msgid "poke" -msgstr "poke" - -#: include/text.php:1144 -msgid "poked" -msgstr "poked" - -#: include/text.php:1145 -msgid "ping" -msgstr "ping" - -#: include/text.php:1145 -msgid "pinged" -msgstr "pinged" - -#: include/text.php:1146 -msgid "prod" -msgstr "prod" - -#: include/text.php:1146 -msgid "prodded" -msgstr "prodded" - -#: include/text.php:1147 -msgid "slap" -msgstr "slap" - -#: include/text.php:1147 -msgid "slapped" -msgstr "slapped" - -#: include/text.php:1148 -msgid "finger" -msgstr "finger" - -#: include/text.php:1148 -msgid "fingered" -msgstr "fingered" - -#: include/text.php:1149 -msgid "rebuff" -msgstr "rebuff" - -#: include/text.php:1149 -msgid "rebuffed" -msgstr "rebuffed" - -#: include/text.php:1163 -msgid "happy" -msgstr "happy" - -#: include/text.php:1164 -msgid "sad" -msgstr "sad" - -#: include/text.php:1165 -msgid "mellow" -msgstr "mellow" - -#: include/text.php:1166 -msgid "tired" -msgstr "tired" - -#: include/text.php:1167 -msgid "perky" -msgstr "perky" - -#: include/text.php:1168 -msgid "angry" -msgstr "angry" - -#: include/text.php:1169 -msgid "stupified" -msgstr "stupified" - -#: include/text.php:1170 -msgid "puzzled" -msgstr "puzzled" - -#: include/text.php:1171 -msgid "interested" -msgstr "interested" - -#: include/text.php:1172 -msgid "bitter" -msgstr "bitter" - -#: include/text.php:1173 -msgid "cheerful" -msgstr "cheerful" - -#: include/text.php:1174 -msgid "alive" -msgstr "alive" - -#: include/text.php:1175 -msgid "annoyed" -msgstr "annoyed" - -#: include/text.php:1176 -msgid "anxious" -msgstr "anxious" - -#: include/text.php:1177 -msgid "cranky" -msgstr "cranky" - -#: include/text.php:1178 -msgid "disturbed" -msgstr "disturbed" - -#: include/text.php:1179 -msgid "frustrated" -msgstr "frustrated" - -#: include/text.php:1180 -msgid "motivated" -msgstr "motivated" - -#: include/text.php:1181 -msgid "relaxed" -msgstr "relaxed" - -#: include/text.php:1182 -msgid "surprised" -msgstr "surprised" - -#: include/text.php:1392 mod/videos.php:386 -msgid "View Video" -msgstr "View video" - -#: include/text.php:1424 -msgid "bytes" -msgstr "bytes" - -#: include/text.php:1456 include/text.php:1468 -msgid "Click to open/close" -msgstr "Click to open/close" - -#: include/text.php:1594 -msgid "View on separate page" -msgstr "View on separate page" - -#: include/text.php:1595 -msgid "view on separate page" -msgstr "view on separate page" - -#: include/text.php:1874 -msgid "activity" -msgstr "activity" - -#: include/text.php:1876 mod/content.php:623 object/Item.php:419 -#: object/Item.php:431 -msgid "comment" -msgid_plural "comments" -msgstr[0] "comment" -msgstr[1] "comments" - -#: include/text.php:1877 -msgid "post" -msgstr "post" - -#: include/text.php:2045 -msgid "Item filed" -msgstr "Item filed" - -#: mod/allfriends.php:46 +#: mod/allfriends.php:48 msgid "No friends to display." msgstr "No friends to display." -#: mod/api.php:76 mod/api.php:102 +#: mod/api.php:78 mod/api.php:104 msgid "Authorize application connection" msgstr "Authorize application connection" -#: mod/api.php:77 +#: mod/api.php:79 msgid "Return to your app and insert this Securty Code:" msgstr "Return to your app and insert this security code:" -#: mod/api.php:89 +#: mod/api.php:91 msgid "Please login to continue." msgstr "Please login to continue." -#: mod/api.php:104 +#: mod/api.php:106 msgid "" "Do you want to authorize this application to access your posts and contacts," " and/or create new posts for you?" msgstr "Do you want to authorize this application to access your posts and contacts and create new posts for you?" -#: mod/api.php:106 mod/dfrn_request.php:880 mod/follow.php:113 -#: mod/profiles.php:640 mod/profiles.php:644 mod/profiles.php:670 -#: mod/register.php:246 mod/settings.php:1171 mod/settings.php:1177 -#: mod/settings.php:1184 mod/settings.php:1188 mod/settings.php:1193 -#: mod/settings.php:1198 mod/settings.php:1203 mod/settings.php:1208 -#: mod/settings.php:1234 mod/settings.php:1235 mod/settings.php:1236 -#: mod/settings.php:1237 mod/settings.php:1238 +#: mod/api.php:108 mod/follow.php:115 mod/register.php:248 +#: mod/dfrn_request.php:880 mod/profiles.php:643 mod/profiles.php:647 +#: mod/profiles.php:673 mod/settings.php:1172 mod/settings.php:1178 +#: mod/settings.php:1185 mod/settings.php:1189 mod/settings.php:1194 +#: mod/settings.php:1199 mod/settings.php:1204 mod/settings.php:1209 +#: mod/settings.php:1235 mod/settings.php:1236 mod/settings.php:1237 +#: mod/settings.php:1238 mod/settings.php:1239 msgid "No" msgstr "No" -#: mod/apps.php:7 index.php:254 +#: mod/apps.php:9 index.php:257 msgid "You must be logged in to use addons. " msgstr "You must be logged in to use addons. " -#: mod/apps.php:11 +#: mod/apps.php:14 msgid "Applications" msgstr "Applications" -#: mod/apps.php:14 +#: mod/apps.php:17 msgid "No installed applications." msgstr "No installed applications." -#: mod/attach.php:8 +#: mod/attach.php:10 msgid "Item not available." msgstr "Item not available." -#: mod/attach.php:20 +#: mod/attach.php:22 msgid "Item was not found." msgstr "Item was not found." -#: mod/bookmarklet.php:41 +#: mod/babel.php:18 +msgid "Source (bbcode) text:" +msgstr "Source (bbcode) text:" + +#: mod/babel.php:25 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Source (Diaspora) text to convert to BBcode:" + +#: mod/babel.php:33 +msgid "Source input: " +msgstr "Source input: " + +#: mod/babel.php:37 +msgid "bb2html (raw HTML): " +msgstr "bb2html (raw HTML): " + +#: mod/babel.php:41 +msgid "bb2html: " +msgstr "bb2html: " + +#: mod/babel.php:45 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " + +#: mod/babel.php:49 +msgid "bb2md: " +msgstr "bb2md: " + +#: mod/babel.php:53 +msgid "bb2md2html: " +msgstr "bb2md2html: " + +#: mod/babel.php:57 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " + +#: mod/babel.php:61 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " + +#: mod/babel.php:67 +msgid "Source input (Diaspora format): " +msgstr "Source input (Diaspora format): " + +#: mod/babel.php:71 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: mod/bookmarklet.php:43 msgid "The post was created" msgstr "The post was created" -#: mod/common.php:91 +#: mod/cal.php:145 mod/display.php:329 mod/profile.php:156 +msgid "Access to this profile has been restricted." +msgstr "Access to this profile has been restricted." + +#: mod/cal.php:273 mod/events.php:378 +msgid "View" +msgstr "View" + +#: mod/cal.php:274 mod/events.php:380 +msgid "Previous" +msgstr "Previous" + +#: mod/cal.php:275 mod/events.php:381 mod/install.php:203 +msgid "Next" +msgstr "Next" + +#: mod/cal.php:284 mod/events.php:390 +msgid "list" +msgstr "List" + +#: mod/cal.php:294 +msgid "User not found" +msgstr "User not found" + +#: mod/cal.php:310 +msgid "This calendar format is not supported" +msgstr "This calendar format is not supported" + +#: mod/cal.php:312 +msgid "No exportable data found" +msgstr "No exportable data found" + +#: mod/cal.php:327 +msgid "calendar" +msgstr "calendar" + +#: mod/common.php:93 msgid "No contacts in common." msgstr "No contacts in common." -#: mod/common.php:141 mod/contacts.php:871 +#: mod/common.php:143 mod/contacts.php:874 msgid "Common Friends" msgstr "Common friends" -#: mod/contacts.php:134 -#, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited." -msgstr[0] "%d contact edited." -msgstr[1] "%d contacts edited." - -#: mod/contacts.php:169 mod/contacts.php:378 -msgid "Could not access contact record." -msgstr "Could not access contact record." - -#: mod/contacts.php:183 -msgid "Could not locate selected profile." -msgstr "Could not locate selected profile." - -#: mod/contacts.php:216 -msgid "Contact updated." -msgstr "Contact updated." - -#: mod/contacts.php:218 mod/dfrn_request.php:593 -msgid "Failed to update contact record." -msgstr "Failed to update contact record." - -#: mod/contacts.php:399 -msgid "Contact has been blocked" -msgstr "Contact has been blocked" - -#: mod/contacts.php:399 -msgid "Contact has been unblocked" -msgstr "Contact has been unblocked" - -#: mod/contacts.php:410 -msgid "Contact has been ignored" -msgstr "Contact has been ignored" - -#: mod/contacts.php:410 -msgid "Contact has been unignored" -msgstr "Contact has been unignored" - -#: mod/contacts.php:422 -msgid "Contact has been archived" -msgstr "Contact has been archived" - -#: mod/contacts.php:422 -msgid "Contact has been unarchived" -msgstr "Contact has been unarchived" - -#: mod/contacts.php:447 -msgid "Drop contact" -msgstr "Drop contact" - -#: mod/contacts.php:450 mod/contacts.php:809 -msgid "Do you really want to delete this contact?" -msgstr "Do you really want to delete this contact?" - -#: mod/contacts.php:469 -msgid "Contact has been removed." -msgstr "Contact has been removed." - -#: mod/contacts.php:506 -#, php-format -msgid "You are mutual friends with %s" -msgstr "You are mutual friends with %s" - -#: mod/contacts.php:510 -#, php-format -msgid "You are sharing with %s" -msgstr "You are sharing with %s" - -#: mod/contacts.php:515 -#, php-format -msgid "%s is sharing with you" -msgstr "%s is sharing with you" - -#: mod/contacts.php:535 -msgid "Private communications are not available for this contact." -msgstr "Private communications are not available for this contact." - -#: mod/contacts.php:538 mod/admin.php:978 -msgid "Never" -msgstr "Never" - -#: mod/contacts.php:542 -msgid "(Update was successful)" -msgstr "(Update was successful)" - -#: mod/contacts.php:542 -msgid "(Update was not successful)" -msgstr "(Update was not successful)" - -#: mod/contacts.php:544 mod/contacts.php:972 -msgid "Suggest friends" -msgstr "Suggest friends" - -#: mod/contacts.php:548 -#, php-format -msgid "Network type: %s" -msgstr "Network type: %s" - -#: mod/contacts.php:561 -msgid "Communications lost with this contact!" -msgstr "Communications lost with this contact!" - -#: mod/contacts.php:564 -msgid "Fetch further information for feeds" -msgstr "Fetch further information for feeds" - -#: mod/contacts.php:565 mod/admin.php:987 -msgid "Disabled" -msgstr "Disabled" - -#: mod/contacts.php:565 -msgid "Fetch information" -msgstr "Fetch information" - -#: mod/contacts.php:565 -msgid "Fetch information and keywords" -msgstr "Fetch information and keywords" - -#: mod/contacts.php:583 -msgid "Contact" -msgstr "Contact" - -#: mod/contacts.php:585 mod/content.php:728 mod/crepair.php:156 -#: mod/fsuggest.php:108 mod/invite.php:142 mod/localtime.php:45 -#: mod/mood.php:138 mod/poke.php:203 mod/events.php:505 mod/manage.php:155 -#: mod/message.php:338 mod/message.php:521 mod/photos.php:1141 -#: mod/photos.php:1271 mod/photos.php:1597 mod/photos.php:1646 -#: mod/photos.php:1688 mod/photos.php:1768 mod/profiles.php:681 -#: mod/install.php:242 mod/install.php:282 object/Item.php:705 -#: view/theme/duepuntozero/config.php:61 view/theme/frio/config.php:64 -#: view/theme/quattro/config.php:67 view/theme/vier/config.php:112 -msgid "Submit" -msgstr "Submit" - -#: mod/contacts.php:586 -msgid "Profile Visibility" -msgstr "Profile visibility" - -#: mod/contacts.php:587 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Please choose the profile you would like to display to %s when viewing your profile securely." - -#: mod/contacts.php:588 -msgid "Contact Information / Notes" -msgstr "Personal note" - -#: mod/contacts.php:589 -msgid "Edit contact notes" -msgstr "Edit contact notes" - -#: mod/contacts.php:594 mod/contacts.php:938 mod/nogroup.php:43 -#: mod/viewcontacts.php:102 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visit %s's profile [%s]" - -#: mod/contacts.php:595 -msgid "Block/Unblock contact" -msgstr "Block/Unblock contact" - -#: mod/contacts.php:596 -msgid "Ignore contact" -msgstr "Ignore contact" - -#: mod/contacts.php:597 -msgid "Repair URL settings" -msgstr "Repair URL settings" - -#: mod/contacts.php:598 -msgid "View conversations" -msgstr "View conversations" - -#: mod/contacts.php:604 -msgid "Last update:" -msgstr "Last update:" - -#: mod/contacts.php:606 -msgid "Update public posts" -msgstr "Update public posts" - -#: mod/contacts.php:608 mod/contacts.php:982 -msgid "Update now" -msgstr "Update now" - -#: mod/contacts.php:613 mod/contacts.php:813 mod/contacts.php:991 -#: mod/admin.php:1510 -msgid "Unblock" -msgstr "Unblock" - -#: mod/contacts.php:613 mod/contacts.php:813 mod/contacts.php:991 -#: mod/admin.php:1509 -msgid "Block" -msgstr "Block" - -#: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999 -msgid "Unignore" -msgstr "Unignore" - -#: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999 -#: mod/notifications.php:60 mod/notifications.php:179 -#: mod/notifications.php:263 -msgid "Ignore" -msgstr "Ignore" - -#: mod/contacts.php:618 -msgid "Currently blocked" -msgstr "Currently blocked" - -#: mod/contacts.php:619 -msgid "Currently ignored" -msgstr "Currently ignored" - -#: mod/contacts.php:620 -msgid "Currently archived" -msgstr "Currently archived" - -#: mod/contacts.php:621 mod/notifications.php:172 mod/notifications.php:251 -msgid "Hide this contact from others" -msgstr "Hide this contact from others" - -#: mod/contacts.php:621 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Replies/Likes to your public posts may still be visible" - -#: mod/contacts.php:622 -msgid "Notification for new posts" -msgstr "Notification for new posts" - -#: mod/contacts.php:622 -msgid "Send a notification of every new post of this contact" -msgstr "Send notification for every new post from this contact" - -#: mod/contacts.php:625 -msgid "Blacklisted keywords" -msgstr "Blacklisted keywords" - -#: 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 "Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected" - -#: mod/contacts.php:632 mod/follow.php:129 mod/notifications.php:255 -msgid "Profile URL" -msgstr "Profile URL:" - -#: mod/contacts.php:643 -msgid "Actions" -msgstr "Actions" - -#: mod/contacts.php:646 -msgid "Contact Settings" -msgstr "Notification and privacy " - -#: mod/contacts.php:692 -msgid "Suggestions" -msgstr "Suggestions" - -#: mod/contacts.php:695 -msgid "Suggest potential friends" -msgstr "Suggest potential friends" - -#: mod/contacts.php:700 mod/group.php:212 -msgid "All Contacts" -msgstr "All contacts" - -#: mod/contacts.php:703 -msgid "Show all contacts" -msgstr "Show all contacts" - -#: mod/contacts.php:708 -msgid "Unblocked" -msgstr "Unblocked" - -#: mod/contacts.php:711 -msgid "Only show unblocked contacts" -msgstr "Only show unblocked contacts" - -#: mod/contacts.php:717 -msgid "Blocked" -msgstr "Blocked" - -#: mod/contacts.php:720 -msgid "Only show blocked contacts" -msgstr "Only show blocked contacts" - -#: mod/contacts.php:726 -msgid "Ignored" -msgstr "Ignored" - -#: mod/contacts.php:729 -msgid "Only show ignored contacts" -msgstr "Only show ignored contacts" - -#: mod/contacts.php:735 -msgid "Archived" -msgstr "Archived" - -#: mod/contacts.php:738 -msgid "Only show archived contacts" -msgstr "Only show archived contacts" - -#: mod/contacts.php:744 -msgid "Hidden" -msgstr "Hidden" - -#: mod/contacts.php:747 -msgid "Only show hidden contacts" -msgstr "Only show hidden contacts" - -#: mod/contacts.php:804 -msgid "Search your contacts" -msgstr "Search your contacts" - -#: mod/contacts.php:805 mod/network.php:151 mod/search.php:227 -#, php-format -msgid "Results for: %s" -msgstr "Results for: %s" - -#: mod/contacts.php:812 mod/settings.php:160 mod/settings.php:707 -msgid "Update" -msgstr "Update" - -#: mod/contacts.php:815 mod/contacts.php:1007 -msgid "Archive" -msgstr "Archive" - -#: mod/contacts.php:815 mod/contacts.php:1007 -msgid "Unarchive" -msgstr "Unarchive" - -#: mod/contacts.php:818 -msgid "Batch Actions" -msgstr "Batch actions" - -#: mod/contacts.php:864 -msgid "View all contacts" -msgstr "View all contacts" - -#: mod/contacts.php:874 -msgid "View all common friends" -msgstr "View all common friends" - -#: mod/contacts.php:881 -msgid "Advanced Contact Settings" -msgstr "Advanced contact settings" - -#: mod/contacts.php:915 -msgid "Mutual Friendship" -msgstr "Mutual friendship" - -#: mod/contacts.php:919 -msgid "is a fan of yours" -msgstr "is a fan of yours" - -#: mod/contacts.php:923 -msgid "you are a fan of" -msgstr "I follow them" - -#: mod/contacts.php:939 mod/nogroup.php:44 -msgid "Edit contact" -msgstr "Edit contact" - -#: mod/contacts.php:993 -msgid "Toggle Blocked status" -msgstr "Toggle blocked status" - -#: mod/contacts.php:1001 -msgid "Toggle Ignored status" -msgstr "Toggle ignored status" - -#: mod/contacts.php:1009 -msgid "Toggle Archive status" -msgstr "Toggle archive status" - -#: mod/contacts.php:1017 -msgid "Delete contact" -msgstr "Delete contact" - -#: mod/content.php:119 mod/network.php:475 +#: mod/community.php:18 mod/directory.php:33 mod/display.php:201 +#: mod/photos.php:981 mod/search.php:96 mod/search.php:102 mod/videos.php:200 +#: mod/viewcontacts.php:39 mod/webfinger.php:10 mod/dfrn_request.php:804 +#: mod/probe.php:9 +msgid "Public access denied." +msgstr "Public access denied." + +#: mod/community.php:23 +msgid "Not available." +msgstr "Not available." + +#: mod/community.php:50 mod/search.php:222 +msgid "No results." +msgstr "No results." + +#: mod/content.php:120 mod/network.php:478 msgid "No such group" msgstr "No such group" -#: mod/content.php:130 mod/group.php:213 mod/network.php:502 +#: mod/content.php:131 mod/group.php:214 mod/network.php:505 msgid "Group is empty" msgstr "Group is empty" -#: mod/content.php:135 mod/network.php:506 +#: mod/content.php:136 mod/network.php:509 #, php-format msgid "Group: %s" msgstr "Group: %s" -#: mod/content.php:325 object/Item.php:96 +#: mod/content.php:326 object/Item.php:96 msgid "This entry was edited" msgstr "This entry was edited" -#: mod/content.php:621 object/Item.php:417 +#: mod/content.php:622 object/Item.php:414 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d comment" msgstr[1] "%d comments:" -#: mod/content.php:638 mod/photos.php:1429 object/Item.php:117 +#: mod/content.php:639 mod/photos.php:1431 object/Item.php:117 msgid "Private Message" msgstr "Private message" -#: mod/content.php:702 mod/photos.php:1625 object/Item.php:274 +#: mod/content.php:703 mod/photos.php:1627 object/Item.php:271 msgid "I like this (toggle)" msgstr "I like this (toggle)" -#: mod/content.php:702 object/Item.php:274 +#: mod/content.php:703 object/Item.php:271 msgid "like" msgstr "Like" -#: mod/content.php:703 mod/photos.php:1626 object/Item.php:275 +#: mod/content.php:704 mod/photos.php:1628 object/Item.php:272 msgid "I don't like this (toggle)" msgstr "I don't like this (toggle)" -#: mod/content.php:703 object/Item.php:275 +#: mod/content.php:704 object/Item.php:272 msgid "dislike" msgstr "Dislike" -#: mod/content.php:705 object/Item.php:278 +#: mod/content.php:706 object/Item.php:275 msgid "Share this" msgstr "Share this" -#: mod/content.php:705 object/Item.php:278 +#: mod/content.php:706 object/Item.php:275 msgid "share" msgstr "Share" -#: mod/content.php:725 mod/photos.php:1643 mod/photos.php:1685 -#: mod/photos.php:1765 object/Item.php:702 +#: mod/content.php:726 mod/photos.php:1645 mod/photos.php:1687 +#: mod/photos.php:1767 object/Item.php:699 msgid "This is you" msgstr "This is me" -#: mod/content.php:727 mod/content.php:950 mod/photos.php:1645 -#: mod/photos.php:1687 mod/photos.php:1767 object/Item.php:392 -#: object/Item.php:704 +#: mod/content.php:728 mod/content.php:951 mod/photos.php:1647 +#: mod/photos.php:1689 mod/photos.php:1769 object/Item.php:389 +#: object/Item.php:701 msgid "Comment" msgstr "Comment" -#: mod/content.php:729 object/Item.php:706 +#: mod/content.php:729 mod/crepair.php:159 mod/events.php:508 +#: mod/fsuggest.php:109 mod/install.php:244 mod/install.php:284 +#: mod/invite.php:144 mod/localtime.php:46 mod/manage.php:156 +#: mod/message.php:340 mod/message.php:523 mod/mood.php:139 +#: mod/photos.php:1143 mod/photos.php:1273 mod/photos.php:1599 +#: mod/photos.php:1648 mod/photos.php:1690 mod/photos.php:1770 +#: mod/poke.php:204 mod/contacts.php:588 mod/profiles.php:684 +#: object/Item.php:702 view/theme/duepuntozero/config.php:64 +#: view/theme/frio/config.php:67 view/theme/quattro/config.php:70 +#: view/theme/vier/config.php:113 +msgid "Submit" +msgstr "Submit" + +#: mod/content.php:730 object/Item.php:703 msgid "Bold" msgstr "Bold" -#: mod/content.php:730 object/Item.php:707 +#: mod/content.php:731 object/Item.php:704 msgid "Italic" msgstr "Italic" -#: mod/content.php:731 object/Item.php:708 +#: mod/content.php:732 object/Item.php:705 msgid "Underline" msgstr "Underline" -#: mod/content.php:732 object/Item.php:709 +#: mod/content.php:733 object/Item.php:706 msgid "Quote" msgstr "Quote" -#: mod/content.php:733 object/Item.php:710 +#: mod/content.php:734 object/Item.php:707 msgid "Code" msgstr "Code" -#: mod/content.php:734 object/Item.php:711 +#: mod/content.php:735 object/Item.php:708 msgid "Image" msgstr "Image" -#: mod/content.php:735 object/Item.php:712 +#: mod/content.php:736 object/Item.php:709 msgid "Link" msgstr "Link" -#: mod/content.php:736 object/Item.php:713 +#: mod/content.php:737 object/Item.php:710 msgid "Video" msgstr "Video" -#: mod/content.php:746 mod/settings.php:743 object/Item.php:122 +#: mod/content.php:747 mod/settings.php:744 object/Item.php:122 #: object/Item.php:124 msgid "Edit" msgstr "Edit" -#: mod/content.php:772 object/Item.php:238 +#: mod/content.php:773 object/Item.php:238 msgid "add star" msgstr "Add star" -#: mod/content.php:773 object/Item.php:239 +#: mod/content.php:774 object/Item.php:239 msgid "remove star" msgstr "Remove star" -#: mod/content.php:774 object/Item.php:240 +#: mod/content.php:775 object/Item.php:240 msgid "toggle star status" msgstr "Toggle star status" -#: mod/content.php:777 object/Item.php:243 +#: mod/content.php:778 object/Item.php:243 msgid "starred" msgstr "Starred" -#: mod/content.php:778 mod/content.php:800 object/Item.php:263 +#: mod/content.php:779 mod/content.php:801 object/Item.php:260 msgid "add tag" msgstr "Add tag" -#: mod/content.php:789 object/Item.php:251 +#: mod/content.php:790 object/Item.php:248 msgid "ignore thread" msgstr "Ignore thread" -#: mod/content.php:790 object/Item.php:252 +#: mod/content.php:791 object/Item.php:249 msgid "unignore thread" msgstr "Unignore thread" -#: mod/content.php:791 object/Item.php:253 +#: mod/content.php:792 object/Item.php:250 msgid "toggle ignore status" msgstr "Toggle ignore status" -#: mod/content.php:794 mod/ostatus_subscribe.php:73 object/Item.php:256 +#: mod/content.php:795 mod/ostatus_subscribe.php:75 object/Item.php:253 msgid "ignored" msgstr "Ignored" -#: mod/content.php:805 object/Item.php:141 +#: mod/content.php:806 object/Item.php:141 msgid "save to folder" msgstr "Save to folder" -#: mod/content.php:853 object/Item.php:212 +#: mod/content.php:854 object/Item.php:212 msgid "I will attend" msgstr "I will attend" -#: mod/content.php:853 object/Item.php:212 +#: mod/content.php:854 object/Item.php:212 msgid "I will not attend" msgstr "I will not attend" -#: mod/content.php:853 object/Item.php:212 +#: mod/content.php:854 object/Item.php:212 msgid "I might attend" msgstr "I might attend" -#: mod/content.php:917 object/Item.php:358 +#: mod/content.php:918 object/Item.php:355 msgid "to" msgstr "to" -#: mod/content.php:918 object/Item.php:360 +#: mod/content.php:919 object/Item.php:357 msgid "Wall-to-Wall" msgstr "Wall-to-wall" -#: mod/content.php:919 object/Item.php:361 +#: mod/content.php:920 object/Item.php:358 msgid "via Wall-To-Wall:" msgstr "via wall-to-wall:" -#: mod/credits.php:16 +#: mod/credits.php:19 msgid "Credits" msgstr "Credits" -#: mod/credits.php:17 +#: mod/credits.php:20 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 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!" -#: mod/crepair.php:89 +#: mod/crepair.php:92 msgid "Contact settings applied." msgstr "Contact settings applied." -#: mod/crepair.php:91 +#: mod/crepair.php:94 msgid "Contact update failed." msgstr "Contact update failed." -#: mod/crepair.php:116 mod/fsuggest.php:21 mod/fsuggest.php:93 -#: mod/dfrn_confirm.php:126 +#: mod/crepair.php:119 mod/dfrn_confirm.php:128 mod/fsuggest.php:22 +#: mod/fsuggest.php:94 msgid "Contact not found." msgstr "Contact not found." -#: mod/crepair.php:122 +#: mod/crepair.php:125 msgid "" "WARNING: This is highly advanced and if you enter incorrect" " information your communications with this contact may stop working." msgstr "Warning: These are highly advanced settings. If you enter incorrect information your communications with this contact may not working." -#: mod/crepair.php:123 +#: mod/crepair.php:126 msgid "" "Please use your browser 'Back' button now if you are " "uncertain what to do on this page." msgstr "Please use your browser 'Back' button now if you are uncertain what to do on this page." -#: mod/crepair.php:136 mod/crepair.php:138 +#: mod/crepair.php:139 mod/crepair.php:141 msgid "No mirroring" msgstr "No mirroring" -#: mod/crepair.php:136 +#: mod/crepair.php:139 msgid "Mirror as forwarded posting" msgstr "Mirror as forwarded posting" -#: mod/crepair.php:136 mod/crepair.php:138 +#: mod/crepair.php:139 mod/crepair.php:141 msgid "Mirror as my own posting" msgstr "Mirror as my own posting" -#: mod/crepair.php:152 +#: mod/crepair.php:155 msgid "Return to contact editor" msgstr "Return to contact editor" -#: mod/crepair.php:154 +#: mod/crepair.php:157 msgid "Refetch contact data" msgstr "Re-fetch contact data." -#: mod/crepair.php:158 +#: mod/crepair.php:161 msgid "Remote Self" msgstr "Remote self" -#: mod/crepair.php:161 +#: mod/crepair.php:164 msgid "Mirror postings from this contact" msgstr "Mirror postings from this contact:" -#: mod/crepair.php:163 +#: mod/crepair.php:166 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." msgstr "This will cause Friendica to repost new entries from this contact." -#: mod/crepair.php:167 mod/settings.php:683 mod/settings.php:709 -#: mod/admin.php:1490 mod/admin.php:1503 mod/admin.php:1516 mod/admin.php:1532 +#: mod/crepair.php:170 mod/admin.php:1496 mod/admin.php:1509 +#: mod/admin.php:1522 mod/admin.php:1538 mod/settings.php:684 +#: mod/settings.php:710 msgid "Name" msgstr "Name:" -#: mod/crepair.php:168 +#: mod/crepair.php:171 msgid "Account Nickname" msgstr "Account nickname:" -#: mod/crepair.php:169 +#: mod/crepair.php:172 msgid "@Tagname - overrides Name/Nickname" msgstr "@Tag name - overrides name/nickname:" -#: mod/crepair.php:170 +#: mod/crepair.php:173 msgid "Account URL" msgstr "Account URL:" -#: mod/crepair.php:171 +#: mod/crepair.php:174 msgid "Friend Request URL" msgstr "Friend request URL:" -#: mod/crepair.php:172 +#: mod/crepair.php:175 msgid "Friend Confirm URL" msgstr "Friend confirm URL:" -#: mod/crepair.php:173 +#: mod/crepair.php:176 msgid "Notification Endpoint URL" msgstr "Notification endpoint URL" -#: mod/crepair.php:174 +#: mod/crepair.php:177 msgid "Poll/Feed URL" msgstr "Poll/Feed URL:" -#: mod/crepair.php:175 +#: mod/crepair.php:178 msgid "New photo from this URL" msgstr "New photo from this URL:" -#: mod/delegate.php:101 +#: mod/delegate.php:103 msgid "No potential page delegates located." msgstr "No potential page delegates found." -#: mod/delegate.php:132 +#: mod/delegate.php:134 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 "Delegates are able to manage all aspects of this account except for key setting features. Please do not delegate your personal account to anybody that you do not trust completely." -#: mod/delegate.php:133 +#: mod/delegate.php:135 msgid "Existing Page Managers" msgstr "Existing page managers" -#: mod/delegate.php:135 +#: mod/delegate.php:137 msgid "Existing Page Delegates" msgstr "Existing page delegates" -#: mod/delegate.php:137 +#: mod/delegate.php:139 msgid "Potential Delegates" msgstr "Potential delegates" -#: mod/delegate.php:139 mod/tagrm.php:95 +#: mod/delegate.php:141 mod/tagrm.php:97 msgid "Remove" msgstr "Remove" -#: mod/delegate.php:140 +#: mod/delegate.php:142 msgid "Add" msgstr "Add" -#: mod/delegate.php:141 +#: mod/delegate.php:143 msgid "No entries." msgstr "No entries." +#: mod/dfrn_confirm.php:72 mod/profiles.php:23 mod/profiles.php:139 +#: mod/profiles.php:186 mod/profiles.php:622 +msgid "Profile not found." +msgstr "Profile not found." + +#: mod/dfrn_confirm.php:129 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "This may occasionally happen if contact was requested by both persons and it has already been approved." + +#: mod/dfrn_confirm.php:246 +msgid "Response from remote site was not understood." +msgstr "Response from remote site was not understood." + +#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260 +msgid "Unexpected response from remote site: " +msgstr "Unexpected response from remote site: " + +#: mod/dfrn_confirm.php:269 +msgid "Confirmation completed successfully." +msgstr "Confirmation completed successfully." + +#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292 +msgid "Remote site reported: " +msgstr "Remote site reported: " + +#: mod/dfrn_confirm.php:283 +msgid "Temporary failure. Please wait and try again." +msgstr "Temporary failure. Please wait and try again." + +#: mod/dfrn_confirm.php:290 +msgid "Introduction failed or was revoked." +msgstr "Introduction failed or was revoked." + +#: mod/dfrn_confirm.php:420 +msgid "Unable to set contact photo." +msgstr "Unable to set contact photo." + +#: mod/dfrn_confirm.php:561 +#, php-format +msgid "No user record found for '%s' " +msgstr "No user record found for '%s' " + +#: mod/dfrn_confirm.php:571 +msgid "Our site encryption key is apparently messed up." +msgstr "Our site encryption key is apparently messed up." + +#: mod/dfrn_confirm.php:582 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "An empty URL was provided or the URL could not be decrypted by us." + +#: mod/dfrn_confirm.php:604 +msgid "Contact record was not found for you on our site." +msgstr "Contact record was not found for you on our site." + +#: mod/dfrn_confirm.php:618 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "Site public key not available in contact record for URL %s." + +#: mod/dfrn_confirm.php:638 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "The ID provided by your system is a duplicate on our system. It should work if you try again." + +#: mod/dfrn_confirm.php:649 +msgid "Unable to set your contact credentials on our system." +msgstr "Unable to set your contact credentials on our system." + +#: mod/dfrn_confirm.php:711 +msgid "Unable to update your contact profile details on our system" +msgstr "Unable to update your contact profile details on our system" + +#: mod/dfrn_confirm.php:783 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s has joined %2$s" + #: mod/dfrn_poll.php:104 mod/dfrn_poll.php:539 #, php-format msgid "%1$s welcomes %2$s" msgstr "%1$s welcomes %2$s" -#: mod/directory.php:37 mod/display.php:200 mod/viewcontacts.php:36 -#: mod/community.php:18 mod/dfrn_request.php:804 mod/photos.php:979 -#: mod/probe.php:9 mod/search.php:93 mod/search.php:99 mod/videos.php:198 -#: mod/webfinger.php:8 -msgid "Public access denied." -msgstr "Public access denied." - -#: mod/directory.php:199 view/theme/vier/theme.php:199 +#: mod/directory.php:195 view/theme/vier/theme.php:201 msgid "Global Directory" msgstr "Global Directory" -#: mod/directory.php:201 +#: mod/directory.php:197 msgid "Find on this site" msgstr "Find on this site" -#: mod/directory.php:203 +#: mod/directory.php:199 msgid "Results for:" msgstr "Results for:" -#: mod/directory.php:205 +#: mod/directory.php:201 msgid "Site Directory" msgstr "Site directory" -#: mod/directory.php:212 +#: mod/directory.php:208 msgid "No entries (some entries may be hidden)." msgstr "No entries (entries may be hidden)." -#: mod/display.php:328 mod/cal.php:143 mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "Access to this profile has been restricted." +#: mod/dirfind.php:39 +#, php-format +msgid "People Search - %s" +msgstr "People search - %s" -#: mod/display.php:479 +#: mod/dirfind.php:50 +#, php-format +msgid "Forum Search - %s" +msgstr "Forum search - %s" + +#: mod/dirfind.php:247 mod/match.php:112 +msgid "No matches" +msgstr "No matches" + +#: mod/display.php:480 msgid "Item has been removed." msgstr "Item has been removed." -#: mod/editpost.php:17 mod/editpost.php:27 +#: mod/editpost.php:19 mod/editpost.php:29 msgid "Item not found" msgstr "Item not found" -#: mod/editpost.php:32 +#: mod/editpost.php:34 msgid "Edit post" msgstr "Edit post" -#: mod/fbrowser.php:132 +#: mod/events.php:96 mod/events.php:98 +msgid "Event can not end before it has started." +msgstr "Event cannot end before it has started." + +#: mod/events.php:105 mod/events.php:107 +msgid "Event title and start time are required." +msgstr "Event title and starting time are required." + +#: mod/events.php:379 +msgid "Create New Event" +msgstr "Create new event" + +#: mod/events.php:484 +msgid "Event details" +msgstr "Event details" + +#: mod/events.php:485 +msgid "Starting date and Title are required." +msgstr "Starting date and title are required." + +#: mod/events.php:486 mod/events.php:487 +msgid "Event Starts:" +msgstr "Event starts:" + +#: mod/events.php:486 mod/events.php:498 mod/profiles.php:712 +msgid "Required" +msgstr "Required" + +#: mod/events.php:488 mod/events.php:504 +msgid "Finish date/time is not known or not relevant" +msgstr "Finish date/time is not known or not relevant" + +#: mod/events.php:490 mod/events.php:491 +msgid "Event Finishes:" +msgstr "Event finishes:" + +#: mod/events.php:492 mod/events.php:505 +msgid "Adjust for viewer timezone" +msgstr "Adjust for viewer's time zone" + +#: mod/events.php:494 +msgid "Description:" +msgstr "Description:" + +#: mod/events.php:498 mod/events.php:500 +msgid "Title:" +msgstr "Title:" + +#: mod/events.php:501 mod/events.php:502 +msgid "Share this event" +msgstr "Share this event" + +#: mod/events.php:531 +msgid "Failed to remove event" +msgstr "Failed to remove event" + +#: mod/events.php:533 +msgid "Event removed" +msgstr "Event removed" + +#: mod/fbrowser.php:134 msgid "Files" msgstr "Files" -#: mod/fetch.php:12 mod/fetch.php:39 mod/fetch.php:48 mod/help.php:53 -#: mod/p.php:16 mod/p.php:43 mod/p.php:52 index.php:298 +#: mod/fetch.php:15 mod/fetch.php:42 mod/fetch.php:51 mod/help.php:56 +#: mod/p.php:19 mod/p.php:46 mod/p.php:55 index.php:301 msgid "Not Found" msgstr "Not found" -#: mod/filer.php:30 +#: mod/filer.php:31 msgid "- select -" msgstr "- select -" -#: mod/fsuggest.php:64 +#: mod/follow.php:21 mod/dfrn_request.php:893 +msgid "Submit Request" +msgstr "Submit request" + +#: mod/follow.php:32 +msgid "You already added this contact." +msgstr "You already added this contact." + +#: mod/follow.php:41 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "Diaspora support isn't enabled. Contact can't be added." + +#: mod/follow.php:48 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "OStatus support is disabled. Contact can't be added." + +#: mod/follow.php:55 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "The network type couldn't be detected. Contact can't be added." + +#: mod/follow.php:114 mod/dfrn_request.php:879 +msgid "Please answer the following:" +msgstr "Please answer the following:" + +#: mod/follow.php:115 mod/dfrn_request.php:880 +#, php-format +msgid "Does %s know you?" +msgstr "Does %s know you?" + +#: mod/follow.php:116 mod/dfrn_request.php:884 +msgid "Add a personal note:" +msgstr "Add a personal note:" + +#: mod/follow.php:122 mod/dfrn_request.php:890 +msgid "Your Identity Address:" +msgstr "My identity address:" + +#: mod/follow.php:131 mod/notifications.php:257 mod/contacts.php:635 +msgid "Profile URL" +msgstr "Profile URL:" + +#: mod/follow.php:188 +msgid "Contact added" +msgstr "Contact added" + +#: mod/friendica.php:69 +msgid "This is Friendica, version" +msgstr "This is Friendica, version" + +#: mod/friendica.php:70 +msgid "running at web location" +msgstr "running at web location" + +#: mod/friendica.php:74 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Please visit Friendica.com to learn more about the Friendica project." + +#: mod/friendica.php:78 +msgid "Bug reports and issues: please visit" +msgstr "Bug reports and issues: please visit" + +#: mod/friendica.php:78 +msgid "the bugtracker at github" +msgstr "the bugtracker at github" + +#: mod/friendica.php:81 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com" + +#: mod/friendica.php:95 +msgid "Installed plugins/addons/apps:" +msgstr "Installed plugins/addons/apps:" + +#: mod/friendica.php:109 +msgid "No installed plugins/addons/apps" +msgstr "No installed plugins/addons/apps" + +#: mod/friendica.php:114 +msgid "On this server the following remote servers are blocked." +msgstr "On this server the following remote servers are blocked." + +#: mod/friendica.php:115 mod/admin.php:281 mod/admin.php:299 +msgid "Reason for the block" +msgstr "Reason for the block" + +#: mod/fsuggest.php:65 msgid "Friend suggestion sent." msgstr "Friend suggestion sent" -#: mod/fsuggest.php:98 +#: mod/fsuggest.php:99 msgid "Suggest Friends" msgstr "Suggest friends" -#: mod/fsuggest.php:100 +#: mod/fsuggest.php:101 #, php-format msgid "Suggest a friend for %s" msgstr "Suggest a friend for %s" -#: mod/hcard.php:11 +#: mod/group.php:30 +msgid "Group created." +msgstr "Group created." + +#: mod/group.php:36 +msgid "Could not create group." +msgstr "Could not create group." + +#: mod/group.php:50 mod/group.php:155 +msgid "Group not found." +msgstr "Group not found." + +#: mod/group.php:64 +msgid "Group name changed." +msgstr "Group name changed." + +#: mod/group.php:77 mod/profperm.php:22 index.php:409 +msgid "Permission denied" +msgstr "Permission denied" + +#: mod/group.php:94 +msgid "Save Group" +msgstr "Save group" + +#: mod/group.php:99 +msgid "Create a group of contacts/friends." +msgstr "Create a group of contacts/friends." + +#: mod/group.php:124 +msgid "Group removed." +msgstr "Group removed." + +#: mod/group.php:126 +msgid "Unable to remove group." +msgstr "Unable to remove group." + +#: mod/group.php:190 +msgid "Delete Group" +msgstr "Delete group" + +#: mod/group.php:196 +msgid "Group Editor" +msgstr "Group Editor" + +#: mod/group.php:201 +msgid "Edit Group Name" +msgstr "Edit group name" + +#: mod/group.php:211 +msgid "Members" +msgstr "Members" + +#: mod/group.php:213 mod/contacts.php:703 +msgid "All Contacts" +msgstr "All contacts" + +#: mod/group.php:227 +msgid "Remove Contact" +msgstr "Remove contact" + +#: mod/group.php:251 +msgid "Add Contact" +msgstr "Add contact" + +#: mod/group.php:263 mod/profperm.php:109 +msgid "Click on a contact to add or remove." +msgstr "Click on a contact to add or remove." + +#: mod/hcard.php:13 msgid "No profile" msgstr "No profile" -#: mod/help.php:41 +#: mod/help.php:44 msgid "Help:" msgstr "Help:" -#: mod/help.php:56 index.php:301 +#: mod/help.php:59 index.php:304 msgid "Page not found." msgstr "Page not found" -#: mod/home.php:39 +#: mod/home.php:41 #, php-format msgid "Welcome to %s" msgstr "Welcome to %s" -#: mod/invite.php:28 +#: mod/install.php:108 +msgid "Friendica Communications Server - Setup" +msgstr "Friendica Communications Server - Setup" + +#: mod/install.php:114 +msgid "Could not connect to database." +msgstr "Could not connect to database." + +#: mod/install.php:118 +msgid "Could not create table." +msgstr "Could not create table." + +#: mod/install.php:124 +msgid "Your Friendica site database has been installed." +msgstr "Your Friendica site database has been installed." + +#: mod/install.php:129 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "You may need to import the file \"database.sql\" manually using phpmyadmin or mysql." + +#: mod/install.php:130 mod/install.php:202 mod/install.php:549 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Please see the file \"INSTALL.txt\"." + +#: mod/install.php:142 +msgid "Database already in use." +msgstr "Database already in use." + +#: mod/install.php:199 +msgid "System check" +msgstr "System check" + +#: mod/install.php:204 +msgid "Check again" +msgstr "Check again" + +#: mod/install.php:223 +msgid "Database connection" +msgstr "Database connection" + +#: mod/install.php:224 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "In order to install Friendica we need to know how to connect to your database." + +#: mod/install.php:225 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Please contact your hosting provider or site administrator if you have questions about these settings." + +#: mod/install.php:226 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "The database you specify below should already exist. If it does not, please create it before continuing." + +#: mod/install.php:230 +msgid "Database Server Name" +msgstr "Database server name" + +#: mod/install.php:231 +msgid "Database Login Name" +msgstr "Database login name" + +#: mod/install.php:232 +msgid "Database Login Password" +msgstr "Database login password" + +#: mod/install.php:232 +msgid "For security reasons the password must not be empty" +msgstr "For security reasons the password must not be empty" + +#: mod/install.php:233 +msgid "Database Name" +msgstr "Database name" + +#: mod/install.php:234 mod/install.php:275 +msgid "Site administrator email address" +msgstr "Site administrator email address" + +#: mod/install.php:234 mod/install.php:275 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Your account email address must match this in order to use the web admin panel." + +#: mod/install.php:238 mod/install.php:278 +msgid "Please select a default timezone for your website" +msgstr "Please select a default time zone for your website" + +#: mod/install.php:265 +msgid "Site settings" +msgstr "Site settings" + +#: mod/install.php:279 +msgid "System Language:" +msgstr "System language:" + +#: mod/install.php:279 +msgid "" +"Set the default language for your Friendica installation interface and to " +"send emails." +msgstr "Set the default language for your Friendica installation interface and email communication." + +#: mod/install.php:319 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Could not find a command line version of PHP in the web server PATH." + +#: mod/install.php:320 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run the background processing. See 'Setup the poller'" +msgstr "If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See 'Setup the poller'" + +#: mod/install.php:324 +msgid "PHP executable path" +msgstr "PHP executable path" + +#: mod/install.php:324 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Enter full path to php executable. You can leave this blank to continue the installation." + +#: mod/install.php:329 +msgid "Command line PHP" +msgstr "Command line PHP" + +#: mod/install.php:338 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "PHP executable is not a php cli binary; it could possibly be a cgi-fgci version." + +#: mod/install.php:339 +msgid "Found PHP version: " +msgstr "Found PHP version: " + +#: mod/install.php:341 +msgid "PHP cli binary" +msgstr "PHP cli binary" + +#: mod/install.php:352 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "The command line version of PHP on your system does not have \"register_argc_argv\" enabled." + +#: mod/install.php:353 +msgid "This is required for message delivery to work." +msgstr "This is required for message delivery to work." + +#: mod/install.php:355 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: mod/install.php:378 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys" + +#: mod/install.php:379 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "If running under Windows OS, please see \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: mod/install.php:381 +msgid "Generate encryption keys" +msgstr "Generate encryption keys" + +#: mod/install.php:388 +msgid "libCurl PHP module" +msgstr "libCurl PHP module" + +#: mod/install.php:389 +msgid "GD graphics PHP module" +msgstr "GD graphics PHP module" + +#: mod/install.php:390 +msgid "OpenSSL PHP module" +msgstr "OpenSSL PHP module" + +#: mod/install.php:391 +msgid "PDO or MySQLi PHP module" +msgstr "PDO or MySQLi PHP module" + +#: mod/install.php:392 +msgid "mb_string PHP module" +msgstr "mb_string PHP module" + +#: mod/install.php:393 +msgid "XML PHP module" +msgstr "XML PHP module" + +#: mod/install.php:394 +msgid "iconv module" +msgstr "iconv module" + +#: mod/install.php:398 mod/install.php:400 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite module" + +#: mod/install.php:398 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Error: Apache web server mod-rewrite module is required but not installed." + +#: mod/install.php:406 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Error: libCURL PHP module required but not installed." + +#: mod/install.php:410 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Error: GD graphics PHP module with JPEG support required but not installed." + +#: mod/install.php:414 +msgid "Error: openssl PHP module required but not installed." +msgstr "Error: openssl PHP module required but not installed." + +#: mod/install.php:418 +msgid "Error: PDO or MySQLi PHP module required but not installed." +msgstr "Error: PDO or MySQLi PHP module required but not installed." + +#: mod/install.php:422 +msgid "Error: The MySQL driver for PDO is not installed." +msgstr "Error: MySQL driver for PDO is not installed." + +#: mod/install.php:426 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Error: mb_string PHP module required but not installed." + +#: mod/install.php:430 +msgid "Error: iconv PHP module required but not installed." +msgstr "Error: iconv PHP module required but not installed." + +#: mod/install.php:440 +msgid "Error, XML PHP module required but not installed." +msgstr "Error, XML PHP module required but not installed." + +#: mod/install.php:452 +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-level directory of your web server, but it is unable to do so." + +#: mod/install.php:453 +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 issue, as the web server may not be able to write files in your directory - even if you can." + +#: mod/install.php:454 +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 "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top-level directory." + +#: mod/install.php:455 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "Alternatively, you may skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions." + +#: mod/install.php:458 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php is writeable" + +#: mod/install.php:468 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering." + +#: mod/install.php:469 +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 "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 directory." + +#: mod/install.php:470 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Please ensure the user (e.g. www-data) that your web server runs as has write access to this directory." + +#: mod/install.php:471 +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: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains." + +#: mod/install.php:474 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 is writeable" + +#: mod/install.php:490 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "URL rewrite in .htaccess is not working. Check your server configuration." + +#: mod/install.php:492 +msgid "Url rewrite is working" +msgstr "URL rewrite is working" + +#: mod/install.php:511 +msgid "ImageMagick PHP extension is not installed" +msgstr "ImageMagick PHP extension is not installed" + +#: mod/install.php:513 +msgid "ImageMagick PHP extension is installed" +msgstr "ImageMagick PHP extension is installed" + +#: mod/install.php:515 +msgid "ImageMagick supports GIF" +msgstr "ImageMagick supports GIF" + +#: mod/install.php:522 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root." + +#: mod/install.php:547 +msgid "

What next

" +msgstr "

What next

" + +#: mod/install.php:548 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." + +#: mod/invite.php:30 msgid "Total invitation limit exceeded." msgstr "Total invitation limit exceeded" -#: mod/invite.php:51 +#: mod/invite.php:53 #, php-format msgid "%s : Not a valid email address." msgstr "%s : Not a valid email address" -#: mod/invite.php:76 +#: mod/invite.php:78 msgid "Please join us on Friendica" msgstr "Please join us on Friendica." -#: mod/invite.php:87 +#: mod/invite.php:89 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "Invitation limit is exceeded. Please contact your site administrator." -#: mod/invite.php:91 +#: mod/invite.php:93 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Message delivery failed" -#: mod/invite.php:95 +#: mod/invite.php:97 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." msgstr[0] "%d message sent." msgstr[1] "%d messages sent." -#: mod/invite.php:114 +#: mod/invite.php:116 msgid "You have no more invitations available" msgstr "You have no more invitations available." -#: mod/invite.php:122 +#: mod/invite.php:124 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -3988,14 +4358,14 @@ msgid "" " other social networks." msgstr "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." -#: mod/invite.php:124 +#: mod/invite.php:126 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "To accept this invitation, please register at %s or any other public Friendica website." -#: mod/invite.php:125 +#: mod/invite.php:127 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -4004,92 +4374,92 @@ msgid "" "sites you can join." msgstr "Friendica sites are all inter-connect to create a large 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." -#: mod/invite.php:128 +#: mod/invite.php:130 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Our apologies. This system is not currently configured to connect with other public sites or invite members." -#: mod/invite.php:134 +#: mod/invite.php:136 msgid "Send invitations" msgstr "Send invitations" -#: mod/invite.php:135 +#: mod/invite.php:137 msgid "Enter email addresses, one per line:" msgstr "Enter email addresses, one per line:" -#: mod/invite.php:136 mod/wallmessage.php:135 mod/message.php:332 -#: mod/message.php:515 +#: mod/invite.php:138 mod/message.php:334 mod/message.php:517 +#: mod/wallmessage.php:137 msgid "Your message:" msgstr "Your message:" -#: mod/invite.php:137 +#: mod/invite.php:139 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web." -#: mod/invite.php:139 +#: mod/invite.php:141 msgid "You will need to supply this invitation code: $invite_code" msgstr "You will need to supply this invitation code: $invite_code" -#: mod/invite.php:139 +#: mod/invite.php:141 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Once you have registered, please connect with me via my profile page at:" -#: mod/invite.php:141 +#: mod/invite.php:143 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendica.com" msgstr "For more information about the Friendica project and why we feel it is important, please visit http://friendica.com" -#: mod/localtime.php:24 +#: mod/localtime.php:25 msgid "Time Conversion" msgstr "Time conversion" -#: mod/localtime.php:26 +#: mod/localtime.php:27 msgid "" "Friendica provides this service for sharing events with other networks and " "friends in unknown timezones." msgstr "Friendica provides this service for sharing events with other networks and friends in unknown time zones." -#: mod/localtime.php:30 +#: mod/localtime.php:31 #, php-format msgid "UTC time: %s" msgstr "UTC time: %s" -#: mod/localtime.php:33 +#: mod/localtime.php:34 #, php-format msgid "Current timezone: %s" msgstr "Current time zone: %s" -#: mod/localtime.php:36 +#: mod/localtime.php:37 #, php-format msgid "Converted localtime: %s" msgstr "Converted local time: %s" -#: mod/localtime.php:41 +#: mod/localtime.php:42 msgid "Please select your timezone:" msgstr "Please select your time zone:" -#: mod/lockview.php:32 mod/lockview.php:40 +#: mod/lockview.php:33 mod/lockview.php:41 msgid "Remote privacy information not available." msgstr "Remote privacy information not available." -#: mod/lockview.php:49 +#: mod/lockview.php:50 msgid "Visible to:" msgstr "Visible to:" -#: mod/lostpass.php:19 +#: mod/lostpass.php:21 msgid "No valid account found." msgstr "No valid account found." -#: mod/lostpass.php:35 +#: mod/lostpass.php:37 msgid "Password reset request issued. Check your email." msgstr "Password reset request issued. Please check your email." -#: mod/lostpass.php:41 +#: mod/lostpass.php:43 #, php-format msgid "" "\n" @@ -4105,7 +4475,7 @@ msgid "" "\t\tissued this request." msgstr "\n\t\tDear %1$s,\n\t\t\tA request was issued 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/delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request." -#: mod/lostpass.php:52 +#: mod/lostpass.php:54 #, php-format msgid "" "\n" @@ -4122,44 +4492,44 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "\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" -#: mod/lostpass.php:71 +#: mod/lostpass.php:73 #, php-format msgid "Password reset requested at %s" msgstr "Password reset requested at %s" -#: mod/lostpass.php:91 +#: mod/lostpass.php:93 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "Request could not be verified. (You may have previously submitted it.) Password reset failed." -#: mod/lostpass.php:110 boot.php:1882 +#: mod/lostpass.php:112 boot.php:877 msgid "Password Reset" msgstr "Password reset" -#: mod/lostpass.php:111 +#: mod/lostpass.php:113 msgid "Your password has been reset as requested." msgstr "Your password has been reset as requested." -#: mod/lostpass.php:112 +#: mod/lostpass.php:114 msgid "Your new password is" msgstr "Your new password is" -#: mod/lostpass.php:113 +#: mod/lostpass.php:115 msgid "Save or copy your new password - and then" msgstr "Save or copy your new password - and then" -#: mod/lostpass.php:114 +#: mod/lostpass.php:116 msgid "click here to login" msgstr "click here to login" -#: mod/lostpass.php:115 +#: mod/lostpass.php:117 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "Your password may be changed from the Settings page after successful login." -#: mod/lostpass.php:125 +#: mod/lostpass.php:127 #, php-format msgid "" "\n" @@ -4170,7 +4540,7 @@ msgid "" "\t\t\t" msgstr "\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" -#: mod/lostpass.php:131 +#: mod/lostpass.php:133 #, php-format msgid "" "\n" @@ -4184,58 +4554,240 @@ msgid "" "\t\t\t" msgstr "\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" -#: mod/lostpass.php:147 +#: mod/lostpass.php:149 #, php-format msgid "Your password has been changed at %s" msgstr "Your password has been changed at %s" -#: mod/lostpass.php:159 +#: mod/lostpass.php:161 msgid "Forgot your Password?" -msgstr "Forgot your password?" +msgstr "Reset My Password" -#: mod/lostpass.php:160 +#: mod/lostpass.php:162 msgid "" "Enter your email address and submit to have your password reset. Then check " "your email for further instructions." -msgstr "Enter your email address and submit to reset your password. Then check your email for further instructions." +msgstr "Enter email address or nickname to reset your password. You will receive further instruction via email." -#: mod/lostpass.php:161 boot.php:1870 +#: mod/lostpass.php:163 boot.php:865 msgid "Nickname or Email: " -msgstr "Nickname or Email: " +msgstr "Nickname or email: " -#: mod/lostpass.php:162 +#: mod/lostpass.php:164 msgid "Reset" msgstr "Reset" -#: mod/maintenance.php:20 +#: mod/maintenance.php:21 msgid "System down for maintenance" msgstr "Sorry, the system is currently down for maintenance." -#: mod/match.php:35 +#: mod/manage.php:152 +msgid "Manage Identities and/or Pages" +msgstr "Manage Identities and Pages" + +#: mod/manage.php:153 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Accounts that I manage or own." + +#: mod/manage.php:154 +msgid "Select an identity to manage: " +msgstr "Select identity:" + +#: mod/match.php:38 msgid "No keywords to match. Please add keywords to your default profile." msgstr "No keywords to match. Please add keywords to your default profile." -#: mod/match.php:88 +#: mod/match.php:91 msgid "is interested in:" msgstr "is interested in:" -#: mod/match.php:102 +#: mod/match.php:105 msgid "Profile Match" msgstr "Profile Match" -#: mod/match.php:109 mod/dirfind.php:245 -msgid "No matches" -msgstr "No matches" +#: mod/message.php:62 mod/wallmessage.php:52 +msgid "No recipient selected." +msgstr "No recipient selected." -#: mod/mood.php:134 +#: mod/message.php:66 +msgid "Unable to locate contact information." +msgstr "Unable to locate contact information." + +#: mod/message.php:69 mod/wallmessage.php:58 +msgid "Message could not be sent." +msgstr "Message could not be sent." + +#: mod/message.php:72 mod/wallmessage.php:61 +msgid "Message collection failure." +msgstr "Message collection failure." + +#: mod/message.php:75 mod/wallmessage.php:64 +msgid "Message sent." +msgstr "Message sent." + +#: mod/message.php:206 +msgid "Do you really want to delete this message?" +msgstr "Do you really want to delete this message?" + +#: mod/message.php:226 +msgid "Message deleted." +msgstr "Message deleted." + +#: mod/message.php:257 +msgid "Conversation removed." +msgstr "Conversation removed." + +#: mod/message.php:324 mod/wallmessage.php:128 +msgid "Send Private Message" +msgstr "Send private message" + +#: mod/message.php:325 mod/message.php:512 mod/wallmessage.php:130 +msgid "To:" +msgstr "To:" + +#: mod/message.php:330 mod/message.php:514 mod/wallmessage.php:131 +msgid "Subject:" +msgstr "Subject:" + +#: mod/message.php:366 +msgid "No messages." +msgstr "No messages." + +#: mod/message.php:405 +msgid "Message not available." +msgstr "Message not available." + +#: mod/message.php:479 +msgid "Delete message" +msgstr "Delete message" + +#: mod/message.php:505 mod/message.php:593 +msgid "Delete conversation" +msgstr "Delete conversation" + +#: mod/message.php:507 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "No secure communications available. You may be able to respond from the sender's profile page." + +#: mod/message.php:511 +msgid "Send Reply" +msgstr "Send reply" + +#: mod/message.php:563 +#, php-format +msgid "Unknown sender - %s" +msgstr "Unknown sender - %s" + +#: mod/message.php:565 +#, php-format +msgid "You and %s" +msgstr "Me and %s" + +#: mod/message.php:567 +#, php-format +msgid "%s and You" +msgstr "%s and me" + +#: mod/message.php:596 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" + +#: mod/message.php:599 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d message" +msgstr[1] "%d messages" + +#: mod/mood.php:135 msgid "Mood" msgstr "Mood" -#: mod/mood.php:135 +#: mod/mood.php:136 msgid "Set your current mood and tell your friends" msgstr "Set your current mood and tell your friends" -#: mod/newmember.php:6 +#: mod/network.php:154 mod/search.php:230 mod/contacts.php:808 +#, php-format +msgid "Results for: %s" +msgstr "Results for: %s" + +#: mod/network.php:200 mod/search.php:28 +msgid "Remove term" +msgstr "Remove term" + +#: mod/network.php:407 +#, php-format +msgid "" +"Warning: This group contains %s member from a network that doesn't allow non" +" public messages." +msgid_plural "" +"Warning: This group contains %s members from a network that doesn't allow " +"non public messages." +msgstr[0] "Warning: This group contains %s member from a network that doesn't allow non public messages." +msgstr[1] "Warning: This group contains %s members from a network that doesn't allow non public messages." + +#: mod/network.php:410 +msgid "Messages in this group won't be send to these receivers." +msgstr "Messages in this group won't be send to these receivers." + +#: mod/network.php:538 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Private messages to this person are at risk of public disclosure." + +#: mod/network.php:543 +msgid "Invalid contact." +msgstr "Invalid contact." + +#: mod/network.php:816 +msgid "Commented Order" +msgstr "Commented last" + +#: mod/network.php:819 +msgid "Sort by Comment Date" +msgstr "Sort by comment date" + +#: mod/network.php:824 +msgid "Posted Order" +msgstr "Posted last" + +#: mod/network.php:827 +msgid "Sort by Post Date" +msgstr "Sort by post date" + +#: mod/network.php:838 +msgid "Posts that mention or involve you" +msgstr "Posts mentioning or involving me" + +#: mod/network.php:846 +msgid "New" +msgstr "New" + +#: mod/network.php:849 +msgid "Activity Stream - by date" +msgstr "Activity Stream - by date" + +#: mod/network.php:857 +msgid "Shared Links" +msgstr "Shared links" + +#: mod/network.php:860 +msgid "Interesting Links" +msgstr "Interesting links" + +#: mod/network.php:868 +msgid "Starred" +msgstr "Starred" + +#: mod/network.php:871 +msgid "Favourite Posts" +msgstr "My favourite posts" + +#: mod/newmember.php:7 msgid "Welcome to Friendica" msgstr "Welcome to Friendica" @@ -4243,7 +4795,7 @@ msgstr "Welcome to Friendica" msgid "New Member Checklist" msgstr "New Member Checklist" -#: mod/newmember.php:12 +#: mod/newmember.php:10 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 " @@ -4251,33 +4803,33 @@ msgid "" "registration and then will quietly disappear." msgstr "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." -#: mod/newmember.php:14 +#: mod/newmember.php:11 msgid "Getting Started" msgstr "Getting started" -#: mod/newmember.php:18 +#: mod/newmember.php:13 msgid "Friendica Walk-Through" msgstr "Friendica walk-through" -#: mod/newmember.php:18 +#: mod/newmember.php:13 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 "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." -#: mod/newmember.php:26 +#: mod/newmember.php:17 msgid "Go to Your Settings" msgstr "Go to your settings" -#: mod/newmember.php:26 +#: mod/newmember.php:17 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 "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." -#: mod/newmember.php:28 +#: mod/newmember.php:18 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -4285,81 +4837,81 @@ msgid "" "potential friends know exactly how to find you." msgstr "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." -#: mod/newmember.php:36 mod/profile_photo.php:256 mod/profiles.php:700 +#: mod/newmember.php:22 mod/profile_photo.php:255 mod/profiles.php:703 msgid "Upload Profile Photo" msgstr "Upload profile photo" -#: mod/newmember.php:36 +#: mod/newmember.php:22 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "Upload 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." -#: mod/newmember.php:38 +#: mod/newmember.php:23 msgid "Edit Your Profile" msgstr "Edit your profile" -#: mod/newmember.php:38 +#: mod/newmember.php:23 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 "Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors." -#: mod/newmember.php:40 +#: mod/newmember.php:24 msgid "Profile Keywords" msgstr "Profile keywords" -#: mod/newmember.php:40 +#: mod/newmember.php:24 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 "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." -#: mod/newmember.php:44 +#: mod/newmember.php:26 msgid "Connecting" msgstr "Connecting" -#: mod/newmember.php:51 +#: mod/newmember.php:32 msgid "Importing Emails" msgstr "Importing emails" -#: mod/newmember.php:51 +#: mod/newmember.php:32 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 "Enter your email access information on your Connector Settings if you wish to import and interact with friends or mailing lists from your email INBOX" -#: mod/newmember.php:53 +#: mod/newmember.php:35 msgid "Go to Your Contacts Page" msgstr "Go to your contacts page" -#: mod/newmember.php:53 +#: mod/newmember.php:35 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 "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." -#: mod/newmember.php:55 +#: mod/newmember.php:36 msgid "Go to Your Site's Directory" msgstr "Go to your site's directory" -#: mod/newmember.php:55 +#: mod/newmember.php:36 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 "The directory 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 when requested." -#: mod/newmember.php:57 +#: mod/newmember.php:37 msgid "Finding New People" msgstr "Finding new people" -#: mod/newmember.php:57 +#: mod/newmember.php:37 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 " @@ -4368,643 +4920,852 @@ msgid "" "hours." msgstr "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." -#: mod/newmember.php:65 +#: mod/newmember.php:41 msgid "Group Your Contacts" msgstr "Group your contacts" -#: mod/newmember.php:65 +#: mod/newmember.php:41 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 "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." -#: mod/newmember.php:68 +#: mod/newmember.php:44 msgid "Why Aren't My Posts Public?" msgstr "Why aren't my posts public?" -#: mod/newmember.php:68 +#: mod/newmember.php:44 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 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." -#: mod/newmember.php:73 +#: mod/newmember.php:48 msgid "Getting Help" msgstr "Getting help" -#: mod/newmember.php:77 +#: mod/newmember.php:50 msgid "Go to the Help Section" msgstr "Go to the help section" -#: mod/newmember.php:77 +#: mod/newmember.php:50 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "Our help pages may be consulted for detail on other program features and resources." -#: mod/nogroup.php:65 +#: mod/nogroup.php:45 mod/viewcontacts.php:105 mod/contacts.php:597 +#: mod/contacts.php:941 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visit %s's profile [%s]" + +#: mod/nogroup.php:46 mod/contacts.php:942 +msgid "Edit contact" +msgstr "Edit contact" + +#: mod/nogroup.php:67 msgid "Contacts who are not members of a group" msgstr "Contacts who are not members of a group" -#: mod/notify.php:65 -msgid "No more system notifications." -msgstr "No more system notifications." +#: mod/notifications.php:37 +msgid "Invalid request identifier." +msgstr "Invalid request identifier." -#: mod/notify.php:69 mod/notifications.php:111 +#: mod/notifications.php:46 mod/notifications.php:182 +#: mod/notifications.php:229 +msgid "Discard" +msgstr "Discard" + +#: mod/notifications.php:62 mod/notifications.php:181 +#: mod/notifications.php:265 mod/contacts.php:617 mod/contacts.php:817 +#: mod/contacts.php:1002 +msgid "Ignore" +msgstr "Ignore" + +#: mod/notifications.php:107 +msgid "Network Notifications" +msgstr "Network notifications" + +#: mod/notifications.php:113 mod/notify.php:72 msgid "System Notifications" msgstr "System notifications" -#: mod/oexchange.php:21 +#: mod/notifications.php:119 +msgid "Personal Notifications" +msgstr "Personal notifications" + +#: mod/notifications.php:125 +msgid "Home Notifications" +msgstr "Home notifications" + +#: mod/notifications.php:154 +msgid "Show Ignored Requests" +msgstr "Show ignored requests." + +#: mod/notifications.php:154 +msgid "Hide Ignored Requests" +msgstr "Hide ignored requests" + +#: mod/notifications.php:166 mod/notifications.php:236 +msgid "Notification type: " +msgstr "Notification type: " + +#: mod/notifications.php:169 +#, php-format +msgid "suggested by %s" +msgstr "suggested by %s" + +#: mod/notifications.php:174 mod/notifications.php:253 mod/contacts.php:624 +msgid "Hide this contact from others" +msgstr "Hide this contact from others" + +#: mod/notifications.php:175 mod/notifications.php:254 +msgid "Post a new friend activity" +msgstr "Post a new friend activity" + +#: mod/notifications.php:175 mod/notifications.php:254 +msgid "if applicable" +msgstr "if applicable" + +#: mod/notifications.php:178 mod/notifications.php:263 mod/admin.php:1512 +msgid "Approve" +msgstr "Approve" + +#: mod/notifications.php:197 +msgid "Claims to be known to you: " +msgstr "Says they know me:" + +#: mod/notifications.php:198 +msgid "yes" +msgstr "yes" + +#: mod/notifications.php:198 +msgid "no" +msgstr "no" + +#: mod/notifications.php:199 mod/notifications.php:204 +msgid "Shall your connection be bidirectional or not?" +msgstr "Shall your connection be in both directions or not?" + +#: mod/notifications.php:200 mod/notifications.php:205 +#, php-format +msgid "" +"Accepting %s as a friend allows %s to subscribe to your posts, and you will " +"also receive updates from them in your news feed." +msgstr "Accepting %s as a friend allows %s to subscribe to your posts; you will also receive updates from them in your news feed." + +#: mod/notifications.php:201 +#, php-format +msgid "" +"Accepting %s as a subscriber allows them to subscribe to your posts, but you" +" will not receive updates from them in your news feed." +msgstr "Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed." + +#: mod/notifications.php:206 +#, php-format +msgid "" +"Accepting %s as a sharer allows them to subscribe to your posts, but you " +"will not receive updates from them in your news feed." +msgstr "Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed." + +#: mod/notifications.php:217 +msgid "Friend" +msgstr "Friend" + +#: mod/notifications.php:218 +msgid "Sharer" +msgstr "Sharer" + +#: mod/notifications.php:218 +msgid "Subscriber" +msgstr "Subscriber" + +#: mod/notifications.php:274 +msgid "No introductions." +msgstr "No introductions." + +#: mod/notifications.php:315 +msgid "Show unread" +msgstr "Show unread" + +#: mod/notifications.php:315 +msgid "Show all" +msgstr "Show all" + +#: mod/notifications.php:321 +#, php-format +msgid "No more %s notifications." +msgstr "No more %s notifications." + +#: mod/notify.php:68 +msgid "No more system notifications." +msgstr "No more system notifications." + +#: mod/oexchange.php:24 msgid "Post successful." msgstr "Post successful." -#: mod/ostatus_subscribe.php:14 +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID protocol error. No ID returned." + +#: mod/openid.php:60 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "Account not found and OpenID registration is not permitted on this site." + +#: mod/ostatus_subscribe.php:16 msgid "Subscribing to OStatus contacts" msgstr "Subscribing to OStatus contacts" -#: mod/ostatus_subscribe.php:25 +#: mod/ostatus_subscribe.php:27 msgid "No contact provided." msgstr "No contact provided." -#: mod/ostatus_subscribe.php:31 +#: mod/ostatus_subscribe.php:33 msgid "Couldn't fetch information for contact." msgstr "Couldn't fetch information for contact." -#: mod/ostatus_subscribe.php:40 +#: mod/ostatus_subscribe.php:42 msgid "Couldn't fetch friends for contact." msgstr "Couldn't fetch friends for contact." -#: mod/ostatus_subscribe.php:54 mod/repair_ostatus.php:44 +#: mod/ostatus_subscribe.php:56 mod/repair_ostatus.php:46 msgid "Done" msgstr "Done" -#: mod/ostatus_subscribe.php:68 +#: mod/ostatus_subscribe.php:70 msgid "success" msgstr "success" -#: mod/ostatus_subscribe.php:70 +#: mod/ostatus_subscribe.php:72 msgid "failed" msgstr "failed" -#: mod/ostatus_subscribe.php:78 mod/repair_ostatus.php:50 +#: mod/ostatus_subscribe.php:80 mod/repair_ostatus.php:52 msgid "Keep this window open until done." msgstr "Keep this window open until done." -#: mod/p.php:9 +#: mod/p.php:12 msgid "Not Extended" msgstr "Not extended" -#: mod/poke.php:196 -msgid "Poke/Prod" -msgstr "Poke/Prod" +#: mod/photos.php:96 mod/photos.php:1902 +msgid "Recent Photos" +msgstr "Recent photos" -#: mod/poke.php:197 -msgid "poke, prod or do other things to somebody" -msgstr "Poke, prod or do other things to somebody" +#: mod/photos.php:99 mod/photos.php:1330 mod/photos.php:1904 +msgid "Upload New Photos" +msgstr "Upload new photos" -#: mod/poke.php:198 -msgid "Recipient" -msgstr "Recipient:" +#: mod/photos.php:114 mod/settings.php:38 +msgid "everybody" +msgstr "everybody" -#: mod/poke.php:199 -msgid "Choose what you wish to do to recipient" -msgstr "Choose what you wish to do:" +#: mod/photos.php:178 +msgid "Contact information unavailable" +msgstr "Contact information unavailable" -#: mod/poke.php:202 -msgid "Make this post private" -msgstr "Make this post private" +#: mod/photos.php:199 +msgid "Album not found." +msgstr "Album not found." -#: mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "Image uploaded but image cropping failed." +#: mod/photos.php:232 mod/photos.php:244 mod/photos.php:1274 +msgid "Delete Album" +msgstr "Delete album" -#: mod/profile_photo.php:77 mod/profile_photo.php:85 mod/profile_photo.php:93 -#: mod/profile_photo.php:323 +#: mod/photos.php:242 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Do you really want to delete this photo album and all its photos?" + +#: mod/photos.php:325 mod/photos.php:336 mod/photos.php:1600 +msgid "Delete Photo" +msgstr "Delete photo" + +#: mod/photos.php:334 +msgid "Do you really want to delete this photo?" +msgstr "Do you really want to delete this photo?" + +#: mod/photos.php:715 #, php-format -msgid "Image size reduction [%s] failed." -msgstr "Image size reduction [%s] failed." +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s was tagged in %2$s by %3$s" -#: mod/profile_photo.php:127 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Shift-reload the page or clear browser cache if the new photo does not display immediately." +#: mod/photos.php:715 +msgid "a photo" +msgstr "a photo" -#: mod/profile_photo.php:137 -msgid "Unable to process image" -msgstr "Unable to process image" - -#: mod/profile_photo.php:156 mod/photos.php:813 mod/wall_upload.php:181 +#: mod/photos.php:815 mod/wall_upload.php:181 mod/profile_photo.php:155 #, php-format msgid "Image exceeds size limit of %s" msgstr "Image exceeds size limit of %s" -#: mod/profile_photo.php:165 mod/photos.php:854 mod/wall_upload.php:218 +#: mod/photos.php:823 +msgid "Image file is empty." +msgstr "Image file is empty." + +#: mod/photos.php:856 mod/wall_upload.php:218 mod/profile_photo.php:164 msgid "Unable to process image." msgstr "Unable to process image." -#: mod/profile_photo.php:254 -msgid "Upload File:" -msgstr "Upload File:" - -#: mod/profile_photo.php:255 -msgid "Select a profile:" -msgstr "Select a profile:" - -#: mod/profile_photo.php:257 -msgid "Upload" -msgstr "Upload" - -#: mod/profile_photo.php:260 -msgid "or" -msgstr "or" - -#: mod/profile_photo.php:260 -msgid "skip this step" -msgstr "skip this step" - -#: mod/profile_photo.php:260 -msgid "select a photo from your photo albums" -msgstr "select a photo from your photo albums" - -#: mod/profile_photo.php:274 -msgid "Crop Image" -msgstr "Crop Image" - -#: mod/profile_photo.php:275 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Please adjust the image cropping for optimum viewing." - -#: mod/profile_photo.php:277 -msgid "Done Editing" -msgstr "Done editing" - -#: mod/profile_photo.php:313 -msgid "Image uploaded successfully." -msgstr "Image uploaded successfully." - -#: mod/profile_photo.php:315 mod/photos.php:883 mod/wall_upload.php:257 +#: mod/photos.php:885 mod/wall_upload.php:257 mod/profile_photo.php:314 msgid "Image upload failed." msgstr "Image upload failed." -#: mod/profperm.php:20 mod/group.php:76 index.php:406 -msgid "Permission denied" -msgstr "Permission denied" +#: mod/photos.php:990 +msgid "No photos selected" +msgstr "No photos selected" -#: mod/profperm.php:26 mod/profperm.php:57 +#: mod/photos.php:1093 mod/videos.php:311 +msgid "Access to this item is restricted." +msgstr "Access to this item is restricted." + +#: mod/photos.php:1153 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." + +#: mod/photos.php:1190 +msgid "Upload Photos" +msgstr "Upload photos" + +#: mod/photos.php:1194 mod/photos.php:1269 +msgid "New album name: " +msgstr "New album name: " + +#: mod/photos.php:1195 +msgid "or existing album name: " +msgstr "or existing album name: " + +#: mod/photos.php:1196 +msgid "Do not show a status post for this upload" +msgstr "Do not show a status post for this upload" + +#: mod/photos.php:1207 mod/photos.php:1604 mod/settings.php:1308 +msgid "Show to Groups" +msgstr "Show to groups" + +#: mod/photos.php:1208 mod/photos.php:1605 mod/settings.php:1309 +msgid "Show to Contacts" +msgstr "Show to contacts" + +#: mod/photos.php:1209 +msgid "Private Photo" +msgstr "Private photo" + +#: mod/photos.php:1210 +msgid "Public Photo" +msgstr "Public photo" + +#: mod/photos.php:1280 +msgid "Edit Album" +msgstr "Edit album" + +#: mod/photos.php:1285 +msgid "Show Newest First" +msgstr "Show newest first" + +#: mod/photos.php:1287 +msgid "Show Oldest First" +msgstr "Show oldest first" + +#: mod/photos.php:1316 mod/photos.php:1887 +msgid "View Photo" +msgstr "View photo" + +#: mod/photos.php:1361 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permission denied. Access to this item may be restricted." + +#: mod/photos.php:1363 +msgid "Photo not available" +msgstr "Photo not available" + +#: mod/photos.php:1424 +msgid "View photo" +msgstr "View photo" + +#: mod/photos.php:1424 +msgid "Edit photo" +msgstr "Edit photo" + +#: mod/photos.php:1425 +msgid "Use as profile photo" +msgstr "Use as profile photo" + +#: mod/photos.php:1450 +msgid "View Full Size" +msgstr "View full size" + +#: mod/photos.php:1540 +msgid "Tags: " +msgstr "Tags: " + +#: mod/photos.php:1543 +msgid "[Remove any tag]" +msgstr "[Remove any tag]" + +#: mod/photos.php:1586 +msgid "New album name" +msgstr "New album name" + +#: mod/photos.php:1587 +msgid "Caption" +msgstr "Caption" + +#: mod/photos.php:1588 +msgid "Add a Tag" +msgstr "Add Tag" + +#: mod/photos.php:1588 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Example: @bob, @jojo@example.com, #California, #camping" + +#: mod/photos.php:1589 +msgid "Do not rotate" +msgstr "Do not rotate" + +#: mod/photos.php:1590 +msgid "Rotate CW (right)" +msgstr "Rotate right (CW)" + +#: mod/photos.php:1591 +msgid "Rotate CCW (left)" +msgstr "Rotate left (CCW)" + +#: mod/photos.php:1606 +msgid "Private photo" +msgstr "Private photo" + +#: mod/photos.php:1607 +msgid "Public photo" +msgstr "Public photo" + +#: mod/photos.php:1816 +msgid "Map" +msgstr "Map" + +#: mod/photos.php:1893 mod/videos.php:395 +msgid "View Album" +msgstr "View album" + +#: mod/ping.php:273 +msgid "{0} wants to be your friend" +msgstr "{0} wants to be your friend" + +#: mod/ping.php:288 +msgid "{0} sent you a message" +msgstr "{0} sent you a message" + +#: mod/ping.php:303 +msgid "{0} requested registration" +msgstr "{0} requested registration" + +#: mod/poke.php:197 +msgid "Poke/Prod" +msgstr "Poke/Prod" + +#: mod/poke.php:198 +msgid "poke, prod or do other things to somebody" +msgstr "Poke, prod or do other things to somebody" + +#: mod/poke.php:199 +msgid "Recipient" +msgstr "Recipient:" + +#: mod/poke.php:200 +msgid "Choose what you wish to do to recipient" +msgstr "Choose what you wish to do:" + +#: mod/poke.php:203 +msgid "Make this post private" +msgstr "Make this post private" + +#: mod/profile.php:176 +msgid "Tips for New Members" +msgstr "Tips for New Members" + +#: mod/profperm.php:28 mod/profperm.php:59 msgid "Invalid profile identifier." msgstr "Invalid profile identifier." -#: mod/profperm.php:103 +#: mod/profperm.php:105 msgid "Profile Visibility Editor" msgstr "Profile Visibility Editor" -#: mod/profperm.php:107 mod/group.php:262 -msgid "Click on a contact to add or remove." -msgstr "Click on a contact to add or remove." - -#: mod/profperm.php:116 +#: mod/profperm.php:118 msgid "Visible To" msgstr "Visible to" -#: mod/profperm.php:132 +#: mod/profperm.php:134 msgid "All Contacts (with secure profile access)" msgstr "All contacts with secure profile access" -#: mod/regmod.php:58 -msgid "Account approved." -msgstr "Account approved." - -#: mod/regmod.php:95 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registration revoked for %s" - -#: mod/regmod.php:107 -msgid "Please login." -msgstr "Please login." - -#: mod/removeme.php:52 mod/removeme.php:55 -msgid "Remove My Account" -msgstr "Remove my account" - -#: mod/removeme.php:53 +#: mod/register.php:95 msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "This will completely remove your account. Once this has been done it is not recoverable." +"Registration successful. Please check your email for further instructions." +msgstr "Registration successful. Please check your email for further instructions." -#: mod/removeme.php:54 -msgid "Please enter your password for verification:" -msgstr "Please enter your password for verification:" - -#: mod/repair_ostatus.php:14 -msgid "Resubscribing to OStatus contacts" -msgstr "Resubscribing to OStatus contacts" - -#: mod/repair_ostatus.php:30 -msgid "Error" -msgstr "Error" - -#: mod/subthread.php:104 +#: mod/register.php:100 #, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s is following %2$s's %3$s" - -#: mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Do you really want to delete this suggestion?" - -#: mod/suggest.php:71 msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "No suggestions available. If this is a new site, please try again in 24 hours." +"Failed to send email message. Here your accout details:
login: %s
" +"password: %s

You can change your password after login." +msgstr "Failed to send email message. Here your account details:
login: %s
password: %s

You can change your password after login." -#: mod/suggest.php:84 mod/suggest.php:104 -msgid "Ignore/Hide" -msgstr "Ignore/Hide" +#: mod/register.php:107 +msgid "Registration successful." +msgstr "Registration successful." -#: mod/tagrm.php:43 -msgid "Tag removed" -msgstr "Tag removed" +#: mod/register.php:113 +msgid "Your registration can not be processed." +msgstr "Your registration cannot be processed." -#: mod/tagrm.php:82 -msgid "Remove Item Tag" -msgstr "Remove Item tag" +#: mod/register.php:162 +msgid "Your registration is pending approval by the site owner." +msgstr "Your registration is pending approval by the site administrator." -#: mod/tagrm.php:84 -msgid "Select a tag to remove: " -msgstr "Select a tag to remove: " - -#: mod/uimport.php:51 mod/register.php:198 +#: mod/register.php:200 mod/uimport.php:53 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "This site has exceeded the number of allowed daily account registrations. Please try again tomorrow." -#: mod/uimport.php:66 mod/register.php:295 +#: mod/register.php:228 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'." + +#: mod/register.php:229 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items." + +#: mod/register.php:230 +msgid "Your OpenID (optional): " +msgstr "Your OpenID (optional): " + +#: mod/register.php:244 +msgid "Include your profile in member directory?" +msgstr "Include your profile in member directory?" + +#: mod/register.php:269 +msgid "Note for the admin" +msgstr "Note for the admin" + +#: mod/register.php:269 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "Leave a message for the admin, why you want to join this node." + +#: mod/register.php:270 +msgid "Membership on this site is by invitation only." +msgstr "Membership on this site is by invitation only." + +#: mod/register.php:271 +msgid "Your invitation ID: " +msgstr "Your invitation ID: " + +#: mod/register.php:274 mod/admin.php:1062 +msgid "Registration" +msgstr "Registration" + +#: mod/register.php:282 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "Your full name: " + +#: mod/register.php:283 +msgid "Your Email Address: " +msgstr "Your email address: " + +#: mod/register.php:285 mod/settings.php:1279 +msgid "New Password:" +msgstr "New password:" + +#: mod/register.php:285 +msgid "Leave empty for an auto generated password." +msgstr "Leave empty for an auto generated password." + +#: mod/register.php:286 mod/settings.php:1280 +msgid "Confirm:" +msgstr "Confirm new password:" + +#: mod/register.php:287 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Choose a profile nickname. Your nickname will be part of your identity address; for example: 'nickname@$sitename'." + +#: mod/register.php:288 +msgid "Choose a nickname: " +msgstr "Choose a nickname: " + +#: mod/register.php:297 mod/uimport.php:68 msgid "Import" -msgstr "Import" +msgstr "Import profile" -#: mod/uimport.php:68 -msgid "Move account" -msgstr "Move account" +#: mod/register.php:298 +msgid "Import your profile to this friendica instance" +msgstr "Import an existing Friendica profile to this node." -#: mod/uimport.php:69 -msgid "You can import an account from another Friendica server." -msgstr "You can import an account from another Friendica server." +#: mod/removeme.php:54 mod/removeme.php:57 +msgid "Remove My Account" +msgstr "Remove my account" -#: mod/uimport.php:70 +#: mod/removeme.php:55 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 "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." +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "This will completely remove your account. Once this has been done it is not recoverable." -#: mod/uimport.php:71 +#: mod/removeme.php:56 +msgid "Please enter your password for verification:" +msgstr "Please enter your password for verification:" + +#: mod/repair_ostatus.php:16 +msgid "Resubscribing to OStatus contacts" +msgstr "Resubscribing to OStatus contacts" + +#: mod/repair_ostatus.php:32 +msgid "Error" +msgstr "Error" + +#: mod/search.php:103 +msgid "Only logged in users are permitted to perform a search." +msgstr "Only logged in users are permitted to perform a search." + +#: mod/search.php:127 +msgid "Too Many Requests" +msgstr "Too many requests" + +#: mod/search.php:128 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "Only one search per minute is permitted for not logged in users." + +#: mod/search.php:228 +#, php-format +msgid "Items tagged with: %s" +msgstr "Items tagged with: %s" + +#: mod/subthread.php:105 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s is following %2$s's %3$s" + +#: mod/suggest.php:29 +msgid "Do you really want to delete this suggestion?" +msgstr "Do you really want to delete this suggestion?" + +#: mod/suggest.php:73 msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (GNU Social/Statusnet) or from Diaspora" -msgstr "This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "No suggestions available. If this is a new site, please try again in 24 hours." -#: mod/uimport.php:72 -msgid "Account file" -msgstr "Account file" +#: mod/suggest.php:86 mod/suggest.php:106 +msgid "Ignore/Hide" +msgstr "Ignore/Hide" -#: mod/uimport.php:72 +#: mod/tagrm.php:45 +msgid "Tag removed" +msgstr "Tag removed" + +#: mod/tagrm.php:84 +msgid "Remove Item Tag" +msgstr "Remove Item tag" + +#: mod/tagrm.php:86 +msgid "Select a tag to remove: " +msgstr "Select a tag to remove: " + +#: mod/uexport.php:38 +msgid "Export account" +msgstr "Export account" + +#: mod/uexport.php:38 msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "To export your account, go to \"Settings->Export personal data\" and select \"Export account\"" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "Export your account info and contacts. Use this to backup your account or to move it to another server." -#: mod/update_community.php:19 mod/update_display.php:23 -#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35 +#: mod/uexport.php:39 +msgid "Export all" +msgstr "Export all" + +#: mod/uexport.php:39 +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 "Export your account 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)" + +#: mod/uexport.php:46 mod/settings.php:97 +msgid "Export personal data" +msgstr "Export personal data" + +#: mod/update_community.php:21 mod/update_display.php:25 +#: mod/update_network.php:29 mod/update_notes.php:38 mod/update_profile.php:37 msgid "[Embedded content - reload page to view]" msgstr "[Embedded content - reload page to view]" -#: mod/viewcontacts.php:75 +#: mod/videos.php:126 +msgid "Do you really want to delete this video?" +msgstr "Do you really want to delete this video?" + +#: mod/videos.php:131 +msgid "Delete Video" +msgstr "Delete video" + +#: mod/videos.php:210 +msgid "No videos selected" +msgstr "No videos selected" + +#: mod/videos.php:404 +msgid "Recent Videos" +msgstr "Recent videos" + +#: mod/videos.php:406 +msgid "Upload New Videos" +msgstr "Upload new videos" + +#: mod/viewcontacts.php:78 msgid "No contacts." msgstr "No contacts." -#: mod/viewsrc.php:7 +#: mod/viewsrc.php:8 msgid "Access denied." msgstr "Access denied." -#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76 +#: mod/wall_attach.php:19 mod/wall_attach.php:27 mod/wall_attach.php:78 #: mod/wall_upload.php:36 mod/wall_upload.php:52 mod/wall_upload.php:110 #: mod/wall_upload.php:150 mod/wall_upload.php:153 msgid "Invalid request." msgstr "Invalid request." -#: mod/wall_attach.php:94 +#: mod/wall_attach.php:96 msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" msgstr "Sorry, maybe your upload is bigger than the PHP configuration allows" -#: mod/wall_attach.php:94 +#: mod/wall_attach.php:96 msgid "Or - did you try to upload an empty file?" msgstr "Or did you try to upload an empty file?" -#: mod/wall_attach.php:105 +#: mod/wall_attach.php:107 #, php-format msgid "File exceeds size limit of %s" msgstr "File exceeds size limit of %s" -#: mod/wall_attach.php:158 mod/wall_attach.php:174 +#: mod/wall_attach.php:160 mod/wall_attach.php:176 msgid "File upload failed." msgstr "File upload failed." -#: mod/wallmessage.php:42 mod/wallmessage.php:106 +#: mod/wallmessage.php:44 mod/wallmessage.php:108 #, php-format msgid "Number of daily wall messages for %s exceeded. Message failed." msgstr "Number of daily wall messages for %s exceeded. Message failed." -#: mod/wallmessage.php:50 mod/message.php:60 -msgid "No recipient selected." -msgstr "No recipient selected." - -#: mod/wallmessage.php:53 +#: mod/wallmessage.php:55 msgid "Unable to check your home location." msgstr "Unable to check your home location." -#: mod/wallmessage.php:56 mod/message.php:67 -msgid "Message could not be sent." -msgstr "Message could not be sent." - -#: mod/wallmessage.php:59 mod/message.php:70 -msgid "Message collection failure." -msgstr "Message collection failure." - -#: mod/wallmessage.php:62 mod/message.php:73 -msgid "Message sent." -msgstr "Message sent." - -#: mod/wallmessage.php:80 mod/wallmessage.php:89 +#: mod/wallmessage.php:82 mod/wallmessage.php:91 msgid "No recipient." msgstr "No recipient." -#: mod/wallmessage.php:126 mod/message.php:322 -msgid "Send Private Message" -msgstr "Send private message" - -#: mod/wallmessage.php:127 +#: mod/wallmessage.php:129 #, 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 "If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders." -#: mod/wallmessage.php:128 mod/message.php:323 mod/message.php:510 -msgid "To:" -msgstr "To:" +#: mod/webfinger.php:11 mod/probe.php:10 +msgid "Only logged in users are permitted to perform a probing." +msgstr "Only logged in users are permitted to perform a probing." -#: mod/wallmessage.php:129 mod/message.php:328 mod/message.php:512 -msgid "Subject:" -msgstr "Subject:" - -#: mod/babel.php:16 -msgid "Source (bbcode) text:" -msgstr "Source (bbcode) text:" - -#: mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Source (Diaspora) text to convert to BBcode:" - -#: mod/babel.php:31 -msgid "Source input: " -msgstr "Source input: " - -#: mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (raw HTML): " - -#: mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html: " - -#: mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " - -#: mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md: " - -#: mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html: " - -#: mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " - -#: mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " - -#: mod/babel.php:65 -msgid "Source input (Diaspora format): " -msgstr "Source input (Diaspora format): " - -#: mod/babel.php:69 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " - -#: mod/cal.php:271 mod/events.php:375 -msgid "View" -msgstr "View" - -#: mod/cal.php:272 mod/events.php:377 -msgid "Previous" -msgstr "Previous" - -#: mod/cal.php:273 mod/events.php:378 mod/install.php:201 -msgid "Next" -msgstr "Next" - -#: mod/cal.php:282 mod/events.php:387 -msgid "list" -msgstr "List" - -#: mod/cal.php:292 -msgid "User not found" -msgstr "User not found" - -#: mod/cal.php:308 -msgid "This calendar format is not supported" -msgstr "This calendar format is not supported" - -#: mod/cal.php:310 -msgid "No exportable data found" -msgstr "No exportable data found" - -#: mod/cal.php:325 -msgid "calendar" -msgstr "calendar" - -#: mod/community.php:23 -msgid "Not available." -msgstr "Not available." - -#: mod/community.php:50 mod/search.php:219 -msgid "No results." -msgstr "No results." - -#: mod/dfrn_confirm.php:70 mod/profiles.php:19 mod/profiles.php:135 -#: mod/profiles.php:182 mod/profiles.php:619 -msgid "Profile not found." -msgstr "Profile not found." - -#: mod/dfrn_confirm.php:127 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "This may occasionally happen if contact was requested by both persons and it has already been approved." - -#: mod/dfrn_confirm.php:244 -msgid "Response from remote site was not understood." -msgstr "Response from remote site was not understood." - -#: mod/dfrn_confirm.php:253 mod/dfrn_confirm.php:258 -msgid "Unexpected response from remote site: " -msgstr "Unexpected response from remote site: " - -#: mod/dfrn_confirm.php:267 -msgid "Confirmation completed successfully." -msgstr "Confirmation completed successfully." - -#: mod/dfrn_confirm.php:269 mod/dfrn_confirm.php:283 mod/dfrn_confirm.php:290 -msgid "Remote site reported: " -msgstr "Remote site reported: " - -#: mod/dfrn_confirm.php:281 -msgid "Temporary failure. Please wait and try again." -msgstr "Temporary failure. Please wait and try again." - -#: mod/dfrn_confirm.php:288 -msgid "Introduction failed or was revoked." -msgstr "Introduction failed or was revoked." - -#: mod/dfrn_confirm.php:418 -msgid "Unable to set contact photo." -msgstr "Unable to set contact photo." - -#: mod/dfrn_confirm.php:559 -#, php-format -msgid "No user record found for '%s' " -msgstr "No user record found for '%s' " - -#: mod/dfrn_confirm.php:569 -msgid "Our site encryption key is apparently messed up." -msgstr "Our site encryption key is apparently messed up." - -#: mod/dfrn_confirm.php:580 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "An empty URL was provided or the URL could not be decrypted by us." - -#: mod/dfrn_confirm.php:602 -msgid "Contact record was not found for you on our site." -msgstr "Contact record was not found for you on our site." - -#: mod/dfrn_confirm.php:616 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "Site public key not available in contact record for URL %s." - -#: mod/dfrn_confirm.php:636 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "The ID provided by your system is a duplicate on our system. It should work if you try again." - -#: mod/dfrn_confirm.php:647 -msgid "Unable to set your contact credentials on our system." -msgstr "Unable to set your contact credentials on our system." - -#: mod/dfrn_confirm.php:709 -msgid "Unable to update your contact profile details on our system" -msgstr "Unable to update your contact profile details on our system" - -#: mod/dfrn_confirm.php:781 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s has joined %2$s" - -#: mod/dfrn_request.php:101 +#: mod/dfrn_request.php:103 msgid "This introduction has already been accepted." msgstr "This introduction has already been accepted." -#: mod/dfrn_request.php:124 mod/dfrn_request.php:528 +#: mod/dfrn_request.php:126 mod/dfrn_request.php:528 msgid "Profile location is not valid or does not contain profile information." msgstr "Profile location is not valid or does not contain profile information." -#: mod/dfrn_request.php:129 mod/dfrn_request.php:533 +#: mod/dfrn_request.php:131 mod/dfrn_request.php:533 msgid "Warning: profile location has no identifiable owner name." msgstr "Warning: profile location has no identifiable owner name." -#: mod/dfrn_request.php:132 mod/dfrn_request.php:536 +#: mod/dfrn_request.php:134 mod/dfrn_request.php:536 msgid "Warning: profile location has no profile photo." msgstr "Warning: profile location has no profile photo." -#: mod/dfrn_request.php:136 mod/dfrn_request.php:540 +#: mod/dfrn_request.php:138 mod/dfrn_request.php:540 #, php-format msgid "%d required parameter was not found at the given location" msgid_plural "%d required parameters were not found at the given location" msgstr[0] "%d required parameter was not found at the given location" msgstr[1] "%d required parameters were not found at the given location" -#: mod/dfrn_request.php:180 +#: mod/dfrn_request.php:182 msgid "Introduction complete." msgstr "Introduction complete." -#: mod/dfrn_request.php:225 +#: mod/dfrn_request.php:227 msgid "Unrecoverable protocol error." msgstr "Unrecoverable protocol error." -#: mod/dfrn_request.php:253 +#: mod/dfrn_request.php:255 msgid "Profile unavailable." msgstr "Profile unavailable." -#: mod/dfrn_request.php:280 +#: mod/dfrn_request.php:282 #, php-format msgid "%s has received too many connection requests today." msgstr "%s has received too many connection requests today." -#: mod/dfrn_request.php:281 +#: mod/dfrn_request.php:283 msgid "Spam protection measures have been invoked." msgstr "Spam protection measures have been invoked." -#: mod/dfrn_request.php:282 +#: mod/dfrn_request.php:284 msgid "Friends are advised to please try again in 24 hours." msgstr "Friends are advised to please try again in 24 hours." -#: mod/dfrn_request.php:344 +#: mod/dfrn_request.php:346 msgid "Invalid locator" msgstr "Invalid locator" -#: mod/dfrn_request.php:353 +#: mod/dfrn_request.php:355 msgid "Invalid email address." msgstr "Invalid email address." -#: mod/dfrn_request.php:378 +#: mod/dfrn_request.php:380 msgid "This account has not been configured for email. Request failed." msgstr "This account has not been configured for email. Request failed." -#: mod/dfrn_request.php:481 +#: mod/dfrn_request.php:483 msgid "You have already introduced yourself here." msgstr "You have already introduced yourself here." -#: mod/dfrn_request.php:485 +#: mod/dfrn_request.php:487 #, php-format msgid "Apparently you are already friends with %s." msgstr "Apparently you are already friends with %s." -#: mod/dfrn_request.php:506 +#: mod/dfrn_request.php:508 msgid "Invalid profile URL." msgstr "Invalid profile URL." +#: mod/dfrn_request.php:593 mod/contacts.php:221 +msgid "Failed to update contact record." +msgstr "Failed to update contact record." + #: mod/dfrn_request.php:614 msgid "Your introduction has been sent." msgstr "Your introduction has been sent." @@ -5067,19 +5828,6 @@ msgid "" "testuser@identi.ca" msgstr "Examples: jojo@friendica.example.com, http://friendica.example.com/profile/jojo, sam@identi.ca" -#: mod/dfrn_request.php:879 mod/follow.php:112 -msgid "Please answer the following:" -msgstr "Please answer the following:" - -#: mod/dfrn_request.php:880 mod/follow.php:113 -#, php-format -msgid "Does %s know you?" -msgstr "Does %s know you?" - -#: mod/dfrn_request.php:884 mod/follow.php:114 -msgid "Add a personal note:" -msgstr "Add a personal note:" - #: mod/dfrn_request.php:887 msgid "StatusNet/Federated Social Web" msgstr "StatusNet/Federated social web" @@ -5091,2463 +5839,286 @@ msgid "" " bar." msgstr " - please do not use this form. Instead, enter %s into your Diaspora search bar." -#: mod/dfrn_request.php:890 mod/follow.php:120 -msgid "Your Identity Address:" -msgstr "My identity address:" - -#: mod/dfrn_request.php:893 mod/follow.php:19 -msgid "Submit Request" -msgstr "Submit request" - -#: mod/dirfind.php:37 -#, php-format -msgid "People Search - %s" -msgstr "People search - %s" - -#: mod/dirfind.php:48 -#, php-format -msgid "Forum Search - %s" -msgstr "Forum search - %s" - -#: mod/events.php:93 mod/events.php:95 -msgid "Event can not end before it has started." -msgstr "Event cannot end before it has started." - -#: mod/events.php:102 mod/events.php:104 -msgid "Event title and start time are required." -msgstr "Event title and starting time are required." - -#: mod/events.php:376 -msgid "Create New Event" -msgstr "Create new event" - -#: mod/events.php:481 -msgid "Event details" -msgstr "Event details" - -#: mod/events.php:482 -msgid "Starting date and Title are required." -msgstr "Starting date and title are required." - -#: mod/events.php:483 mod/events.php:484 -msgid "Event Starts:" -msgstr "Event starts:" - -#: mod/events.php:483 mod/events.php:495 mod/profiles.php:709 -msgid "Required" -msgstr "Required" - -#: mod/events.php:485 mod/events.php:501 -msgid "Finish date/time is not known or not relevant" -msgstr "Finish date/time is not known or not relevant" - -#: mod/events.php:487 mod/events.php:488 -msgid "Event Finishes:" -msgstr "Event finishes:" - -#: mod/events.php:489 mod/events.php:502 -msgid "Adjust for viewer timezone" -msgstr "Adjust for viewer's time zone" - -#: mod/events.php:491 -msgid "Description:" -msgstr "Description:" - -#: mod/events.php:495 mod/events.php:497 -msgid "Title:" -msgstr "Title:" - -#: mod/events.php:498 mod/events.php:499 -msgid "Share this event" -msgstr "Share this event" - -#: mod/events.php:528 -msgid "Failed to remove event" -msgstr "Failed to remove event" - -#: mod/events.php:530 -msgid "Event removed" -msgstr "Event removed" - -#: mod/follow.php:30 -msgid "You already added this contact." -msgstr "You already added this contact." - -#: mod/follow.php:39 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "Diaspora support isn't enabled. Contact can't be added." - -#: mod/follow.php:46 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "OStatus support is disabled. Contact can't be added." - -#: mod/follow.php:53 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "The network type couldn't be detected. Contact can't be added." - -#: mod/follow.php:186 -msgid "Contact added" -msgstr "Contact added" - -#: mod/friendica.php:68 -msgid "This is Friendica, version" -msgstr "This is Friendica, version" - -#: mod/friendica.php:69 -msgid "running at web location" -msgstr "running at web location" - -#: mod/friendica.php:73 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Please visit Friendica.com to learn more about the Friendica project." - -#: mod/friendica.php:77 -msgid "Bug reports and issues: please visit" -msgstr "Bug reports and issues: please visit" - -#: mod/friendica.php:77 -msgid "the bugtracker at github" -msgstr "the bugtracker at github" - -#: mod/friendica.php:80 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com" - -#: mod/friendica.php:94 -msgid "Installed plugins/addons/apps:" -msgstr "Installed plugins/addons/apps:" - -#: mod/friendica.php:108 -msgid "No installed plugins/addons/apps" -msgstr "No installed plugins/addons/apps" - -#: mod/friendica.php:113 -msgid "On this server the following remote servers are blocked." -msgstr "On this server the following remote servers are blocked." - -#: mod/friendica.php:114 mod/admin.php:280 mod/admin.php:298 -msgid "Reason for the block" -msgstr "Reason for the block" - -#: mod/group.php:29 -msgid "Group created." -msgstr "Group created." - -#: mod/group.php:35 -msgid "Could not create group." -msgstr "Could not create group." - -#: mod/group.php:49 mod/group.php:154 -msgid "Group not found." -msgstr "Group not found." - -#: mod/group.php:63 -msgid "Group name changed." -msgstr "Group name changed." - -#: mod/group.php:93 -msgid "Save Group" -msgstr "Save group" - -#: mod/group.php:98 -msgid "Create a group of contacts/friends." -msgstr "Create a group of contacts/friends." - -#: mod/group.php:123 -msgid "Group removed." -msgstr "Group removed." - -#: mod/group.php:125 -msgid "Unable to remove group." -msgstr "Unable to remove group." - -#: mod/group.php:189 -msgid "Delete Group" -msgstr "Delete group" - -#: mod/group.php:195 -msgid "Group Editor" -msgstr "Group Editor" - -#: mod/group.php:200 -msgid "Edit Group Name" -msgstr "Edit group name" - -#: mod/group.php:210 -msgid "Members" -msgstr "Members" - -#: mod/group.php:226 -msgid "Remove Contact" -msgstr "Remove contact" - -#: mod/group.php:250 -msgid "Add Contact" -msgstr "Add contact" - -#: mod/manage.php:151 -msgid "Manage Identities and/or Pages" -msgstr "Manage identities/pages" - -#: mod/manage.php:152 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Accounts that I manage or own." - -#: mod/manage.php:153 -msgid "Select an identity to manage: " -msgstr "Select identity:" - -#: mod/message.php:64 -msgid "Unable to locate contact information." -msgstr "Unable to locate contact information." - -#: mod/message.php:204 -msgid "Do you really want to delete this message?" -msgstr "Do you really want to delete this message?" - -#: mod/message.php:224 -msgid "Message deleted." -msgstr "Message deleted." - -#: mod/message.php:255 -msgid "Conversation removed." -msgstr "Conversation removed." - -#: mod/message.php:364 -msgid "No messages." -msgstr "No messages." - -#: mod/message.php:403 -msgid "Message not available." -msgstr "Message not available." - -#: mod/message.php:477 -msgid "Delete message" -msgstr "Delete message" - -#: mod/message.php:503 mod/message.php:591 -msgid "Delete conversation" -msgstr "Delete conversation" - -#: mod/message.php:505 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "" - -#: mod/message.php:509 -msgid "Send Reply" -msgstr "Send reply" - -#: mod/message.php:561 -#, php-format -msgid "Unknown sender - %s" -msgstr "Unknown sender - %s" - -#: mod/message.php:563 -#, php-format -msgid "You and %s" -msgstr "Me and %s" - -#: mod/message.php:565 -#, php-format -msgid "%s and You" -msgstr "%s and me" - -#: mod/message.php:594 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: mod/message.php:597 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d message" -msgstr[1] "%d messages" - -#: mod/network.php:197 mod/search.php:25 -msgid "Remove term" -msgstr "Remove term" - -#: mod/network.php:404 -#, php-format -msgid "" -"Warning: This group contains %s member from a network that doesn't allow non" -" public messages." -msgid_plural "" -"Warning: This group contains %s members from a network that doesn't allow " -"non public messages." -msgstr[0] "Warning: This group contains %s member from a network that doesn't allow non public messages." -msgstr[1] "Warning: This group contains %s members from a network that doesn't allow non public messages." - -#: mod/network.php:407 -msgid "Messages in this group won't be send to these receivers." -msgstr "Messages in this group won't be send to these receivers." - -#: mod/network.php:535 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Private messages to this person are at risk of public disclosure." - -#: mod/network.php:540 -msgid "Invalid contact." -msgstr "Invalid contact." - -#: mod/network.php:813 -msgid "Commented Order" -msgstr "Commented last" - -#: mod/network.php:816 -msgid "Sort by Comment Date" -msgstr "Sort by comment date" - -#: mod/network.php:821 -msgid "Posted Order" -msgstr "Posted last" - -#: mod/network.php:824 -msgid "Sort by Post Date" -msgstr "Sort by post date" - -#: mod/network.php:835 -msgid "Posts that mention or involve you" -msgstr "Posts mentioning or involving me" - -#: mod/network.php:843 -msgid "New" -msgstr "New" - -#: mod/network.php:846 -msgid "Activity Stream - by date" -msgstr "Activity Stream - by date" - -#: mod/network.php:854 -msgid "Shared Links" -msgstr "Shared links" - -#: mod/network.php:857 -msgid "Interesting Links" -msgstr "Interesting links" - -#: mod/network.php:865 -msgid "Starred" -msgstr "Starred" - -#: mod/network.php:868 -msgid "Favourite Posts" -msgstr "My favourite posts" - -#: mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID protocol error. No ID returned." - -#: mod/openid.php:60 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Account not found and OpenID registration is not permitted on this site." - -#: mod/photos.php:94 mod/photos.php:1900 -msgid "Recent Photos" -msgstr "Recent photos" - -#: mod/photos.php:97 mod/photos.php:1328 mod/photos.php:1902 -msgid "Upload New Photos" -msgstr "Upload new photos" - -#: mod/photos.php:112 mod/settings.php:36 -msgid "everybody" -msgstr "everybody" - -#: mod/photos.php:176 -msgid "Contact information unavailable" -msgstr "Contact information unavailable" - -#: mod/photos.php:197 -msgid "Album not found." -msgstr "Album not found." - -#: mod/photos.php:230 mod/photos.php:242 mod/photos.php:1272 -msgid "Delete Album" -msgstr "Delete album" - -#: mod/photos.php:240 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Do you really want to delete this photo album and all its photos?" - -#: mod/photos.php:323 mod/photos.php:334 mod/photos.php:1598 -msgid "Delete Photo" -msgstr "Delete photo" - -#: mod/photos.php:332 -msgid "Do you really want to delete this photo?" -msgstr "Do you really want to delete this photo?" - -#: mod/photos.php:713 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s was tagged in %2$s by %3$s" - -#: mod/photos.php:713 -msgid "a photo" -msgstr "a photo" - -#: mod/photos.php:821 -msgid "Image file is empty." -msgstr "Image file is empty." - -#: mod/photos.php:988 -msgid "No photos selected" -msgstr "No photos selected" - -#: mod/photos.php:1091 mod/videos.php:309 -msgid "Access to this item is restricted." -msgstr "Access to this item is restricted." - -#: mod/photos.php:1151 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." - -#: mod/photos.php:1188 -msgid "Upload Photos" -msgstr "Upload photos" - -#: mod/photos.php:1192 mod/photos.php:1267 -msgid "New album name: " -msgstr "New album name: " - -#: mod/photos.php:1193 -msgid "or existing album name: " -msgstr "or existing album name: " - -#: mod/photos.php:1194 -msgid "Do not show a status post for this upload" -msgstr "Do not show a status post for this upload" - -#: mod/photos.php:1205 mod/photos.php:1602 mod/settings.php:1307 -msgid "Show to Groups" -msgstr "" - -#: mod/photos.php:1206 mod/photos.php:1603 mod/settings.php:1308 -msgid "Show to Contacts" -msgstr "" - -#: mod/photos.php:1207 -msgid "Private Photo" -msgstr "" - -#: mod/photos.php:1208 -msgid "Public Photo" -msgstr "" - -#: mod/photos.php:1278 -msgid "Edit Album" -msgstr "" - -#: mod/photos.php:1283 -msgid "Show Newest First" -msgstr "" - -#: mod/photos.php:1285 -msgid "Show Oldest First" -msgstr "" - -#: mod/photos.php:1314 mod/photos.php:1885 -msgid "View Photo" -msgstr "" - -#: mod/photos.php:1359 -msgid "Permission denied. Access to this item may be restricted." -msgstr "" - -#: mod/photos.php:1361 -msgid "Photo not available" -msgstr "" - -#: mod/photos.php:1422 -msgid "View photo" -msgstr "" - -#: mod/photos.php:1422 -msgid "Edit photo" -msgstr "" - -#: mod/photos.php:1423 -msgid "Use as profile photo" -msgstr "" - -#: mod/photos.php:1448 -msgid "View Full Size" -msgstr "" - -#: mod/photos.php:1538 -msgid "Tags: " -msgstr "" - -#: mod/photos.php:1541 -msgid "[Remove any tag]" -msgstr "" - -#: mod/photos.php:1584 -msgid "New album name" -msgstr "" - -#: mod/photos.php:1585 -msgid "Caption" -msgstr "" - -#: mod/photos.php:1586 -msgid "Add a Tag" -msgstr "Add Tag" - -#: mod/photos.php:1586 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "" - -#: mod/photos.php:1587 -msgid "Do not rotate" -msgstr "" - -#: mod/photos.php:1588 -msgid "Rotate CW (right)" -msgstr "" - -#: mod/photos.php:1589 -msgid "Rotate CCW (left)" -msgstr "" - -#: mod/photos.php:1604 -msgid "Private photo" -msgstr "" - -#: mod/photos.php:1605 -msgid "Public photo" -msgstr "" - -#: mod/photos.php:1814 -msgid "Map" -msgstr "" - -#: mod/photos.php:1891 mod/videos.php:393 -msgid "View Album" -msgstr "" - -#: mod/probe.php:10 mod/webfinger.php:9 -msgid "Only logged in users are permitted to perform a probing." -msgstr "" - -#: mod/profile.php:175 -msgid "Tips for New Members" -msgstr "" - -#: mod/profiles.php:38 -msgid "Profile deleted." -msgstr "" - -#: mod/profiles.php:54 mod/profiles.php:90 -msgid "Profile-" -msgstr "" - -#: mod/profiles.php:73 mod/profiles.php:118 -msgid "New profile created." -msgstr "" - -#: mod/profiles.php:96 -msgid "Profile unavailable to clone." -msgstr "" - -#: mod/profiles.php:192 -msgid "Profile Name is required." -msgstr "" - -#: mod/profiles.php:332 -msgid "Marital Status" -msgstr "" - -#: mod/profiles.php:336 -msgid "Romantic Partner" -msgstr "" - -#: mod/profiles.php:348 -msgid "Work/Employment" -msgstr "" - -#: mod/profiles.php:351 -msgid "Religion" -msgstr "" - -#: mod/profiles.php:355 -msgid "Political Views" -msgstr "" - -#: mod/profiles.php:359 -msgid "Gender" -msgstr "" - -#: mod/profiles.php:363 -msgid "Sexual Preference" -msgstr "" - -#: mod/profiles.php:367 -msgid "XMPP" -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:471 -msgid "Profile updated." -msgstr "" - -#: mod/profiles.php:564 -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:579 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "" - -#: mod/profiles.php:637 -msgid "Hide contacts and friends:" -msgstr "" - -#: mod/profiles.php:642 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "" - -#: mod/profiles.php:667 -msgid "Show more profile fields:" -msgstr "" - -#: mod/profiles.php:679 -msgid "Profile Actions" -msgstr "" - -#: mod/profiles.php:680 -msgid "Edit Profile Details" -msgstr "" - -#: mod/profiles.php:682 -msgid "Change Profile Photo" -msgstr "" - -#: mod/profiles.php:683 -msgid "View this profile" -msgstr "" - -#: mod/profiles.php:685 -msgid "Create a new profile using these settings" -msgstr "" - -#: mod/profiles.php:686 -msgid "Clone this profile" -msgstr "" - -#: mod/profiles.php:687 -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 "Relation" -msgstr "" - -#: mod/profiles.php:701 -msgid "Your Gender:" -msgstr "" - -#: mod/profiles.php:702 -msgid " Marital Status:" -msgstr "" - -#: mod/profiles.php:704 -msgid "Example: fishing photography software" -msgstr "" - -#: mod/profiles.php:709 -msgid "Profile Name:" -msgstr "" - -#: mod/profiles.php:711 -msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." -msgstr "" - -#: mod/profiles.php:712 -msgid "Your Full Name:" -msgstr "" - -#: mod/profiles.php:713 -msgid "Title/Description:" -msgstr "" - -#: mod/profiles.php:716 -msgid "Street Address:" -msgstr "" - -#: mod/profiles.php:717 -msgid "Locality/City:" -msgstr "" - -#: mod/profiles.php:718 -msgid "Region/State:" -msgstr "" - -#: mod/profiles.php:719 -msgid "Postal/Zip Code:" -msgstr "" - -#: mod/profiles.php:720 -msgid "Country:" -msgstr "" - -#: mod/profiles.php:724 -msgid "Who: (if applicable)" -msgstr "" - -#: mod/profiles.php:724 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "" - -#: mod/profiles.php:725 -msgid "Since [date]:" -msgstr "" - -#: mod/profiles.php:727 -msgid "Tell us about yourself..." -msgstr "" - -#: mod/profiles.php:728 -msgid "XMPP (Jabber) address:" -msgstr "" - -#: mod/profiles.php:728 -msgid "" -"The XMPP address will be propagated to your contacts so that they can follow" -" you." -msgstr "" - -#: mod/profiles.php:729 -msgid "Homepage URL:" -msgstr "" - -#: mod/profiles.php:732 -msgid "Religious Views:" -msgstr "" - -#: mod/profiles.php:733 -msgid "Public Keywords:" -msgstr "" - -#: mod/profiles.php:733 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "" - -#: mod/profiles.php:734 -msgid "Private Keywords:" -msgstr "" - -#: mod/profiles.php:734 -msgid "(Used for searching profiles, never shown to others)" -msgstr "" - -#: mod/profiles.php:737 -msgid "Musical interests" -msgstr "" - -#: mod/profiles.php:738 -msgid "Books, literature" -msgstr "" - -#: mod/profiles.php:739 -msgid "Television" -msgstr "" - -#: mod/profiles.php:740 -msgid "Film/dance/culture/entertainment" -msgstr "" - -#: mod/profiles.php:741 -msgid "Hobbies/Interests" -msgstr "" - -#: mod/profiles.php:742 -msgid "Love/romance" -msgstr "" - -#: mod/profiles.php:743 -msgid "Work/employment" -msgstr "" - -#: mod/profiles.php:744 -msgid "School/education" -msgstr "" - -#: mod/profiles.php:745 -msgid "Contact information and Social Networks" -msgstr "" - -#: mod/profiles.php:786 -msgid "Edit/Manage Profiles" -msgstr "" - -#: mod/register.php:93 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "" - -#: mod/register.php:98 -#, php-format -msgid "" -"Failed to send email message. Here your accout details:
login: %s
" -"password: %s

You can change your password after login." -msgstr "" - -#: mod/register.php:105 -msgid "Registration successful." -msgstr "" - -#: mod/register.php:111 -msgid "Your registration can not be processed." -msgstr "" - -#: mod/register.php:160 -msgid "Your registration is pending approval by the site owner." -msgstr "" - -#: mod/register.php:226 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "" - -#: mod/register.php:227 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "" - -#: mod/register.php:228 -msgid "Your OpenID (optional): " -msgstr "" - -#: mod/register.php:242 -msgid "Include your profile in member directory?" -msgstr "" - -#: mod/register.php:267 -msgid "Note for the admin" -msgstr "" - -#: mod/register.php:267 -msgid "Leave a message for the admin, why you want to join this node" -msgstr "" - -#: mod/register.php:268 -msgid "Membership on this site is by invitation only." -msgstr "" - -#: mod/register.php:269 -msgid "Your invitation ID: " -msgstr "" - -#: mod/register.php:272 mod/admin.php:1056 -msgid "Registration" -msgstr "" - -#: mod/register.php:280 -msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "" - -#: mod/register.php:281 -msgid "Your Email Address: " -msgstr "" - -#: mod/register.php:283 mod/settings.php:1278 -msgid "New Password:" -msgstr "New password:" - -#: mod/register.php:283 -msgid "Leave empty for an auto generated password." -msgstr "" - -#: mod/register.php:284 mod/settings.php:1279 -msgid "Confirm:" -msgstr "Confirm new password:" - -#: mod/register.php:285 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "" - -#: mod/register.php:286 -msgid "Choose a nickname: " -msgstr "" - -#: mod/register.php:296 -msgid "Import your profile to this friendica instance" -msgstr "" - -#: mod/search.php:100 -msgid "Only logged in users are permitted to perform a search." -msgstr "" - -#: mod/search.php:124 -msgid "Too Many Requests" -msgstr "" - -#: mod/search.php:125 -msgid "Only one search per minute is permitted for not logged in users." -msgstr "" - -#: mod/search.php:225 -#, php-format -msgid "Items tagged with: %s" -msgstr "" - -#: mod/settings.php:43 mod/admin.php:1490 -msgid "Account" -msgstr "" - -#: mod/settings.php:52 mod/admin.php:169 -msgid "Additional features" -msgstr "" - -#: mod/settings.php:60 -msgid "Display" -msgstr "" - -#: mod/settings.php:67 mod/settings.php:890 -msgid "Social Networks" -msgstr "Social networks" - -#: mod/settings.php:74 mod/admin.php:167 mod/admin.php:1616 mod/admin.php:1679 -msgid "Plugins" -msgstr "" - -#: mod/settings.php:88 -msgid "Connected apps" -msgstr "" - -#: mod/settings.php:95 mod/uexport.php:45 -msgid "Export personal data" -msgstr "" - -#: mod/settings.php:102 -msgid "Remove account" -msgstr "" - -#: mod/settings.php:157 -msgid "Missing some important data!" -msgstr "" - -#: mod/settings.php:271 -msgid "Failed to connect with email account using the settings provided." -msgstr "" - -#: mod/settings.php:276 -msgid "Email settings updated." -msgstr "" - -#: mod/settings.php:291 -msgid "Features updated" -msgstr "" - -#: mod/settings.php:361 -msgid "Relocate message has been send to your contacts" -msgstr "Relocate message has been send to your contacts" - -#: mod/settings.php:380 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "" - -#: mod/settings.php:388 -msgid "Wrong password." -msgstr "" - -#: mod/settings.php:399 -msgid "Password changed." -msgstr "" - -#: mod/settings.php:401 -msgid "Password update failed. Please try again." -msgstr "" - -#: mod/settings.php:481 -msgid " Please use a shorter name." -msgstr "" - -#: mod/settings.php:483 -msgid " Name too short." -msgstr "" - -#: mod/settings.php:492 -msgid "Wrong Password" -msgstr "" - -#: mod/settings.php:497 -msgid " Not valid email." -msgstr "" - -#: mod/settings.php:503 -msgid " Cannot change to that email." -msgstr "" - -#: mod/settings.php:559 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "" - -#: mod/settings.php:563 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "" - -#: mod/settings.php:603 -msgid "Settings updated." -msgstr "" - -#: mod/settings.php:680 mod/settings.php:706 mod/settings.php:742 -msgid "Add application" -msgstr "" - -#: mod/settings.php:681 mod/settings.php:792 mod/settings.php:841 -#: mod/settings.php:908 mod/settings.php:1005 mod/settings.php:1271 -#: mod/admin.php:1055 mod/admin.php:1680 mod/admin.php:1943 mod/admin.php:2017 -#: mod/admin.php:2170 -msgid "Save Settings" -msgstr "Save settings" - -#: mod/settings.php:684 mod/settings.php:710 -msgid "Consumer Key" -msgstr "" - -#: mod/settings.php:685 mod/settings.php:711 -msgid "Consumer Secret" -msgstr "" - -#: mod/settings.php:686 mod/settings.php:712 -msgid "Redirect" -msgstr "" - -#: mod/settings.php:687 mod/settings.php:713 -msgid "Icon url" -msgstr "" - -#: mod/settings.php:698 -msgid "You can't edit this application." -msgstr "" - -#: mod/settings.php:741 -msgid "Connected Apps" -msgstr "" - -#: mod/settings.php:745 -msgid "Client key starts with" -msgstr "" - -#: mod/settings.php:746 -msgid "No name" -msgstr "" - -#: mod/settings.php:747 -msgid "Remove authorization" -msgstr "" - -#: mod/settings.php:759 -msgid "No Plugin settings configured" -msgstr "" - -#: mod/settings.php:768 -msgid "Plugin Settings" -msgstr "" - -#: mod/settings.php:782 mod/admin.php:2159 mod/admin.php:2160 -msgid "Off" -msgstr "" - -#: mod/settings.php:782 mod/admin.php:2159 mod/admin.php:2160 -msgid "On" -msgstr "" - -#: mod/settings.php:790 -msgid "Additional Features" -msgstr "" - -#: mod/settings.php:800 mod/settings.php:804 -msgid "General Social Media Settings" -msgstr "" - -#: mod/settings.php:810 -msgid "Disable intelligent shortening" -msgstr "" - -#: mod/settings.php:812 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If this option is enabled then every shortened post will always point to the" -" original friendica post." -msgstr "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." - -#: mod/settings.php:818 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "" - -#: mod/settings.php:820 -msgid "" -"If you receive a message from an unknown OStatus user, this option decides " -"what to do. If it is checked, a new contact will be created for every " -"unknown user." -msgstr "" - -#: mod/settings.php:826 -msgid "Default group for OStatus contacts" -msgstr "" - -#: mod/settings.php:834 -msgid "Your legacy GNU Social account" -msgstr "" - -#: mod/settings.php:836 -msgid "" -"If you enter your old GNU Social/Statusnet account name here (in the format " -"user@domain.tld), your contacts will be added automatically. The field will " -"be emptied when done." -msgstr "" - -#: mod/settings.php:839 -msgid "Repair OStatus subscriptions" -msgstr "" - -#: mod/settings.php:848 mod/settings.php:849 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "" - -#: mod/settings.php:848 mod/settings.php:849 -msgid "enabled" -msgstr "" - -#: mod/settings.php:848 mod/settings.php:849 -msgid "disabled" -msgstr "" - -#: mod/settings.php:849 -msgid "GNU Social (OStatus)" -msgstr "" - -#: mod/settings.php:883 -msgid "Email access is disabled on this site." -msgstr "" - -#: mod/settings.php:895 -msgid "Email/Mailbox Setup" -msgstr "" - -#: mod/settings.php:896 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "" - -#: mod/settings.php:897 -msgid "Last successful email check:" -msgstr "" - -#: mod/settings.php:899 -msgid "IMAP server name:" -msgstr "" - -#: mod/settings.php:900 -msgid "IMAP port:" -msgstr "" - -#: mod/settings.php:901 -msgid "Security:" -msgstr "" - -#: mod/settings.php:901 mod/settings.php:906 -msgid "None" -msgstr "" - -#: mod/settings.php:902 -msgid "Email login name:" -msgstr "" - -#: mod/settings.php:903 -msgid "Email password:" -msgstr "" - -#: mod/settings.php:904 -msgid "Reply-to address:" -msgstr "" - -#: mod/settings.php:905 -msgid "Send public posts to all email contacts:" -msgstr "" - -#: mod/settings.php:906 -msgid "Action after import:" -msgstr "" - -#: mod/settings.php:906 -msgid "Move to folder" -msgstr "Move to folder" - -#: mod/settings.php:907 -msgid "Move to folder:" -msgstr "Move to folder:" - -#: mod/settings.php:943 mod/admin.php:942 -msgid "No special theme for mobile devices" -msgstr "" - -#: mod/settings.php:1003 -msgid "Display Settings" -msgstr "" - -#: mod/settings.php:1009 mod/settings.php:1032 -msgid "Display Theme:" -msgstr "" - -#: mod/settings.php:1010 -msgid "Mobile Theme:" -msgstr "" - -#: mod/settings.php:1011 -msgid "Suppress warning of insecure networks" -msgstr "" - -#: mod/settings.php:1011 -msgid "" -"Should the system suppress the warning that the current group contains " -"members of networks that can't receive non public postings." -msgstr "" - -#: mod/settings.php:1012 -msgid "Update browser every xx seconds" -msgstr "Update browser every so many seconds:" - -#: mod/settings.php:1012 -msgid "Minimum of 10 seconds. Enter -1 to disable it." -msgstr "" - -#: mod/settings.php:1013 -msgid "Number of items to display per page:" -msgstr "" - -#: mod/settings.php:1013 mod/settings.php:1014 -msgid "Maximum of 100 items" -msgstr "" - -#: mod/settings.php:1014 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "" - -#: mod/settings.php:1015 -msgid "Don't show emoticons" -msgstr "" - -#: mod/settings.php:1016 -msgid "Calendar" -msgstr "" - -#: mod/settings.php:1017 -msgid "Beginning of week:" -msgstr "" - -#: mod/settings.php:1018 -msgid "Don't show notices" -msgstr "" - -#: mod/settings.php:1019 -msgid "Infinite scroll" -msgstr "" - -#: mod/settings.php:1020 -msgid "Automatic updates only at the top of the network page" -msgstr "" - -#: mod/settings.php:1021 -msgid "Bandwith Saver Mode" -msgstr "" - -#: mod/settings.php:1021 -msgid "" -"When enabled, embedded content is not displayed on automatic updates, they " -"only show on page reload." -msgstr "" - -#: mod/settings.php:1023 -msgid "General Theme Settings" -msgstr "Themes" - -#: mod/settings.php:1024 -msgid "Custom Theme Settings" -msgstr "Theme customisation" - -#: mod/settings.php:1025 -msgid "Content Settings" -msgstr "Content/Layout" - -#: mod/settings.php:1026 view/theme/duepuntozero/config.php:63 -#: view/theme/frio/config.php:66 view/theme/quattro/config.php:69 -#: view/theme/vier/config.php:114 -msgid "Theme settings" -msgstr "" - -#: mod/settings.php:1110 -msgid "Account Types" -msgstr "Account types:" - -#: mod/settings.php:1111 -msgid "Personal Page Subtypes" -msgstr "Personal Page subtypes" - -#: mod/settings.php:1112 -msgid "Community Forum Subtypes" -msgstr "" - -#: mod/settings.php:1119 -msgid "Personal Page" -msgstr "Personal Page" - -#: mod/settings.php:1120 -msgid "This account is a regular personal profile" -msgstr "Regular personal profile" - -#: mod/settings.php:1123 -msgid "Organisation Page" -msgstr "Organisation Page" - -#: mod/settings.php:1124 -msgid "This account is a profile for an organisation" -msgstr "Profile for an organisation" - -#: mod/settings.php:1127 -msgid "News Page" -msgstr "News Page" - -#: mod/settings.php:1128 -msgid "This account is a news account/reflector" -msgstr "News reflector" - -#: mod/settings.php:1131 -msgid "Community Forum" -msgstr "Community Forum" - -#: mod/settings.php:1132 -msgid "" -"This account is a community forum where people can discuss with each other" -msgstr "Discussion forum for community" - -#: mod/settings.php:1135 -msgid "Normal Account Page" -msgstr "Standard" - -#: mod/settings.php:1136 -msgid "This account is a normal personal profile" -msgstr "Regular personal profile" - -#: mod/settings.php:1139 -msgid "Soapbox Page" -msgstr "Soapbox" - -#: mod/settings.php:1140 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "Automatically approves contact requests as followers" - -#: mod/settings.php:1143 -msgid "Public Forum" -msgstr "" - -#: mod/settings.php:1144 -msgid "Automatically approve all contact requests" -msgstr "" - -#: mod/settings.php:1147 -msgid "Automatic Friend Page" -msgstr "Popularity" - -#: mod/settings.php:1148 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Automatically approves contact requests as friends" - -#: mod/settings.php:1151 -msgid "Private Forum [Experimental]" -msgstr "" - -#: mod/settings.php:1152 -msgid "Private forum - approved members only" -msgstr "" - -#: mod/settings.php:1163 -msgid "OpenID:" -msgstr "" - -#: mod/settings.php:1163 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "" - -#: mod/settings.php:1171 -msgid "Publish your default profile in your local site directory?" -msgstr "Publish default profile in local site directory?" - -#: mod/settings.php:1171 -msgid "Your profile may be visible in public." -msgstr "Your local directory may be publicly visible" - -#: mod/settings.php:1177 -msgid "Publish your default profile in the global social directory?" -msgstr "Publish default profile in global directory?" - -#: mod/settings.php:1184 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "Hide my contact list from others?" - -#: mod/settings.php:1188 -msgid "" -"If enabled, posting public messages to Diaspora and other networks isn't " -"possible." -msgstr "Posting public messages to Diaspora and other networks will not be possible if enabled" - -#: mod/settings.php:1193 -msgid "Allow friends to post to your profile page?" -msgstr "Allow friends to post to my wall?" - -#: mod/settings.php:1198 -msgid "Allow friends to tag your posts?" -msgstr "Allow friends to tag my post?" - -#: mod/settings.php:1203 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "" - -#: mod/settings.php:1208 -msgid "Permit unknown people to send you private mail?" -msgstr "Allow unknown people to send me private messages?" - -#: mod/settings.php:1216 -msgid "Profile is not published." -msgstr "" - -#: mod/settings.php:1224 -#, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "My identity address: '%s' or '%s'" - -#: mod/settings.php:1231 -msgid "Automatically expire posts after this many days:" -msgstr "Automatically expire posts after this many days:" - -#: mod/settings.php:1231 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Posts will not expire if empty; expired posts will be deleted" - -#: mod/settings.php:1232 -msgid "Advanced expiration settings" -msgstr "Advanced expiration settings" - -#: mod/settings.php:1233 -msgid "Advanced Expiration" -msgstr "Advanced expiration" - -#: mod/settings.php:1234 -msgid "Expire posts:" -msgstr "" - -#: mod/settings.php:1235 -msgid "Expire personal notes:" -msgstr "" - -#: mod/settings.php:1236 -msgid "Expire starred posts:" -msgstr "" - -#: mod/settings.php:1237 -msgid "Expire photos:" -msgstr "" - -#: mod/settings.php:1238 -msgid "Only expire posts by others:" -msgstr "" - -#: mod/settings.php:1269 -msgid "Account Settings" -msgstr "" - -#: mod/settings.php:1277 -msgid "Password Settings" -msgstr "Password change" - -#: mod/settings.php:1279 -msgid "Leave password fields blank unless changing" -msgstr "" - -#: mod/settings.php:1280 -msgid "Current Password:" -msgstr "Current password:" - -#: mod/settings.php:1280 mod/settings.php:1281 -msgid "Your current password to confirm the changes" -msgstr "Current password to confirm change" - -#: mod/settings.php:1281 -msgid "Password:" -msgstr "" - -#: mod/settings.php:1285 -msgid "Basic Settings" -msgstr "Basic information" - -#: mod/settings.php:1287 -msgid "Email Address:" -msgstr "Email address:" - -#: mod/settings.php:1288 -msgid "Your Timezone:" -msgstr "Time zone:" - -#: mod/settings.php:1289 -msgid "Your Language:" -msgstr "Language:" - -#: mod/settings.php:1289 -msgid "" -"Set the language we use to show you friendica interface and to send you " -"emails" -msgstr "" - -#: mod/settings.php:1290 -msgid "Default Post Location:" -msgstr "Posting location:" - -#: mod/settings.php:1291 -msgid "Use Browser Location:" -msgstr "Use browser location:" - -#: mod/settings.php:1294 -msgid "Security and Privacy Settings" -msgstr "Security and privacy" - -#: mod/settings.php:1296 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximum friend requests per day:" - -#: mod/settings.php:1296 mod/settings.php:1326 -msgid "(to prevent spam abuse)" -msgstr "May prevent spam or abuse registrations" - -#: mod/settings.php:1297 -msgid "Default Post Permissions" -msgstr "Default post permissions" - -#: mod/settings.php:1298 -msgid "(click to open/close)" -msgstr "" - -#: mod/settings.php:1309 -msgid "Default Private Post" -msgstr "" - -#: mod/settings.php:1310 -msgid "Default Public Post" -msgstr "" - -#: mod/settings.php:1314 -msgid "Default Permissions for New Posts" -msgstr "" - -#: mod/settings.php:1326 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximum private messages per day from unknown people:" - -#: mod/settings.php:1329 -msgid "Notification Settings" -msgstr "Notification" - -#: mod/settings.php:1330 -msgid "By default post a status message when:" -msgstr "By default post a status message when:" - -#: mod/settings.php:1331 -msgid "accepting a friend request" -msgstr "accepting friend requests" - -#: mod/settings.php:1332 -msgid "joining a forum/community" -msgstr "joining forums or communities" - -#: mod/settings.php:1333 -msgid "making an interesting profile change" -msgstr "" - -#: mod/settings.php:1334 -msgid "Send a notification email when:" -msgstr "Send notification email when:" - -#: mod/settings.php:1335 -msgid "You receive an introduction" -msgstr "Receiving an introduction" - -#: mod/settings.php:1336 -msgid "Your introductions are confirmed" -msgstr "My introductions are confirmed" - -#: mod/settings.php:1337 -msgid "Someone writes on your profile wall" -msgstr "Someone writes on my wall" - -#: mod/settings.php:1338 -msgid "Someone writes a followup comment" -msgstr "A follow up comment is posted" - -#: mod/settings.php:1339 -msgid "You receive a private message" -msgstr "receiving a private message" - -#: mod/settings.php:1340 -msgid "You receive a friend suggestion" -msgstr "Receiving a friend suggestion" - -#: mod/settings.php:1341 -msgid "You are tagged in a post" -msgstr "Tagged in a post" - -#: mod/settings.php:1342 -msgid "You are poked/prodded/etc. in a post" -msgstr "Poked in a post" - -#: mod/settings.php:1344 -msgid "Activate desktop notifications" -msgstr "Activate desktop notifications" - -#: mod/settings.php:1344 -msgid "Show desktop popup on new notifications" -msgstr "Show desktop pop-up on new notifications" - -#: mod/settings.php:1346 -msgid "Text-only notification emails" -msgstr "Text-only notification emails" - -#: mod/settings.php:1348 -msgid "Send text only notification emails, without the html part" -msgstr "Receive text only emails without HTML " - -#: mod/settings.php:1350 -msgid "Advanced Account/Page Type Settings" -msgstr "Advanced account types" - -#: mod/settings.php:1351 -msgid "Change the behaviour of this account for special situations" -msgstr "Change behaviour of this account for special situations" - -#: mod/settings.php:1354 -msgid "Relocate" -msgstr "Recent relocation" - -#: mod/settings.php:1355 -msgid "" -"If you have moved this profile from another server, and some of your " -"contacts don't receive your updates, try pushing this button." -msgstr "If you have moved this profile from another server and some of your contacts don't receive your updates:" - -#: mod/settings.php:1356 -msgid "Resend relocate message to contacts" -msgstr "" - -#: mod/uexport.php:37 -msgid "Export account" -msgstr "" - -#: mod/uexport.php:37 -msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "" - -#: mod/uexport.php:38 -msgid "Export all" -msgstr "" - -#: mod/uexport.php:38 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" -msgstr "" - -#: mod/videos.php:124 -msgid "Do you really want to delete this video?" -msgstr "" - -#: mod/videos.php:129 -msgid "Delete Video" -msgstr "" - -#: mod/videos.php:208 -msgid "No videos selected" -msgstr "" - -#: mod/videos.php:402 -msgid "Recent Videos" -msgstr "" - -#: mod/videos.php:404 -msgid "Upload New Videos" -msgstr "" - -#: mod/install.php:106 -msgid "Friendica Communications Server - Setup" -msgstr "" - -#: mod/install.php:112 -msgid "Could not connect to database." -msgstr "" - -#: mod/install.php:116 -msgid "Could not create table." -msgstr "" - -#: mod/install.php:122 -msgid "Your Friendica site database has been installed." -msgstr "" - -#: mod/install.php:127 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "" - -#: mod/install.php:128 mod/install.php:200 mod/install.php:547 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "" - -#: mod/install.php:140 -msgid "Database already in use." -msgstr "" - -#: mod/install.php:197 -msgid "System check" -msgstr "" - -#: mod/install.php:202 -msgid "Check again" -msgstr "" - -#: mod/install.php:221 -msgid "Database connection" -msgstr "" - -#: mod/install.php:222 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "" - -#: mod/install.php:223 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "" - -#: mod/install.php:224 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "" - -#: mod/install.php:228 -msgid "Database Server Name" -msgstr "" - -#: mod/install.php:229 -msgid "Database Login Name" -msgstr "" - -#: mod/install.php:230 -msgid "Database Login Password" -msgstr "" - -#: mod/install.php:230 -msgid "For security reasons the password must not be empty" -msgstr "" - -#: mod/install.php:231 -msgid "Database Name" -msgstr "" - -#: mod/install.php:232 mod/install.php:273 -msgid "Site administrator email address" -msgstr "" - -#: mod/install.php:232 mod/install.php:273 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "" - -#: mod/install.php:236 mod/install.php:276 -msgid "Please select a default timezone for your website" -msgstr "" - -#: mod/install.php:263 -msgid "Site settings" -msgstr "" - -#: mod/install.php:277 -msgid "System Language:" -msgstr "" - -#: mod/install.php:277 -msgid "" -"Set the default language for your Friendica installation interface and to " -"send emails." -msgstr "" - -#: mod/install.php:317 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "" - -#: mod/install.php:318 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run the background processing. See 'Setup the poller'" -msgstr "" - -#: mod/install.php:322 -msgid "PHP executable path" -msgstr "" - -#: mod/install.php:322 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "" - -#: mod/install.php:327 -msgid "Command line PHP" -msgstr "" - -#: mod/install.php:336 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "" - -#: mod/install.php:337 -msgid "Found PHP version: " -msgstr "" - -#: mod/install.php:339 -msgid "PHP cli binary" -msgstr "" - -#: mod/install.php:350 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "" - -#: mod/install.php:351 -msgid "This is required for message delivery to work." -msgstr "" - -#: mod/install.php:353 -msgid "PHP register_argc_argv" -msgstr "" - -#: mod/install.php:376 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "" - -#: mod/install.php:377 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "" - -#: mod/install.php:379 -msgid "Generate encryption keys" -msgstr "" - -#: mod/install.php:386 -msgid "libCurl PHP module" -msgstr "" - -#: mod/install.php:387 -msgid "GD graphics PHP module" -msgstr "" - -#: mod/install.php:388 -msgid "OpenSSL PHP module" -msgstr "" - -#: mod/install.php:389 -msgid "PDO or MySQLi PHP module" -msgstr "" - -#: mod/install.php:390 -msgid "mb_string PHP module" -msgstr "" - -#: mod/install.php:391 -msgid "XML PHP module" -msgstr "" - -#: mod/install.php:392 -msgid "iconv module" -msgstr "" - -#: mod/install.php:396 mod/install.php:398 -msgid "Apache mod_rewrite module" -msgstr "" - -#: mod/install.php:396 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "" - -#: mod/install.php:404 -msgid "Error: libCURL PHP module required but not installed." -msgstr "" - -#: mod/install.php:408 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "" - -#: mod/install.php:412 -msgid "Error: openssl PHP module required but not installed." -msgstr "" - -#: mod/install.php:416 -msgid "Error: PDO or MySQLi PHP module required but not installed." -msgstr "" - -#: mod/install.php:420 -msgid "Error: The MySQL driver for PDO is not installed." -msgstr "" - -#: mod/install.php:424 -msgid "Error: mb_string PHP module required but not installed." -msgstr "" - -#: mod/install.php:428 -msgid "Error: iconv PHP module required but not installed." -msgstr "" - -#: mod/install.php:438 -msgid "Error, XML PHP module required but not installed." -msgstr "" - -#: mod/install.php:450 -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-level directory of your web server, but it is unable to do so." - -#: mod/install.php:451 -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 issue, as the web server may not be able to write files in your directory - even if you can." - -#: mod/install.php:452 -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 "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top-level directory." - -#: mod/install.php:453 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "" - -#: mod/install.php:456 -msgid ".htconfig.php is writable" -msgstr "" - -#: mod/install.php:466 -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:467 -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 "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 directory." - -#: mod/install.php:468 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Please ensure the user (e.g. www-data) that your web server runs as has write access to this directory." - -#: mod/install.php:469 -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:472 -msgid "view/smarty3 is writable" -msgstr "" - -#: mod/install.php:488 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "" - -#: mod/install.php:490 -msgid "Url rewrite is working" -msgstr "" - -#: mod/install.php:509 -msgid "ImageMagick PHP extension is not installed" -msgstr "" - -#: mod/install.php:511 -msgid "ImageMagick PHP extension is installed" -msgstr "" - -#: mod/install.php:513 -msgid "ImageMagick supports GIF" -msgstr "" - -#: mod/install.php:520 -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:545 -msgid "

What next

" -msgstr "" - -#: mod/install.php:546 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "" - -#: mod/item.php:116 +#: mod/item.php:118 msgid "Unable to locate original post." -msgstr "" +msgstr "Unable to locate original post." -#: mod/item.php:344 +#: mod/item.php:345 msgid "Empty post discarded." -msgstr "" +msgstr "Empty post discarded." #: mod/item.php:904 msgid "System error. Post not saved." -msgstr "" +msgstr "System error. Post not saved." #: mod/item.php:995 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." -msgstr "" +msgstr "This message was sent to you by %s, a member of the Friendica social network." #: mod/item.php:997 #, php-format msgid "You may visit them online at %s" -msgstr "" +msgstr "You may visit them online at %s" #: mod/item.php:998 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." -msgstr "" +msgstr "Please contact the sender by replying to this post if you do not wish to receive these messages." #: mod/item.php:1002 #, php-format msgid "%s posted an update." -msgstr "" +msgstr "%s posted an update." -#: mod/notifications.php:35 -msgid "Invalid request identifier." -msgstr "" +#: mod/regmod.php:60 +msgid "Account approved." +msgstr "Account approved." -#: mod/notifications.php:44 mod/notifications.php:180 -#: mod/notifications.php:227 -msgid "Discard" -msgstr "" - -#: mod/notifications.php:105 -msgid "Network Notifications" -msgstr "" - -#: mod/notifications.php:117 -msgid "Personal Notifications" -msgstr "" - -#: mod/notifications.php:123 -msgid "Home Notifications" -msgstr "" - -#: mod/notifications.php:152 -msgid "Show Ignored Requests" -msgstr "Show ignored requests." - -#: mod/notifications.php:152 -msgid "Hide Ignored Requests" -msgstr "" - -#: mod/notifications.php:164 mod/notifications.php:234 -msgid "Notification type: " -msgstr "" - -#: mod/notifications.php:167 +#: mod/regmod.php:88 #, php-format -msgid "suggested by %s" -msgstr "" +msgid "Registration revoked for %s" +msgstr "Registration revoked for %s" -#: mod/notifications.php:173 mod/notifications.php:252 -msgid "Post a new friend activity" -msgstr "" +#: mod/regmod.php:100 +msgid "Please login." +msgstr "Please login." -#: mod/notifications.php:173 mod/notifications.php:252 -msgid "if applicable" -msgstr "" +#: mod/uimport.php:70 +msgid "Move account" +msgstr "Move Existing Friendica Account" -#: mod/notifications.php:176 mod/notifications.php:261 mod/admin.php:1506 -msgid "Approve" -msgstr "" +#: mod/uimport.php:71 +msgid "You can import an account from another Friendica server." +msgstr "You can import an existing Friendica profile to this node." -#: mod/notifications.php:195 -msgid "Claims to be known to you: " -msgstr "Says they know me:" - -#: mod/notifications.php:196 -msgid "yes" -msgstr "" - -#: mod/notifications.php:196 -msgid "no" -msgstr "" - -#: mod/notifications.php:197 mod/notifications.php:202 -msgid "Shall your connection be bidirectional or not?" -msgstr "Shall your connection be in both directions or not?" - -#: mod/notifications.php:198 mod/notifications.php:203 -#, php-format +#: mod/uimport.php:72 msgid "" -"Accepting %s as a friend allows %s to subscribe to your posts, and you will " -"also receive updates from them in your news feed." -msgstr "" +"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 "You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here." -#: mod/notifications.php:199 -#, php-format +#: mod/uimport.php:73 msgid "" -"Accepting %s as a subscriber allows them to subscribe to your posts, but you" -" will not receive updates from them in your news feed." -msgstr "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora." -#: mod/notifications.php:204 -#, php-format +#: mod/uimport.php:74 +msgid "Account file" +msgstr "Account file:" + +#: mod/uimport.php:74 msgid "" -"Accepting %s as a sharer allows them to subscribe to your posts, but you " -"will not receive updates from them in your news feed." -msgstr "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "To export your account, go to \"Settings->Export personal data\" and select \"Export account\"" -#: mod/notifications.php:215 -msgid "Friend" -msgstr "" - -#: mod/notifications.php:216 -msgid "Sharer" -msgstr "" - -#: mod/notifications.php:216 -msgid "Subscriber" -msgstr "" - -#: mod/notifications.php:272 -msgid "No introductions." -msgstr "" - -#: mod/notifications.php:313 -msgid "Show unread" -msgstr "" - -#: mod/notifications.php:313 -msgid "Show all" -msgstr "" - -#: mod/notifications.php:319 -#, php-format -msgid "No more %s notifications." -msgstr "" - -#: mod/ping.php:270 -msgid "{0} wants to be your friend" -msgstr "" - -#: mod/ping.php:285 -msgid "{0} sent you a message" -msgstr "" - -#: mod/ping.php:300 -msgid "{0} requested registration" -msgstr "" - -#: mod/admin.php:96 +#: mod/admin.php:97 msgid "Theme settings updated." -msgstr "" +msgstr "Theme settings updated." -#: mod/admin.php:165 mod/admin.php:1054 +#: mod/admin.php:166 mod/admin.php:1060 msgid "Site" -msgstr "" +msgstr "Site" -#: mod/admin.php:166 mod/admin.php:988 mod/admin.php:1498 mod/admin.php:1514 +#: mod/admin.php:167 mod/admin.php:994 mod/admin.php:1504 mod/admin.php:1520 msgid "Users" -msgstr "" +msgstr "Users" -#: mod/admin.php:168 mod/admin.php:1892 mod/admin.php:1942 +#: mod/admin.php:168 mod/admin.php:1622 mod/admin.php:1685 mod/settings.php:76 +msgid "Plugins" +msgstr "Plugins" + +#: mod/admin.php:169 mod/admin.php:1898 mod/admin.php:1948 msgid "Themes" msgstr "Theme selection" -#: mod/admin.php:170 +#: mod/admin.php:170 mod/settings.php:54 +msgid "Additional features" +msgstr "Additional features" + +#: mod/admin.php:171 msgid "DB updates" -msgstr "" +msgstr "DB updates" -#: mod/admin.php:171 mod/admin.php:512 +#: mod/admin.php:172 mod/admin.php:513 msgid "Inspect Queue" -msgstr "" +msgstr "Inspect queue" -#: mod/admin.php:172 mod/admin.php:288 +#: mod/admin.php:173 mod/admin.php:289 msgid "Server Blocklist" -msgstr "" +msgstr "Server blocklist" -#: mod/admin.php:173 mod/admin.php:478 +#: mod/admin.php:174 mod/admin.php:479 msgid "Federation Statistics" -msgstr "" +msgstr "Federation statistics" -#: mod/admin.php:187 mod/admin.php:198 mod/admin.php:2016 +#: mod/admin.php:188 mod/admin.php:199 mod/admin.php:2022 msgid "Logs" -msgstr "" +msgstr "Logs" -#: mod/admin.php:188 mod/admin.php:2084 +#: mod/admin.php:189 mod/admin.php:2090 msgid "View Logs" -msgstr "" - -#: mod/admin.php:189 -msgid "probe address" -msgstr "" +msgstr "View logs" #: mod/admin.php:190 +msgid "probe address" +msgstr "Probe address" + +#: mod/admin.php:191 msgid "check webfinger" -msgstr "" +msgstr "Check webfinger" -#: mod/admin.php:197 +#: mod/admin.php:198 msgid "Plugin Features" -msgstr "" - -#: mod/admin.php:199 -msgid "diagnostics" -msgstr "" +msgstr "Plugin Features" #: mod/admin.php:200 +msgid "diagnostics" +msgstr "Diagnostics" + +#: mod/admin.php:201 msgid "User registrations waiting for confirmation" -msgstr "" +msgstr "User registrations awaiting confirmation" -#: mod/admin.php:279 +#: mod/admin.php:280 msgid "The blocked domain" -msgstr "" +msgstr "Blocked domain" -#: mod/admin.php:280 mod/admin.php:293 +#: mod/admin.php:281 mod/admin.php:294 msgid "The reason why you blocked this domain." -msgstr "" +msgstr "Reason why you blocked this domain." -#: mod/admin.php:281 +#: mod/admin.php:282 msgid "Delete domain" -msgstr "" +msgstr "Delete domain" -#: mod/admin.php:281 +#: mod/admin.php:282 msgid "Check to delete this entry from the blocklist" -msgstr "" +msgstr "Check to delete this entry from the blocklist" -#: mod/admin.php:287 mod/admin.php:477 mod/admin.php:511 mod/admin.php:586 -#: mod/admin.php:1053 mod/admin.php:1497 mod/admin.php:1615 mod/admin.php:1678 -#: mod/admin.php:1891 mod/admin.php:1941 mod/admin.php:2015 mod/admin.php:2083 +#: mod/admin.php:288 mod/admin.php:478 mod/admin.php:512 mod/admin.php:592 +#: mod/admin.php:1059 mod/admin.php:1503 mod/admin.php:1621 mod/admin.php:1684 +#: mod/admin.php:1897 mod/admin.php:1947 mod/admin.php:2021 mod/admin.php:2089 msgid "Administration" -msgstr "" +msgstr "Administration" -#: mod/admin.php:289 +#: mod/admin.php:290 msgid "" "This page can be used to define a black list of servers from the federated " "network that are not allowed to interact with your node. For all entered " "domains you should also give a reason why you have blocked the remote " "server." -msgstr "" +msgstr "This page can be used to define a black list of servers from the federated network that are not allowed to interact with your node. For all entered domains you should also give a reason why you have blocked the remote server." -#: mod/admin.php:290 +#: mod/admin.php:291 msgid "" "The list of blocked servers will be made publically available on the " "/friendica page so that your users and people investigating communication " "problems can find the reason easily." -msgstr "" +msgstr "The list of blocked servers will publicly available on the Friendica page so that your users and people investigating communication problems can readily find the reason." -#: mod/admin.php:291 +#: mod/admin.php:292 msgid "Add new entry to block list" -msgstr "" +msgstr "Add new entry to block list" -#: mod/admin.php:292 +#: mod/admin.php:293 msgid "Server Domain" -msgstr "" +msgstr "Server domain" -#: mod/admin.php:292 +#: mod/admin.php:293 msgid "" "The domain of the new server to add to the block list. Do not include the " "protocol." -msgstr "" - -#: mod/admin.php:293 -msgid "Block reason" -msgstr "" +msgstr "The domain of the new server to add to the block list. Do not include the protocol." #: mod/admin.php:294 -msgid "Add Entry" -msgstr "" +msgid "Block reason" +msgstr "Block reason" #: mod/admin.php:295 -msgid "Save changes to the blocklist" -msgstr "" +msgid "Add Entry" +msgstr "Add entry" #: mod/admin.php:296 +msgid "Save changes to the blocklist" +msgstr "Save changes to the blocklist" + +#: mod/admin.php:297 msgid "Current Entries in the Blocklist" -msgstr "" +msgstr "Current entries in the blocklist" -#: mod/admin.php:299 +#: mod/admin.php:300 msgid "Delete entry from blocklist" -msgstr "" +msgstr "Delete entry from blocklist" -#: mod/admin.php:302 +#: mod/admin.php:303 msgid "Delete entry from blocklist?" -msgstr "" +msgstr "Delete entry from blocklist?" -#: mod/admin.php:327 +#: mod/admin.php:328 msgid "Server added to blocklist." -msgstr "" +msgstr "Server added to blocklist." -#: mod/admin.php:343 +#: mod/admin.php:344 msgid "Site blocklist updated." -msgstr "" +msgstr "Site blocklist updated." -#: mod/admin.php:408 +#: mod/admin.php:409 msgid "unknown" -msgstr "" +msgstr "unknown" -#: mod/admin.php:471 +#: mod/admin.php:472 msgid "" "This page offers you some numbers to the known part of the federated social " "network your Friendica node is part of. These numbers are not complete but " "only reflect the part of the network your node is aware of." -msgstr "" +msgstr "This page offers you the amount of known part of the federated social network your Friendica node is part of. These numbers are not complete and only reflect the part of the network your node is aware of." -#: mod/admin.php:472 +#: mod/admin.php:473 msgid "" "The Auto Discovered Contact Directory feature is not enabled, it " "will improve the data displayed here." -msgstr "" +msgstr "The Auto Discovered Contact Directory feature is not enabled; enabling it will improve the data displayed here." -#: mod/admin.php:484 +#: mod/admin.php:485 #, php-format msgid "Currently this node is aware of %d nodes from the following platforms:" -msgstr "" - -#: mod/admin.php:514 -msgid "ID" -msgstr "" +msgstr "Currently this node is aware of %d nodes from the following platforms:" #: mod/admin.php:515 -msgid "Recipient Name" -msgstr "" +msgid "ID" +msgstr "ID" #: mod/admin.php:516 -msgid "Recipient Profile" -msgstr "" +msgid "Recipient Name" +msgstr "Recipient name" -#: mod/admin.php:518 -msgid "Created" -msgstr "" +#: mod/admin.php:517 +msgid "Recipient Profile" +msgstr "Recipient profile" #: mod/admin.php:519 -msgid "Last Tried" -msgstr "" +msgid "Created" +msgstr "Created" #: mod/admin.php:520 +msgid "Last Tried" +msgstr "Last Tried" + +#: mod/admin.php:521 msgid "" "This page lists the content of the queue for outgoing postings. These are " "postings the initial delivery failed for. They will be resend later and " "eventually deleted if the delivery fails permanently." msgstr "" -#: mod/admin.php:545 +#: mod/admin.php:546 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -7558,423 +6129,443 @@ msgid "" "automatic conversion.
" msgstr "" -#: mod/admin.php:550 +#: mod/admin.php:555 msgid "" -"You are using a MySQL version which does not support all features that " -"Friendica uses. You should consider switching to MariaDB." +"The database update failed. Please run \"php include/dbstructure.php " +"update\" from the command line and have a look at the errors that might " +"appear." msgstr "" -#: mod/admin.php:554 mod/admin.php:1447 +#: mod/admin.php:560 mod/admin.php:1453 msgid "Normal Account" msgstr "Standard account" -#: mod/admin.php:555 mod/admin.php:1448 +#: mod/admin.php:561 mod/admin.php:1454 msgid "Soapbox Account" msgstr "Soapbox account" -#: mod/admin.php:556 mod/admin.php:1449 +#: mod/admin.php:562 mod/admin.php:1455 msgid "Community/Celebrity Account" msgstr "" -#: mod/admin.php:557 mod/admin.php:1450 +#: mod/admin.php:563 mod/admin.php:1456 msgid "Automatic Friend Account" msgstr "" -#: mod/admin.php:558 +#: mod/admin.php:564 msgid "Blog Account" msgstr "" -#: mod/admin.php:559 +#: mod/admin.php:565 msgid "Private Forum" msgstr "" -#: mod/admin.php:581 +#: mod/admin.php:587 msgid "Message queues" msgstr "" -#: mod/admin.php:587 +#: mod/admin.php:593 msgid "Summary" -msgstr "" +msgstr "Summary" -#: mod/admin.php:589 +#: mod/admin.php:595 msgid "Registered users" -msgstr "" - -#: mod/admin.php:591 -msgid "Pending registrations" -msgstr "" - -#: mod/admin.php:592 -msgid "Version" -msgstr "" +msgstr "Registered users" #: mod/admin.php:597 +msgid "Pending registrations" +msgstr "Pending registrations" + +#: mod/admin.php:598 +msgid "Version" +msgstr "Version" + +#: mod/admin.php:603 msgid "Active plugins" -msgstr "" +msgstr "Active plugins" -#: mod/admin.php:622 +#: mod/admin.php:628 msgid "Can not parse base url. Must have at least ://" -msgstr "" +msgstr "Can not parse base URL. Must have at least ://" -#: mod/admin.php:914 +#: mod/admin.php:920 msgid "Site settings updated." -msgstr "" +msgstr "Site settings updated." -#: mod/admin.php:971 +#: mod/admin.php:948 mod/settings.php:944 +msgid "No special theme for mobile devices" +msgstr "No special theme for mobile devices" + +#: mod/admin.php:977 msgid "No community page" -msgstr "" +msgstr "No community page" -#: mod/admin.php:972 +#: mod/admin.php:978 msgid "Public postings from users of this site" -msgstr "" - -#: mod/admin.php:973 -msgid "Global community page" -msgstr "" +msgstr "Public postings from users of this site" #: mod/admin.php:979 +msgid "Global community page" +msgstr "Global community page" + +#: mod/admin.php:984 mod/contacts.php:541 +msgid "Never" +msgstr "Never" + +#: mod/admin.php:985 msgid "At post arrival" -msgstr "" +msgstr "At post arrival" -#: mod/admin.php:989 -msgid "Users, Global Contacts" -msgstr "" - -#: mod/admin.php:990 -msgid "Users, Global Contacts/fallback" -msgstr "" - -#: mod/admin.php:994 -msgid "One month" -msgstr "" +#: mod/admin.php:993 mod/contacts.php:568 +msgid "Disabled" +msgstr "Disabled" #: mod/admin.php:995 -msgid "Three months" -msgstr "" +msgid "Users, Global Contacts" +msgstr "Users, Global Contacts" #: mod/admin.php:996 -msgid "Half a year" -msgstr "" +msgid "Users, Global Contacts/fallback" +msgstr "Users, Global Contacts/fallback" -#: mod/admin.php:997 -msgid "One year" -msgstr "" +#: mod/admin.php:1000 +msgid "One month" +msgstr "One month" + +#: mod/admin.php:1001 +msgid "Three months" +msgstr "Three months" #: mod/admin.php:1002 +msgid "Half a year" +msgstr "Half a year" + +#: mod/admin.php:1003 +msgid "One year" +msgstr "One a year" + +#: mod/admin.php:1008 msgid "Multi user instance" -msgstr "" - -#: mod/admin.php:1025 -msgid "Closed" -msgstr "" - -#: mod/admin.php:1026 -msgid "Requires approval" -msgstr "" - -#: mod/admin.php:1027 -msgid "Open" -msgstr "" +msgstr "Multi user instance" #: mod/admin.php:1031 -msgid "No SSL policy, links will track page SSL state" -msgstr "" +msgid "Closed" +msgstr "Closed" #: mod/admin.php:1032 -msgid "Force all links to use SSL" -msgstr "" +msgid "Requires approval" +msgstr "Requires approval" #: mod/admin.php:1033 +msgid "Open" +msgstr "Open" + +#: mod/admin.php:1037 +msgid "No SSL policy, links will track page SSL state" +msgstr "No SSL policy, links will track page SSL state" + +#: mod/admin.php:1038 +msgid "Force all links to use SSL" +msgstr "Force all links to use SSL" + +#: mod/admin.php:1039 msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "" +msgstr "Self-signed certificate, use SSL for local links only (discouraged)" -#: mod/admin.php:1057 +#: mod/admin.php:1061 mod/admin.php:1686 mod/admin.php:1949 mod/admin.php:2023 +#: mod/admin.php:2176 mod/settings.php:682 mod/settings.php:793 +#: mod/settings.php:842 mod/settings.php:909 mod/settings.php:1006 +#: mod/settings.php:1272 +msgid "Save Settings" +msgstr "Save settings" + +#: mod/admin.php:1063 msgid "File upload" -msgstr "" +msgstr "File upload" -#: mod/admin.php:1058 +#: mod/admin.php:1064 msgid "Policies" -msgstr "" +msgstr "Policies" -#: mod/admin.php:1060 +#: mod/admin.php:1066 msgid "Auto Discovered Contact Directory" msgstr "" -#: mod/admin.php:1061 +#: mod/admin.php:1067 msgid "Performance" -msgstr "" +msgstr "Performance" -#: mod/admin.php:1062 +#: mod/admin.php:1068 msgid "Worker" -msgstr "" +msgstr "Worker" -#: mod/admin.php:1063 +#: mod/admin.php:1069 msgid "" "Relocate - WARNING: advanced function. Could make this server unreachable." msgstr "Relocate - Warning, advanced function: This could make this server unreachable." -#: mod/admin.php:1066 +#: mod/admin.php:1072 msgid "Site name" -msgstr "" +msgstr "Site name" -#: mod/admin.php:1067 +#: mod/admin.php:1073 msgid "Host name" -msgstr "" +msgstr "Host name" -#: mod/admin.php:1068 +#: mod/admin.php:1074 msgid "Sender Email" -msgstr "" +msgstr "Sender email" -#: mod/admin.php:1068 +#: mod/admin.php:1074 msgid "" "The email address your server shall use to send notification emails from." -msgstr "" +msgstr "The email address your server shall use to send notification emails from." -#: mod/admin.php:1069 +#: mod/admin.php:1075 msgid "Banner/Logo" -msgstr "" +msgstr "Banner/Logo" -#: mod/admin.php:1070 +#: mod/admin.php:1076 msgid "Shortcut icon" -msgstr "" +msgstr "Shortcut icon" -#: mod/admin.php:1070 +#: mod/admin.php:1076 msgid "Link to an icon that will be used for browsers." -msgstr "" +msgstr "Link to an icon that will be used for browsers." -#: mod/admin.php:1071 +#: mod/admin.php:1077 msgid "Touch icon" -msgstr "" +msgstr "Touch icon" -#: mod/admin.php:1071 +#: mod/admin.php:1077 msgid "Link to an icon that will be used for tablets and mobiles." -msgstr "" +msgstr "Link to an icon that will be used for tablets and mobiles." -#: mod/admin.php:1072 +#: mod/admin.php:1078 msgid "Additional Info" -msgstr "" +msgstr "Additional Info" -#: mod/admin.php:1072 +#: mod/admin.php:1078 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/siteinfo." -msgstr "" +msgstr "For public servers: add additional information here that will be listed at %s/siteinfo." -#: mod/admin.php:1073 +#: mod/admin.php:1079 msgid "System language" -msgstr "" +msgstr "System language" -#: mod/admin.php:1074 +#: mod/admin.php:1080 msgid "System theme" -msgstr "" +msgstr "System theme" -#: mod/admin.php:1074 +#: mod/admin.php:1080 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "" +msgstr "Default system theme - may be overridden by user profiles - change theme settings" -#: mod/admin.php:1075 +#: mod/admin.php:1081 msgid "Mobile system theme" -msgstr "" +msgstr "Mobile system theme" -#: mod/admin.php:1075 +#: mod/admin.php:1081 msgid "Theme for mobile devices" -msgstr "" +msgstr "Theme for mobile devices" -#: mod/admin.php:1076 +#: mod/admin.php:1082 msgid "SSL link policy" -msgstr "" +msgstr "SSL link policy" -#: mod/admin.php:1076 +#: mod/admin.php:1082 msgid "Determines whether generated links should be forced to use SSL" -msgstr "" +msgstr "Determines whether generated links should be forced to use SSL" -#: mod/admin.php:1077 +#: mod/admin.php:1083 msgid "Force SSL" -msgstr "" +msgstr "Force SSL" -#: mod/admin.php:1077 +#: mod/admin.php:1083 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." -msgstr "" +msgstr "Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops." -#: mod/admin.php:1078 +#: mod/admin.php:1084 msgid "Hide help entry from navigation menu" -msgstr "" +msgstr "Hide help entry from navigation menu" -#: mod/admin.php:1078 +#: mod/admin.php:1084 msgid "" "Hides the menu entry for the Help pages from the navigation menu. You can " "still access it calling /help directly." -msgstr "" +msgstr "Hides the menu entry for the Help pages from the navigation menu. Help pages can still be accessed by calling ../help directly via its URL." -#: mod/admin.php:1079 +#: mod/admin.php:1085 msgid "Single user instance" -msgstr "" +msgstr "Single user instance" -#: mod/admin.php:1079 +#: mod/admin.php:1085 msgid "Make this instance multi-user or single-user for the named user" -msgstr "" +msgstr "Make this instance multi-user or single-user for the named user" -#: mod/admin.php:1080 +#: mod/admin.php:1086 msgid "Maximum image size" -msgstr "" +msgstr "Maximum image size" -#: mod/admin.php:1080 +#: mod/admin.php:1086 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." -msgstr "" +msgstr "Maximum size in bytes of uploaded images. Default is 0, which means no limits." -#: mod/admin.php:1081 +#: mod/admin.php:1087 msgid "Maximum image length" -msgstr "" +msgstr "Maximum image length" -#: mod/admin.php:1081 +#: mod/admin.php:1087 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "" -#: mod/admin.php:1082 +#: mod/admin.php:1088 msgid "JPEG image quality" -msgstr "" +msgstr "JPEG image quality" -#: mod/admin.php:1082 +#: mod/admin.php:1088 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "" -#: mod/admin.php:1084 +#: mod/admin.php:1090 msgid "Register policy" -msgstr "" +msgstr "Register policy" -#: mod/admin.php:1085 +#: mod/admin.php:1091 msgid "Maximum Daily Registrations" msgstr "" -#: mod/admin.php:1085 +#: mod/admin.php:1091 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:1086 +#: mod/admin.php:1092 msgid "Register text" msgstr "" -#: mod/admin.php:1086 +#: mod/admin.php:1092 msgid "Will be displayed prominently on the registration page." msgstr "" -#: mod/admin.php:1087 +#: mod/admin.php:1093 msgid "Accounts abandoned after x days" msgstr "" -#: mod/admin.php:1087 +#: mod/admin.php:1093 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "" -#: mod/admin.php:1088 +#: mod/admin.php:1094 msgid "Allowed friend domains" msgstr "" -#: mod/admin.php:1088 +#: mod/admin.php:1094 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:1089 +#: mod/admin.php:1095 msgid "Allowed email domains" msgstr "" -#: mod/admin.php:1089 +#: mod/admin.php:1095 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:1090 +#: mod/admin.php:1096 msgid "Block public" msgstr "" -#: mod/admin.php:1090 +#: mod/admin.php:1096 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:1091 +#: mod/admin.php:1097 msgid "Force publish" msgstr "" -#: mod/admin.php:1091 +#: mod/admin.php:1097 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: mod/admin.php:1092 +#: mod/admin.php:1098 msgid "Global directory URL" -msgstr "" +msgstr "Global directory URL" -#: mod/admin.php:1092 +#: mod/admin.php:1098 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." -msgstr "" +msgstr "URL to the global directory: If this is not set, the global directory is completely unavailable to the application." -#: mod/admin.php:1093 +#: mod/admin.php:1099 msgid "Allow threaded items" msgstr "" -#: mod/admin.php:1093 +#: mod/admin.php:1099 msgid "Allow infinite level threading for items on this site." msgstr "" -#: mod/admin.php:1094 +#: mod/admin.php:1100 msgid "Private posts by default for new users" msgstr "" -#: mod/admin.php:1094 +#: mod/admin.php:1100 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." msgstr "" -#: mod/admin.php:1095 +#: mod/admin.php:1101 msgid "Don't include post content in email notifications" msgstr "" -#: mod/admin.php:1095 +#: mod/admin.php:1101 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:1096 +#: mod/admin.php:1102 msgid "Disallow public access to addons listed in the apps menu." msgstr "" -#: mod/admin.php:1096 +#: mod/admin.php:1102 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "" -#: mod/admin.php:1097 +#: mod/admin.php:1103 msgid "Don't embed private images in posts" msgstr "" -#: mod/admin.php:1097 +#: mod/admin.php:1103 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 " @@ -7982,220 +6573,220 @@ msgid "" "while." msgstr "" -#: mod/admin.php:1098 +#: mod/admin.php:1104 msgid "Allow Users to set remote_self" msgstr "" -#: mod/admin.php:1098 +#: mod/admin.php:1104 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:1099 +#: mod/admin.php:1105 msgid "Block multiple registrations" msgstr "" -#: mod/admin.php:1099 +#: mod/admin.php:1105 msgid "Disallow users to register additional accounts for use as pages." msgstr "" -#: mod/admin.php:1100 +#: mod/admin.php:1106 msgid "OpenID support" msgstr "" -#: mod/admin.php:1100 +#: mod/admin.php:1106 msgid "OpenID support for registration and logins." msgstr "" -#: mod/admin.php:1101 +#: mod/admin.php:1107 msgid "Fullname check" msgstr "" -#: mod/admin.php:1101 +#: mod/admin.php:1107 msgid "" "Force users to register with a space between firstname and lastname in Full " "name, as an antispam measure" msgstr "" -#: mod/admin.php:1102 +#: mod/admin.php:1108 msgid "Community Page Style" msgstr "" -#: mod/admin.php:1102 +#: mod/admin.php:1108 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:1103 +#: mod/admin.php:1109 msgid "Posts per user on community page" msgstr "" -#: mod/admin.php:1103 +#: mod/admin.php:1109 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "'Global Community')" msgstr "" -#: mod/admin.php:1104 +#: mod/admin.php:1110 msgid "Enable OStatus support" msgstr "" -#: mod/admin.php:1104 +#: mod/admin.php:1110 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:1105 +#: mod/admin.php:1111 msgid "OStatus conversation completion interval" msgstr "" -#: mod/admin.php:1105 +#: mod/admin.php:1111 msgid "" "How often shall the poller check for new entries in OStatus conversations? " "This can be a very ressource task." msgstr "" -#: mod/admin.php:1106 +#: mod/admin.php:1112 msgid "Only import OStatus threads from our contacts" msgstr "" -#: mod/admin.php:1106 +#: mod/admin.php:1112 msgid "" "Normally we import every content from our OStatus contacts. With this option" " we only store threads that are started by a contact that is known on our " "system." msgstr "" -#: mod/admin.php:1107 +#: mod/admin.php:1113 msgid "OStatus support can only be enabled if threading is enabled." msgstr "" -#: mod/admin.php:1109 +#: mod/admin.php:1115 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "" -#: mod/admin.php:1110 +#: mod/admin.php:1116 msgid "Enable Diaspora support" msgstr "" -#: mod/admin.php:1110 +#: mod/admin.php:1116 msgid "Provide built-in Diaspora network compatibility." msgstr "" -#: mod/admin.php:1111 +#: mod/admin.php:1117 msgid "Only allow Friendica contacts" msgstr "" -#: mod/admin.php:1111 +#: mod/admin.php:1117 msgid "" "All contacts must use Friendica protocols. All other built-in communication " "protocols disabled." msgstr "" -#: mod/admin.php:1112 +#: mod/admin.php:1118 msgid "Verify SSL" msgstr "" -#: mod/admin.php:1112 +#: mod/admin.php:1118 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:1113 +#: mod/admin.php:1119 msgid "Proxy user" msgstr "" -#: mod/admin.php:1114 +#: mod/admin.php:1120 msgid "Proxy URL" -msgstr "" +msgstr "Proxy URL" -#: mod/admin.php:1115 +#: mod/admin.php:1121 msgid "Network timeout" msgstr "" -#: mod/admin.php:1115 +#: mod/admin.php:1121 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "" -#: mod/admin.php:1116 +#: mod/admin.php:1122 msgid "Maximum Load Average" msgstr "" -#: mod/admin.php:1116 +#: mod/admin.php:1122 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "" -#: mod/admin.php:1117 +#: mod/admin.php:1123 msgid "Maximum Load Average (Frontend)" msgstr "" -#: mod/admin.php:1117 +#: mod/admin.php:1123 msgid "Maximum system load before the frontend quits service - default 50." msgstr "" -#: mod/admin.php:1118 +#: mod/admin.php:1124 msgid "Minimal Memory" msgstr "" -#: mod/admin.php:1118 +#: mod/admin.php:1124 msgid "" "Minimal free memory in MB for the poller. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "" -#: mod/admin.php:1119 +#: mod/admin.php:1125 msgid "Maximum table size for optimization" msgstr "" -#: mod/admin.php:1119 +#: mod/admin.php:1125 msgid "" "Maximum table size (in MB) for the automatic optimization - default 100 MB. " "Enter -1 to disable it." msgstr "" -#: mod/admin.php:1120 +#: mod/admin.php:1126 msgid "Minimum level of fragmentation" msgstr "" -#: mod/admin.php:1120 +#: mod/admin.php:1126 msgid "" "Minimum fragmenation level to start the automatic optimization - default " "value is 30%." msgstr "" -#: mod/admin.php:1122 +#: mod/admin.php:1128 msgid "Periodical check of global contacts" msgstr "" -#: mod/admin.php:1122 +#: mod/admin.php:1128 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:1123 +#: mod/admin.php:1129 msgid "Days between requery" msgstr "" -#: mod/admin.php:1123 +#: mod/admin.php:1129 msgid "Number of days after which a server is requeried for his contacts." msgstr "" -#: mod/admin.php:1124 +#: mod/admin.php:1130 msgid "Discover contacts from other servers" msgstr "" -#: mod/admin.php:1124 +#: mod/admin.php:1130 msgid "" "Periodically query other servers for contacts. You can choose between " "'users': the users on the remote system, 'Global Contacts': active contacts " @@ -8205,32 +6796,32 @@ msgid "" "Global Contacts'." msgstr "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 recommend setting is 'Users, Global Contacts'." -#: mod/admin.php:1125 +#: mod/admin.php:1131 msgid "Timeframe for fetching global contacts" msgstr "" -#: mod/admin.php:1125 +#: mod/admin.php:1131 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:1126 +#: mod/admin.php:1132 msgid "Search the local directory" msgstr "" -#: mod/admin.php:1126 +#: mod/admin.php:1132 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:1128 +#: mod/admin.php:1134 msgid "Publish server information" msgstr "" -#: mod/admin.php:1128 +#: mod/admin.php:1134 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 " @@ -8238,133 +6829,133 @@ msgid "" " href='http://the-federation.info/'>the-federation.info for details." msgstr "" -#: mod/admin.php:1130 +#: mod/admin.php:1136 msgid "Suppress Tags" msgstr "" -#: mod/admin.php:1130 +#: mod/admin.php:1136 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "" -#: mod/admin.php:1131 +#: mod/admin.php:1137 msgid "Path to item cache" msgstr "" -#: mod/admin.php:1131 +#: mod/admin.php:1137 msgid "The item caches buffers generated bbcode and external images." msgstr "" -#: mod/admin.php:1132 +#: mod/admin.php:1138 msgid "Cache duration in seconds" msgstr "" -#: mod/admin.php:1132 +#: mod/admin.php:1138 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:1133 +#: mod/admin.php:1139 msgid "Maximum numbers of comments per post" msgstr "" -#: mod/admin.php:1133 +#: mod/admin.php:1139 msgid "How much comments should be shown for each post? Default value is 100." msgstr "" -#: mod/admin.php:1134 +#: mod/admin.php:1140 msgid "Temp path" msgstr "" -#: mod/admin.php:1134 +#: mod/admin.php:1140 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:1135 +#: mod/admin.php:1141 msgid "Base path to installation" msgstr "" -#: mod/admin.php:1135 +#: mod/admin.php:1141 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:1136 +#: mod/admin.php:1142 msgid "Disable picture proxy" msgstr "" -#: mod/admin.php:1136 +#: mod/admin.php:1142 msgid "" "The picture proxy increases performance and privacy. It shouldn't be used on" " systems with very low bandwith." msgstr "" -#: mod/admin.php:1137 +#: mod/admin.php:1143 msgid "Only search in tags" msgstr "" -#: mod/admin.php:1137 +#: mod/admin.php:1143 msgid "On large systems the text search can slow down the system extremely." msgstr "" -#: mod/admin.php:1139 +#: mod/admin.php:1145 msgid "New base url" -msgstr "" +msgstr "New base URL" -#: mod/admin.php:1139 +#: mod/admin.php:1145 msgid "" "Change base url for this server. Sends relocate message to all DFRN contacts" " of all users." -msgstr "" +msgstr "Change base URL for this server. Sends relocate message to all DFRN contacts of all users." -#: mod/admin.php:1141 +#: mod/admin.php:1147 msgid "RINO Encryption" msgstr "" -#: mod/admin.php:1141 +#: mod/admin.php:1147 msgid "Encryption layer between nodes." msgstr "" -#: mod/admin.php:1143 +#: mod/admin.php:1149 msgid "Maximum number of parallel workers" msgstr "" -#: mod/admin.php:1143 +#: mod/admin.php:1149 msgid "" "On shared hosters set this to 2. On larger systems, values of 10 are great. " "Default value is 4." msgstr "" -#: mod/admin.php:1144 +#: mod/admin.php:1150 msgid "Don't use 'proc_open' with the worker" msgstr "" -#: mod/admin.php:1144 +#: mod/admin.php:1150 msgid "" "Enable this if your system doesn't allow the use of 'proc_open'. This can " "happen on shared hosters. If this is enabled you should increase the " "frequency of poller calls in your crontab." msgstr "" -#: mod/admin.php:1145 +#: mod/admin.php:1151 msgid "Enable fastlane" msgstr "" -#: mod/admin.php:1145 +#: mod/admin.php:1151 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes" " with higher priority are blocked by processes of lower priority." msgstr "" -#: mod/admin.php:1146 +#: mod/admin.php:1152 msgid "Enable frontend worker" msgstr "" -#: mod/admin.php:1146 +#: mod/admin.php:1152 msgid "" "When enabled the Worker process is triggered when backend access is " "performed (e.g. messages being delivered). On smaller sites you might want " @@ -8374,66 +6965,66 @@ msgid "" "this." msgstr "" -#: mod/admin.php:1176 +#: mod/admin.php:1182 msgid "Update has been marked successful" msgstr "" -#: mod/admin.php:1184 +#: mod/admin.php:1190 #, php-format msgid "Database structure update %s was successfully applied." msgstr "" -#: mod/admin.php:1187 +#: mod/admin.php:1193 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "" -#: mod/admin.php:1201 +#: mod/admin.php:1207 #, php-format msgid "Executing %s failed with error: %s" msgstr "" -#: mod/admin.php:1204 +#: mod/admin.php:1210 #, php-format msgid "Update %s was successfully applied." msgstr "" -#: mod/admin.php:1207 +#: mod/admin.php:1213 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "" -#: mod/admin.php:1210 +#: mod/admin.php:1216 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "" -#: mod/admin.php:1230 +#: mod/admin.php:1236 msgid "No failed updates." msgstr "" -#: mod/admin.php:1231 +#: mod/admin.php:1237 msgid "Check database structure" msgstr "" -#: mod/admin.php:1236 +#: mod/admin.php:1242 msgid "Failed Updates" msgstr "" -#: mod/admin.php:1237 +#: mod/admin.php:1243 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "" -#: mod/admin.php:1238 +#: mod/admin.php:1244 msgid "Mark success (if update was manually applied)" msgstr "" -#: mod/admin.php:1239 +#: mod/admin.php:1245 msgid "Attempt to execute this update step automatically" msgstr "" -#: mod/admin.php:1273 +#: mod/admin.php:1279 #, php-format msgid "" "\n" @@ -8441,7 +7032,7 @@ msgid "" "\t\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: mod/admin.php:1276 +#: mod/admin.php:1282 #, php-format msgid "" "\n" @@ -8471,158 +7062,172 @@ msgid "" "\t\t\tThank you and welcome to %4$s." msgstr "" -#: mod/admin.php:1320 +#: mod/admin.php:1326 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" msgstr[0] "" msgstr[1] "" -#: mod/admin.php:1327 +#: mod/admin.php:1333 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "" msgstr[1] "" -#: mod/admin.php:1374 +#: mod/admin.php:1380 #, php-format msgid "User '%s' deleted" msgstr "" -#: mod/admin.php:1382 +#: mod/admin.php:1388 #, php-format msgid "User '%s' unblocked" msgstr "" -#: mod/admin.php:1382 +#: mod/admin.php:1388 #, php-format msgid "User '%s' blocked" msgstr "" -#: mod/admin.php:1490 mod/admin.php:1516 +#: mod/admin.php:1496 mod/admin.php:1522 msgid "Register date" msgstr "" -#: mod/admin.php:1490 mod/admin.php:1516 +#: mod/admin.php:1496 mod/admin.php:1522 msgid "Last login" msgstr "" -#: mod/admin.php:1490 mod/admin.php:1516 +#: mod/admin.php:1496 mod/admin.php:1522 msgid "Last item" msgstr "" -#: mod/admin.php:1499 -msgid "Add User" -msgstr "" - -#: mod/admin.php:1500 -msgid "select all" -msgstr "" - -#: mod/admin.php:1501 -msgid "User registrations waiting for confirm" -msgstr "" - -#: mod/admin.php:1502 -msgid "User waiting for permanent deletion" -msgstr "" - -#: mod/admin.php:1503 -msgid "Request date" -msgstr "" - -#: mod/admin.php:1504 -msgid "No registrations." +#: mod/admin.php:1496 mod/settings.php:45 +msgid "Account" msgstr "" #: mod/admin.php:1505 -msgid "Note from the user" +msgid "Add User" +msgstr "" + +#: mod/admin.php:1506 +msgid "select all" msgstr "" #: mod/admin.php:1507 -msgid "Deny" +msgid "User registrations waiting for confirm" +msgstr "" + +#: mod/admin.php:1508 +msgid "User waiting for permanent deletion" +msgstr "" + +#: mod/admin.php:1509 +msgid "Request date" +msgstr "" + +#: mod/admin.php:1510 +msgid "No registrations." msgstr "" #: mod/admin.php:1511 +msgid "Note from the user" +msgstr "" + +#: mod/admin.php:1513 +msgid "Deny" +msgstr "" + +#: mod/admin.php:1515 mod/contacts.php:616 mod/contacts.php:816 +#: mod/contacts.php:994 +msgid "Block" +msgstr "Block" + +#: mod/admin.php:1516 mod/contacts.php:616 mod/contacts.php:816 +#: mod/contacts.php:994 +msgid "Unblock" +msgstr "Unblock" + +#: mod/admin.php:1517 msgid "Site admin" msgstr "" -#: mod/admin.php:1512 +#: mod/admin.php:1518 msgid "Account expired" msgstr "" -#: mod/admin.php:1515 +#: mod/admin.php:1521 msgid "New User" msgstr "" -#: mod/admin.php:1516 +#: mod/admin.php:1522 msgid "Deleted since" msgstr "" -#: mod/admin.php:1521 +#: mod/admin.php:1527 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:1522 +#: mod/admin.php:1528 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:1532 +#: mod/admin.php:1538 msgid "Name of the new user." msgstr "" -#: mod/admin.php:1533 +#: mod/admin.php:1539 msgid "Nickname" msgstr "" -#: mod/admin.php:1533 +#: mod/admin.php:1539 msgid "Nickname of the new user." msgstr "" -#: mod/admin.php:1534 +#: mod/admin.php:1540 msgid "Email address of the new user." msgstr "" -#: mod/admin.php:1577 +#: mod/admin.php:1583 #, php-format msgid "Plugin %s disabled." msgstr "" -#: mod/admin.php:1581 +#: mod/admin.php:1587 #, php-format msgid "Plugin %s enabled." msgstr "" -#: mod/admin.php:1592 mod/admin.php:1844 +#: mod/admin.php:1598 mod/admin.php:1850 msgid "Disable" msgstr "" -#: mod/admin.php:1594 mod/admin.php:1846 +#: mod/admin.php:1600 mod/admin.php:1852 msgid "Enable" msgstr "" -#: mod/admin.php:1617 mod/admin.php:1893 +#: mod/admin.php:1623 mod/admin.php:1899 msgid "Toggle" msgstr "" -#: mod/admin.php:1625 mod/admin.php:1902 +#: mod/admin.php:1631 mod/admin.php:1908 msgid "Author: " msgstr "" -#: mod/admin.php:1626 mod/admin.php:1903 +#: mod/admin.php:1632 mod/admin.php:1909 msgid "Maintainer: " msgstr "" -#: mod/admin.php:1681 +#: mod/admin.php:1687 msgid "Reload active plugins" msgstr "" -#: mod/admin.php:1686 +#: mod/admin.php:1692 #, php-format msgid "" "There are currently no plugins available on your node. You can find the " @@ -8630,70 +7235,70 @@ msgid "" "in the open plugin registry at %2$s" msgstr "" -#: mod/admin.php:1805 +#: mod/admin.php:1811 msgid "No themes found." msgstr "" -#: mod/admin.php:1884 +#: mod/admin.php:1890 msgid "Screenshot" msgstr "" -#: mod/admin.php:1944 +#: mod/admin.php:1950 msgid "Reload active themes" msgstr "" -#: mod/admin.php:1949 +#: mod/admin.php:1955 #, php-format msgid "No themes found on the system. They should be paced in %1$s" msgstr "" -#: mod/admin.php:1950 +#: mod/admin.php:1956 msgid "[Experimental]" msgstr "" -#: mod/admin.php:1951 +#: mod/admin.php:1957 msgid "[Unsupported]" msgstr "" -#: mod/admin.php:1975 +#: mod/admin.php:1981 msgid "Log settings updated." msgstr "" -#: mod/admin.php:2007 +#: mod/admin.php:2013 msgid "PHP log currently enabled." msgstr "" -#: mod/admin.php:2009 +#: mod/admin.php:2015 msgid "PHP log currently disabled." msgstr "" -#: mod/admin.php:2018 +#: mod/admin.php:2024 msgid "Clear" msgstr "" -#: mod/admin.php:2023 +#: mod/admin.php:2029 msgid "Enable Debugging" msgstr "" -#: mod/admin.php:2024 +#: mod/admin.php:2030 msgid "Log file" msgstr "" -#: mod/admin.php:2024 +#: mod/admin.php:2030 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "" -#: mod/admin.php:2025 +#: mod/admin.php:2031 msgid "Log level" msgstr "" -#: mod/admin.php:2028 +#: mod/admin.php:2034 msgid "PHP logging" msgstr "" -#: mod/admin.php:2029 +#: mod/admin.php:2035 msgid "" "To enable logging of PHP errors and warnings you can add the following to " "the .htconfig.php file of your installation. The filename set in the " @@ -8702,87 +7307,1445 @@ msgid "" "'display_errors' is to enable these options, set to '0' to disable them." msgstr "" -#: mod/admin.php:2160 +#: mod/admin.php:2165 mod/admin.php:2166 mod/settings.php:783 +msgid "Off" +msgstr "" + +#: mod/admin.php:2165 mod/admin.php:2166 mod/settings.php:783 +msgid "On" +msgstr "" + +#: mod/admin.php:2166 #, php-format msgid "Lock feature %s" msgstr "" -#: mod/admin.php:2168 +#: mod/admin.php:2174 msgid "Manage Additional Features" msgstr "" -#: object/Item.php:359 +#: mod/contacts.php:137 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "%d contact edited." +msgstr[1] "%d contacts edited." + +#: mod/contacts.php:172 mod/contacts.php:381 +msgid "Could not access contact record." +msgstr "Could not access contact record." + +#: mod/contacts.php:186 +msgid "Could not locate selected profile." +msgstr "Could not locate selected profile." + +#: mod/contacts.php:219 +msgid "Contact updated." +msgstr "Contact updated." + +#: mod/contacts.php:402 +msgid "Contact has been blocked" +msgstr "Contact has been blocked" + +#: mod/contacts.php:402 +msgid "Contact has been unblocked" +msgstr "Contact has been unblocked" + +#: mod/contacts.php:413 +msgid "Contact has been ignored" +msgstr "Contact has been ignored" + +#: mod/contacts.php:413 +msgid "Contact has been unignored" +msgstr "Contact has been unignored" + +#: mod/contacts.php:425 +msgid "Contact has been archived" +msgstr "Contact has been archived" + +#: mod/contacts.php:425 +msgid "Contact has been unarchived" +msgstr "Contact has been unarchived" + +#: mod/contacts.php:450 +msgid "Drop contact" +msgstr "Drop contact" + +#: mod/contacts.php:453 mod/contacts.php:812 +msgid "Do you really want to delete this contact?" +msgstr "Do you really want to delete this contact?" + +#: mod/contacts.php:472 +msgid "Contact has been removed." +msgstr "Contact has been removed." + +#: mod/contacts.php:509 +#, php-format +msgid "You are mutual friends with %s" +msgstr "You are mutual friends with %s" + +#: mod/contacts.php:513 +#, php-format +msgid "You are sharing with %s" +msgstr "You are sharing with %s" + +#: mod/contacts.php:518 +#, php-format +msgid "%s is sharing with you" +msgstr "%s is sharing with you" + +#: mod/contacts.php:538 +msgid "Private communications are not available for this contact." +msgstr "Private communications are not available for this contact." + +#: mod/contacts.php:545 +msgid "(Update was successful)" +msgstr "(Update was successful)" + +#: mod/contacts.php:545 +msgid "(Update was not successful)" +msgstr "(Update was not successful)" + +#: mod/contacts.php:547 mod/contacts.php:975 +msgid "Suggest friends" +msgstr "Suggest friends" + +#: mod/contacts.php:551 +#, php-format +msgid "Network type: %s" +msgstr "Network type: %s" + +#: mod/contacts.php:564 +msgid "Communications lost with this contact!" +msgstr "Communications lost with this contact!" + +#: mod/contacts.php:567 +msgid "Fetch further information for feeds" +msgstr "Fetch further information for feeds" + +#: mod/contacts.php:568 +msgid "Fetch information" +msgstr "Fetch information" + +#: mod/contacts.php:568 +msgid "Fetch information and keywords" +msgstr "Fetch information and keywords" + +#: mod/contacts.php:586 +msgid "Contact" +msgstr "Contact" + +#: mod/contacts.php:589 +msgid "Profile Visibility" +msgstr "Profile visibility" + +#: mod/contacts.php:590 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Please choose the profile you would like to display to %s when viewing your profile securely." + +#: mod/contacts.php:591 +msgid "Contact Information / Notes" +msgstr "Personal note" + +#: mod/contacts.php:592 +msgid "Edit contact notes" +msgstr "Edit contact notes" + +#: mod/contacts.php:598 +msgid "Block/Unblock contact" +msgstr "Block/Unblock contact" + +#: mod/contacts.php:599 +msgid "Ignore contact" +msgstr "Ignore contact" + +#: mod/contacts.php:600 +msgid "Repair URL settings" +msgstr "Repair URL settings" + +#: mod/contacts.php:601 +msgid "View conversations" +msgstr "View conversations" + +#: mod/contacts.php:607 +msgid "Last update:" +msgstr "Last update:" + +#: mod/contacts.php:609 +msgid "Update public posts" +msgstr "Update public posts" + +#: mod/contacts.php:611 mod/contacts.php:985 +msgid "Update now" +msgstr "Update now" + +#: mod/contacts.php:617 mod/contacts.php:817 mod/contacts.php:1002 +msgid "Unignore" +msgstr "Unignore" + +#: mod/contacts.php:621 +msgid "Currently blocked" +msgstr "Currently blocked" + +#: mod/contacts.php:622 +msgid "Currently ignored" +msgstr "Currently ignored" + +#: mod/contacts.php:623 +msgid "Currently archived" +msgstr "Currently archived" + +#: mod/contacts.php:624 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Replies/Likes to your public posts may still be visible" + +#: mod/contacts.php:625 +msgid "Notification for new posts" +msgstr "Notification for new posts" + +#: mod/contacts.php:625 +msgid "Send a notification of every new post of this contact" +msgstr "Send notification for every new post from this contact" + +#: mod/contacts.php:628 +msgid "Blacklisted keywords" +msgstr "Blacklisted keywords" + +#: mod/contacts.php:628 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected" + +#: mod/contacts.php:646 +msgid "Actions" +msgstr "Actions" + +#: mod/contacts.php:649 +msgid "Contact Settings" +msgstr "Notification and privacy " + +#: mod/contacts.php:695 +msgid "Suggestions" +msgstr "Suggestions" + +#: mod/contacts.php:698 +msgid "Suggest potential friends" +msgstr "Suggest potential friends" + +#: mod/contacts.php:706 +msgid "Show all contacts" +msgstr "Show all contacts" + +#: mod/contacts.php:711 +msgid "Unblocked" +msgstr "Unblocked" + +#: mod/contacts.php:714 +msgid "Only show unblocked contacts" +msgstr "Only show unblocked contacts" + +#: mod/contacts.php:720 +msgid "Blocked" +msgstr "Blocked" + +#: mod/contacts.php:723 +msgid "Only show blocked contacts" +msgstr "Only show blocked contacts" + +#: mod/contacts.php:729 +msgid "Ignored" +msgstr "Ignored" + +#: mod/contacts.php:732 +msgid "Only show ignored contacts" +msgstr "Only show ignored contacts" + +#: mod/contacts.php:738 +msgid "Archived" +msgstr "Archived" + +#: mod/contacts.php:741 +msgid "Only show archived contacts" +msgstr "Only show archived contacts" + +#: mod/contacts.php:747 +msgid "Hidden" +msgstr "Hidden" + +#: mod/contacts.php:750 +msgid "Only show hidden contacts" +msgstr "Only show hidden contacts" + +#: mod/contacts.php:807 +msgid "Search your contacts" +msgstr "Search your contacts" + +#: mod/contacts.php:815 mod/settings.php:162 mod/settings.php:708 +msgid "Update" +msgstr "Update" + +#: mod/contacts.php:818 mod/contacts.php:1010 +msgid "Archive" +msgstr "Archive" + +#: mod/contacts.php:818 mod/contacts.php:1010 +msgid "Unarchive" +msgstr "Unarchive" + +#: mod/contacts.php:821 +msgid "Batch Actions" +msgstr "Batch actions" + +#: mod/contacts.php:867 +msgid "View all contacts" +msgstr "View all contacts" + +#: mod/contacts.php:877 +msgid "View all common friends" +msgstr "View all common friends" + +#: mod/contacts.php:884 +msgid "Advanced Contact Settings" +msgstr "Advanced contact settings" + +#: mod/contacts.php:918 +msgid "Mutual Friendship" +msgstr "Mutual friendship" + +#: mod/contacts.php:922 +msgid "is a fan of yours" +msgstr "is a fan of yours" + +#: mod/contacts.php:926 +msgid "you are a fan of" +msgstr "I follow them" + +#: mod/contacts.php:996 +msgid "Toggle Blocked status" +msgstr "Toggle blocked status" + +#: mod/contacts.php:1004 +msgid "Toggle Ignored status" +msgstr "Toggle ignored status" + +#: mod/contacts.php:1012 +msgid "Toggle Archive status" +msgstr "Toggle archive status" + +#: mod/contacts.php:1020 +msgid "Delete contact" +msgstr "Delete contact" + +#: mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Image uploaded but image cropping failed." + +#: mod/profile_photo.php:77 mod/profile_photo.php:85 mod/profile_photo.php:93 +#: mod/profile_photo.php:322 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Image size reduction [%s] failed." + +#: mod/profile_photo.php:127 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Shift-reload the page or clear browser cache if the new photo does not display immediately." + +#: mod/profile_photo.php:136 +msgid "Unable to process image" +msgstr "Unable to process image" + +#: mod/profile_photo.php:253 +msgid "Upload File:" +msgstr "Upload File:" + +#: mod/profile_photo.php:254 +msgid "Select a profile:" +msgstr "Select a profile:" + +#: mod/profile_photo.php:256 +msgid "Upload" +msgstr "Upload" + +#: mod/profile_photo.php:259 +msgid "or" +msgstr "or" + +#: mod/profile_photo.php:259 +msgid "skip this step" +msgstr "skip this step" + +#: mod/profile_photo.php:259 +msgid "select a photo from your photo albums" +msgstr "select a photo from your photo albums" + +#: mod/profile_photo.php:273 +msgid "Crop Image" +msgstr "Crop Image" + +#: mod/profile_photo.php:274 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Please adjust the image cropping for optimum viewing." + +#: mod/profile_photo.php:276 +msgid "Done Editing" +msgstr "Done editing" + +#: mod/profile_photo.php:312 +msgid "Image uploaded successfully." +msgstr "Image uploaded successfully." + +#: mod/profiles.php:42 +msgid "Profile deleted." +msgstr "Profile deleted." + +#: mod/profiles.php:58 mod/profiles.php:94 +msgid "Profile-" +msgstr "" + +#: mod/profiles.php:77 mod/profiles.php:122 +msgid "New profile created." +msgstr "" + +#: mod/profiles.php:100 +msgid "Profile unavailable to clone." +msgstr "" + +#: mod/profiles.php:196 +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: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 "XMPP" +msgstr "" + +#: mod/profiles.php:375 +msgid "Homepage" +msgstr "Homepage" + +#: mod/profiles.php:379 mod/profiles.php:698 +msgid "Interests" +msgstr "" + +#: mod/profiles.php:383 +msgid "Address" +msgstr "" + +#: mod/profiles.php:390 mod/profiles.php:694 +msgid "Location" +msgstr "" + +#: mod/profiles.php:475 +msgid "Profile updated." +msgstr "" + +#: mod/profiles.php:567 +msgid " and " +msgstr "" + +#: mod/profiles.php:576 +msgid "public profile" +msgstr "" + +#: mod/profiles.php:579 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "" + +#: mod/profiles.php:580 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr "" + +#: mod/profiles.php:582 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "" + +#: mod/profiles.php:640 +msgid "Hide contacts and friends:" +msgstr "" + +#: mod/profiles.php:645 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "" + +#: mod/profiles.php:670 +msgid "Show more profile fields:" +msgstr "" + +#: mod/profiles.php:682 +msgid "Profile Actions" +msgstr "" + +#: mod/profiles.php:683 +msgid "Edit Profile Details" +msgstr "" + +#: mod/profiles.php:685 +msgid "Change Profile Photo" +msgstr "" + +#: mod/profiles.php:686 +msgid "View this profile" +msgstr "" + +#: mod/profiles.php:688 +msgid "Create a new profile using these settings" +msgstr "" + +#: mod/profiles.php:689 +msgid "Clone this profile" +msgstr "" + +#: mod/profiles.php:690 +msgid "Delete this profile" +msgstr "" + +#: mod/profiles.php:692 +msgid "Basic information" +msgstr "" + +#: mod/profiles.php:693 +msgid "Profile picture" +msgstr "" + +#: mod/profiles.php:695 +msgid "Preferences" +msgstr "" + +#: mod/profiles.php:696 +msgid "Status information" +msgstr "" + +#: mod/profiles.php:697 +msgid "Additional information" +msgstr "" + +#: mod/profiles.php:700 +msgid "Relation" +msgstr "" + +#: mod/profiles.php:704 +msgid "Your Gender:" +msgstr "" + +#: mod/profiles.php:705 +msgid " Marital Status:" +msgstr "" + +#: mod/profiles.php:707 +msgid "Example: fishing photography software" +msgstr "" + +#: mod/profiles.php:712 +msgid "Profile Name:" +msgstr "" + +#: mod/profiles.php:714 +msgid "" +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "" + +#: mod/profiles.php:715 +msgid "Your Full Name:" +msgstr "" + +#: mod/profiles.php:716 +msgid "Title/Description:" +msgstr "" + +#: mod/profiles.php:719 +msgid "Street Address:" +msgstr "" + +#: mod/profiles.php:720 +msgid "Locality/City:" +msgstr "" + +#: mod/profiles.php:721 +msgid "Region/State:" +msgstr "" + +#: mod/profiles.php:722 +msgid "Postal/Zip Code:" +msgstr "" + +#: mod/profiles.php:723 +msgid "Country:" +msgstr "" + +#: mod/profiles.php:727 +msgid "Who: (if applicable)" +msgstr "" + +#: mod/profiles.php:727 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "" + +#: mod/profiles.php:728 +msgid "Since [date]:" +msgstr "" + +#: mod/profiles.php:730 +msgid "Tell us about yourself..." +msgstr "" + +#: mod/profiles.php:731 +msgid "XMPP (Jabber) address:" +msgstr "" + +#: mod/profiles.php:731 +msgid "" +"The XMPP address will be propagated to your contacts so that they can follow" +" you." +msgstr "" + +#: mod/profiles.php:732 +msgid "Homepage URL:" +msgstr "Homepage URL:" + +#: mod/profiles.php:735 +msgid "Religious Views:" +msgstr "" + +#: mod/profiles.php:736 +msgid "Public Keywords:" +msgstr "" + +#: mod/profiles.php:736 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "" + +#: mod/profiles.php:737 +msgid "Private Keywords:" +msgstr "" + +#: mod/profiles.php:737 +msgid "(Used for searching profiles, never shown to others)" +msgstr "" + +#: mod/profiles.php:740 +msgid "Musical interests" +msgstr "" + +#: mod/profiles.php:741 +msgid "Books, literature" +msgstr "" + +#: mod/profiles.php:742 +msgid "Television" +msgstr "" + +#: mod/profiles.php:743 +msgid "Film/dance/culture/entertainment" +msgstr "" + +#: mod/profiles.php:744 +msgid "Hobbies/Interests" +msgstr "" + +#: mod/profiles.php:745 +msgid "Love/romance" +msgstr "" + +#: mod/profiles.php:746 +msgid "Work/employment" +msgstr "" + +#: mod/profiles.php:747 +msgid "School/education" +msgstr "" + +#: mod/profiles.php:748 +msgid "Contact information and Social Networks" +msgstr "" + +#: mod/profiles.php:789 +msgid "Edit/Manage Profiles" +msgstr "" + +#: mod/settings.php:62 +msgid "Display" +msgstr "" + +#: mod/settings.php:69 mod/settings.php:891 +msgid "Social Networks" +msgstr "Social networks" + +#: mod/settings.php:90 +msgid "Connected apps" +msgstr "" + +#: mod/settings.php:104 +msgid "Remove account" +msgstr "" + +#: mod/settings.php:159 +msgid "Missing some important data!" +msgstr "" + +#: mod/settings.php:273 +msgid "Failed to connect with email account using the settings provided." +msgstr "" + +#: mod/settings.php:278 +msgid "Email settings updated." +msgstr "" + +#: mod/settings.php:293 +msgid "Features updated" +msgstr "" + +#: mod/settings.php:363 +msgid "Relocate message has been send to your contacts" +msgstr "Relocate message has been send to your contacts" + +#: mod/settings.php:382 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "" + +#: mod/settings.php:390 +msgid "Wrong password." +msgstr "" + +#: mod/settings.php:401 +msgid "Password changed." +msgstr "" + +#: mod/settings.php:403 +msgid "Password update failed. Please try again." +msgstr "" + +#: mod/settings.php:483 +msgid " Please use a shorter name." +msgstr "" + +#: mod/settings.php:485 +msgid " Name too short." +msgstr "" + +#: mod/settings.php:494 +msgid "Wrong Password" +msgstr "" + +#: mod/settings.php:499 +msgid " Not valid email." +msgstr "" + +#: mod/settings.php:505 +msgid " Cannot change to that email." +msgstr "" + +#: mod/settings.php:561 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "" + +#: mod/settings.php:565 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "" + +#: mod/settings.php:605 +msgid "Settings updated." +msgstr "" + +#: mod/settings.php:681 mod/settings.php:707 mod/settings.php:743 +msgid "Add application" +msgstr "" + +#: mod/settings.php:685 mod/settings.php:711 +msgid "Consumer Key" +msgstr "" + +#: mod/settings.php:686 mod/settings.php:712 +msgid "Consumer Secret" +msgstr "" + +#: mod/settings.php:687 mod/settings.php:713 +msgid "Redirect" +msgstr "" + +#: mod/settings.php:688 mod/settings.php:714 +msgid "Icon url" +msgstr "Icon URL" + +#: mod/settings.php:699 +msgid "You can't edit this application." +msgstr "" + +#: mod/settings.php:742 +msgid "Connected Apps" +msgstr "" + +#: mod/settings.php:746 +msgid "Client key starts with" +msgstr "" + +#: mod/settings.php:747 +msgid "No name" +msgstr "" + +#: mod/settings.php:748 +msgid "Remove authorization" +msgstr "" + +#: mod/settings.php:760 +msgid "No Plugin settings configured" +msgstr "" + +#: mod/settings.php:769 +msgid "Plugin Settings" +msgstr "" + +#: mod/settings.php:791 +msgid "Additional Features" +msgstr "" + +#: mod/settings.php:801 mod/settings.php:805 +msgid "General Social Media Settings" +msgstr "" + +#: mod/settings.php:811 +msgid "Disable intelligent shortening" +msgstr "" + +#: mod/settings.php:813 +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 "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." + +#: mod/settings.php:819 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "" + +#: mod/settings.php:821 +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:827 +msgid "Default group for OStatus contacts" +msgstr "" + +#: mod/settings.php:835 +msgid "Your legacy GNU Social account" +msgstr "" + +#: mod/settings.php:837 +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:840 +msgid "Repair OStatus subscriptions" +msgstr "" + +#: mod/settings.php:849 mod/settings.php:850 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "" + +#: mod/settings.php:849 mod/settings.php:850 +msgid "enabled" +msgstr "" + +#: mod/settings.php:849 mod/settings.php:850 +msgid "disabled" +msgstr "" + +#: mod/settings.php:850 +msgid "GNU Social (OStatus)" +msgstr "" + +#: mod/settings.php:884 +msgid "Email access is disabled on this site." +msgstr "" + +#: mod/settings.php:896 +msgid "Email/Mailbox Setup" +msgstr "" + +#: mod/settings.php:897 +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:898 +msgid "Last successful email check:" +msgstr "" + +#: mod/settings.php:900 +msgid "IMAP server name:" +msgstr "" + +#: mod/settings.php:901 +msgid "IMAP port:" +msgstr "" + +#: mod/settings.php:902 +msgid "Security:" +msgstr "" + +#: mod/settings.php:902 mod/settings.php:907 +msgid "None" +msgstr "" + +#: mod/settings.php:903 +msgid "Email login name:" +msgstr "" + +#: mod/settings.php:904 +msgid "Email password:" +msgstr "" + +#: mod/settings.php:905 +msgid "Reply-to address:" +msgstr "" + +#: mod/settings.php:906 +msgid "Send public posts to all email contacts:" +msgstr "" + +#: mod/settings.php:907 +msgid "Action after import:" +msgstr "" + +#: mod/settings.php:907 +msgid "Move to folder" +msgstr "Move to folder" + +#: mod/settings.php:908 +msgid "Move to folder:" +msgstr "Move to folder:" + +#: mod/settings.php:1004 +msgid "Display Settings" +msgstr "" + +#: mod/settings.php:1010 mod/settings.php:1033 +msgid "Display Theme:" +msgstr "" + +#: mod/settings.php:1011 +msgid "Mobile Theme:" +msgstr "" + +#: mod/settings.php:1012 +msgid "Suppress warning of insecure networks" +msgstr "" + +#: mod/settings.php:1012 +msgid "" +"Should the system suppress the warning that the current group contains " +"members of networks that can't receive non public postings." +msgstr "" + +#: mod/settings.php:1013 +msgid "Update browser every xx seconds" +msgstr "Update browser every so many seconds:" + +#: mod/settings.php:1013 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "" + +#: mod/settings.php:1014 +msgid "Number of items to display per page:" +msgstr "" + +#: mod/settings.php:1014 mod/settings.php:1015 +msgid "Maximum of 100 items" +msgstr "" + +#: mod/settings.php:1015 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "" + +#: mod/settings.php:1016 +msgid "Don't show emoticons" +msgstr "" + +#: mod/settings.php:1017 +msgid "Calendar" +msgstr "" + +#: mod/settings.php:1018 +msgid "Beginning of week:" +msgstr "" + +#: mod/settings.php:1019 +msgid "Don't show notices" +msgstr "" + +#: mod/settings.php:1020 +msgid "Infinite scroll" +msgstr "" + +#: mod/settings.php:1021 +msgid "Automatic updates only at the top of the network page" +msgstr "" + +#: mod/settings.php:1022 +msgid "Bandwith Saver Mode" +msgstr "" + +#: mod/settings.php:1022 +msgid "" +"When enabled, embedded content is not displayed on automatic updates, they " +"only show on page reload." +msgstr "" + +#: mod/settings.php:1024 +msgid "General Theme Settings" +msgstr "Themes" + +#: mod/settings.php:1025 +msgid "Custom Theme Settings" +msgstr "Theme customisation" + +#: mod/settings.php:1026 +msgid "Content Settings" +msgstr "Content/Layout" + +#: mod/settings.php:1027 view/theme/duepuntozero/config.php:66 +#: view/theme/frio/config.php:69 view/theme/quattro/config.php:72 +#: view/theme/vier/config.php:115 +msgid "Theme settings" +msgstr "" + +#: mod/settings.php:1111 +msgid "Account Types" +msgstr "Account types:" + +#: mod/settings.php:1112 +msgid "Personal Page Subtypes" +msgstr "Personal Page subtypes" + +#: mod/settings.php:1113 +msgid "Community Forum Subtypes" +msgstr "" + +#: mod/settings.php:1120 +msgid "Personal Page" +msgstr "Personal Page" + +#: mod/settings.php:1121 +msgid "This account is a regular personal profile" +msgstr "Regular personal profile" + +#: mod/settings.php:1124 +msgid "Organisation Page" +msgstr "Organisation Page" + +#: mod/settings.php:1125 +msgid "This account is a profile for an organisation" +msgstr "Profile for an organisation" + +#: mod/settings.php:1128 +msgid "News Page" +msgstr "News Page" + +#: mod/settings.php:1129 +msgid "This account is a news account/reflector" +msgstr "News reflector" + +#: mod/settings.php:1132 +msgid "Community Forum" +msgstr "Community Forum" + +#: mod/settings.php:1133 +msgid "" +"This account is a community forum where people can discuss with each other" +msgstr "Discussion forum for community" + +#: mod/settings.php:1136 +msgid "Normal Account Page" +msgstr "Standard" + +#: mod/settings.php:1137 +msgid "This account is a normal personal profile" +msgstr "Regular personal profile" + +#: mod/settings.php:1140 +msgid "Soapbox Page" +msgstr "Soapbox" + +#: mod/settings.php:1141 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Automatically approves contact requests as followers" + +#: mod/settings.php:1144 +msgid "Public Forum" +msgstr "" + +#: mod/settings.php:1145 +msgid "Automatically approve all contact requests" +msgstr "" + +#: mod/settings.php:1148 +msgid "Automatic Friend Page" +msgstr "Popularity" + +#: mod/settings.php:1149 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Automatically approves contact requests as friends" + +#: mod/settings.php:1152 +msgid "Private Forum [Experimental]" +msgstr "" + +#: mod/settings.php:1153 +msgid "Private forum - approved members only" +msgstr "" + +#: mod/settings.php:1164 +msgid "OpenID:" +msgstr "" + +#: mod/settings.php:1164 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "" + +#: mod/settings.php:1172 +msgid "Publish your default profile in your local site directory?" +msgstr "Publish default profile in local site directory?" + +#: mod/settings.php:1172 +msgid "Your profile may be visible in public." +msgstr "Your local directory may be publicly visible" + +#: mod/settings.php:1178 +msgid "Publish your default profile in the global social directory?" +msgstr "Publish default profile in global directory?" + +#: mod/settings.php:1185 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Hide my contact list from others?" + +#: mod/settings.php:1189 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "Posting public messages to Diaspora and other networks will not be possible if enabled" + +#: mod/settings.php:1194 +msgid "Allow friends to post to your profile page?" +msgstr "Allow friends to post to my wall?" + +#: mod/settings.php:1199 +msgid "Allow friends to tag your posts?" +msgstr "Allow friends to tag my post?" + +#: mod/settings.php:1204 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "" + +#: mod/settings.php:1209 +msgid "Permit unknown people to send you private mail?" +msgstr "Allow unknown people to send me private messages?" + +#: mod/settings.php:1217 +msgid "Profile is not published." +msgstr "" + +#: mod/settings.php:1225 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "My identity address: '%s' or '%s'" + +#: mod/settings.php:1232 +msgid "Automatically expire posts after this many days:" +msgstr "Automatically expire posts after this many days:" + +#: mod/settings.php:1232 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Posts will not expire if empty; expired posts will be deleted" + +#: mod/settings.php:1233 +msgid "Advanced expiration settings" +msgstr "Advanced expiration settings" + +#: mod/settings.php:1234 +msgid "Advanced Expiration" +msgstr "Advanced expiration" + +#: mod/settings.php:1235 +msgid "Expire posts:" +msgstr "" + +#: mod/settings.php:1236 +msgid "Expire personal notes:" +msgstr "" + +#: mod/settings.php:1237 +msgid "Expire starred posts:" +msgstr "" + +#: mod/settings.php:1238 +msgid "Expire photos:" +msgstr "" + +#: mod/settings.php:1239 +msgid "Only expire posts by others:" +msgstr "" + +#: mod/settings.php:1270 +msgid "Account Settings" +msgstr "" + +#: mod/settings.php:1278 +msgid "Password Settings" +msgstr "Password change" + +#: mod/settings.php:1280 +msgid "Leave password fields blank unless changing" +msgstr "" + +#: mod/settings.php:1281 +msgid "Current Password:" +msgstr "Current password:" + +#: mod/settings.php:1281 mod/settings.php:1282 +msgid "Your current password to confirm the changes" +msgstr "Current password to confirm change" + +#: mod/settings.php:1282 +msgid "Password:" +msgstr "" + +#: mod/settings.php:1286 +msgid "Basic Settings" +msgstr "Basic information" + +#: mod/settings.php:1288 +msgid "Email Address:" +msgstr "Email address:" + +#: mod/settings.php:1289 +msgid "Your Timezone:" +msgstr "Time zone:" + +#: mod/settings.php:1290 +msgid "Your Language:" +msgstr "Language:" + +#: mod/settings.php:1290 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "" + +#: mod/settings.php:1291 +msgid "Default Post Location:" +msgstr "Posting location:" + +#: mod/settings.php:1292 +msgid "Use Browser Location:" +msgstr "Use browser location:" + +#: mod/settings.php:1295 +msgid "Security and Privacy Settings" +msgstr "Security and privacy" + +#: mod/settings.php:1297 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximum friend requests per day:" + +#: mod/settings.php:1297 mod/settings.php:1327 +msgid "(to prevent spam abuse)" +msgstr "May prevent spam or abuse registrations" + +#: mod/settings.php:1298 +msgid "Default Post Permissions" +msgstr "Default post permissions" + +#: mod/settings.php:1299 +msgid "(click to open/close)" +msgstr "" + +#: mod/settings.php:1310 +msgid "Default Private Post" +msgstr "" + +#: mod/settings.php:1311 +msgid "Default Public Post" +msgstr "" + +#: mod/settings.php:1315 +msgid "Default Permissions for New Posts" +msgstr "" + +#: mod/settings.php:1327 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum private messages per day from unknown people:" + +#: mod/settings.php:1330 +msgid "Notification Settings" +msgstr "Notification" + +#: mod/settings.php:1331 +msgid "By default post a status message when:" +msgstr "By default post a status message when:" + +#: mod/settings.php:1332 +msgid "accepting a friend request" +msgstr "accepting friend requests" + +#: mod/settings.php:1333 +msgid "joining a forum/community" +msgstr "joining forums or communities" + +#: mod/settings.php:1334 +msgid "making an interesting profile change" +msgstr "" + +#: mod/settings.php:1335 +msgid "Send a notification email when:" +msgstr "Send notification email when:" + +#: mod/settings.php:1336 +msgid "You receive an introduction" +msgstr "Receiving an introduction" + +#: mod/settings.php:1337 +msgid "Your introductions are confirmed" +msgstr "My introductions are confirmed" + +#: mod/settings.php:1338 +msgid "Someone writes on your profile wall" +msgstr "Someone writes on my wall" + +#: mod/settings.php:1339 +msgid "Someone writes a followup comment" +msgstr "A follow up comment is posted" + +#: mod/settings.php:1340 +msgid "You receive a private message" +msgstr "receiving a private message" + +#: mod/settings.php:1341 +msgid "You receive a friend suggestion" +msgstr "Receiving a friend suggestion" + +#: mod/settings.php:1342 +msgid "You are tagged in a post" +msgstr "Tagged in a post" + +#: mod/settings.php:1343 +msgid "You are poked/prodded/etc. in a post" +msgstr "Poked in a post" + +#: mod/settings.php:1345 +msgid "Activate desktop notifications" +msgstr "Activate desktop notifications" + +#: mod/settings.php:1345 +msgid "Show desktop popup on new notifications" +msgstr "Show desktop pop-up on new notifications" + +#: mod/settings.php:1347 +msgid "Text-only notification emails" +msgstr "Text-only notification emails" + +#: mod/settings.php:1349 +msgid "Send text only notification emails, without the html part" +msgstr "Receive text only emails without HTML " + +#: mod/settings.php:1351 +msgid "Advanced Account/Page Type Settings" +msgstr "Advanced account types" + +#: mod/settings.php:1352 +msgid "Change the behaviour of this account for special situations" +msgstr "Change behaviour of this account for special situations" + +#: mod/settings.php:1355 +msgid "Relocate" +msgstr "Recent relocation" + +#: mod/settings.php:1356 +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 "If you have moved this profile from another server and some of your contacts don't receive your updates:" + +#: mod/settings.php:1357 +msgid "Resend relocate message to contacts" +msgstr "" + +#: object/Item.php:356 msgid "via" msgstr "" -#: view/theme/duepuntozero/config.php:44 +#: view/theme/duepuntozero/config.php:47 msgid "greenzero" msgstr "" -#: view/theme/duepuntozero/config.php:45 +#: view/theme/duepuntozero/config.php:48 msgid "purplezero" msgstr "" -#: view/theme/duepuntozero/config.php:46 +#: view/theme/duepuntozero/config.php:49 msgid "easterbunny" msgstr "" -#: view/theme/duepuntozero/config.php:47 +#: view/theme/duepuntozero/config.php:50 msgid "darkzero" msgstr "" -#: view/theme/duepuntozero/config.php:48 +#: view/theme/duepuntozero/config.php:51 msgid "comix" msgstr "" -#: view/theme/duepuntozero/config.php:49 +#: view/theme/duepuntozero/config.php:52 msgid "slackr" msgstr "" -#: view/theme/duepuntozero/config.php:64 +#: view/theme/duepuntozero/config.php:67 msgid "Variations" msgstr "" -#: view/theme/frio/config.php:47 -msgid "Default" -msgstr "" - -#: view/theme/frio/config.php:59 -msgid "Note: " -msgstr "" - -#: view/theme/frio/config.php:59 -msgid "Check image permissions if all users are allowed to visit the image" -msgstr "" - -#: view/theme/frio/config.php:67 -msgid "Select scheme" -msgstr "" - -#: view/theme/frio/config.php:68 -msgid "Navigation bar background color" -msgstr "" - -#: view/theme/frio/config.php:69 -msgid "Navigation bar icon color " -msgstr "" - -#: view/theme/frio/config.php:70 -msgid "Link color" -msgstr "" - -#: view/theme/frio/config.php:71 -msgid "Set the background color" -msgstr "" - -#: view/theme/frio/config.php:72 -msgid "Content background transparency" -msgstr "" - -#: view/theme/frio/config.php:73 -msgid "Set the background image" -msgstr "" - #: view/theme/frio/php/Image.php:23 msgid "Repeat the image" msgstr "" @@ -8815,127 +8778,167 @@ msgstr "" msgid "Resize to best fit and retain aspect ratio." msgstr "" -#: view/theme/frio/theme.php:226 +#: view/theme/frio/config.php:50 +msgid "Default" +msgstr "" + +#: view/theme/frio/config.php:62 +msgid "Note: " +msgstr "" + +#: view/theme/frio/config.php:62 +msgid "Check image permissions if all users are allowed to visit the image" +msgstr "" + +#: view/theme/frio/config.php:70 +msgid "Select scheme" +msgstr "" + +#: view/theme/frio/config.php:71 +msgid "Navigation bar background color" +msgstr "Navigation bar background colour" + +#: view/theme/frio/config.php:72 +msgid "Navigation bar icon color " +msgstr "Navigation bar icon colour " + +#: view/theme/frio/config.php:73 +msgid "Link color" +msgstr "Link colour" + +#: view/theme/frio/config.php:74 +msgid "Set the background color" +msgstr "Set the background colour" + +#: view/theme/frio/config.php:75 +msgid "Content background transparency" +msgstr "" + +#: view/theme/frio/config.php:76 +msgid "Set the background image" +msgstr "" + +#: view/theme/frio/theme.php:228 msgid "Guest" msgstr "" -#: view/theme/frio/theme.php:232 +#: view/theme/frio/theme.php:234 msgid "Visitor" msgstr "" -#: view/theme/quattro/config.php:70 +#: view/theme/quattro/config.php:73 msgid "Alignment" msgstr "" -#: view/theme/quattro/config.php:70 +#: view/theme/quattro/config.php:73 msgid "Left" msgstr "" -#: view/theme/quattro/config.php:70 +#: view/theme/quattro/config.php:73 msgid "Center" -msgstr "" +msgstr "Centre" -#: view/theme/quattro/config.php:71 +#: view/theme/quattro/config.php:74 msgid "Color scheme" -msgstr "" +msgstr "Colour scheme" -#: view/theme/quattro/config.php:72 +#: view/theme/quattro/config.php:75 msgid "Posts font size" msgstr "" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:76 msgid "Textareas font size" msgstr "" -#: view/theme/vier/config.php:69 +#: view/theme/vier/config.php:70 msgid "Comma separated list of helper forums" msgstr "" -#: view/theme/vier/config.php:115 +#: view/theme/vier/config.php:116 msgid "Set style" msgstr "" -#: view/theme/vier/config.php:116 +#: view/theme/vier/config.php:117 msgid "Community Pages" msgstr "" -#: view/theme/vier/config.php:117 view/theme/vier/theme.php:149 +#: view/theme/vier/config.php:118 view/theme/vier/theme.php:151 msgid "Community Profiles" msgstr "" -#: view/theme/vier/config.php:118 +#: view/theme/vier/config.php:119 msgid "Help or @NewHere ?" msgstr "" -#: view/theme/vier/config.php:119 view/theme/vier/theme.php:390 +#: view/theme/vier/config.php:120 view/theme/vier/theme.php:392 msgid "Connect Services" msgstr "" -#: view/theme/vier/config.php:120 view/theme/vier/theme.php:197 +#: view/theme/vier/config.php:121 view/theme/vier/theme.php:199 msgid "Find Friends" msgstr "" -#: view/theme/vier/config.php:121 view/theme/vier/theme.php:179 +#: view/theme/vier/config.php:122 view/theme/vier/theme.php:181 msgid "Last users" msgstr "" -#: view/theme/vier/theme.php:198 +#: view/theme/vier/theme.php:200 msgid "Local Directory" msgstr "" -#: view/theme/vier/theme.php:290 +#: view/theme/vier/theme.php:292 msgid "Quick Start" msgstr "" -#: index.php:433 -msgid "toggle mobile" -msgstr "" - -#: boot.php:999 +#: src/App.php:505 msgid "Delete this item?" msgstr "Delete this item?" -#: boot.php:1001 +#: src/App.php:507 msgid "show fewer" msgstr "Show fewer." -#: boot.php:1729 +#: index.php:436 +msgid "toggle mobile" +msgstr "" + +#: boot.php:726 #, php-format msgid "Update %s failed. See error logs." msgstr "Update %s failed. See error logs." -#: boot.php:1843 +#: boot.php:838 msgid "Create a New Account" msgstr "Create a new account" -#: boot.php:1871 +#: boot.php:866 msgid "Password: " msgstr "Password: " -#: boot.php:1872 +#: boot.php:867 msgid "Remember me" msgstr "Remember me" -#: boot.php:1875 +#: boot.php:870 msgid "Or login using OpenID: " msgstr "Or login with OpenID: " -#: boot.php:1881 +#: boot.php:876 msgid "Forgot your password?" msgstr "Forgot your password?" -#: boot.php:1884 +#: boot.php:879 msgid "Website Terms of Service" msgstr "Website Terms of Service" -#: boot.php:1885 +#: boot.php:880 msgid "terms of service" msgstr "Terms of service" -#: boot.php:1887 +#: boot.php:882 msgid "Website Privacy Policy" msgstr "" -#: boot.php:1888 +#: boot.php:883 msgid "privacy policy" msgstr "Privacy policy" From 29560a3d06f2041b6de2457c277f568390dce2f7 Mon Sep 17 00:00:00 2001 From: Andy H3 Date: Mon, 29 May 2017 15:36:12 +0700 Subject: [PATCH 054/125] Update strings.php --- view/lang/en-GB/strings.php | 2420 +++++++++++++++++------------------ 1 file changed, 1210 insertions(+), 1210 deletions(-) diff --git a/view/lang/en-GB/strings.php b/view/lang/en-GB/strings.php index 43a6db6dd7..eb83b85f58 100644 --- a/view/lang/en-GB/strings.php +++ b/view/lang/en-GB/strings.php @@ -5,220 +5,6 @@ function string_plural_select_en_GB($n){ return ($n != 1);; }} ; -$a->strings["Forums"] = "Forums"; -$a->strings["External link to forum"] = "External link to forum"; -$a->strings["show more"] = "Show more..."; -$a->strings["System"] = "System"; -$a->strings["Network"] = "Network"; -$a->strings["Personal"] = "Personal"; -$a->strings["Home"] = "Home"; -$a->strings["Introductions"] = "Introductions"; -$a->strings["%s commented on %s's post"] = "%s commented on %s's post"; -$a->strings["%s created a new post"] = "%s posted something new"; -$a->strings["%s liked %s's post"] = "%s liked %s's post"; -$a->strings["%s disliked %s's post"] = "%s disliked %s's post"; -$a->strings["%s is attending %s's event"] = "%s is going to %s's event"; -$a->strings["%s is not attending %s's event"] = "%s is not going to %s's event"; -$a->strings["%s may attend %s's event"] = "%s may go to %s's event"; -$a->strings["%s is now friends with %s"] = "%s is now friends with %s"; -$a->strings["Friend Suggestion"] = "Friend suggestion"; -$a->strings["Friend/Connect Request"] = "Friend/Contact request"; -$a->strings["New Follower"] = "New follower"; -$a->strings["Wall Photos"] = "Wall photos"; -$a->strings["(no subject)"] = "(no subject)"; -$a->strings["noreply"] = "noreply"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s likes %2\$s's %3\$s"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s doesn't like %2\$s's %3\$s"; -$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s is going to %2\$s's %3\$s"; -$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s is not going to %2\$s's %3\$s"; -$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s may go to %2\$s's %3\$s"; -$a->strings["photo"] = "photo"; -$a->strings["status"] = "status"; -$a->strings["event"] = "event"; -$a->strings["[no subject]"] = "[no subject]"; -$a->strings["Nothing new here"] = "Nothing new here"; -$a->strings["Clear notifications"] = "Clear notifications"; -$a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, content"; -$a->strings["Logout"] = "Logout"; -$a->strings["End this session"] = "End this session"; -$a->strings["Status"] = "Status"; -$a->strings["Your posts and conversations"] = "My posts and conversations"; -$a->strings["Profile"] = "Profile"; -$a->strings["Your profile page"] = "My profile page"; -$a->strings["Photos"] = "Photos"; -$a->strings["Your photos"] = "My photos"; -$a->strings["Videos"] = "Videos"; -$a->strings["Your videos"] = "My videos"; -$a->strings["Events"] = "Events"; -$a->strings["Your events"] = "My events"; -$a->strings["Personal notes"] = "Personal notes"; -$a->strings["Your personal notes"] = "My personal notes"; -$a->strings["Login"] = "Login"; -$a->strings["Sign in"] = "Sign in"; -$a->strings["Home Page"] = "Home page"; -$a->strings["Register"] = "Register"; -$a->strings["Create an account"] = "Create an account"; -$a->strings["Help"] = "Help"; -$a->strings["Help and documentation"] = "Help and documentation"; -$a->strings["Apps"] = "Apps"; -$a->strings["Addon applications, utilities, games"] = "Addon applications, utilities, games"; -$a->strings["Search"] = "Search"; -$a->strings["Search site content"] = "Search site content"; -$a->strings["Full Text"] = "Full text"; -$a->strings["Tags"] = "Tags"; -$a->strings["Contacts"] = "Contacts"; -$a->strings["Community"] = "Community"; -$a->strings["Conversations on this site"] = "Public conversations on this site"; -$a->strings["Conversations on the network"] = "Conversations on the network"; -$a->strings["Events and Calendar"] = "Events and calendar"; -$a->strings["Directory"] = "Directory"; -$a->strings["People directory"] = "People directory"; -$a->strings["Information"] = "Information"; -$a->strings["Information about this friendica instance"] = "Information about this Friendica instance"; -$a->strings["Conversations from your friends"] = "My friends' conversations"; -$a->strings["Network Reset"] = "Network reset"; -$a->strings["Load Network page with no filters"] = "Load network page without filters"; -$a->strings["Friend Requests"] = "Friend requests"; -$a->strings["Notifications"] = "Notifications"; -$a->strings["See all notifications"] = "See all notifications"; -$a->strings["Mark as seen"] = "Mark as seen"; -$a->strings["Mark all system notifications seen"] = "Mark all system notifications seen"; -$a->strings["Messages"] = "Messages"; -$a->strings["Private mail"] = "Private messages"; -$a->strings["Inbox"] = "Inbox"; -$a->strings["Outbox"] = "Outbox"; -$a->strings["New Message"] = "New Message"; -$a->strings["Manage"] = "Manage"; -$a->strings["Manage other pages"] = "Manage other pages"; -$a->strings["Delegations"] = "Delegations"; -$a->strings["Delegate Page Management"] = "Delegate page management"; -$a->strings["Settings"] = "Settings"; -$a->strings["Account settings"] = "Account settings"; -$a->strings["Profiles"] = "Profiles"; -$a->strings["Manage/Edit Profiles"] = "Manage/Edit profiles"; -$a->strings["Manage/edit friends and contacts"] = "Manage/Edit friends and contacts"; -$a->strings["Admin"] = "Admin"; -$a->strings["Site setup and configuration"] = "Site setup and configuration"; -$a->strings["Navigation"] = "Navigation"; -$a->strings["Site map"] = "Site map"; -$a->strings["Click here to upgrade."] = "Click here to upgrade."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "This action exceeds the limits set by your subscription plan."; -$a->strings["This action is not available under your subscription plan."] = "This action is not available under your subscription plan."; -$a->strings["Male"] = "Male"; -$a->strings["Female"] = "Female"; -$a->strings["Currently Male"] = "Currently Male"; -$a->strings["Currently Female"] = "Currently Female"; -$a->strings["Mostly Male"] = "Mostly Male"; -$a->strings["Mostly Female"] = "Mostly Female"; -$a->strings["Transgender"] = "Transgender"; -$a->strings["Intersex"] = "Intersex"; -$a->strings["Transsexual"] = "Transsexual"; -$a->strings["Hermaphrodite"] = "Hermaphrodite"; -$a->strings["Neuter"] = "Neuter"; -$a->strings["Non-specific"] = "Non-specific"; -$a->strings["Other"] = "Other"; -$a->strings["Undecided"] = array( - 0 => "Undecided", - 1 => "Undecided", -); -$a->strings["Males"] = "Males"; -$a->strings["Females"] = "Females"; -$a->strings["Gay"] = "Gay"; -$a->strings["Lesbian"] = "Lesbian"; -$a->strings["No Preference"] = "No Preference"; -$a->strings["Bisexual"] = "Bisexual"; -$a->strings["Autosexual"] = "Auto-sexual"; -$a->strings["Abstinent"] = "Abstinent"; -$a->strings["Virgin"] = "Virgin"; -$a->strings["Deviant"] = "Deviant"; -$a->strings["Fetish"] = "Fetish"; -$a->strings["Oodles"] = "Oodles"; -$a->strings["Nonsexual"] = "Asexual"; -$a->strings["Single"] = "Single"; -$a->strings["Lonely"] = "Lonely"; -$a->strings["Available"] = "Available"; -$a->strings["Unavailable"] = "Unavailable"; -$a->strings["Has crush"] = "Having a crush"; -$a->strings["Infatuated"] = "Infatuated"; -$a->strings["Dating"] = "Dating"; -$a->strings["Unfaithful"] = "Unfaithful"; -$a->strings["Sex Addict"] = "Sex addict"; -$a->strings["Friends"] = "Friends"; -$a->strings["Friends/Benefits"] = "Friends with benefits"; -$a->strings["Casual"] = "Casual"; -$a->strings["Engaged"] = "Engaged"; -$a->strings["Married"] = "Married"; -$a->strings["Imaginarily married"] = "Imaginarily married"; -$a->strings["Partners"] = "Partners"; -$a->strings["Cohabiting"] = "Cohabiting"; -$a->strings["Common law"] = "Common law spouse"; -$a->strings["Happy"] = "Happy"; -$a->strings["Not looking"] = "Not looking"; -$a->strings["Swinger"] = "Swinger"; -$a->strings["Betrayed"] = "Betrayed"; -$a->strings["Separated"] = "Separated"; -$a->strings["Unstable"] = "Unstable"; -$a->strings["Divorced"] = "Divorced"; -$a->strings["Imaginarily divorced"] = "Imaginarily divorced"; -$a->strings["Widowed"] = "Widowed"; -$a->strings["Uncertain"] = "Uncertain"; -$a->strings["It's complicated"] = "It's complicated"; -$a->strings["Don't care"] = "Don't care"; -$a->strings["Ask me"] = "Ask me"; -$a->strings["Welcome "] = "Welcome "; -$a->strings["Please upload a profile photo."] = "Please upload a profile photo."; -$a->strings["Welcome back "] = "Welcome back "; -$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "The form security token was incorrect. This probably happened because the form has not been submitted within 3 hours."; -$a->strings["Error decoding account file"] = "Error decoding account file"; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Error! No version data in file! Is this a Friendica account file?"; -$a->strings["Error! Cannot check nickname"] = "Error! Cannot check nickname."; -$a->strings["User '%s' already exists on this server!"] = "User '%s' already exists on this server!"; -$a->strings["User creation error"] = "User creation error"; -$a->strings["User profile creation error"] = "User profile creation error"; -$a->strings["%d contact not imported"] = array( - 0 => "%d contact not imported", - 1 => "%d contacts not imported", -); -$a->strings["Done. You can now login with your username and password"] = "Done. You can now login with your username and password"; -$a->strings["View Profile"] = "View profile"; -$a->strings["Connect/Follow"] = "Connect/Follow"; -$a->strings["View Status"] = "View status"; -$a->strings["View Photos"] = "View photos"; -$a->strings["Network Posts"] = "Network posts"; -$a->strings["View Contact"] = "View contact"; -$a->strings["Drop Contact"] = "Drop contact"; -$a->strings["Send PM"] = "Send PM"; -$a->strings["Poke"] = "Poke"; -$a->strings["Organisation"] = "Organisation"; -$a->strings["News"] = "News"; -$a->strings["Forum"] = "Forum"; -$a->strings["Post to Email"] = "Post to email"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Connectors are disabled since \"%s\" is enabled."; -$a->strings["Hide your profile details from unknown viewers?"] = "Hide profile details from unknown viewers?"; -$a->strings["Visible to everybody"] = "Visible to everybody"; -$a->strings["show"] = "show"; -$a->strings["don't show"] = "don't show"; -$a->strings["CC: email addresses"] = "CC: email addresses"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Example: bob@example.com, mary@example.com"; -$a->strings["Permissions"] = "Permissions"; -$a->strings["Close"] = "Close"; -$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Daily posting limit of %d posts reached. This post was rejected."; -$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Weekly posting limit of %d posts reached. This post was rejected."; -$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Monthly posting limit of %d posts reached. This post was rejected."; -$a->strings["Logged out."] = "Logged out."; -$a->strings["Login failed."] = "Login failed."; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."; -$a->strings["The error message was:"] = "The error message was:"; -$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; -$a->strings["Starts:"] = "Starts:"; -$a->strings["Finishes:"] = "Finishes:"; -$a->strings["Location:"] = "Location:"; -$a->strings["Image/photo"] = "Image/Photo"; -$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; -$a->strings["$1 wrote:"] = "$1 wrote:"; -$a->strings["Encrypted content"] = "Encrypted content"; -$a->strings["Invalid source protocol"] = "Invalid source protocol"; -$a->strings["Invalid link protocol"] = "Invalid link protocol"; $a->strings["Unknown | Not categorised"] = "Unknown | Not categorised"; $a->strings["Block immediately"] = "Block immediately"; $a->strings["Shady, spammer, self-marketer"] = "Shady, spammer, self-marketer"; @@ -248,6 +34,103 @@ $a->strings["Diaspora Connector"] = "Diaspora connector"; $a->strings["GNU Social Connector"] = "GNU Social connector"; $a->strings["pnut"] = "Pnut"; $a->strings["App.net"] = "App.net"; +$a->strings["General Features"] = "General"; +$a->strings["Multiple Profiles"] = "Multiple profiles"; +$a->strings["Ability to create multiple profiles"] = "Ability to create multiple profiles"; +$a->strings["Photo Location"] = "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."] = "Photo metadata is normally removed. This extracts the location (if present) prior to removing metadata and links it to a map."; +$a->strings["Export Public Calendar"] = "Export public calendar"; +$a->strings["Ability for visitors to download the public calendar"] = "Ability for visitors to download the public calendar"; +$a->strings["Post Composition Features"] = "Post composition"; +$a->strings["Post Preview"] = "Post preview"; +$a->strings["Allow previewing posts and comments before publishing them"] = "Allow previewing posts and comments before publishing them"; +$a->strings["Auto-mention Forums"] = "Auto-mention forums"; +$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Add/Remove mention when a forum page is selected or deselected in the ACL window."; +$a->strings["Network Sidebar Widgets"] = "Network sidebars"; +$a->strings["Search by Date"] = "Search by date"; +$a->strings["Ability to select posts by date ranges"] = "Ability to select posts by date ranges"; +$a->strings["List Forums"] = "List forums"; +$a->strings["Enable widget to display the forums your are connected with"] = "Enable widget to display the forums your are connected with"; +$a->strings["Group Filter"] = "Group filter"; +$a->strings["Enable widget to display Network posts only from selected group"] = "Enable widget to display network posts only from selected group"; +$a->strings["Network Filter"] = "Network filter"; +$a->strings["Enable widget to display Network posts only from selected network"] = "Enable widget to display network posts only from selected network"; +$a->strings["Saved Searches"] = "Saved searches"; +$a->strings["Save search terms for re-use"] = "Save search terms for re-use"; +$a->strings["Network Tabs"] = "Network tabs"; +$a->strings["Network Personal Tab"] = "Network personal tab"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Enable tab to display only network posts that you've interacted with"; +$a->strings["Network New Tab"] = "Network new tab"; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Enable tab to display only new network posts (last 12 hours)"; +$a->strings["Network Shared Links Tab"] = "Network shared links tab"; +$a->strings["Enable tab to display only Network posts with links in them"] = "Enable tab to display only network posts with links in them"; +$a->strings["Post/Comment Tools"] = "Post/Comment tools"; +$a->strings["Multiple Deletion"] = "Multiple deletion"; +$a->strings["Select and delete multiple posts/comments at once"] = "Select and delete multiple posts/comments at once"; +$a->strings["Edit Sent Posts"] = "Edit sent posts"; +$a->strings["Edit and correct posts and comments after sending"] = "Ability to editing posts and comments after sending"; +$a->strings["Tagging"] = "Tagging"; +$a->strings["Ability to tag existing posts"] = "Ability to tag existing posts"; +$a->strings["Post Categories"] = "Post categories"; +$a->strings["Add categories to your posts"] = "Add categories to your posts"; +$a->strings["Saved Folders"] = "Saved Folders"; +$a->strings["Ability to file posts under folders"] = "Ability to file posts under folders"; +$a->strings["Dislike Posts"] = "Dislike posts"; +$a->strings["Ability to dislike posts/comments"] = "Ability to dislike posts/comments"; +$a->strings["Star Posts"] = "Star posts"; +$a->strings["Ability to mark special posts with a star indicator"] = "Ability to highlight posts with a star"; +$a->strings["Mute Post Notifications"] = "Mute post notifications"; +$a->strings["Ability to mute notifications for a thread"] = "Ability to mute notifications for a thread"; +$a->strings["Advanced Profile Settings"] = "Advanced profiles"; +$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Show visitors of public community forums at the advanced profile page"; +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "A deleted group with this name has been revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."; +$a->strings["Default privacy group for new contacts"] = "Default privacy group for new contacts"; +$a->strings["Everybody"] = "Everybody"; +$a->strings["edit"] = "edit"; +$a->strings["Groups"] = "Groups"; +$a->strings["Edit groups"] = "Edit groups"; +$a->strings["Edit group"] = "Edit group"; +$a->strings["Create a new group"] = "Create new group"; +$a->strings["Group Name: "] = "Group name: "; +$a->strings["Contacts not in any group"] = "Contacts not in any group"; +$a->strings["add"] = "add"; +$a->strings["Forums"] = "Forums"; +$a->strings["External link to forum"] = "External link to forum"; +$a->strings["show more"] = "Show more..."; +$a->strings["System"] = "System"; +$a->strings["Network"] = "Network"; +$a->strings["Personal"] = "Personal"; +$a->strings["Home"] = "Home"; +$a->strings["Introductions"] = "Introductions"; +$a->strings["%s commented on %s's post"] = "%s commented on %s's post"; +$a->strings["%s created a new post"] = "%s posted something new"; +$a->strings["%s liked %s's post"] = "%s liked %s's post"; +$a->strings["%s disliked %s's post"] = "%s disliked %s's post"; +$a->strings["%s is attending %s's event"] = "%s is going to %s's event"; +$a->strings["%s is not attending %s's event"] = "%s is not going to %s's event"; +$a->strings["%s may attend %s's event"] = "%s may go to %s's event"; +$a->strings["%s is now friends with %s"] = "%s is now friends with %s"; +$a->strings["Friend Suggestion"] = "Friend suggestion"; +$a->strings["Friend/Connect Request"] = "Friend/Contact request"; +$a->strings["New Follower"] = "New follower"; +$a->strings["Post to Email"] = "Post to email"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Connectors are disabled since \"%s\" is enabled."; +$a->strings["Hide your profile details from unknown viewers?"] = "Hide profile details from unknown viewers?"; +$a->strings["Visible to everybody"] = "Visible to everybody"; +$a->strings["show"] = "show"; +$a->strings["don't show"] = "don't show"; +$a->strings["CC: email addresses"] = "CC: email addresses"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Example: bob@example.com, mary@example.com"; +$a->strings["Permissions"] = "Permissions"; +$a->strings["Close"] = "Close"; +$a->strings["Logged out."] = "Logged out."; +$a->strings["Login failed."] = "Login failed."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."; +$a->strings["The error message was:"] = "The error message was:"; +$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +$a->strings["Starts:"] = "Starts:"; +$a->strings["Finishes:"] = "Finishes:"; +$a->strings["Location:"] = "Location:"; $a->strings["Add New Contact"] = "Add new contact"; $a->strings["Enter address or web location"] = "Enter address or web location"; $a->strings["Example: bob@example.com, http://example.com/barbara"] = "Example: jo@example.com, http://example.com/jo"; @@ -258,6 +141,7 @@ $a->strings["%d invitation available"] = array( ); $a->strings["Find People"] = "Find people"; $a->strings["Enter name or interest"] = "Enter name or interest"; +$a->strings["Connect/Follow"] = "Connect/Follow"; $a->strings["Examples: Robert Morgenstein, Fishing"] = "Examples: Robert Morgenstein, fishing"; $a->strings["Find"] = "Find"; $a->strings["Friend Suggestions"] = "Friend suggestions"; @@ -266,13 +150,17 @@ $a->strings["Random Profile"] = "Random profile"; $a->strings["Invite Friends"] = "Invite friends"; $a->strings["Networks"] = "Networks"; $a->strings["All Networks"] = "All networks"; -$a->strings["Saved Folders"] = "Saved Folders"; $a->strings["Everything"] = "Everything"; $a->strings["Categories"] = "Categories"; $a->strings["%d contact in common"] = array( 0 => "%d contact in common", 1 => "%d contacts in common", ); +$a->strings["event"] = "event"; +$a->strings["status"] = "status"; +$a->strings["photo"] = "photo"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s likes %2\$s's %3\$s"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s doesn't like %2\$s's %3\$s"; $a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s goes to %2\$s's %3\$s"; $a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s doesn't go %2\$s's %3\$s"; $a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s might go to %2\$s's %3\$s"; @@ -301,6 +189,13 @@ $a->strings["Please wait"] = "Please wait"; $a->strings["remove"] = "Remove"; $a->strings["Delete Selected Items"] = "Delete selected items"; $a->strings["Follow Thread"] = "Follow thread"; +$a->strings["View Status"] = "View status"; +$a->strings["View Profile"] = "View profile"; +$a->strings["View Photos"] = "View photos"; +$a->strings["Network Posts"] = "Network posts"; +$a->strings["View Contact"] = "View contact"; +$a->strings["Send PM"] = "Send PM"; +$a->strings["Poke"] = "Poke"; $a->strings["%s likes this."] = "%s likes this."; $a->strings["%s doesn't like this."] = "%s doesn't like this."; $a->strings["%s attends."] = "%s attends."; @@ -366,6 +261,10 @@ $a->strings["Not Attending"] = array( 0 => "Not attending", 1 => "Not attending", ); +$a->strings["Undecided"] = array( + 0 => "Undecided", + 1 => "Undecided", +); $a->strings["Miscellaneous"] = "Miscellaneous"; $a->strings["Birthday:"] = "Birthday:"; $a->strings["Age: "] = "Age: "; @@ -389,7 +288,151 @@ $a->strings["seconds"] = "seconds"; $a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s ago"; $a->strings["%s's birthday"] = "%s's birthday"; $a->strings["Happy Birthday %s"] = "Happy Birthday, %s!"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Cannot locate DNS info for database server '%s'"; +$a->strings["(no subject)"] = "(no subject)"; +$a->strings["noreply"] = "noreply"; +$a->strings["%s\\'s birthday"] = "%s\\'s birthday"; +$a->strings["all-day"] = "All-day"; +$a->strings["Sun"] = "Sun"; +$a->strings["Mon"] = "Mon"; +$a->strings["Tue"] = "Tue"; +$a->strings["Wed"] = "Wed"; +$a->strings["Thu"] = "Thu"; +$a->strings["Fri"] = "Fri"; +$a->strings["Sat"] = "Sat"; +$a->strings["Sunday"] = "Sunday"; +$a->strings["Monday"] = "Monday"; +$a->strings["Tuesday"] = "Tuesday"; +$a->strings["Wednesday"] = "Wednesday"; +$a->strings["Thursday"] = "Thursday"; +$a->strings["Friday"] = "Friday"; +$a->strings["Saturday"] = "Saturday"; +$a->strings["Jan"] = "Jan"; +$a->strings["Feb"] = "Feb"; +$a->strings["Mar"] = "Mar"; +$a->strings["Apr"] = "Apr"; +$a->strings["May"] = "May"; +$a->strings["Jun"] = "Jun"; +$a->strings["Jul"] = "Jul"; +$a->strings["Aug"] = "Aug"; +$a->strings["Sept"] = "Sep"; +$a->strings["Oct"] = "Oct"; +$a->strings["Nov"] = "Nov"; +$a->strings["Dec"] = "Dec"; +$a->strings["January"] = "January"; +$a->strings["February"] = "February"; +$a->strings["March"] = "March"; +$a->strings["April"] = "April"; +$a->strings["June"] = "June"; +$a->strings["July"] = "July"; +$a->strings["August"] = "August"; +$a->strings["September"] = "September"; +$a->strings["October"] = "October"; +$a->strings["November"] = "November"; +$a->strings["December"] = "December"; +$a->strings["today"] = "today"; +$a->strings["No events to display"] = "No events to display"; +$a->strings["l, F j"] = "l, F j"; +$a->strings["Edit event"] = "Edit event"; +$a->strings["Delete event"] = "Delete event"; +$a->strings["link to source"] = "Link to source"; +$a->strings["Export"] = "Export"; +$a->strings["Export calendar as ical"] = "Export calendar as ical"; +$a->strings["Export calendar as csv"] = "Export calendar as csv"; +$a->strings["Disallowed profile URL."] = "Disallowed profile URL."; +$a->strings["Blocked domain"] = "Blocked domain"; +$a->strings["Connect URL missing."] = "Connect URL missing."; +$a->strings["This site is not configured to allow communications with other networks."] = "This site is not configured to allow communications with other networks."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "No compatible communication protocols or feeds were discovered."; +$a->strings["The profile address specified does not provide adequate information."] = "The profile address specified does not provide adequate information."; +$a->strings["An author or name was not found."] = "An author or name was not found."; +$a->strings["No browser URL could be matched to this address."] = "No browser URL could be matched to this address."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Unable to match @-style identity address with a known protocol or email contact."; +$a->strings["Use mailto: in front of address to force email check."] = "Use mailto: in front of address to force email check."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "The profile address specified belongs to a network which has been disabled on this site."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Limited profile: This person will be unable to receive direct/private messages from you."; +$a->strings["Unable to retrieve contact information."] = "Unable to retrieve contact information."; +$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s is going to %2\$s's %3\$s"; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s is not going to %2\$s's %3\$s"; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s may go to %2\$s's %3\$s"; +$a->strings["Contact Photos"] = "Contact photos"; +$a->strings["Welcome "] = "Welcome "; +$a->strings["Please upload a profile photo."] = "Please upload a profile photo."; +$a->strings["Welcome back "] = "Welcome back "; +$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "The form security token was incorrect. This probably happened because the form has not been submitted within 3 hours."; +$a->strings["newer"] = "Later posts"; +$a->strings["older"] = "Earlier posts"; +$a->strings["first"] = "first"; +$a->strings["prev"] = "prev"; +$a->strings["next"] = "next"; +$a->strings["last"] = "last"; +$a->strings["Loading more entries..."] = "Loading more entries..."; +$a->strings["The end"] = "The end"; +$a->strings["No contacts"] = "No contacts"; +$a->strings["%d Contact"] = array( + 0 => "%d contact", + 1 => "%d contacts", +); +$a->strings["View Contacts"] = "View contacts"; +$a->strings["Search"] = "Search"; +$a->strings["Save"] = "Save"; +$a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, content"; +$a->strings["Full Text"] = "Full text"; +$a->strings["Tags"] = "Tags"; +$a->strings["Contacts"] = "Contacts"; +$a->strings["poke"] = "poke"; +$a->strings["poked"] = "poked"; +$a->strings["ping"] = "ping"; +$a->strings["pinged"] = "pinged"; +$a->strings["prod"] = "prod"; +$a->strings["prodded"] = "prodded"; +$a->strings["slap"] = "slap"; +$a->strings["slapped"] = "slapped"; +$a->strings["finger"] = "finger"; +$a->strings["fingered"] = "fingered"; +$a->strings["rebuff"] = "rebuff"; +$a->strings["rebuffed"] = "rebuffed"; +$a->strings["happy"] = "happy"; +$a->strings["sad"] = "sad"; +$a->strings["mellow"] = "mellow"; +$a->strings["tired"] = "tired"; +$a->strings["perky"] = "perky"; +$a->strings["angry"] = "angry"; +$a->strings["stupified"] = "stupified"; +$a->strings["puzzled"] = "puzzled"; +$a->strings["interested"] = "interested"; +$a->strings["bitter"] = "bitter"; +$a->strings["cheerful"] = "cheerful"; +$a->strings["alive"] = "alive"; +$a->strings["annoyed"] = "annoyed"; +$a->strings["anxious"] = "anxious"; +$a->strings["cranky"] = "cranky"; +$a->strings["disturbed"] = "disturbed"; +$a->strings["frustrated"] = "frustrated"; +$a->strings["motivated"] = "motivated"; +$a->strings["relaxed"] = "relaxed"; +$a->strings["surprised"] = "surprised"; +$a->strings["View Video"] = "View video"; +$a->strings["bytes"] = "bytes"; +$a->strings["Click to open/close"] = "Click to open/close"; +$a->strings["View on separate page"] = "View on separate page"; +$a->strings["view on separate page"] = "view on separate page"; +$a->strings["activity"] = "activity"; +$a->strings["comment"] = array( + 0 => "comment", + 1 => "comments", +); +$a->strings["post"] = "post"; +$a->strings["Item filed"] = "Item filed"; +$a->strings["Drop Contact"] = "Drop contact"; +$a->strings["Organisation"] = "Organisation"; +$a->strings["News"] = "News"; +$a->strings["Forum"] = "Forum"; +$a->strings["Image/photo"] = "Image/Photo"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["$1 wrote:"] = "$1 wrote:"; +$a->strings["Encrypted content"] = "Encrypted content"; +$a->strings["Invalid source protocol"] = "Invalid source protocol"; +$a->strings["Invalid link protocol"] = "Invalid link protocol"; $a->strings["Friendica Notification"] = "Friendica notification"; $a->strings["Thank You,"] = "Thank you"; $a->strings["%s Administrator"] = "%s Administrator"; @@ -449,125 +492,120 @@ $a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Y $a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "You've received a [url=%1\$s]registration request[/url] from %2\$s."; $a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"; $a->strings["Please visit %s to approve or reject the request."] = "Please visit %s to approve or reject the request."; -$a->strings["all-day"] = "All-day"; -$a->strings["Sun"] = "Sun"; -$a->strings["Mon"] = "Mon"; -$a->strings["Tue"] = "Tue"; -$a->strings["Wed"] = "Wed"; -$a->strings["Thu"] = "Thu"; -$a->strings["Fri"] = "Fri"; -$a->strings["Sat"] = "Sat"; -$a->strings["Sunday"] = "Sunday"; -$a->strings["Monday"] = "Monday"; -$a->strings["Tuesday"] = "Tuesday"; -$a->strings["Wednesday"] = "Wednesday"; -$a->strings["Thursday"] = "Thursday"; -$a->strings["Friday"] = "Friday"; -$a->strings["Saturday"] = "Saturday"; -$a->strings["Jan"] = "Jan"; -$a->strings["Feb"] = "Feb"; -$a->strings["Mar"] = "Mar"; -$a->strings["Apr"] = "Apr"; -$a->strings["May"] = "May"; -$a->strings["Jun"] = "Jun"; -$a->strings["Jul"] = "Jul"; -$a->strings["Aug"] = "Aug"; -$a->strings["Sept"] = "Sep"; -$a->strings["Oct"] = "Oct"; -$a->strings["Nov"] = "Nov"; -$a->strings["Dec"] = "Dec"; -$a->strings["January"] = "January"; -$a->strings["February"] = "February"; -$a->strings["March"] = "March"; -$a->strings["April"] = "April"; -$a->strings["June"] = "June"; -$a->strings["July"] = "July"; -$a->strings["August"] = "August"; -$a->strings["September"] = "September"; -$a->strings["October"] = "October"; -$a->strings["November"] = "November"; -$a->strings["December"] = "December"; -$a->strings["today"] = "today"; -$a->strings["No events to display"] = "No events to display"; -$a->strings["l, F j"] = "l, F j"; -$a->strings["Edit event"] = "Edit event"; -$a->strings["Delete event"] = "Delete event"; -$a->strings["link to source"] = "Link to source"; -$a->strings["Export"] = "Export"; -$a->strings["Export calendar as ical"] = "Export calendar as ical"; -$a->strings["Export calendar as csv"] = "Export calendar as csv"; -$a->strings["General Features"] = "General"; -$a->strings["Multiple Profiles"] = "Multiple profiles"; -$a->strings["Ability to create multiple profiles"] = "Ability to create multiple profiles"; -$a->strings["Photo Location"] = "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."] = "Photo metadata is normally removed. This extracts the location (if present) prior to removing metadata and links it to a map."; -$a->strings["Export Public Calendar"] = "Export public calendar"; -$a->strings["Ability for visitors to download the public calendar"] = "Ability for visitors to download the public calendar"; -$a->strings["Post Composition Features"] = "Post composition"; -$a->strings["Post Preview"] = "Post preview"; -$a->strings["Allow previewing posts and comments before publishing them"] = "Allow previewing posts and comments before publishing them"; -$a->strings["Auto-mention Forums"] = "Auto-mention forums"; -$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Add/Remove mention when a forum page is selected or deselected in the ACL window."; -$a->strings["Network Sidebar Widgets"] = "Network sidebars"; -$a->strings["Search by Date"] = "Search by date"; -$a->strings["Ability to select posts by date ranges"] = "Ability to select posts by date ranges"; -$a->strings["List Forums"] = "List forums"; -$a->strings["Enable widget to display the forums your are connected with"] = "Enable widget to display the forums your are connected with"; -$a->strings["Group Filter"] = "Group filter"; -$a->strings["Enable widget to display Network posts only from selected group"] = "Enable widget to display network posts only from selected group"; -$a->strings["Network Filter"] = "Network filter"; -$a->strings["Enable widget to display Network posts only from selected network"] = "Enable widget to display network posts only from selected network"; -$a->strings["Saved Searches"] = "Saved searches"; -$a->strings["Save search terms for re-use"] = "Save search terms for re-use"; -$a->strings["Network Tabs"] = "Network tabs"; -$a->strings["Network Personal Tab"] = "Network personal tab"; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Enable tab to display only network posts that you've interacted with"; -$a->strings["Network New Tab"] = "Network new tab"; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Enable tab to display only new network posts (last 12 hours)"; -$a->strings["Network Shared Links Tab"] = "Network shared links tab"; -$a->strings["Enable tab to display only Network posts with links in them"] = "Enable tab to display only network posts with links in them"; -$a->strings["Post/Comment Tools"] = "Post/Comment tools"; -$a->strings["Multiple Deletion"] = "Multiple deletion"; -$a->strings["Select and delete multiple posts/comments at once"] = "Select and delete multiple posts/comments at once"; -$a->strings["Edit Sent Posts"] = "Edit sent posts"; -$a->strings["Edit and correct posts and comments after sending"] = "Ability to editing posts and comments after sending"; -$a->strings["Tagging"] = "Tagging"; -$a->strings["Ability to tag existing posts"] = "Ability to tag existing posts"; -$a->strings["Post Categories"] = "Post categories"; -$a->strings["Add categories to your posts"] = "Add categories to your posts"; -$a->strings["Ability to file posts under folders"] = "Ability to file posts under folders"; -$a->strings["Dislike Posts"] = "Dislike posts"; -$a->strings["Ability to dislike posts/comments"] = "Ability to dislike posts/comments"; -$a->strings["Star Posts"] = "Star posts"; -$a->strings["Ability to mark special posts with a star indicator"] = "Ability to highlight posts with a star"; -$a->strings["Mute Post Notifications"] = "Mute post notifications"; -$a->strings["Ability to mute notifications for a thread"] = "Ability to mute notifications for a thread"; -$a->strings["Advanced Profile Settings"] = "Advanced profiles"; -$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Show visitors of public community forums at the advanced profile page"; -$a->strings["Disallowed profile URL."] = "Disallowed profile URL."; -$a->strings["Blocked domain"] = "Blocked domain"; -$a->strings["Connect URL missing."] = "Connect URL missing."; -$a->strings["This site is not configured to allow communications with other networks."] = "This site is not configured to allow communications with other networks."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "No compatible communication protocols or feeds were discovered."; -$a->strings["The profile address specified does not provide adequate information."] = "The profile address specified does not provide adequate information."; -$a->strings["An author or name was not found."] = "An author or name was not found."; -$a->strings["No browser URL could be matched to this address."] = "No browser URL could be matched to this address."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Unable to match @-style identity address with a known protocol or email contact."; -$a->strings["Use mailto: in front of address to force email check."] = "Use mailto: in front of address to force email check."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "The profile address specified belongs to a network which has been disabled on this site."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Limited profile: This person will be unable to receive direct/private messages from you."; -$a->strings["Unable to retrieve contact information."] = "Unable to retrieve contact information."; -$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "A deleted group with this name has been revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."; -$a->strings["Default privacy group for new contacts"] = "Default privacy group for new contacts"; -$a->strings["Everybody"] = "Everybody"; -$a->strings["edit"] = "edit"; -$a->strings["Groups"] = "Groups"; -$a->strings["Edit groups"] = "Edit groups"; -$a->strings["Edit group"] = "Edit group"; -$a->strings["Create a new group"] = "Create new group"; -$a->strings["Group Name: "] = "Group name: "; -$a->strings["Contacts not in any group"] = "Contacts not in any group"; -$a->strings["add"] = "add"; +$a->strings["[no subject]"] = "[no subject]"; +$a->strings["Wall Photos"] = "Wall photos"; +$a->strings["Nothing new here"] = "Nothing new here"; +$a->strings["Clear notifications"] = "Clear notifications"; +$a->strings["Logout"] = "Logout"; +$a->strings["End this session"] = "End this session"; +$a->strings["Status"] = "Status"; +$a->strings["Your posts and conversations"] = "My posts and conversations"; +$a->strings["Profile"] = "Profile"; +$a->strings["Your profile page"] = "My profile page"; +$a->strings["Photos"] = "Photos"; +$a->strings["Your photos"] = "My photos"; +$a->strings["Videos"] = "Videos"; +$a->strings["Your videos"] = "My videos"; +$a->strings["Events"] = "Events"; +$a->strings["Your events"] = "My events"; +$a->strings["Personal notes"] = "Personal notes"; +$a->strings["Your personal notes"] = "My personal notes"; +$a->strings["Login"] = "Login"; +$a->strings["Sign in"] = "Sign in"; +$a->strings["Home Page"] = "Home page"; +$a->strings["Register"] = "Register"; +$a->strings["Create an account"] = "Create account"; +$a->strings["Help"] = "Help"; +$a->strings["Help and documentation"] = "Help and documentation"; +$a->strings["Apps"] = "Apps"; +$a->strings["Addon applications, utilities, games"] = "Addon applications, utilities, games"; +$a->strings["Search site content"] = "Search site content"; +$a->strings["Community"] = "Community"; +$a->strings["Conversations on this site"] = "Public conversations on this site"; +$a->strings["Conversations on the network"] = "Conversations on the network"; +$a->strings["Events and Calendar"] = "Events and calendar"; +$a->strings["Directory"] = "Directory"; +$a->strings["People directory"] = "People directory"; +$a->strings["Information"] = "Information"; +$a->strings["Information about this friendica instance"] = "Information about this Friendica instance"; +$a->strings["Conversations from your friends"] = "My friends' conversations"; +$a->strings["Network Reset"] = "Network reset"; +$a->strings["Load Network page with no filters"] = "Load network page without filters"; +$a->strings["Friend Requests"] = "Friend requests"; +$a->strings["Notifications"] = "Notifications"; +$a->strings["See all notifications"] = "See all notifications"; +$a->strings["Mark as seen"] = "Mark as seen"; +$a->strings["Mark all system notifications seen"] = "Mark all system notifications seen"; +$a->strings["Messages"] = "Messages"; +$a->strings["Private mail"] = "Private messages"; +$a->strings["Inbox"] = "Inbox"; +$a->strings["Outbox"] = "Outbox"; +$a->strings["New Message"] = "New Message"; +$a->strings["Manage"] = "Manage"; +$a->strings["Manage other pages"] = "Manage other pages"; +$a->strings["Delegations"] = "Delegations"; +$a->strings["Delegate Page Management"] = "Delegate page management"; +$a->strings["Settings"] = "Settings"; +$a->strings["Account settings"] = "Account settings"; +$a->strings["Profiles"] = "Profiles"; +$a->strings["Manage/Edit Profiles"] = "Manage/Edit profiles"; +$a->strings["Manage/edit friends and contacts"] = "Manage/Edit friends and contacts"; +$a->strings["Admin"] = "Admin"; +$a->strings["Site setup and configuration"] = "Site setup and configuration"; +$a->strings["Navigation"] = "Navigation"; +$a->strings["Site map"] = "Site map"; +$a->strings["view full size"] = "view full size"; +$a->strings["Embedded content"] = "Embedded content"; +$a->strings["Embedding disabled"] = "Embedding disabled"; +$a->strings["Error decoding account file"] = "Error decoding account file"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Error! No version data in file! Is this a Friendica account file?"; +$a->strings["Error! Cannot check nickname"] = "Error! Cannot check nickname."; +$a->strings["User '%s' already exists on this server!"] = "User '%s' already exists on this server!"; +$a->strings["User creation error"] = "User creation error"; +$a->strings["User profile creation error"] = "User profile creation error"; +$a->strings["%d contact not imported"] = array( + 0 => "%d contact not imported", + 1 => "%d contacts not imported", +); +$a->strings["Done. You can now login with your username and password"] = "Done. You can now login with your username and password"; +$a->strings["Passwords do not match. Password unchanged."] = "Passwords do not match. Password unchanged."; +$a->strings["An invitation is required."] = "An invitation is required."; +$a->strings["Invitation could not be verified."] = "Invitation could not be verified."; +$a->strings["Invalid OpenID url"] = "Invalid OpenID URL"; +$a->strings["Please enter the required information."] = "Please enter the required information."; +$a->strings["Please use a shorter name."] = "Please use a shorter name."; +$a->strings["Name too short."] = "Name too short."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "That doesn't appear to be your full (i.e first and last) name."; +$a->strings["Your email domain is not among those allowed on this site."] = "Your email domain is not allowed on this site."; +$a->strings["Not a valid email address."] = "Not a valid email address."; +$a->strings["Cannot use that email."] = "Cannot use that email."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."; +$a->strings["Nickname is already registered. Please choose another."] = "Nickname is already registered. Please choose another."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Nickname was once registered here and may not be re-used. Please choose another."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "SERIOUS ERROR: Generation of security keys failed."; +$a->strings["An error occurred during registration. Please try again."] = "An error occurred during registration. Please try again."; +$a->strings["default"] = "default"; +$a->strings["An error occurred creating your default profile. Please try again."] = "An error occurred creating your default profile. Please try again."; +$a->strings["Friends"] = "Friends"; +$a->strings["Profile Photos"] = "Profile photos"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending approval by the administrator.\n\t"; +$a->strings["Registration at %s"] = "Registration at %s"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"; +$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\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 for your account \"Settings\" 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 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, these settings may help to\n\t\tmake new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."; +$a->strings["Registration details for %s"] = "Registration details for %s"; +$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Daily posting limit of %d posts reached. This post was rejected."; +$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Weekly posting limit of %d posts reached. This post was rejected."; +$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Monthly posting limit of %d posts reached. This post was rejected."; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Cannot locate DNS info for database server '%s'"; +$a->strings["There are no tables on MyISAM."] = "There are no tables on MyISAM."; +$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\tThe Friendica 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\n might be invalid."; +$a->strings["The error message is\n[pre]%s[/pre]"] = "The error message is\n[pre]%s[/pre]"; +$a->strings["\nError %d occurred during database update:\n%s\n"] = "\nError %d occurred during database update:\n%s\n"; +$a->strings["Errors encountered performing database changes: "] = "Errors encountered performing database changes: "; +$a->strings[": Database update"] = ": Database update"; +$a->strings["%s: updating %s table."] = "%s: updating %s table."; +$a->strings["Sharing notification from Diaspora network"] = "Sharing notification from Diaspora network"; +$a->strings["Attachments:"] = "Attachments:"; $a->strings["Requested account is not available."] = "Requested account is unavailable."; $a->strings["Requested profile is not available."] = "Requested profile is unavailable."; $a->strings["Edit profile"] = "Edit profile"; @@ -580,7 +618,7 @@ $a->strings["visible to everybody"] = "Visible to everybody"; $a->strings["Edit visibility"] = "Edit visibility"; $a->strings["Gender:"] = "Gender:"; $a->strings["Status:"] = "Status:"; -$a->strings["Homepage:"] = "Home page:"; +$a->strings["Homepage:"] = "Homepage:"; $a->strings["About:"] = "About:"; $a->strings["XMPP:"] = "XMPP:"; $a->strings["Network:"] = "Network:"; @@ -621,44 +659,6 @@ $a->strings["Profile Details"] = "Profile Details"; $a->strings["Photo Albums"] = "Photo Albums"; $a->strings["Personal Notes"] = "Personal notes"; $a->strings["Only You Can See This"] = "Only you can see this."; -$a->strings["view full size"] = "view full size"; -$a->strings["Embedded content"] = "Embedded content"; -$a->strings["Embedding disabled"] = "Embedding disabled"; -$a->strings["Contact Photos"] = "Contact photos"; -$a->strings["Passwords do not match. Password unchanged."] = "Passwords do not match. Password unchanged."; -$a->strings["An invitation is required."] = "An invitation is required."; -$a->strings["Invitation could not be verified."] = "Invitation could not be verified."; -$a->strings["Invalid OpenID url"] = "Invalid OpenID URL"; -$a->strings["Please enter the required information."] = "Please enter the required information."; -$a->strings["Please use a shorter name."] = "Please use a shorter name."; -$a->strings["Name too short."] = "Name too short."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "That doesn't appear to be your full (i.e first and last) name."; -$a->strings["Your email domain is not among those allowed on this site."] = "Your email domain is not allowed on this site."; -$a->strings["Not a valid email address."] = "Not a valid email address."; -$a->strings["Cannot use that email."] = "Cannot use that email."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."; -$a->strings["Nickname is already registered. Please choose another."] = "Nickname is already registered. Please choose another."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Nickname was once registered here and may not be re-used. Please choose another."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "SERIOUS ERROR: Generation of security keys failed."; -$a->strings["An error occurred during registration. Please try again."] = "An error occurred during registration. Please try again."; -$a->strings["default"] = "default"; -$a->strings["An error occurred creating your default profile. Please try again."] = "An error occurred creating your default profile. Please try again."; -$a->strings["Profile Photos"] = "Profile photos"; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending approval by the administrator.\n\t"; -$a->strings["Registration at %s"] = "Registration at %s"; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"; -$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\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 for your account \"Settings\" 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 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, these settings may help to\n\t\tmake new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."; -$a->strings["Registration details for %s"] = "Registration details for %s"; -$a->strings["There are no tables on MyISAM."] = "There are no tables on MyISAM."; -$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\tThe Friendica 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\n might be invalid."; -$a->strings["The error message is\n[pre]%s[/pre]"] = "The error message is\n[pre]%s[/pre]"; -$a->strings["\nError %d occurred during database update:\n%s\n"] = "\nError %d occurred during database update:\n%s\n"; -$a->strings["Errors encountered performing database changes: "] = "Errors encountered performing database changes: "; -$a->strings[": Database update"] = ": Database update"; -$a->strings["%s: updating %s table."] = "%s: updating %s table."; -$a->strings["%s\\'s birthday"] = "%s\\'s birthday"; -$a->strings["Sharing notification from Diaspora network"] = "Sharing notification from Diaspora network"; -$a->strings["Attachments:"] = "Attachments:"; $a->strings["[Name Withheld]"] = "[Name Withheld]"; $a->strings["Item not found."] = "Item not found."; $a->strings["Do you really want to delete this item?"] = "Do you really want to delete this item?"; @@ -669,65 +669,65 @@ $a->strings["%s is now following %s."] = "%s is now following %s."; $a->strings["following"] = "following"; $a->strings["%s stopped following %s."] = "%s stopped following %s."; $a->strings["stopped following"] = "stopped following"; -$a->strings["newer"] = "Later posts"; -$a->strings["older"] = "Earlier posts"; -$a->strings["first"] = "first"; -$a->strings["prev"] = "prev"; -$a->strings["next"] = "next"; -$a->strings["last"] = "last"; -$a->strings["Loading more entries..."] = "Loading more entries..."; -$a->strings["The end"] = "The end"; -$a->strings["No contacts"] = "No contacts"; -$a->strings["%d Contact"] = array( - 0 => "%d contact", - 1 => "%d contacts", -); -$a->strings["View Contacts"] = "View contacts"; -$a->strings["Save"] = "Save"; -$a->strings["poke"] = "poke"; -$a->strings["poked"] = "poked"; -$a->strings["ping"] = "ping"; -$a->strings["pinged"] = "pinged"; -$a->strings["prod"] = "prod"; -$a->strings["prodded"] = "prodded"; -$a->strings["slap"] = "slap"; -$a->strings["slapped"] = "slapped"; -$a->strings["finger"] = "finger"; -$a->strings["fingered"] = "fingered"; -$a->strings["rebuff"] = "rebuff"; -$a->strings["rebuffed"] = "rebuffed"; -$a->strings["happy"] = "happy"; -$a->strings["sad"] = "sad"; -$a->strings["mellow"] = "mellow"; -$a->strings["tired"] = "tired"; -$a->strings["perky"] = "perky"; -$a->strings["angry"] = "angry"; -$a->strings["stupified"] = "stupified"; -$a->strings["puzzled"] = "puzzled"; -$a->strings["interested"] = "interested"; -$a->strings["bitter"] = "bitter"; -$a->strings["cheerful"] = "cheerful"; -$a->strings["alive"] = "alive"; -$a->strings["annoyed"] = "annoyed"; -$a->strings["anxious"] = "anxious"; -$a->strings["cranky"] = "cranky"; -$a->strings["disturbed"] = "disturbed"; -$a->strings["frustrated"] = "frustrated"; -$a->strings["motivated"] = "motivated"; -$a->strings["relaxed"] = "relaxed"; -$a->strings["surprised"] = "surprised"; -$a->strings["View Video"] = "View video"; -$a->strings["bytes"] = "bytes"; -$a->strings["Click to open/close"] = "Click to open/close"; -$a->strings["View on separate page"] = "View on separate page"; -$a->strings["view on separate page"] = "view on separate page"; -$a->strings["activity"] = "activity"; -$a->strings["comment"] = array( - 0 => "comment", - 1 => "comments", -); -$a->strings["post"] = "post"; -$a->strings["Item filed"] = "Item filed"; +$a->strings["Click here to upgrade."] = "Click here to upgrade."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "This action exceeds the limits set by your subscription plan."; +$a->strings["This action is not available under your subscription plan."] = "This action is not available under your subscription plan."; +$a->strings["Male"] = "Male"; +$a->strings["Female"] = "Female"; +$a->strings["Currently Male"] = "Currently Male"; +$a->strings["Currently Female"] = "Currently Female"; +$a->strings["Mostly Male"] = "Mostly Male"; +$a->strings["Mostly Female"] = "Mostly Female"; +$a->strings["Transgender"] = "Transgender"; +$a->strings["Intersex"] = "Intersex"; +$a->strings["Transsexual"] = "Transsexual"; +$a->strings["Hermaphrodite"] = "Hermaphrodite"; +$a->strings["Neuter"] = "Neuter"; +$a->strings["Non-specific"] = "Non-specific"; +$a->strings["Other"] = "Other"; +$a->strings["Males"] = "Males"; +$a->strings["Females"] = "Females"; +$a->strings["Gay"] = "Gay"; +$a->strings["Lesbian"] = "Lesbian"; +$a->strings["No Preference"] = "No Preference"; +$a->strings["Bisexual"] = "Bisexual"; +$a->strings["Autosexual"] = "Auto-sexual"; +$a->strings["Abstinent"] = "Abstinent"; +$a->strings["Virgin"] = "Virgin"; +$a->strings["Deviant"] = "Deviant"; +$a->strings["Fetish"] = "Fetish"; +$a->strings["Oodles"] = "Oodles"; +$a->strings["Nonsexual"] = "Asexual"; +$a->strings["Single"] = "Single"; +$a->strings["Lonely"] = "Lonely"; +$a->strings["Available"] = "Available"; +$a->strings["Unavailable"] = "Unavailable"; +$a->strings["Has crush"] = "Having a crush"; +$a->strings["Infatuated"] = "Infatuated"; +$a->strings["Dating"] = "Dating"; +$a->strings["Unfaithful"] = "Unfaithful"; +$a->strings["Sex Addict"] = "Sex addict"; +$a->strings["Friends/Benefits"] = "Friends with benefits"; +$a->strings["Casual"] = "Casual"; +$a->strings["Engaged"] = "Engaged"; +$a->strings["Married"] = "Married"; +$a->strings["Imaginarily married"] = "Imaginarily married"; +$a->strings["Partners"] = "Partners"; +$a->strings["Cohabiting"] = "Cohabiting"; +$a->strings["Common law"] = "Common law spouse"; +$a->strings["Happy"] = "Happy"; +$a->strings["Not looking"] = "Not looking"; +$a->strings["Swinger"] = "Swinger"; +$a->strings["Betrayed"] = "Betrayed"; +$a->strings["Separated"] = "Separated"; +$a->strings["Unstable"] = "Unstable"; +$a->strings["Divorced"] = "Divorced"; +$a->strings["Imaginarily divorced"] = "Imaginarily divorced"; +$a->strings["Widowed"] = "Widowed"; +$a->strings["Uncertain"] = "Uncertain"; +$a->strings["It's complicated"] = "It's complicated"; +$a->strings["Don't care"] = "Don't care"; +$a->strings["Ask me"] = "Ask me"; $a->strings["No friends to display."] = "No friends to display."; $a->strings["Authorize application connection"] = "Authorize application connection"; $a->strings["Return to your app and insert this Securty Code:"] = "Return to your app and insert this security code:"; @@ -739,101 +739,33 @@ $a->strings["Applications"] = "Applications"; $a->strings["No installed applications."] = "No installed applications."; $a->strings["Item not available."] = "Item not available."; $a->strings["Item was not found."] = "Item was not found."; +$a->strings["Source (bbcode) text:"] = "Source (bbcode) text:"; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Source (Diaspora) text to convert to BBcode:"; +$a->strings["Source input: "] = "Source input: "; +$a->strings["bb2html (raw HTML): "] = "bb2html (raw HTML): "; +$a->strings["bb2html: "] = "bb2html: "; +$a->strings["bb2html2bb: "] = "bb2html2bb: "; +$a->strings["bb2md: "] = "bb2md: "; +$a->strings["bb2md2html: "] = "bb2md2html: "; +$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; +$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; +$a->strings["Source input (Diaspora format): "] = "Source input (Diaspora format): "; +$a->strings["diaspora2bb: "] = "diaspora2bb: "; $a->strings["The post was created"] = "The post was created"; +$a->strings["Access to this profile has been restricted."] = "Access to this profile has been restricted."; +$a->strings["View"] = "View"; +$a->strings["Previous"] = "Previous"; +$a->strings["Next"] = "Next"; +$a->strings["list"] = "List"; +$a->strings["User not found"] = "User not found"; +$a->strings["This calendar format is not supported"] = "This calendar format is not supported"; +$a->strings["No exportable data found"] = "No exportable data found"; +$a->strings["calendar"] = "calendar"; $a->strings["No contacts in common."] = "No contacts in common."; $a->strings["Common Friends"] = "Common friends"; -$a->strings["%d contact edited."] = array( - 0 => "%d contact edited.", - 1 => "%d contacts edited.", -); -$a->strings["Could not access contact record."] = "Could not access contact record."; -$a->strings["Could not locate selected profile."] = "Could not locate selected profile."; -$a->strings["Contact updated."] = "Contact updated."; -$a->strings["Failed to update contact record."] = "Failed to update contact record."; -$a->strings["Contact has been blocked"] = "Contact has been blocked"; -$a->strings["Contact has been unblocked"] = "Contact has been unblocked"; -$a->strings["Contact has been ignored"] = "Contact has been ignored"; -$a->strings["Contact has been unignored"] = "Contact has been unignored"; -$a->strings["Contact has been archived"] = "Contact has been archived"; -$a->strings["Contact has been unarchived"] = "Contact has been unarchived"; -$a->strings["Drop contact"] = "Drop contact"; -$a->strings["Do you really want to delete this contact?"] = "Do you really want to delete this contact?"; -$a->strings["Contact has been removed."] = "Contact has been removed."; -$a->strings["You are mutual friends with %s"] = "You are mutual friends with %s"; -$a->strings["You are sharing with %s"] = "You are sharing with %s"; -$a->strings["%s is sharing with you"] = "%s is sharing with you"; -$a->strings["Private communications are not available for this contact."] = "Private communications are not available for this contact."; -$a->strings["Never"] = "Never"; -$a->strings["(Update was successful)"] = "(Update was successful)"; -$a->strings["(Update was not successful)"] = "(Update was not successful)"; -$a->strings["Suggest friends"] = "Suggest friends"; -$a->strings["Network type: %s"] = "Network type: %s"; -$a->strings["Communications lost with this contact!"] = "Communications lost with this contact!"; -$a->strings["Fetch further information for feeds"] = "Fetch further information for feeds"; -$a->strings["Disabled"] = "Disabled"; -$a->strings["Fetch information"] = "Fetch information"; -$a->strings["Fetch information and keywords"] = "Fetch information and keywords"; -$a->strings["Contact"] = "Contact"; -$a->strings["Submit"] = "Submit"; -$a->strings["Profile Visibility"] = "Profile visibility"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Please choose the profile you would like to display to %s when viewing your profile securely."; -$a->strings["Contact Information / Notes"] = "Personal note"; -$a->strings["Edit contact notes"] = "Edit contact notes"; -$a->strings["Visit %s's profile [%s]"] = "Visit %s's profile [%s]"; -$a->strings["Block/Unblock contact"] = "Block/Unblock contact"; -$a->strings["Ignore contact"] = "Ignore contact"; -$a->strings["Repair URL settings"] = "Repair URL settings"; -$a->strings["View conversations"] = "View conversations"; -$a->strings["Last update:"] = "Last update:"; -$a->strings["Update public posts"] = "Update public posts"; -$a->strings["Update now"] = "Update now"; -$a->strings["Unblock"] = "Unblock"; -$a->strings["Block"] = "Block"; -$a->strings["Unignore"] = "Unignore"; -$a->strings["Ignore"] = "Ignore"; -$a->strings["Currently blocked"] = "Currently blocked"; -$a->strings["Currently ignored"] = "Currently ignored"; -$a->strings["Currently archived"] = "Currently archived"; -$a->strings["Hide this contact from others"] = "Hide this contact from others"; -$a->strings["Replies/likes to your public posts may still be visible"] = "Replies/Likes to your public posts may still be visible"; -$a->strings["Notification for new posts"] = "Notification for new posts"; -$a->strings["Send a notification of every new post of this contact"] = "Send notification for every new post from this contact"; -$a->strings["Blacklisted keywords"] = "Blacklisted keywords"; -$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"; -$a->strings["Profile URL"] = "Profile URL:"; -$a->strings["Actions"] = "Actions"; -$a->strings["Contact Settings"] = "Notification and privacy "; -$a->strings["Suggestions"] = "Suggestions"; -$a->strings["Suggest potential friends"] = "Suggest potential friends"; -$a->strings["All Contacts"] = "All contacts"; -$a->strings["Show all contacts"] = "Show all contacts"; -$a->strings["Unblocked"] = "Unblocked"; -$a->strings["Only show unblocked contacts"] = "Only show unblocked contacts"; -$a->strings["Blocked"] = "Blocked"; -$a->strings["Only show blocked contacts"] = "Only show blocked contacts"; -$a->strings["Ignored"] = "Ignored"; -$a->strings["Only show ignored contacts"] = "Only show ignored contacts"; -$a->strings["Archived"] = "Archived"; -$a->strings["Only show archived contacts"] = "Only show archived contacts"; -$a->strings["Hidden"] = "Hidden"; -$a->strings["Only show hidden contacts"] = "Only show hidden contacts"; -$a->strings["Search your contacts"] = "Search your contacts"; -$a->strings["Results for: %s"] = "Results for: %s"; -$a->strings["Update"] = "Update"; -$a->strings["Archive"] = "Archive"; -$a->strings["Unarchive"] = "Unarchive"; -$a->strings["Batch Actions"] = "Batch actions"; -$a->strings["View all contacts"] = "View all contacts"; -$a->strings["View all common friends"] = "View all common friends"; -$a->strings["Advanced Contact Settings"] = "Advanced contact settings"; -$a->strings["Mutual Friendship"] = "Mutual friendship"; -$a->strings["is a fan of yours"] = "is a fan of yours"; -$a->strings["you are a fan of"] = "I follow them"; -$a->strings["Edit contact"] = "Edit contact"; -$a->strings["Toggle Blocked status"] = "Toggle blocked status"; -$a->strings["Toggle Ignored status"] = "Toggle ignored status"; -$a->strings["Toggle Archive status"] = "Toggle archive status"; -$a->strings["Delete contact"] = "Delete contact"; +$a->strings["Public access denied."] = "Public access denied."; +$a->strings["Not available."] = "Not available."; +$a->strings["No results."] = "No results."; $a->strings["No such group"] = "No such group"; $a->strings["Group is empty"] = "Group is empty"; $a->strings["Group: %s"] = "Group: %s"; @@ -851,6 +783,7 @@ $a->strings["Share this"] = "Share this"; $a->strings["share"] = "Share"; $a->strings["This is you"] = "This is me"; $a->strings["Comment"] = "Comment"; +$a->strings["Submit"] = "Submit"; $a->strings["Bold"] = "Bold"; $a->strings["Italic"] = "Italic"; $a->strings["Underline"] = "Underline"; @@ -908,27 +841,172 @@ $a->strings["Potential Delegates"] = "Potential delegates"; $a->strings["Remove"] = "Remove"; $a->strings["Add"] = "Add"; $a->strings["No entries."] = "No entries."; +$a->strings["Profile not found."] = "Profile not found."; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "This may occasionally happen if contact was requested by both persons and it has already been approved."; +$a->strings["Response from remote site was not understood."] = "Response from remote site was not understood."; +$a->strings["Unexpected response from remote site: "] = "Unexpected response from remote site: "; +$a->strings["Confirmation completed successfully."] = "Confirmation completed successfully."; +$a->strings["Remote site reported: "] = "Remote site reported: "; +$a->strings["Temporary failure. Please wait and try again."] = "Temporary failure. Please wait and try again."; +$a->strings["Introduction failed or was revoked."] = "Introduction failed or was revoked."; +$a->strings["Unable to set contact photo."] = "Unable to set contact photo."; +$a->strings["No user record found for '%s' "] = "No user record found for '%s' "; +$a->strings["Our site encryption key is apparently messed up."] = "Our site encryption key is apparently messed up."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "An empty URL was provided or the URL could not be decrypted by us."; +$a->strings["Contact record was not found for you on our site."] = "Contact record was not found for you on our site."; +$a->strings["Site public key not available in contact record for URL %s."] = "Site public key not available in contact record for URL %s."; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "The ID provided by your system is a duplicate on our system. It should work if you try again."; +$a->strings["Unable to set your contact credentials on our system."] = "Unable to set your contact credentials on our system."; +$a->strings["Unable to update your contact profile details on our system"] = "Unable to update your contact profile details on our system"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s has joined %2\$s"; $a->strings["%1\$s welcomes %2\$s"] = "%1\$s welcomes %2\$s"; -$a->strings["Public access denied."] = "Public access denied."; $a->strings["Global Directory"] = "Global Directory"; $a->strings["Find on this site"] = "Find on this site"; $a->strings["Results for:"] = "Results for:"; $a->strings["Site Directory"] = "Site directory"; $a->strings["No entries (some entries may be hidden)."] = "No entries (entries may be hidden)."; -$a->strings["Access to this profile has been restricted."] = "Access to this profile has been restricted."; +$a->strings["People Search - %s"] = "People search - %s"; +$a->strings["Forum Search - %s"] = "Forum search - %s"; +$a->strings["No matches"] = "No matches"; $a->strings["Item has been removed."] = "Item has been removed."; $a->strings["Item not found"] = "Item not found"; $a->strings["Edit post"] = "Edit post"; +$a->strings["Event can not end before it has started."] = "Event cannot end before it has started."; +$a->strings["Event title and start time are required."] = "Event title and starting time are required."; +$a->strings["Create New Event"] = "Create new event"; +$a->strings["Event details"] = "Event details"; +$a->strings["Starting date and Title are required."] = "Starting date and title are required."; +$a->strings["Event Starts:"] = "Event starts:"; +$a->strings["Required"] = "Required"; +$a->strings["Finish date/time is not known or not relevant"] = "Finish date/time is not known or not relevant"; +$a->strings["Event Finishes:"] = "Event finishes:"; +$a->strings["Adjust for viewer timezone"] = "Adjust for viewer's time zone"; +$a->strings["Description:"] = "Description:"; +$a->strings["Title:"] = "Title:"; +$a->strings["Share this event"] = "Share this event"; +$a->strings["Failed to remove event"] = "Failed to remove event"; +$a->strings["Event removed"] = "Event removed"; $a->strings["Files"] = "Files"; $a->strings["Not Found"] = "Not found"; $a->strings["- select -"] = "- select -"; +$a->strings["Submit Request"] = "Submit request"; +$a->strings["You already added this contact."] = "You already added this contact."; +$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora support isn't enabled. Contact can't be added."; +$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus support is disabled. Contact can't be added."; +$a->strings["The network type couldn't be detected. Contact can't be added."] = "The network type couldn't be detected. Contact can't be added."; +$a->strings["Please answer the following:"] = "Please answer the following:"; +$a->strings["Does %s know you?"] = "Does %s know you?"; +$a->strings["Add a personal note:"] = "Add a personal note:"; +$a->strings["Your Identity Address:"] = "My identity address:"; +$a->strings["Profile URL"] = "Profile URL:"; +$a->strings["Contact added"] = "Contact added"; +$a->strings["This is Friendica, version"] = "This is Friendica, version"; +$a->strings["running at web location"] = "running at web location"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Please visit Friendica.com to learn more about the Friendica project."; +$a->strings["Bug reports and issues: please visit"] = "Bug reports and issues: please visit"; +$a->strings["the bugtracker at github"] = "the bugtracker at github"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"; +$a->strings["Installed plugins/addons/apps:"] = "Installed plugins/addons/apps:"; +$a->strings["No installed plugins/addons/apps"] = "No installed plugins/addons/apps"; +$a->strings["On this server the following remote servers are blocked."] = "On this server the following remote servers are blocked."; +$a->strings["Reason for the block"] = "Reason for the block"; $a->strings["Friend suggestion sent."] = "Friend suggestion sent"; $a->strings["Suggest Friends"] = "Suggest friends"; $a->strings["Suggest a friend for %s"] = "Suggest a friend for %s"; +$a->strings["Group created."] = "Group created."; +$a->strings["Could not create group."] = "Could not create group."; +$a->strings["Group not found."] = "Group not found."; +$a->strings["Group name changed."] = "Group name changed."; +$a->strings["Permission denied"] = "Permission denied"; +$a->strings["Save Group"] = "Save group"; +$a->strings["Create a group of contacts/friends."] = "Create a group of contacts/friends."; +$a->strings["Group removed."] = "Group removed."; +$a->strings["Unable to remove group."] = "Unable to remove group."; +$a->strings["Delete Group"] = "Delete group"; +$a->strings["Group Editor"] = "Group Editor"; +$a->strings["Edit Group Name"] = "Edit group name"; +$a->strings["Members"] = "Members"; +$a->strings["All Contacts"] = "All contacts"; +$a->strings["Remove Contact"] = "Remove contact"; +$a->strings["Add Contact"] = "Add contact"; +$a->strings["Click on a contact to add or remove."] = "Click on a contact to add or remove."; $a->strings["No profile"] = "No profile"; $a->strings["Help:"] = "Help:"; $a->strings["Page not found."] = "Page not found"; $a->strings["Welcome to %s"] = "Welcome to %s"; +$a->strings["Friendica Communications Server - Setup"] = "Friendica Communications Server - Setup"; +$a->strings["Could not connect to database."] = "Could not connect to database."; +$a->strings["Could not create table."] = "Could not create table."; +$a->strings["Your Friendica site database has been installed."] = "Your Friendica site database has been installed."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Please see the file \"INSTALL.txt\"."; +$a->strings["Database already in use."] = "Database already in use."; +$a->strings["System check"] = "System check"; +$a->strings["Check again"] = "Check again"; +$a->strings["Database connection"] = "Database connection"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "In order to install Friendica we need to know how to connect to your database."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Please contact your hosting provider or site administrator if you have questions about these settings."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "The database you specify below should already exist. If it does not, please create it before continuing."; +$a->strings["Database Server Name"] = "Database server name"; +$a->strings["Database Login Name"] = "Database login name"; +$a->strings["Database Login Password"] = "Database login password"; +$a->strings["For security reasons the password must not be empty"] = "For security reasons the password must not be empty"; +$a->strings["Database Name"] = "Database name"; +$a->strings["Site administrator email address"] = "Site administrator email address"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Your account email address must match this in order to use the web admin panel."; +$a->strings["Please select a default timezone for your website"] = "Please select a default time zone for your website"; +$a->strings["Site settings"] = "Site settings"; +$a->strings["System Language:"] = "System language:"; +$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Set the default language for your Friendica installation interface and email communication."; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Could not find a command line version of PHP in the web server PATH."; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run the background processing. See 'Setup the poller'"] = "If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See 'Setup the poller'"; +$a->strings["PHP executable path"] = "PHP executable path"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Enter full path to php executable. You can leave this blank to continue the installation."; +$a->strings["Command line PHP"] = "Command line PHP"; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "PHP executable is not a php cli binary; it could possibly be a cgi-fgci version."; +$a->strings["Found PHP version: "] = "Found 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."] = "The command line version of PHP on your system does not have \"register_argc_argv\" enabled."; +$a->strings["This is required for message delivery to work."] = "This is required for message delivery to work."; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "If running under Windows OS, please see \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Generate encryption keys"; +$a->strings["libCurl PHP module"] = "libCurl PHP module"; +$a->strings["GD graphics PHP module"] = "GD graphics PHP module"; +$a->strings["OpenSSL PHP module"] = "OpenSSL PHP module"; +$a->strings["PDO or MySQLi PHP module"] = "PDO or MySQLi PHP module"; +$a->strings["mb_string PHP module"] = "mb_string PHP module"; +$a->strings["XML PHP module"] = "XML PHP module"; +$a->strings["iconv module"] = "iconv module"; +$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: Apache web server mod-rewrite module is required but not installed."; +$a->strings["Error: libCURL PHP module required but not installed."] = "Error: libCURL PHP module required but not installed."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: GD graphics PHP module with JPEG support required but not installed."; +$a->strings["Error: openssl PHP module required but not installed."] = "Error: openssl PHP module required but not installed."; +$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "Error: PDO or MySQLi PHP module required but not installed."; +$a->strings["Error: The MySQL driver for PDO is not installed."] = "Error: MySQL driver for PDO is not installed."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Error: mb_string PHP module required but not installed."; +$a->strings["Error: iconv PHP module required but not installed."] = "Error: iconv PHP module required but not installed."; +$a->strings["Error, XML PHP module required but not installed."] = "Error, XML PHP module required but not installed."; +$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "The web installer needs to be able to create a file called \".htconfig.php\" in the top-level directory of your web server, but it is unable to do so."; +$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "This is most often a permission setting issue, as the web server may not be able to write files in your directory - even if you can."; +$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top-level directory."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternatively, you may skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php is writeable"; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "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 directory."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Please ensure the user (e.g. www-data) that your web server runs as has write access to this directory."; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."; +$a->strings["view/smarty3 is writable"] = "view/smarty3 is writeable"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "URL rewrite in .htaccess is not working. Check your server configuration."; +$a->strings["Url rewrite is working"] = "URL rewrite is working"; +$a->strings["ImageMagick PHP extension is not installed"] = "ImageMagick PHP extension is not installed"; +$a->strings["ImageMagick PHP extension is installed"] = "ImageMagick PHP extension is installed"; +$a->strings["ImageMagick supports GIF"] = "ImageMagick supports GIF"; +$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."; +$a->strings["

What next

"] = "

What next

"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: You will need to [manually] setup a scheduled task for the poller."; $a->strings["Total invitation limit exceeded."] = "Total invitation limit exceeded"; $a->strings["%s : Not a valid email address."] = "%s : Not a valid email address"; $a->strings["Please join us on Friendica"] = "Please join us on Friendica."; @@ -973,17 +1051,64 @@ $a->strings["Your password may be changed from the Settings page after $a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records or change your password immediately to\n\t\t\t\tsomething that you will remember.\n\t\t\t"; $a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"; $a->strings["Your password has been changed at %s"] = "Your password has been changed at %s"; -$a->strings["Forgot your Password?"] = "Forgot your password?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Enter your email address and submit to reset your password. Then check your email for further instructions."; -$a->strings["Nickname or Email: "] = "Nickname or Email: "; +$a->strings["Forgot your Password?"] = "Reset My Password"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Enter email address or nickname to reset your password. You will receive further instruction via email."; +$a->strings["Nickname or Email: "] = "Nickname or email: "; $a->strings["Reset"] = "Reset"; $a->strings["System down for maintenance"] = "Sorry, the system is currently down for maintenance."; +$a->strings["Manage Identities and/or Pages"] = "Manage Identities and Pages"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Accounts that I manage or own."; +$a->strings["Select an identity to manage: "] = "Select identity:"; $a->strings["No keywords to match. Please add keywords to your default profile."] = "No keywords to match. Please add keywords to your default profile."; $a->strings["is interested in:"] = "is interested in:"; $a->strings["Profile Match"] = "Profile Match"; -$a->strings["No matches"] = "No matches"; +$a->strings["No recipient selected."] = "No recipient selected."; +$a->strings["Unable to locate contact information."] = "Unable to locate contact information."; +$a->strings["Message could not be sent."] = "Message could not be sent."; +$a->strings["Message collection failure."] = "Message collection failure."; +$a->strings["Message sent."] = "Message sent."; +$a->strings["Do you really want to delete this message?"] = "Do you really want to delete this message?"; +$a->strings["Message deleted."] = "Message deleted."; +$a->strings["Conversation removed."] = "Conversation removed."; +$a->strings["Send Private Message"] = "Send private message"; +$a->strings["To:"] = "To:"; +$a->strings["Subject:"] = "Subject:"; +$a->strings["No messages."] = "No messages."; +$a->strings["Message not available."] = "Message not available."; +$a->strings["Delete message"] = "Delete message"; +$a->strings["Delete conversation"] = "Delete conversation"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "No secure communications available. You may be able to respond from the sender's profile page."; +$a->strings["Send Reply"] = "Send reply"; +$a->strings["Unknown sender - %s"] = "Unknown sender - %s"; +$a->strings["You and %s"] = "Me and %s"; +$a->strings["%s and You"] = "%s and me"; +$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["Mood"] = "Mood"; $a->strings["Set your current mood and tell your friends"] = "Set your current mood and tell your friends"; +$a->strings["Results for: %s"] = "Results for: %s"; +$a->strings["Remove term"] = "Remove term"; +$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array( + 0 => "Warning: This group contains %s member from a network that doesn't allow non public messages.", + 1 => "Warning: This group contains %s members from a network that doesn't allow non public messages.", +); +$a->strings["Messages in this group won't be send to these receivers."] = "Messages in this group won't be send to these receivers."; +$a->strings["Private messages to this person are at risk of public disclosure."] = "Private messages to this person are at risk of public disclosure."; +$a->strings["Invalid contact."] = "Invalid contact."; +$a->strings["Commented Order"] = "Commented last"; +$a->strings["Sort by Comment Date"] = "Sort by comment date"; +$a->strings["Posted Order"] = "Posted last"; +$a->strings["Sort by Post Date"] = "Sort by post date"; +$a->strings["Posts that mention or involve you"] = "Posts mentioning or involving me"; +$a->strings["New"] = "New"; +$a->strings["Activity Stream - by date"] = "Activity Stream - by date"; +$a->strings["Shared Links"] = "Shared links"; +$a->strings["Interesting Links"] = "Interesting links"; +$a->strings["Starred"] = "Starred"; +$a->strings["Favourite Posts"] = "My favourite posts"; $a->strings["Welcome to Friendica"] = "Welcome to Friendica"; $a->strings["New Member Checklist"] = "New Member Checklist"; $a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "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."; @@ -1015,10 +1140,42 @@ $a->strings["Friendica respects your privacy. By default, your posts will only s $a->strings["Getting Help"] = "Getting help"; $a->strings["Go to the Help Section"] = "Go to the help section"; $a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Our help pages may be consulted for detail on other program features and resources."; +$a->strings["Visit %s's profile [%s]"] = "Visit %s's profile [%s]"; +$a->strings["Edit contact"] = "Edit contact"; $a->strings["Contacts who are not members of a group"] = "Contacts who are not members of a group"; -$a->strings["No more system notifications."] = "No more system notifications."; +$a->strings["Invalid request identifier."] = "Invalid request identifier."; +$a->strings["Discard"] = "Discard"; +$a->strings["Ignore"] = "Ignore"; +$a->strings["Network Notifications"] = "Network notifications"; $a->strings["System Notifications"] = "System notifications"; +$a->strings["Personal Notifications"] = "Personal notifications"; +$a->strings["Home Notifications"] = "Home notifications"; +$a->strings["Show Ignored Requests"] = "Show ignored requests."; +$a->strings["Hide Ignored Requests"] = "Hide ignored requests"; +$a->strings["Notification type: "] = "Notification type: "; +$a->strings["suggested by %s"] = "suggested by %s"; +$a->strings["Hide this contact from others"] = "Hide this contact from others"; +$a->strings["Post a new friend activity"] = "Post a new friend activity"; +$a->strings["if applicable"] = "if applicable"; +$a->strings["Approve"] = "Approve"; +$a->strings["Claims to be known to you: "] = "Says they know me:"; +$a->strings["yes"] = "yes"; +$a->strings["no"] = "no"; +$a->strings["Shall your connection be bidirectional or not?"] = "Shall your connection be in both directions or not?"; +$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "Accepting %s as a friend allows %s to subscribe to your posts; you will also receive updates from them in your news feed."; +$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."; +$a->strings["Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."; +$a->strings["Friend"] = "Friend"; +$a->strings["Sharer"] = "Sharer"; +$a->strings["Subscriber"] = "Subscriber"; +$a->strings["No introductions."] = "No introductions."; +$a->strings["Show unread"] = "Show unread"; +$a->strings["Show all"] = "Show all"; +$a->strings["No more %s notifications."] = "No more %s notifications."; +$a->strings["No more system notifications."] = "No more system notifications."; $a->strings["Post successful."] = "Post successful."; +$a->strings["OpenID protocol error. No ID returned."] = "OpenID protocol error. No ID returned."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Account not found and OpenID registration is not permitted on this site."; $a->strings["Subscribing to OStatus contacts"] = "Subscribing to OStatus contacts"; $a->strings["No contact provided."] = "No contact provided."; $a->strings["Couldn't fetch information for contact."] = "Couldn't fetch information for contact."; @@ -1028,42 +1185,101 @@ $a->strings["success"] = "success"; $a->strings["failed"] = "failed"; $a->strings["Keep this window open until done."] = "Keep this window open until done."; $a->strings["Not Extended"] = "Not extended"; +$a->strings["Recent Photos"] = "Recent photos"; +$a->strings["Upload New Photos"] = "Upload new photos"; +$a->strings["everybody"] = "everybody"; +$a->strings["Contact information unavailable"] = "Contact information unavailable"; +$a->strings["Album not found."] = "Album not found."; +$a->strings["Delete Album"] = "Delete album"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Do you really want to delete this photo album and all its photos?"; +$a->strings["Delete Photo"] = "Delete photo"; +$a->strings["Do you really want to delete this photo?"] = "Do you really want to delete this photo?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s was tagged in %2\$s by %3\$s"; +$a->strings["a photo"] = "a photo"; +$a->strings["Image exceeds size limit of %s"] = "Image exceeds size limit of %s"; +$a->strings["Image file is empty."] = "Image file is empty."; +$a->strings["Unable to process image."] = "Unable to process image."; +$a->strings["Image upload failed."] = "Image upload failed."; +$a->strings["No photos selected"] = "No photos selected"; +$a->strings["Access to this item is restricted."] = "Access to this item is restricted."; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."; +$a->strings["Upload Photos"] = "Upload photos"; +$a->strings["New album name: "] = "New album name: "; +$a->strings["or existing album name: "] = "or existing album name: "; +$a->strings["Do not show a status post for this upload"] = "Do not show a status post for this upload"; +$a->strings["Show to Groups"] = "Show to groups"; +$a->strings["Show to Contacts"] = "Show to contacts"; +$a->strings["Private Photo"] = "Private photo"; +$a->strings["Public Photo"] = "Public photo"; +$a->strings["Edit Album"] = "Edit album"; +$a->strings["Show Newest First"] = "Show newest first"; +$a->strings["Show Oldest First"] = "Show oldest first"; +$a->strings["View Photo"] = "View photo"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Permission denied. Access to this item may be restricted."; +$a->strings["Photo not available"] = "Photo not available"; +$a->strings["View photo"] = "View photo"; +$a->strings["Edit photo"] = "Edit photo"; +$a->strings["Use as profile photo"] = "Use as profile photo"; +$a->strings["View Full Size"] = "View full size"; +$a->strings["Tags: "] = "Tags: "; +$a->strings["[Remove any tag]"] = "[Remove any tag]"; +$a->strings["New album name"] = "New album name"; +$a->strings["Caption"] = "Caption"; +$a->strings["Add a Tag"] = "Add Tag"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Example: @bob, @jojo@example.com, #California, #camping"; +$a->strings["Do not rotate"] = "Do not rotate"; +$a->strings["Rotate CW (right)"] = "Rotate right (CW)"; +$a->strings["Rotate CCW (left)"] = "Rotate left (CCW)"; +$a->strings["Private photo"] = "Private photo"; +$a->strings["Public photo"] = "Public photo"; +$a->strings["Map"] = "Map"; +$a->strings["View Album"] = "View album"; +$a->strings["{0} wants to be your friend"] = "{0} wants to be your friend"; +$a->strings["{0} sent you a message"] = "{0} sent you a message"; +$a->strings["{0} requested registration"] = "{0} requested registration"; $a->strings["Poke/Prod"] = "Poke/Prod"; $a->strings["poke, prod or do other things to somebody"] = "Poke, prod or do other things to somebody"; $a->strings["Recipient"] = "Recipient:"; $a->strings["Choose what you wish to do to recipient"] = "Choose what you wish to do:"; $a->strings["Make this post private"] = "Make this post private"; -$a->strings["Image uploaded but image cropping failed."] = "Image uploaded but image cropping failed."; -$a->strings["Image size reduction [%s] failed."] = "Image size reduction [%s] failed."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-reload the page or clear browser cache if the new photo does not display immediately."; -$a->strings["Unable to process image"] = "Unable to process image"; -$a->strings["Image exceeds size limit of %s"] = "Image exceeds size limit of %s"; -$a->strings["Unable to process image."] = "Unable to process image."; -$a->strings["Upload File:"] = "Upload File:"; -$a->strings["Select a profile:"] = "Select a profile:"; -$a->strings["Upload"] = "Upload"; -$a->strings["or"] = "or"; -$a->strings["skip this step"] = "skip this step"; -$a->strings["select a photo from your photo albums"] = "select a photo from your photo albums"; -$a->strings["Crop Image"] = "Crop Image"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Please adjust the image cropping for optimum viewing."; -$a->strings["Done Editing"] = "Done editing"; -$a->strings["Image uploaded successfully."] = "Image uploaded successfully."; -$a->strings["Image upload failed."] = "Image upload failed."; -$a->strings["Permission denied"] = "Permission denied"; +$a->strings["Tips for New Members"] = "Tips for New Members"; $a->strings["Invalid profile identifier."] = "Invalid profile identifier."; $a->strings["Profile Visibility Editor"] = "Profile Visibility Editor"; -$a->strings["Click on a contact to add or remove."] = "Click on a contact to add or remove."; $a->strings["Visible To"] = "Visible to"; $a->strings["All Contacts (with secure profile access)"] = "All contacts with secure profile access"; -$a->strings["Account approved."] = "Account approved."; -$a->strings["Registration revoked for %s"] = "Registration revoked for %s"; -$a->strings["Please login."] = "Please login."; +$a->strings["Registration successful. Please check your email for further instructions."] = "Registration successful. Please check your email for further instructions."; +$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Failed to send email message. Here your account details:
login: %s
password: %s

You can change your password after login."; +$a->strings["Registration successful."] = "Registration successful."; +$a->strings["Your registration can not be processed."] = "Your registration cannot be processed."; +$a->strings["Your registration is pending approval by the site owner."] = "Your registration is pending approval by the site administrator."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."; +$a->strings["Your OpenID (optional): "] = "Your OpenID (optional): "; +$a->strings["Include your profile in member directory?"] = "Include your profile in member directory?"; +$a->strings["Note for the admin"] = "Note for the admin"; +$a->strings["Leave a message for the admin, why you want to join this node"] = "Leave a message for the admin, why you want to join this node."; +$a->strings["Membership on this site is by invitation only."] = "Membership on this site is by invitation only."; +$a->strings["Your invitation ID: "] = "Your invitation ID: "; +$a->strings["Registration"] = "Registration"; +$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Your full name: "; +$a->strings["Your Email Address: "] = "Your email address: "; +$a->strings["New Password:"] = "New password:"; +$a->strings["Leave empty for an auto generated password."] = "Leave empty for an auto generated password."; +$a->strings["Confirm:"] = "Confirm new 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'."] = "Choose a profile nickname. Your nickname will be part of your identity address; for example: 'nickname@\$sitename'."; +$a->strings["Choose a nickname: "] = "Choose a nickname: "; +$a->strings["Import"] = "Import profile"; +$a->strings["Import your profile to this friendica instance"] = "Import an existing Friendica profile to this node."; $a->strings["Remove My Account"] = "Remove my account"; $a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "This will completely remove your account. Once this has been done it is not recoverable."; $a->strings["Please enter your password for verification:"] = "Please enter your password for verification:"; $a->strings["Resubscribing to OStatus contacts"] = "Resubscribing to OStatus contacts"; $a->strings["Error"] = "Error"; +$a->strings["Only logged in users are permitted to perform a search."] = "Only logged in users are permitted to perform a search."; +$a->strings["Too Many Requests"] = "Too many requests"; +$a->strings["Only one search per minute is permitted for not logged in users."] = "Only one search per minute is permitted for not logged in users."; +$a->strings["Items tagged with: %s"] = "Items tagged with: %s"; $a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s is following %2\$s's %3\$s"; $a->strings["Do you really want to delete this suggestion?"] = "Do you really want to delete this suggestion?"; $a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No suggestions available. If this is a new site, please try again in 24 hours."; @@ -1071,15 +1287,17 @@ $a->strings["Ignore/Hide"] = "Ignore/Hide"; $a->strings["Tag removed"] = "Tag removed"; $a->strings["Remove Item Tag"] = "Remove Item tag"; $a->strings["Select a tag to remove: "] = "Select a tag to remove: "; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."; -$a->strings["Import"] = "Import"; -$a->strings["Move account"] = "Move account"; -$a->strings["You can import an account from another Friendica server."] = "You can import an account from another Friendica server."; -$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"; -$a->strings["Account file"] = "Account file"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "To export your account, go to \"Settings->Export personal data\" and select \"Export account\""; +$a->strings["Export account"] = "Export account"; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Export your account info and contacts. Use this to backup your account or to move it to another server."; +$a->strings["Export all"] = "Export all"; +$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Export your account info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"; +$a->strings["Export personal data"] = "Export personal data"; $a->strings["[Embedded content - reload page to view]"] = "[Embedded content - reload page to view]"; +$a->strings["Do you really want to delete this video?"] = "Do you really want to delete this video?"; +$a->strings["Delete Video"] = "Delete video"; +$a->strings["No videos selected"] = "No videos selected"; +$a->strings["Recent Videos"] = "Recent videos"; +$a->strings["Upload New Videos"] = "Upload new videos"; $a->strings["No contacts."] = "No contacts."; $a->strings["Access denied."] = "Access denied."; $a->strings["Invalid request."] = "Invalid request."; @@ -1088,56 +1306,10 @@ $a->strings["Or - did you try to upload an empty file?"] = "Or did you try to up $a->strings["File exceeds size limit of %s"] = "File exceeds size limit of %s"; $a->strings["File upload failed."] = "File upload failed."; $a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Number of daily wall messages for %s exceeded. Message failed."; -$a->strings["No recipient selected."] = "No recipient selected."; $a->strings["Unable to check your home location."] = "Unable to check your home location."; -$a->strings["Message could not be sent."] = "Message could not be sent."; -$a->strings["Message collection failure."] = "Message collection failure."; -$a->strings["Message sent."] = "Message sent."; $a->strings["No recipient."] = "No recipient."; -$a->strings["Send Private Message"] = "Send private message"; $a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."; -$a->strings["To:"] = "To:"; -$a->strings["Subject:"] = "Subject:"; -$a->strings["Source (bbcode) text:"] = "Source (bbcode) text:"; -$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Source (Diaspora) text to convert to BBcode:"; -$a->strings["Source input: "] = "Source input: "; -$a->strings["bb2html (raw HTML): "] = "bb2html (raw HTML): "; -$a->strings["bb2html: "] = "bb2html: "; -$a->strings["bb2html2bb: "] = "bb2html2bb: "; -$a->strings["bb2md: "] = "bb2md: "; -$a->strings["bb2md2html: "] = "bb2md2html: "; -$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; -$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; -$a->strings["Source input (Diaspora format): "] = "Source input (Diaspora format): "; -$a->strings["diaspora2bb: "] = "diaspora2bb: "; -$a->strings["View"] = "View"; -$a->strings["Previous"] = "Previous"; -$a->strings["Next"] = "Next"; -$a->strings["list"] = "List"; -$a->strings["User not found"] = "User not found"; -$a->strings["This calendar format is not supported"] = "This calendar format is not supported"; -$a->strings["No exportable data found"] = "No exportable data found"; -$a->strings["calendar"] = "calendar"; -$a->strings["Not available."] = "Not available."; -$a->strings["No results."] = "No results."; -$a->strings["Profile not found."] = "Profile not found."; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "This may occasionally happen if contact was requested by both persons and it has already been approved."; -$a->strings["Response from remote site was not understood."] = "Response from remote site was not understood."; -$a->strings["Unexpected response from remote site: "] = "Unexpected response from remote site: "; -$a->strings["Confirmation completed successfully."] = "Confirmation completed successfully."; -$a->strings["Remote site reported: "] = "Remote site reported: "; -$a->strings["Temporary failure. Please wait and try again."] = "Temporary failure. Please wait and try again."; -$a->strings["Introduction failed or was revoked."] = "Introduction failed or was revoked."; -$a->strings["Unable to set contact photo."] = "Unable to set contact photo."; -$a->strings["No user record found for '%s' "] = "No user record found for '%s' "; -$a->strings["Our site encryption key is apparently messed up."] = "Our site encryption key is apparently messed up."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "An empty URL was provided or the URL could not be decrypted by us."; -$a->strings["Contact record was not found for you on our site."] = "Contact record was not found for you on our site."; -$a->strings["Site public key not available in contact record for URL %s."] = "Site public key not available in contact record for URL %s."; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "The ID provided by your system is a duplicate on our system. It should work if you try again."; -$a->strings["Unable to set your contact credentials on our system."] = "Unable to set your contact credentials on our system."; -$a->strings["Unable to update your contact profile details on our system"] = "Unable to update your contact profile details on our system"; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s has joined %2\$s"; +$a->strings["Only logged in users are permitted to perform a probing."] = "Only logged in users are permitted to perform a probing."; $a->strings["This introduction has already been accepted."] = "This introduction has already been accepted."; $a->strings["Profile location is not valid or does not contain profile information."] = "Profile location is not valid or does not contain profile information."; $a->strings["Warning: profile location has no identifiable owner name."] = "Warning: profile location has no identifiable owner name."; @@ -1158,6 +1330,7 @@ $a->strings["This account has not been configured for email. Request failed."] = $a->strings["You have already introduced yourself here."] = "You have already introduced yourself here."; $a->strings["Apparently you are already friends with %s."] = "Apparently you are already friends with %s."; $a->strings["Invalid profile URL."] = "Invalid profile URL."; +$a->strings["Failed to update contact record."] = "Failed to update contact record."; $a->strings["Your introduction has been sent."] = "Your introduction has been sent."; $a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Remote subscription can't be done for your network. Please subscribe directly on your system."; $a->strings["Please login to confirm introduction."] = "Please login to confirm introduction."; @@ -1170,150 +1343,422 @@ $a->strings["Please enter your 'Identity Address' from one of the following supp $a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."; $a->strings["Friend/Connection Request"] = "Friend/Connection request"; $a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Examples: jojo@friendica.example.com, http://friendica.example.com/profile/jojo, sam@identi.ca"; -$a->strings["Please answer the following:"] = "Please answer the following:"; -$a->strings["Does %s know you?"] = "Does %s know you?"; -$a->strings["Add a personal note:"] = "Add a personal note:"; $a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated social web"; $a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - please do not use this form. Instead, enter %s into your Diaspora search bar."; -$a->strings["Your Identity Address:"] = "My identity address:"; -$a->strings["Submit Request"] = "Submit request"; -$a->strings["People Search - %s"] = "People search - %s"; -$a->strings["Forum Search - %s"] = "Forum search - %s"; -$a->strings["Event can not end before it has started."] = "Event cannot end before it has started."; -$a->strings["Event title and start time are required."] = "Event title and starting time are required."; -$a->strings["Create New Event"] = "Create new event"; -$a->strings["Event details"] = "Event details"; -$a->strings["Starting date and Title are required."] = "Starting date and title are required."; -$a->strings["Event Starts:"] = "Event starts:"; -$a->strings["Required"] = "Required"; -$a->strings["Finish date/time is not known or not relevant"] = "Finish date/time is not known or not relevant"; -$a->strings["Event Finishes:"] = "Event finishes:"; -$a->strings["Adjust for viewer timezone"] = "Adjust for viewer's time zone"; -$a->strings["Description:"] = "Description:"; -$a->strings["Title:"] = "Title:"; -$a->strings["Share this event"] = "Share this event"; -$a->strings["Failed to remove event"] = "Failed to remove event"; -$a->strings["Event removed"] = "Event removed"; -$a->strings["You already added this contact."] = "You already added this contact."; -$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora support isn't enabled. Contact can't be added."; -$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus support is disabled. Contact can't be added."; -$a->strings["The network type couldn't be detected. Contact can't be added."] = "The network type couldn't be detected. Contact can't be added."; -$a->strings["Contact added"] = "Contact added"; -$a->strings["This is Friendica, version"] = "This is Friendica, version"; -$a->strings["running at web location"] = "running at web location"; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Please visit Friendica.com to learn more about the Friendica project."; -$a->strings["Bug reports and issues: please visit"] = "Bug reports and issues: please visit"; -$a->strings["the bugtracker at github"] = "the bugtracker at github"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"; -$a->strings["Installed plugins/addons/apps:"] = "Installed plugins/addons/apps:"; -$a->strings["No installed plugins/addons/apps"] = "No installed plugins/addons/apps"; -$a->strings["On this server the following remote servers are blocked."] = "On this server the following remote servers are blocked."; -$a->strings["Reason for the block"] = "Reason for the block"; -$a->strings["Group created."] = "Group created."; -$a->strings["Could not create group."] = "Could not create group."; -$a->strings["Group not found."] = "Group not found."; -$a->strings["Group name changed."] = "Group name changed."; -$a->strings["Save Group"] = "Save group"; -$a->strings["Create a group of contacts/friends."] = "Create a group of contacts/friends."; -$a->strings["Group removed."] = "Group removed."; -$a->strings["Unable to remove group."] = "Unable to remove group."; -$a->strings["Delete Group"] = "Delete group"; -$a->strings["Group Editor"] = "Group Editor"; -$a->strings["Edit Group Name"] = "Edit group name"; -$a->strings["Members"] = "Members"; -$a->strings["Remove Contact"] = "Remove contact"; -$a->strings["Add Contact"] = "Add contact"; -$a->strings["Manage Identities and/or Pages"] = "Manage identities/pages"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Accounts that I manage or own."; -$a->strings["Select an identity to manage: "] = "Select identity:"; -$a->strings["Unable to locate contact information."] = "Unable to locate contact information."; -$a->strings["Do you really want to delete this message?"] = "Do you really want to delete this message?"; -$a->strings["Message deleted."] = "Message deleted."; -$a->strings["Conversation removed."] = "Conversation removed."; -$a->strings["No messages."] = "No messages."; -$a->strings["Message not available."] = "Message not available."; -$a->strings["Delete message"] = "Delete message"; -$a->strings["Delete conversation"] = "Delete conversation"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = ""; -$a->strings["Send Reply"] = "Send reply"; -$a->strings["Unknown sender - %s"] = "Unknown sender - %s"; -$a->strings["You and %s"] = "Me and %s"; -$a->strings["%s and You"] = "%s and me"; -$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["Unable to locate original post."] = "Unable to locate original post."; +$a->strings["Empty post discarded."] = "Empty post discarded."; +$a->strings["System error. Post not saved."] = "System error. Post not saved."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "This message was sent to you by %s, a member of the Friendica social network."; +$a->strings["You may visit them online at %s"] = "You may visit them online at %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Please contact the sender by replying to this post if you do not wish to receive these messages."; +$a->strings["%s posted an update."] = "%s posted an update."; +$a->strings["Account approved."] = "Account approved."; +$a->strings["Registration revoked for %s"] = "Registration revoked for %s"; +$a->strings["Please login."] = "Please login."; +$a->strings["Move account"] = "Move Existing Friendica Account"; +$a->strings["You can import an account from another Friendica server."] = "You can import an existing Friendica profile to this node."; +$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."] = "You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora."; +$a->strings["Account file"] = "Account file:"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "To export your account, go to \"Settings->Export personal data\" and select \"Export account\""; +$a->strings["Theme settings updated."] = "Theme settings updated."; +$a->strings["Site"] = "Site"; +$a->strings["Users"] = "Users"; +$a->strings["Plugins"] = "Plugins"; +$a->strings["Themes"] = "Theme selection"; +$a->strings["Additional features"] = "Additional features"; +$a->strings["DB updates"] = "DB updates"; +$a->strings["Inspect Queue"] = "Inspect queue"; +$a->strings["Server Blocklist"] = "Server blocklist"; +$a->strings["Federation Statistics"] = "Federation statistics"; +$a->strings["Logs"] = "Logs"; +$a->strings["View Logs"] = "View logs"; +$a->strings["probe address"] = "Probe address"; +$a->strings["check webfinger"] = "Check webfinger"; +$a->strings["Plugin Features"] = "Plugin Features"; +$a->strings["diagnostics"] = "Diagnostics"; +$a->strings["User registrations waiting for confirmation"] = "User registrations awaiting confirmation"; +$a->strings["The blocked domain"] = "Blocked domain"; +$a->strings["The reason why you blocked this domain."] = "Reason why you blocked this domain."; +$a->strings["Delete domain"] = "Delete domain"; +$a->strings["Check to delete this entry from the blocklist"] = "Check to delete this entry from the blocklist"; +$a->strings["Administration"] = "Administration"; +$a->strings["This page can be used to define a black list of servers from the federated network that are not allowed to interact with your node. For all entered domains you should also give a reason why you have blocked the remote server."] = "This page can be used to define a black list of servers from the federated network that are not allowed to interact with your node. For all entered domains you should also give a reason why you have blocked the remote server."; +$a->strings["The list of blocked servers will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily."] = "The list of blocked servers will publicly available on the Friendica page so that your users and people investigating communication problems can readily find the reason."; +$a->strings["Add new entry to block list"] = "Add new entry to block list"; +$a->strings["Server Domain"] = "Server domain"; +$a->strings["The domain of the new server to add to the block list. Do not include the protocol."] = "The domain of the new server to add to the block list. Do not include the protocol."; +$a->strings["Block reason"] = "Block reason"; +$a->strings["Add Entry"] = "Add entry"; +$a->strings["Save changes to the blocklist"] = "Save changes to the blocklist"; +$a->strings["Current Entries in the Blocklist"] = "Current entries in the blocklist"; +$a->strings["Delete entry from blocklist"] = "Delete entry from blocklist"; +$a->strings["Delete entry from blocklist?"] = "Delete entry from blocklist?"; +$a->strings["Server added to blocklist."] = "Server added to blocklist."; +$a->strings["Site blocklist updated."] = "Site blocklist updated."; +$a->strings["unknown"] = "unknown"; +$a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = "This page offers you the amount of known part of the federated social network your Friendica node is part of. These numbers are not complete and only reflect the part of the network your node is aware of."; +$a->strings["The Auto Discovered Contact Directory feature is not enabled, it will improve the data displayed here."] = "The Auto Discovered Contact Directory feature is not enabled; enabling it will improve the data displayed here."; +$a->strings["Currently this node is aware of %d nodes from the following platforms:"] = "Currently this node is aware of %d nodes from the following platforms:"; +$a->strings["ID"] = "ID"; +$a->strings["Recipient Name"] = "Recipient name"; +$a->strings["Recipient Profile"] = "Recipient profile"; +$a->strings["Created"] = "Created"; +$a->strings["Last Tried"] = "Last Tried"; +$a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = ""; +$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the command php include/dbstructure.php toinnodb of your Friendica installation for an automatic conversion.
"] = ""; +$a->strings["The database update failed. Please run \"php include/dbstructure.php update\" from the command line and have a look at the errors that might appear."] = ""; +$a->strings["Normal Account"] = "Standard account"; +$a->strings["Soapbox Account"] = "Soapbox account"; +$a->strings["Community/Celebrity Account"] = ""; +$a->strings["Automatic Friend Account"] = ""; +$a->strings["Blog Account"] = ""; +$a->strings["Private Forum"] = ""; +$a->strings["Message queues"] = ""; +$a->strings["Summary"] = "Summary"; +$a->strings["Registered users"] = "Registered users"; +$a->strings["Pending registrations"] = "Pending registrations"; +$a->strings["Version"] = "Version"; +$a->strings["Active plugins"] = "Active plugins"; +$a->strings["Can not parse base url. Must have at least ://"] = "Can not parse base URL. Must have at least ://"; +$a->strings["Site settings updated."] = "Site settings updated."; +$a->strings["No special theme for mobile devices"] = "No special theme for mobile devices"; +$a->strings["No community page"] = "No community page"; +$a->strings["Public postings from users of this site"] = "Public postings from users of this site"; +$a->strings["Global community page"] = "Global community page"; +$a->strings["Never"] = "Never"; +$a->strings["At post arrival"] = "At post arrival"; +$a->strings["Disabled"] = "Disabled"; +$a->strings["Users, Global Contacts"] = "Users, Global Contacts"; +$a->strings["Users, Global Contacts/fallback"] = "Users, Global Contacts/fallback"; +$a->strings["One month"] = "One month"; +$a->strings["Three months"] = "Three months"; +$a->strings["Half a year"] = "Half a year"; +$a->strings["One year"] = "One a year"; +$a->strings["Multi user instance"] = "Multi user instance"; +$a->strings["Closed"] = "Closed"; +$a->strings["Requires approval"] = "Requires approval"; +$a->strings["Open"] = "Open"; +$a->strings["No SSL policy, links will track page SSL state"] = "No SSL policy, links will track page SSL state"; +$a->strings["Force all links to use SSL"] = "Force all links to use SSL"; +$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Self-signed certificate, use SSL for local links only (discouraged)"; +$a->strings["Save Settings"] = "Save settings"; +$a->strings["File upload"] = "File upload"; +$a->strings["Policies"] = "Policies"; +$a->strings["Auto Discovered Contact Directory"] = ""; +$a->strings["Performance"] = "Performance"; +$a->strings["Worker"] = "Worker"; +$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Relocate - Warning, advanced function: This could make this server unreachable."; +$a->strings["Site name"] = "Site name"; +$a->strings["Host name"] = "Host name"; +$a->strings["Sender Email"] = "Sender email"; +$a->strings["The email address your server shall use to send notification emails from."] = "The email address your server shall use to send notification emails from."; +$a->strings["Banner/Logo"] = "Banner/Logo"; +$a->strings["Shortcut icon"] = "Shortcut icon"; +$a->strings["Link to an icon that will be used for browsers."] = "Link to an icon that will be used for browsers."; +$a->strings["Touch icon"] = "Touch icon"; +$a->strings["Link to an icon that will be used for tablets and mobiles."] = "Link to an icon that will be used for tablets and mobiles."; +$a->strings["Additional Info"] = "Additional Info"; +$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = "For public servers: add additional information here that will be listed at %s/siteinfo."; +$a->strings["System language"] = "System language"; +$a->strings["System theme"] = "System theme"; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Default system theme - may be overridden by user profiles - change theme settings"; +$a->strings["Mobile system theme"] = "Mobile system theme"; +$a->strings["Theme for mobile devices"] = "Theme for mobile devices"; +$a->strings["SSL link policy"] = "SSL link policy"; +$a->strings["Determines whether generated links should be forced to use SSL"] = "Determines whether generated links should be forced to use SSL"; +$a->strings["Force SSL"] = "Force SSL"; +$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."; +$a->strings["Hide help entry from navigation menu"] = "Hide help entry from navigation menu"; +$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Hides the menu entry for the Help pages from the navigation menu. Help pages can still be accessed by calling ../help directly via its URL."; +$a->strings["Single user instance"] = "Single user instance"; +$a->strings["Make this instance multi-user or single-user for the named user"] = "Make this instance multi-user or single-user for the named user"; +$a->strings["Maximum image size"] = "Maximum image size"; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximum size in bytes of uploaded images. Default is 0, which means no limits."; +$a->strings["Maximum image length"] = "Maximum image length"; +$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = ""; +$a->strings["JPEG image quality"] = "JPEG image quality"; +$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = ""; +$a->strings["Register policy"] = "Register policy"; +$a->strings["Maximum Daily Registrations"] = ""; +$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."] = ""; +$a->strings["Register text"] = ""; +$a->strings["Will be displayed prominently on the registration page."] = ""; +$a->strings["Accounts abandoned after x days"] = ""; +$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = ""; +$a->strings["Allowed friend domains"] = ""; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = ""; +$a->strings["Allowed email domains"] = ""; +$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = ""; +$a->strings["Block public"] = ""; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = ""; +$a->strings["Force publish"] = ""; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = ""; +$a->strings["Global directory URL"] = "Global directory URL"; +$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL to the global directory: If this is not set, the global directory is completely unavailable to the application."; +$a->strings["Allow threaded items"] = ""; +$a->strings["Allow infinite level threading for items on this site."] = ""; +$a->strings["Private posts by default for new users"] = ""; +$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = ""; +$a->strings["Don't include post content in email notifications"] = ""; +$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = ""; +$a->strings["Disallow public access to addons listed in the apps menu."] = ""; +$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = ""; +$a->strings["Don't embed private images in posts"] = ""; +$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = ""; +$a->strings["Allow Users to set remote_self"] = ""; +$a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = ""; +$a->strings["Block multiple registrations"] = ""; +$a->strings["Disallow users to register additional accounts for use as pages."] = ""; +$a->strings["OpenID support"] = ""; +$a->strings["OpenID support for registration and logins."] = ""; +$a->strings["Fullname check"] = ""; +$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = ""; +$a->strings["Community Page Style"] = ""; +$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = ""; +$a->strings["Posts per user on community page"] = ""; +$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = ""; +$a->strings["Enable OStatus support"] = ""; +$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = ""; +$a->strings["OStatus conversation completion interval"] = ""; +$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = ""; +$a->strings["Only import OStatus threads from our contacts"] = ""; +$a->strings["Normally we import every content from our OStatus contacts. With this option we only store threads that are started by a contact that is known on our system."] = ""; +$a->strings["OStatus support can only be enabled if threading is enabled."] = ""; +$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = ""; +$a->strings["Enable Diaspora support"] = ""; +$a->strings["Provide built-in Diaspora network compatibility."] = ""; +$a->strings["Only allow Friendica contacts"] = ""; +$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = ""; +$a->strings["Verify SSL"] = ""; +$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = ""; +$a->strings["Proxy user"] = ""; +$a->strings["Proxy URL"] = "Proxy URL"; +$a->strings["Network timeout"] = ""; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = ""; +$a->strings["Maximum Load Average"] = ""; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = ""; +$a->strings["Maximum Load Average (Frontend)"] = ""; +$a->strings["Maximum system load before the frontend quits service - default 50."] = ""; +$a->strings["Minimal Memory"] = ""; +$a->strings["Minimal free memory in MB for the poller. Needs access to /proc/meminfo - default 0 (deactivated)."] = ""; +$a->strings["Maximum table size for optimization"] = ""; +$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = ""; +$a->strings["Minimum level of fragmentation"] = ""; +$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = ""; +$a->strings["Periodical check of global contacts"] = ""; +$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = ""; +$a->strings["Days between requery"] = ""; +$a->strings["Number of days after which a server is requeried for his contacts."] = ""; +$a->strings["Discover contacts from other servers"] = ""; +$a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = "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 recommend setting is 'Users, Global Contacts'."; +$a->strings["Timeframe for fetching global contacts"] = ""; +$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = ""; +$a->strings["Search the local directory"] = ""; +$a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = ""; +$a->strings["Publish server information"] = ""; +$a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details."] = ""; +$a->strings["Suppress Tags"] = ""; +$a->strings["Suppress showing a list of hashtags at the end of the posting."] = ""; +$a->strings["Path to item cache"] = ""; +$a->strings["The item caches buffers generated bbcode and external images."] = ""; +$a->strings["Cache duration in seconds"] = ""; +$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = ""; +$a->strings["Maximum numbers of comments per post"] = ""; +$a->strings["How much comments should be shown for each post? Default value is 100."] = ""; +$a->strings["Temp path"] = ""; +$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = ""; +$a->strings["Base path to installation"] = ""; +$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = ""; +$a->strings["Disable picture proxy"] = ""; +$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = ""; +$a->strings["Only search in tags"] = ""; +$a->strings["On large systems the text search can slow down the system extremely."] = ""; +$a->strings["New base url"] = "New base URL"; +$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = "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["Maximum number of parallel workers"] = ""; +$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = ""; +$a->strings["Don't use 'proc_open' with the worker"] = ""; +$a->strings["Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosters. If this is enabled you should increase the frequency of poller calls in your crontab."] = ""; +$a->strings["Enable fastlane"] = ""; +$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = ""; +$a->strings["Enable frontend worker"] = ""; +$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = ""; +$a->strings["Update has been marked successful"] = ""; +$a->strings["Database structure update %s was successfully applied."] = ""; +$a->strings["Executing of database structure update %s failed with error: %s"] = ""; +$a->strings["Executing %s failed with error: %s"] = ""; +$a->strings["Update %s was successfully applied."] = ""; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = ""; +$a->strings["There was no additional update function %s that needed to be called."] = ""; +$a->strings["No failed updates."] = ""; +$a->strings["Check database structure"] = ""; +$a->strings["Failed Updates"] = ""; +$a->strings["This does not include updates prior to 1139, which did not return a status."] = ""; +$a->strings["Mark success (if update was manually applied)"] = ""; +$a->strings["Attempt to execute this update step automatically"] = ""; +$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = ""; +$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = ""; +$a->strings["%s user blocked/unblocked"] = array( + 0 => "", + 1 => "", ); -$a->strings["Remove term"] = "Remove term"; -$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array( - 0 => "Warning: This group contains %s member from a network that doesn't allow non public messages.", - 1 => "Warning: This group contains %s members from a network that doesn't allow non public messages.", +$a->strings["%s user deleted"] = array( + 0 => "", + 1 => "", ); -$a->strings["Messages in this group won't be send to these receivers."] = "Messages in this group won't be send to these receivers."; -$a->strings["Private messages to this person are at risk of public disclosure."] = "Private messages to this person are at risk of public disclosure."; -$a->strings["Invalid contact."] = "Invalid contact."; -$a->strings["Commented Order"] = "Commented last"; -$a->strings["Sort by Comment Date"] = "Sort by comment date"; -$a->strings["Posted Order"] = "Posted last"; -$a->strings["Sort by Post Date"] = "Sort by post date"; -$a->strings["Posts that mention or involve you"] = "Posts mentioning or involving me"; -$a->strings["New"] = "New"; -$a->strings["Activity Stream - by date"] = "Activity Stream - by date"; -$a->strings["Shared Links"] = "Shared links"; -$a->strings["Interesting Links"] = "Interesting links"; -$a->strings["Starred"] = "Starred"; -$a->strings["Favourite Posts"] = "My favourite posts"; -$a->strings["OpenID protocol error. No ID returned."] = "OpenID protocol error. No ID returned."; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Account not found and OpenID registration is not permitted on this site."; -$a->strings["Recent Photos"] = "Recent photos"; -$a->strings["Upload New Photos"] = "Upload new photos"; -$a->strings["everybody"] = "everybody"; -$a->strings["Contact information unavailable"] = "Contact information unavailable"; -$a->strings["Album not found."] = "Album not found."; -$a->strings["Delete Album"] = "Delete album"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Do you really want to delete this photo album and all its photos?"; -$a->strings["Delete Photo"] = "Delete photo"; -$a->strings["Do you really want to delete this photo?"] = "Do you really want to delete this photo?"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s was tagged in %2\$s by %3\$s"; -$a->strings["a photo"] = "a photo"; -$a->strings["Image file is empty."] = "Image file is empty."; -$a->strings["No photos selected"] = "No photos selected"; -$a->strings["Access to this item is restricted."] = "Access to this item is restricted."; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."; -$a->strings["Upload Photos"] = "Upload photos"; -$a->strings["New album name: "] = "New album name: "; -$a->strings["or existing album name: "] = "or existing album name: "; -$a->strings["Do not show a status post for this upload"] = "Do not show a status post for this upload"; -$a->strings["Show to Groups"] = ""; -$a->strings["Show to Contacts"] = ""; -$a->strings["Private Photo"] = ""; -$a->strings["Public Photo"] = ""; -$a->strings["Edit Album"] = ""; -$a->strings["Show Newest First"] = ""; -$a->strings["Show Oldest First"] = ""; -$a->strings["View Photo"] = ""; -$a->strings["Permission denied. Access to this item may be restricted."] = ""; -$a->strings["Photo not available"] = ""; -$a->strings["View photo"] = ""; -$a->strings["Edit photo"] = ""; -$a->strings["Use as profile photo"] = ""; -$a->strings["View Full Size"] = ""; -$a->strings["Tags: "] = ""; -$a->strings["[Remove any tag]"] = ""; -$a->strings["New album name"] = ""; -$a->strings["Caption"] = ""; -$a->strings["Add a Tag"] = "Add Tag"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = ""; -$a->strings["Do not rotate"] = ""; -$a->strings["Rotate CW (right)"] = ""; -$a->strings["Rotate CCW (left)"] = ""; -$a->strings["Private photo"] = ""; -$a->strings["Public photo"] = ""; -$a->strings["Map"] = ""; -$a->strings["View Album"] = ""; -$a->strings["Only logged in users are permitted to perform a probing."] = ""; -$a->strings["Tips for New Members"] = ""; -$a->strings["Profile deleted."] = ""; +$a->strings["User '%s' deleted"] = ""; +$a->strings["User '%s' unblocked"] = ""; +$a->strings["User '%s' blocked"] = ""; +$a->strings["Register date"] = ""; +$a->strings["Last login"] = ""; +$a->strings["Last item"] = ""; +$a->strings["Account"] = ""; +$a->strings["Add User"] = ""; +$a->strings["select all"] = ""; +$a->strings["User registrations waiting for confirm"] = ""; +$a->strings["User waiting for permanent deletion"] = ""; +$a->strings["Request date"] = ""; +$a->strings["No registrations."] = ""; +$a->strings["Note from the user"] = ""; +$a->strings["Deny"] = ""; +$a->strings["Block"] = "Block"; +$a->strings["Unblock"] = "Unblock"; +$a->strings["Site admin"] = ""; +$a->strings["Account expired"] = ""; +$a->strings["New User"] = ""; +$a->strings["Deleted since"] = ""; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; +$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; +$a->strings["Name of the new user."] = ""; +$a->strings["Nickname"] = ""; +$a->strings["Nickname of the new user."] = ""; +$a->strings["Email address of the new user."] = ""; +$a->strings["Plugin %s disabled."] = ""; +$a->strings["Plugin %s enabled."] = ""; +$a->strings["Disable"] = ""; +$a->strings["Enable"] = ""; +$a->strings["Toggle"] = ""; +$a->strings["Author: "] = ""; +$a->strings["Maintainer: "] = ""; +$a->strings["Reload active plugins"] = ""; +$a->strings["There are currently no plugins available on your node. You can find the official plugin repository at %1\$s and might find other interesting plugins in the open plugin registry at %2\$s"] = ""; +$a->strings["No themes found."] = ""; +$a->strings["Screenshot"] = ""; +$a->strings["Reload active themes"] = ""; +$a->strings["No themes found on the system. They should be paced in %1\$s"] = ""; +$a->strings["[Experimental]"] = ""; +$a->strings["[Unsupported]"] = ""; +$a->strings["Log settings updated."] = ""; +$a->strings["PHP log currently enabled."] = ""; +$a->strings["PHP log currently disabled."] = ""; +$a->strings["Clear"] = ""; +$a->strings["Enable Debugging"] = ""; +$a->strings["Log file"] = ""; +$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = ""; +$a->strings["Log level"] = ""; +$a->strings["PHP logging"] = ""; +$a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = ""; +$a->strings["Off"] = ""; +$a->strings["On"] = ""; +$a->strings["Lock feature %s"] = ""; +$a->strings["Manage Additional Features"] = ""; +$a->strings["%d contact edited."] = array( + 0 => "%d contact edited.", + 1 => "%d contacts edited.", +); +$a->strings["Could not access contact record."] = "Could not access contact record."; +$a->strings["Could not locate selected profile."] = "Could not locate selected profile."; +$a->strings["Contact updated."] = "Contact updated."; +$a->strings["Contact has been blocked"] = "Contact has been blocked"; +$a->strings["Contact has been unblocked"] = "Contact has been unblocked"; +$a->strings["Contact has been ignored"] = "Contact has been ignored"; +$a->strings["Contact has been unignored"] = "Contact has been unignored"; +$a->strings["Contact has been archived"] = "Contact has been archived"; +$a->strings["Contact has been unarchived"] = "Contact has been unarchived"; +$a->strings["Drop contact"] = "Drop contact"; +$a->strings["Do you really want to delete this contact?"] = "Do you really want to delete this contact?"; +$a->strings["Contact has been removed."] = "Contact has been removed."; +$a->strings["You are mutual friends with %s"] = "You are mutual friends with %s"; +$a->strings["You are sharing with %s"] = "You are sharing with %s"; +$a->strings["%s is sharing with you"] = "%s is sharing with you"; +$a->strings["Private communications are not available for this contact."] = "Private communications are not available for this contact."; +$a->strings["(Update was successful)"] = "(Update was successful)"; +$a->strings["(Update was not successful)"] = "(Update was not successful)"; +$a->strings["Suggest friends"] = "Suggest friends"; +$a->strings["Network type: %s"] = "Network type: %s"; +$a->strings["Communications lost with this contact!"] = "Communications lost with this contact!"; +$a->strings["Fetch further information for feeds"] = "Fetch further information for feeds"; +$a->strings["Fetch information"] = "Fetch information"; +$a->strings["Fetch information and keywords"] = "Fetch information and keywords"; +$a->strings["Contact"] = "Contact"; +$a->strings["Profile Visibility"] = "Profile visibility"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Please choose the profile you would like to display to %s when viewing your profile securely."; +$a->strings["Contact Information / Notes"] = "Personal note"; +$a->strings["Edit contact notes"] = "Edit contact notes"; +$a->strings["Block/Unblock contact"] = "Block/Unblock contact"; +$a->strings["Ignore contact"] = "Ignore contact"; +$a->strings["Repair URL settings"] = "Repair URL settings"; +$a->strings["View conversations"] = "View conversations"; +$a->strings["Last update:"] = "Last update:"; +$a->strings["Update public posts"] = "Update public posts"; +$a->strings["Update now"] = "Update now"; +$a->strings["Unignore"] = "Unignore"; +$a->strings["Currently blocked"] = "Currently blocked"; +$a->strings["Currently ignored"] = "Currently ignored"; +$a->strings["Currently archived"] = "Currently archived"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Replies/Likes to your public posts may still be visible"; +$a->strings["Notification for new posts"] = "Notification for new posts"; +$a->strings["Send a notification of every new post of this contact"] = "Send notification for every new post from this contact"; +$a->strings["Blacklisted keywords"] = "Blacklisted keywords"; +$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"; +$a->strings["Actions"] = "Actions"; +$a->strings["Contact Settings"] = "Notification and privacy "; +$a->strings["Suggestions"] = "Suggestions"; +$a->strings["Suggest potential friends"] = "Suggest potential friends"; +$a->strings["Show all contacts"] = "Show all contacts"; +$a->strings["Unblocked"] = "Unblocked"; +$a->strings["Only show unblocked contacts"] = "Only show unblocked contacts"; +$a->strings["Blocked"] = "Blocked"; +$a->strings["Only show blocked contacts"] = "Only show blocked contacts"; +$a->strings["Ignored"] = "Ignored"; +$a->strings["Only show ignored contacts"] = "Only show ignored contacts"; +$a->strings["Archived"] = "Archived"; +$a->strings["Only show archived contacts"] = "Only show archived contacts"; +$a->strings["Hidden"] = "Hidden"; +$a->strings["Only show hidden contacts"] = "Only show hidden contacts"; +$a->strings["Search your contacts"] = "Search your contacts"; +$a->strings["Update"] = "Update"; +$a->strings["Archive"] = "Archive"; +$a->strings["Unarchive"] = "Unarchive"; +$a->strings["Batch Actions"] = "Batch actions"; +$a->strings["View all contacts"] = "View all contacts"; +$a->strings["View all common friends"] = "View all common friends"; +$a->strings["Advanced Contact Settings"] = "Advanced contact settings"; +$a->strings["Mutual Friendship"] = "Mutual friendship"; +$a->strings["is a fan of yours"] = "is a fan of yours"; +$a->strings["you are a fan of"] = "I follow them"; +$a->strings["Toggle Blocked status"] = "Toggle blocked status"; +$a->strings["Toggle Ignored status"] = "Toggle ignored status"; +$a->strings["Toggle Archive status"] = "Toggle archive status"; +$a->strings["Delete contact"] = "Delete contact"; +$a->strings["Image uploaded but image cropping failed."] = "Image uploaded but image cropping failed."; +$a->strings["Image size reduction [%s] failed."] = "Image size reduction [%s] failed."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-reload the page or clear browser cache if the new photo does not display immediately."; +$a->strings["Unable to process image"] = "Unable to process image"; +$a->strings["Upload File:"] = "Upload File:"; +$a->strings["Select a profile:"] = "Select a profile:"; +$a->strings["Upload"] = "Upload"; +$a->strings["or"] = "or"; +$a->strings["skip this step"] = "skip this step"; +$a->strings["select a photo from your photo albums"] = "select a photo from your photo albums"; +$a->strings["Crop Image"] = "Crop Image"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Please adjust the image cropping for optimum viewing."; +$a->strings["Done Editing"] = "Done editing"; +$a->strings["Image uploaded successfully."] = "Image uploaded successfully."; +$a->strings["Profile deleted."] = "Profile deleted."; $a->strings["Profile-"] = ""; $a->strings["New profile created."] = ""; $a->strings["Profile unavailable to clone."] = ""; @@ -1326,7 +1771,7 @@ $a->strings["Political Views"] = ""; $a->strings["Gender"] = ""; $a->strings["Sexual Preference"] = ""; $a->strings["XMPP"] = ""; -$a->strings["Homepage"] = ""; +$a->strings["Homepage"] = "Homepage"; $a->strings["Interests"] = ""; $a->strings["Address"] = ""; $a->strings["Location"] = ""; @@ -1370,7 +1815,7 @@ $a->strings["Since [date]:"] = ""; $a->strings["Tell us about yourself..."] = ""; $a->strings["XMPP (Jabber) address:"] = ""; $a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = ""; -$a->strings["Homepage URL:"] = ""; +$a->strings["Homepage URL:"] = "Homepage URL:"; $a->strings["Religious Views:"] = ""; $a->strings["Public Keywords:"] = ""; $a->strings["(Used for suggesting potential friends, can be seen by others)"] = ""; @@ -1386,39 +1831,9 @@ $a->strings["Work/employment"] = ""; $a->strings["School/education"] = ""; $a->strings["Contact information and Social Networks"] = ""; $a->strings["Edit/Manage Profiles"] = ""; -$a->strings["Registration successful. Please check your email for further instructions."] = ""; -$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = ""; -$a->strings["Registration successful."] = ""; -$a->strings["Your registration can not be processed."] = ""; -$a->strings["Your registration is pending approval by the site owner."] = ""; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = ""; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = ""; -$a->strings["Your OpenID (optional): "] = ""; -$a->strings["Include your profile in member directory?"] = ""; -$a->strings["Note for the admin"] = ""; -$a->strings["Leave a message for the admin, why you want to join this node"] = ""; -$a->strings["Membership on this site is by invitation only."] = ""; -$a->strings["Your invitation ID: "] = ""; -$a->strings["Registration"] = ""; -$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = ""; -$a->strings["Your Email Address: "] = ""; -$a->strings["New Password:"] = "New password:"; -$a->strings["Leave empty for an auto generated password."] = ""; -$a->strings["Confirm:"] = "Confirm new 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'."] = ""; -$a->strings["Choose a nickname: "] = ""; -$a->strings["Import your profile to this friendica instance"] = ""; -$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["Items tagged with: %s"] = ""; -$a->strings["Account"] = ""; -$a->strings["Additional features"] = ""; $a->strings["Display"] = ""; $a->strings["Social Networks"] = "Social networks"; -$a->strings["Plugins"] = ""; $a->strings["Connected apps"] = ""; -$a->strings["Export personal data"] = ""; $a->strings["Remove account"] = ""; $a->strings["Missing some important data!"] = ""; $a->strings["Failed to connect with email account using the settings provided."] = ""; @@ -1438,11 +1853,10 @@ $a->strings["Private forum has no privacy permissions. Using default privacy gro $a->strings["Private forum has no privacy permissions and no default privacy group."] = ""; $a->strings["Settings updated."] = ""; $a->strings["Add application"] = ""; -$a->strings["Save Settings"] = "Save settings"; $a->strings["Consumer Key"] = ""; $a->strings["Consumer Secret"] = ""; $a->strings["Redirect"] = ""; -$a->strings["Icon url"] = ""; +$a->strings["Icon url"] = "Icon URL"; $a->strings["You can't edit this application."] = ""; $a->strings["Connected Apps"] = ""; $a->strings["Client key starts with"] = ""; @@ -1450,8 +1864,6 @@ $a->strings["No name"] = ""; $a->strings["Remove authorization"] = ""; $a->strings["No Plugin settings configured"] = ""; $a->strings["Plugin Settings"] = ""; -$a->strings["Off"] = ""; -$a->strings["On"] = ""; $a->strings["Additional Features"] = ""; $a->strings["General Social Media Settings"] = ""; $a->strings["Disable intelligent shortening"] = ""; @@ -1481,7 +1893,6 @@ $a->strings["Send public posts to all email contacts:"] = ""; $a->strings["Action after import:"] = ""; $a->strings["Move to folder"] = "Move to folder"; $a->strings["Move to folder:"] = "Move to folder:"; -$a->strings["No special theme for mobile devices"] = ""; $a->strings["Display Settings"] = ""; $a->strings["Display Theme:"] = ""; $a->strings["Mobile Theme:"] = ""; @@ -1592,417 +2003,6 @@ $a->strings["Change the behaviour of this account for special situations"] = "Ch $a->strings["Relocate"] = "Recent relocation"; $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."] = "If you have moved this profile from another server and some of your contacts don't receive your updates:"; $a->strings["Resend relocate message to contacts"] = ""; -$a->strings["Export account"] = ""; -$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = ""; -$a->strings["Export all"] = ""; -$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = ""; -$a->strings["Do you really want to delete this video?"] = ""; -$a->strings["Delete Video"] = ""; -$a->strings["No videos selected"] = ""; -$a->strings["Recent Videos"] = ""; -$a->strings["Upload New Videos"] = ""; -$a->strings["Friendica Communications Server - Setup"] = ""; -$a->strings["Could not connect to database."] = ""; -$a->strings["Could not create table."] = ""; -$a->strings["Your Friendica site database has been installed."] = ""; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = ""; -$a->strings["Please see the file \"INSTALL.txt\"."] = ""; -$a->strings["Database already in use."] = ""; -$a->strings["System check"] = ""; -$a->strings["Check again"] = ""; -$a->strings["Database connection"] = ""; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = ""; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = ""; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = ""; -$a->strings["Database Server Name"] = ""; -$a->strings["Database Login Name"] = ""; -$a->strings["Database Login Password"] = ""; -$a->strings["For security reasons the password must not be empty"] = ""; -$a->strings["Database Name"] = ""; -$a->strings["Site administrator email address"] = ""; -$a->strings["Your account email address must match this in order to use the web admin panel."] = ""; -$a->strings["Please select a default timezone for your website"] = ""; -$a->strings["Site settings"] = ""; -$a->strings["System Language:"] = ""; -$a->strings["Set the default language for your Friendica installation interface and to send emails."] = ""; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = ""; -$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run the background processing. See 'Setup the poller'"] = ""; -$a->strings["PHP executable path"] = ""; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = ""; -$a->strings["Command line PHP"] = ""; -$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = ""; -$a->strings["Found PHP version: "] = ""; -$a->strings["PHP cli binary"] = ""; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = ""; -$a->strings["This is required for message delivery to work."] = ""; -$a->strings["PHP register_argc_argv"] = ""; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = ""; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = ""; -$a->strings["Generate encryption keys"] = ""; -$a->strings["libCurl PHP module"] = ""; -$a->strings["GD graphics PHP module"] = ""; -$a->strings["OpenSSL PHP module"] = ""; -$a->strings["PDO or MySQLi PHP module"] = ""; -$a->strings["mb_string PHP module"] = ""; -$a->strings["XML PHP module"] = ""; -$a->strings["iconv module"] = ""; -$a->strings["Apache mod_rewrite module"] = ""; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = ""; -$a->strings["Error: libCURL PHP module required but not installed."] = ""; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = ""; -$a->strings["Error: openssl PHP module required but not installed."] = ""; -$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = ""; -$a->strings["Error: The MySQL driver for PDO is not installed."] = ""; -$a->strings["Error: mb_string PHP module required but not installed."] = ""; -$a->strings["Error: iconv PHP module required but not installed."] = ""; -$a->strings["Error, XML PHP module required but not installed."] = ""; -$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "The web installer needs to be able to create a file called \".htconfig.php\" in the top-level directory of your web server, but it is unable to do so."; -$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "This is most often a permission setting issue, as the web server may not be able to write files in your directory - even if you can."; -$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top-level directory."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = ""; -$a->strings[".htconfig.php is writable"] = ""; -$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = ""; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "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 directory."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Please ensure the user (e.g. www-data) that your web server runs as has write access to this directory."; -$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = ""; -$a->strings["view/smarty3 is writable"] = ""; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = ""; -$a->strings["Url rewrite is working"] = ""; -$a->strings["ImageMagick PHP extension is not installed"] = ""; -$a->strings["ImageMagick PHP extension is installed"] = ""; -$a->strings["ImageMagick supports GIF"] = ""; -$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = ""; -$a->strings["

What next

"] = ""; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = ""; -$a->strings["Unable to locate original post."] = ""; -$a->strings["Empty post discarded."] = ""; -$a->strings["System error. Post not saved."] = ""; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = ""; -$a->strings["You may visit them online at %s"] = ""; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = ""; -$a->strings["%s posted an update."] = ""; -$a->strings["Invalid request identifier."] = ""; -$a->strings["Discard"] = ""; -$a->strings["Network Notifications"] = ""; -$a->strings["Personal Notifications"] = ""; -$a->strings["Home Notifications"] = ""; -$a->strings["Show Ignored Requests"] = "Show ignored requests."; -$a->strings["Hide Ignored Requests"] = ""; -$a->strings["Notification type: "] = ""; -$a->strings["suggested by %s"] = ""; -$a->strings["Post a new friend activity"] = ""; -$a->strings["if applicable"] = ""; -$a->strings["Approve"] = ""; -$a->strings["Claims to be known to you: "] = "Says they know me:"; -$a->strings["yes"] = ""; -$a->strings["no"] = ""; -$a->strings["Shall your connection be bidirectional or not?"] = "Shall your connection be in both directions or not?"; -$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = ""; -$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = ""; -$a->strings["Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = ""; -$a->strings["Friend"] = ""; -$a->strings["Sharer"] = ""; -$a->strings["Subscriber"] = ""; -$a->strings["No introductions."] = ""; -$a->strings["Show unread"] = ""; -$a->strings["Show all"] = ""; -$a->strings["No more %s notifications."] = ""; -$a->strings["{0} wants to be your friend"] = ""; -$a->strings["{0} sent you a message"] = ""; -$a->strings["{0} requested registration"] = ""; -$a->strings["Theme settings updated."] = ""; -$a->strings["Site"] = ""; -$a->strings["Users"] = ""; -$a->strings["Themes"] = "Theme selection"; -$a->strings["DB updates"] = ""; -$a->strings["Inspect Queue"] = ""; -$a->strings["Server Blocklist"] = ""; -$a->strings["Federation Statistics"] = ""; -$a->strings["Logs"] = ""; -$a->strings["View Logs"] = ""; -$a->strings["probe address"] = ""; -$a->strings["check webfinger"] = ""; -$a->strings["Plugin Features"] = ""; -$a->strings["diagnostics"] = ""; -$a->strings["User registrations waiting for confirmation"] = ""; -$a->strings["The blocked domain"] = ""; -$a->strings["The reason why you blocked this domain."] = ""; -$a->strings["Delete domain"] = ""; -$a->strings["Check to delete this entry from the blocklist"] = ""; -$a->strings["Administration"] = ""; -$a->strings["This page can be used to define a black list of servers from the federated network that are not allowed to interact with your node. For all entered domains you should also give a reason why you have blocked the remote server."] = ""; -$a->strings["The list of blocked servers will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily."] = ""; -$a->strings["Add new entry to block list"] = ""; -$a->strings["Server Domain"] = ""; -$a->strings["The domain of the new server to add to the block list. Do not include the protocol."] = ""; -$a->strings["Block reason"] = ""; -$a->strings["Add Entry"] = ""; -$a->strings["Save changes to the blocklist"] = ""; -$a->strings["Current Entries in the Blocklist"] = ""; -$a->strings["Delete entry from blocklist"] = ""; -$a->strings["Delete entry from blocklist?"] = ""; -$a->strings["Server added to blocklist."] = ""; -$a->strings["Site blocklist updated."] = ""; -$a->strings["unknown"] = ""; -$a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = ""; -$a->strings["The Auto Discovered Contact Directory feature is not enabled, it will improve the data displayed here."] = ""; -$a->strings["Currently this node is aware of %d nodes from the following platforms:"] = ""; -$a->strings["ID"] = ""; -$a->strings["Recipient Name"] = ""; -$a->strings["Recipient Profile"] = ""; -$a->strings["Created"] = ""; -$a->strings["Last Tried"] = ""; -$a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = ""; -$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the command php include/dbstructure.php toinnodb of your Friendica installation for an automatic conversion.
"] = ""; -$a->strings["You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB."] = ""; -$a->strings["Normal Account"] = "Standard account"; -$a->strings["Soapbox Account"] = "Soapbox account"; -$a->strings["Community/Celebrity Account"] = ""; -$a->strings["Automatic Friend Account"] = ""; -$a->strings["Blog Account"] = ""; -$a->strings["Private Forum"] = ""; -$a->strings["Message queues"] = ""; -$a->strings["Summary"] = ""; -$a->strings["Registered users"] = ""; -$a->strings["Pending registrations"] = ""; -$a->strings["Version"] = ""; -$a->strings["Active plugins"] = ""; -$a->strings["Can not parse base url. Must have at least ://"] = ""; -$a->strings["Site settings updated."] = ""; -$a->strings["No community page"] = ""; -$a->strings["Public postings from users of this site"] = ""; -$a->strings["Global community page"] = ""; -$a->strings["At post arrival"] = ""; -$a->strings["Users, Global Contacts"] = ""; -$a->strings["Users, Global Contacts/fallback"] = ""; -$a->strings["One month"] = ""; -$a->strings["Three months"] = ""; -$a->strings["Half a year"] = ""; -$a->strings["One year"] = ""; -$a->strings["Multi user instance"] = ""; -$a->strings["Closed"] = ""; -$a->strings["Requires approval"] = ""; -$a->strings["Open"] = ""; -$a->strings["No SSL policy, links will track page SSL state"] = ""; -$a->strings["Force all links to use SSL"] = ""; -$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = ""; -$a->strings["File upload"] = ""; -$a->strings["Policies"] = ""; -$a->strings["Auto Discovered Contact Directory"] = ""; -$a->strings["Performance"] = ""; -$a->strings["Worker"] = ""; -$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Relocate - Warning, advanced function: This could make this server unreachable."; -$a->strings["Site name"] = ""; -$a->strings["Host name"] = ""; -$a->strings["Sender Email"] = ""; -$a->strings["The email address your server shall use to send notification emails from."] = ""; -$a->strings["Banner/Logo"] = ""; -$a->strings["Shortcut icon"] = ""; -$a->strings["Link to an icon that will be used for browsers."] = ""; -$a->strings["Touch icon"] = ""; -$a->strings["Link to an icon that will be used for tablets and mobiles."] = ""; -$a->strings["Additional Info"] = ""; -$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = ""; -$a->strings["System language"] = ""; -$a->strings["System theme"] = ""; -$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = ""; -$a->strings["Mobile system theme"] = ""; -$a->strings["Theme for mobile devices"] = ""; -$a->strings["SSL link policy"] = ""; -$a->strings["Determines whether generated links should be forced to use SSL"] = ""; -$a->strings["Force SSL"] = ""; -$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = ""; -$a->strings["Hide help entry from navigation menu"] = ""; -$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = ""; -$a->strings["Single user instance"] = ""; -$a->strings["Make this instance multi-user or single-user for the named user"] = ""; -$a->strings["Maximum image size"] = ""; -$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = ""; -$a->strings["Maximum image length"] = ""; -$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = ""; -$a->strings["JPEG image quality"] = ""; -$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = ""; -$a->strings["Register policy"] = ""; -$a->strings["Maximum Daily Registrations"] = ""; -$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."] = ""; -$a->strings["Register text"] = ""; -$a->strings["Will be displayed prominently on the registration page."] = ""; -$a->strings["Accounts abandoned after x days"] = ""; -$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = ""; -$a->strings["Allowed friend domains"] = ""; -$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = ""; -$a->strings["Allowed email domains"] = ""; -$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = ""; -$a->strings["Block public"] = ""; -$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = ""; -$a->strings["Force publish"] = ""; -$a->strings["Check to force all profiles on this site to be listed in the site directory."] = ""; -$a->strings["Global directory URL"] = ""; -$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = ""; -$a->strings["Allow threaded items"] = ""; -$a->strings["Allow infinite level threading for items on this site."] = ""; -$a->strings["Private posts by default for new users"] = ""; -$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = ""; -$a->strings["Don't include post content in email notifications"] = ""; -$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = ""; -$a->strings["Disallow public access to addons listed in the apps menu."] = ""; -$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = ""; -$a->strings["Don't embed private images in posts"] = ""; -$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = ""; -$a->strings["Allow Users to set remote_self"] = ""; -$a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = ""; -$a->strings["Block multiple registrations"] = ""; -$a->strings["Disallow users to register additional accounts for use as pages."] = ""; -$a->strings["OpenID support"] = ""; -$a->strings["OpenID support for registration and logins."] = ""; -$a->strings["Fullname check"] = ""; -$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = ""; -$a->strings["Community Page Style"] = ""; -$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = ""; -$a->strings["Posts per user on community page"] = ""; -$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = ""; -$a->strings["Enable OStatus support"] = ""; -$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = ""; -$a->strings["OStatus conversation completion interval"] = ""; -$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = ""; -$a->strings["Only import OStatus threads from our contacts"] = ""; -$a->strings["Normally we import every content from our OStatus contacts. With this option we only store threads that are started by a contact that is known on our system."] = ""; -$a->strings["OStatus support can only be enabled if threading is enabled."] = ""; -$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = ""; -$a->strings["Enable Diaspora support"] = ""; -$a->strings["Provide built-in Diaspora network compatibility."] = ""; -$a->strings["Only allow Friendica contacts"] = ""; -$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = ""; -$a->strings["Verify SSL"] = ""; -$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = ""; -$a->strings["Proxy user"] = ""; -$a->strings["Proxy URL"] = ""; -$a->strings["Network timeout"] = ""; -$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = ""; -$a->strings["Maximum Load Average"] = ""; -$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = ""; -$a->strings["Maximum Load Average (Frontend)"] = ""; -$a->strings["Maximum system load before the frontend quits service - default 50."] = ""; -$a->strings["Minimal Memory"] = ""; -$a->strings["Minimal free memory in MB for the poller. Needs access to /proc/meminfo - default 0 (deactivated)."] = ""; -$a->strings["Maximum table size for optimization"] = ""; -$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = ""; -$a->strings["Minimum level of fragmentation"] = ""; -$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = ""; -$a->strings["Periodical check of global contacts"] = ""; -$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = ""; -$a->strings["Days between requery"] = ""; -$a->strings["Number of days after which a server is requeried for his contacts."] = ""; -$a->strings["Discover contacts from other servers"] = ""; -$a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = "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 recommend setting is 'Users, Global Contacts'."; -$a->strings["Timeframe for fetching global contacts"] = ""; -$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = ""; -$a->strings["Search the local directory"] = ""; -$a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = ""; -$a->strings["Publish server information"] = ""; -$a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details."] = ""; -$a->strings["Suppress Tags"] = ""; -$a->strings["Suppress showing a list of hashtags at the end of the posting."] = ""; -$a->strings["Path to item cache"] = ""; -$a->strings["The item caches buffers generated bbcode and external images."] = ""; -$a->strings["Cache duration in seconds"] = ""; -$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = ""; -$a->strings["Maximum numbers of comments per post"] = ""; -$a->strings["How much comments should be shown for each post? Default value is 100."] = ""; -$a->strings["Temp path"] = ""; -$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = ""; -$a->strings["Base path to installation"] = ""; -$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = ""; -$a->strings["Disable picture proxy"] = ""; -$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = ""; -$a->strings["Only search in tags"] = ""; -$a->strings["On large systems the text search can slow down the system extremely."] = ""; -$a->strings["New base url"] = ""; -$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = ""; -$a->strings["RINO Encryption"] = ""; -$a->strings["Encryption layer between nodes."] = ""; -$a->strings["Maximum number of parallel workers"] = ""; -$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = ""; -$a->strings["Don't use 'proc_open' with the worker"] = ""; -$a->strings["Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosters. If this is enabled you should increase the frequency of poller calls in your crontab."] = ""; -$a->strings["Enable fastlane"] = ""; -$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = ""; -$a->strings["Enable frontend worker"] = ""; -$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = ""; -$a->strings["Update has been marked successful"] = ""; -$a->strings["Database structure update %s was successfully applied."] = ""; -$a->strings["Executing of database structure update %s failed with error: %s"] = ""; -$a->strings["Executing %s failed with error: %s"] = ""; -$a->strings["Update %s was successfully applied."] = ""; -$a->strings["Update %s did not return a status. Unknown if it succeeded."] = ""; -$a->strings["There was no additional update function %s that needed to be called."] = ""; -$a->strings["No failed updates."] = ""; -$a->strings["Check database structure"] = ""; -$a->strings["Failed Updates"] = ""; -$a->strings["This does not include updates prior to 1139, which did not return a status."] = ""; -$a->strings["Mark success (if update was manually applied)"] = ""; -$a->strings["Attempt to execute this update step automatically"] = ""; -$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = ""; -$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = ""; -$a->strings["%s user blocked/unblocked"] = array( - 0 => "", - 1 => "", -); -$a->strings["%s user deleted"] = array( - 0 => "", - 1 => "", -); -$a->strings["User '%s' deleted"] = ""; -$a->strings["User '%s' unblocked"] = ""; -$a->strings["User '%s' blocked"] = ""; -$a->strings["Register date"] = ""; -$a->strings["Last login"] = ""; -$a->strings["Last item"] = ""; -$a->strings["Add User"] = ""; -$a->strings["select all"] = ""; -$a->strings["User registrations waiting for confirm"] = ""; -$a->strings["User waiting for permanent deletion"] = ""; -$a->strings["Request date"] = ""; -$a->strings["No registrations."] = ""; -$a->strings["Note from the user"] = ""; -$a->strings["Deny"] = ""; -$a->strings["Site admin"] = ""; -$a->strings["Account expired"] = ""; -$a->strings["New User"] = ""; -$a->strings["Deleted since"] = ""; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; -$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; -$a->strings["Name of the new user."] = ""; -$a->strings["Nickname"] = ""; -$a->strings["Nickname of the new user."] = ""; -$a->strings["Email address of the new user."] = ""; -$a->strings["Plugin %s disabled."] = ""; -$a->strings["Plugin %s enabled."] = ""; -$a->strings["Disable"] = ""; -$a->strings["Enable"] = ""; -$a->strings["Toggle"] = ""; -$a->strings["Author: "] = ""; -$a->strings["Maintainer: "] = ""; -$a->strings["Reload active plugins"] = ""; -$a->strings["There are currently no plugins available on your node. You can find the official plugin repository at %1\$s and might find other interesting plugins in the open plugin registry at %2\$s"] = ""; -$a->strings["No themes found."] = ""; -$a->strings["Screenshot"] = ""; -$a->strings["Reload active themes"] = ""; -$a->strings["No themes found on the system. They should be paced in %1\$s"] = ""; -$a->strings["[Experimental]"] = ""; -$a->strings["[Unsupported]"] = ""; -$a->strings["Log settings updated."] = ""; -$a->strings["PHP log currently enabled."] = ""; -$a->strings["PHP log currently disabled."] = ""; -$a->strings["Clear"] = ""; -$a->strings["Enable Debugging"] = ""; -$a->strings["Log file"] = ""; -$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = ""; -$a->strings["Log level"] = ""; -$a->strings["PHP logging"] = ""; -$a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = ""; -$a->strings["Lock feature %s"] = ""; -$a->strings["Manage Additional Features"] = ""; $a->strings["via"] = ""; $a->strings["greenzero"] = ""; $a->strings["purplezero"] = ""; @@ -2011,16 +2011,6 @@ $a->strings["darkzero"] = ""; $a->strings["comix"] = ""; $a->strings["slackr"] = ""; $a->strings["Variations"] = ""; -$a->strings["Default"] = ""; -$a->strings["Note: "] = ""; -$a->strings["Check image permissions if all users are allowed to visit the image"] = ""; -$a->strings["Select scheme"] = ""; -$a->strings["Navigation bar background color"] = ""; -$a->strings["Navigation bar icon color "] = ""; -$a->strings["Link color"] = ""; -$a->strings["Set the background color"] = ""; -$a->strings["Content background transparency"] = ""; -$a->strings["Set the background image"] = ""; $a->strings["Repeat the image"] = ""; $a->strings["Will repeat your image to fill the background."] = ""; $a->strings["Stretch"] = ""; @@ -2029,12 +2019,22 @@ $a->strings["Resize fill and-clip"] = ""; $a->strings["Resize to fill and retain aspect ratio."] = ""; $a->strings["Resize best fit"] = ""; $a->strings["Resize to best fit and retain aspect ratio."] = ""; +$a->strings["Default"] = ""; +$a->strings["Note: "] = ""; +$a->strings["Check image permissions if all users are allowed to visit the image"] = ""; +$a->strings["Select scheme"] = ""; +$a->strings["Navigation bar background color"] = "Navigation bar background colour"; +$a->strings["Navigation bar icon color "] = "Navigation bar icon colour "; +$a->strings["Link color"] = "Link colour"; +$a->strings["Set the background color"] = "Set the background colour"; +$a->strings["Content background transparency"] = ""; +$a->strings["Set the background image"] = ""; $a->strings["Guest"] = ""; $a->strings["Visitor"] = ""; $a->strings["Alignment"] = ""; $a->strings["Left"] = ""; -$a->strings["Center"] = ""; -$a->strings["Color scheme"] = ""; +$a->strings["Center"] = "Centre"; +$a->strings["Color scheme"] = "Colour scheme"; $a->strings["Posts font size"] = ""; $a->strings["Textareas font size"] = ""; $a->strings["Comma separated list of helper forums"] = ""; @@ -2047,9 +2047,9 @@ $a->strings["Find Friends"] = ""; $a->strings["Last users"] = ""; $a->strings["Local Directory"] = ""; $a->strings["Quick Start"] = ""; -$a->strings["toggle mobile"] = ""; $a->strings["Delete this item?"] = "Delete this item?"; $a->strings["show fewer"] = "Show fewer."; +$a->strings["toggle mobile"] = ""; $a->strings["Update %s failed. See error logs."] = "Update %s failed. See error logs."; $a->strings["Create a New Account"] = "Create a new account"; $a->strings["Password: "] = "Password: "; From a32de855cc2cd99b1977ef4bcdc11c1f49e44d3b Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 29 May 2017 19:14:44 +0000 Subject: [PATCH 055/125] Don't quit if the own host cannot be reached via SSL --- include/poller.php | 54 ++++++++++++++++++++++++------------------- src/Network/Probe.php | 24 ++++++++++++++++++- 2 files changed, 53 insertions(+), 25 deletions(-) diff --git a/include/poller.php b/include/poller.php index ae249ffe46..839e5c11bb 100644 --- a/include/poller.php +++ b/include/poller.php @@ -417,11 +417,9 @@ function poller_too_much_workers() { $maxqueues = $queues; - $active = poller_active_workers(); - // Decrease the number of workers at higher load $load = current_load(); - if($load) { + if ($load) { $maxsysload = intval(Config::get("system", "maxloadavg", 50)); $maxworkers = $queues; @@ -431,6 +429,33 @@ function poller_too_much_workers() { $slope = $maxworkers / pow($maxsysload, $exponent); $queues = ceil($slope * pow(max(0, $maxsysload - $load), $exponent)); + $active = 0; + + // Create a list of queue entries grouped by their priority + $listitem = array(); + + // Adding all processes with no workerqueue entry + $processes = dba::p("SELECT COUNT(*) AS `running` FROM `process` WHERE NOT EXISTS (SELECT id FROM `workerqueue` WHERE `workerqueue`.`pid` = `process`.`pid`)"); + if ($process = dba::fetch($processes)) { + $listitem[0] = "0:".$process["running"]; + $active += $process["running"]; + } + dba::close($processes); + + // Now adding all processes with workerqueue entries + $entries = dba::p("SELECT COUNT(*) AS `entries`, `priority` FROM `workerqueue` GROUP BY `priority`"); + while ($entry = dba::fetch($entries)) { + $processes = dba::p("SELECT COUNT(*) AS `running` FROM `process` LEFT JOIN `workerqueue` ON `workerqueue`.`pid` = `process`.`pid` WHERE `priority` = ?", $entry["priority"]); + if ($process = dba::fetch($processes)) { + $listitem[$entry["priority"]] = $entry["priority"].":".$process["running"]."/".$entry["entries"]; + $active += $process["running"]; + } + dba::close($processes); + } + dba::close($entries); + + $processlist = implode(', ', $listitem); + $s = q("SELECT COUNT(*) AS `total` FROM `workerqueue` WHERE `executed` <= '%s'", dbesc(NULL_DATE)); $entries = $s[0]["total"]; @@ -448,27 +473,6 @@ function poller_too_much_workers() { } } - // Create a list of queue entries grouped by their priority - $running = array(PRIORITY_CRITICAL => 0, - PRIORITY_HIGH => 0, - PRIORITY_MEDIUM => 0, - PRIORITY_LOW => 0, - PRIORITY_NEGLIGIBLE => 0); - - $r = q("SELECT COUNT(*) AS `running`, `priority` FROM `process` INNER JOIN `workerqueue` ON `workerqueue`.`pid` = `process`.`pid` GROUP BY `priority`"); - if (dbm::is_result($r)) - foreach ($r AS $process) - $running[$process["priority"]] = $process["running"]; - - $processlist = ""; - $r = q("SELECT COUNT(*) AS `entries`, `priority` FROM `workerqueue` GROUP BY `priority`"); - if (dbm::is_result($r)) - foreach ($r as $entry) { - if ($processlist != "") - $processlist .= ", "; - $processlist .= $entry["priority"].":".$running[$entry["priority"]]."/".$entry["entries"]; - } - logger("Load: ".$load."/".$maxsysload." - processes: ".$active."/".$entries." (".$processlist.") - maximum: ".$queues."/".$maxqueues, LOGGER_DEBUG); // Are there fewer workers running as possible? Then fork a new one. @@ -478,6 +482,8 @@ function poller_too_much_workers() { $a = get_app(); $a->proc_run($args); } + } else { + $active = poller_active_workers(); } return($active >= $queues); diff --git a/src/Network/Probe.php b/src/Network/Probe.php index 28075989df..94fa2733be 100644 --- a/src/Network/Probe.php +++ b/src/Network/Probe.php @@ -58,6 +58,28 @@ class Probe { return $newdata; } + /** + * @brief Check if the hostname belongs to the own server + * + * @param string $host The hostname that is to be checked + * + * @return bool Does the testes hostname belongs to the own server? + */ + private function ownHost($host) { + $own_host = get_app()->get_hostname(); + + $parts = parse_url($host); + + if (!isset($parts['scheme'])) { + $parts = parse_url('http://'.$host); + } + + if (!isset($parts['host'])) { + return false; + } + return $parts['host'] == $own_host; + } + /** * @brief Probes for XRD data * @@ -82,7 +104,7 @@ class Probe { logger("Probing for ".$host, LOGGER_DEBUG); $ret = z_fetch_url($ssl_url, false, $redirects, array('timeout' => $xrd_timeout, 'accept_content' => 'application/xrd+xml')); - if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) { + if (($ret['errno'] == CURLE_OPERATION_TIMEDOUT) AND !self::ownHost($ssl_url)) { logger("Probing timeout for ".$ssl_url, LOGGER_DEBUG); return false; } From f6d10198cc82913449360cd4dbf45e10dd39d04a Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 30 May 2017 13:20:29 +0000 Subject: [PATCH 056/125] Bugfix: The poller often couldn't store the pid in the workerqueue --- include/poller.php | 93 ++++++++++++++++++++++++++++++++-------------- mod/worker.php | 6 ++- 2 files changed, 70 insertions(+), 29 deletions(-) diff --git a/include/poller.php b/include/poller.php index 839e5c11bb..0c5bebbda5 100644 --- a/include/poller.php +++ b/include/poller.php @@ -73,6 +73,10 @@ function poller_run($argv, $argc){ while ($r = poller_worker_process()) { + if (!poller_claim_process($r[0])) { + continue; + } + // Check free memory if ($a->min_memory_reached()) { return; @@ -108,43 +112,22 @@ function poller_execute($queue) { // Quit when in maintenance if (Config::get('system', 'maintenance', true)) { + logger("Maintenance mode - quit process ".$mypid, LOGGER_DEBUG); return false; } // Constantly check the number of parallel database processes if ($a->max_processes_reached()) { + logger("Max processes reached for process ".$mypid, LOGGER_DEBUG); return false; } // Constantly check the number of available database connections to let the frontend be accessible at any time if (poller_max_connections_reached()) { + logger("Max connection reached for process ".$mypid, LOGGER_DEBUG); return false; } - if (!dba::update('workerqueue', array('executed' => datetime_convert(), 'pid' => $mypid), - array('id' => $queue["id"], 'pid' => 0))) { - logger("Couldn't update queue entry ".$queue["id"]." - skip this execution", LOGGER_DEBUG); - dba::commit(); - return true; - } - - // Assure that there are no tasks executed twice - $id = q("SELECT `pid`, `executed` FROM `workerqueue` WHERE `id` = %d", intval($queue["id"])); - if (!$id) { - logger("Queue item ".$queue["id"]." vanished - skip this execution", LOGGER_DEBUG); - dba::commit(); - return true; - } elseif ((strtotime($id[0]["executed"]) <= 0) OR ($id[0]["pid"] == 0)) { - logger("Entry for queue item ".$queue["id"]." wasn't stored - skip this execution", LOGGER_DEBUG); - dba::commit(); - return true; - } elseif ($id[0]["pid"] != $mypid) { - logger("Queue item ".$queue["id"]." is to be executed by process ".$id[0]["pid"]." and not by me (".$mypid.") - skip this execution", LOGGER_DEBUG); - dba::commit(); - return true; - } - dba::commit(); - $argv = json_decode($queue["parameter"]); // Check for existance and validity of the include file @@ -566,7 +549,7 @@ function poller_worker_process() { // Are there waiting processes with a higher priority than the currently highest? $r = q("SELECT * FROM `workerqueue` WHERE `executed` <= '%s' AND `priority` < %d - ORDER BY `priority`, `created` LIMIT 1", + ORDER BY `priority`, `created` LIMIT 1 FOR UPDATE", dbesc(NULL_DATE), intval($highest_priority)); if (dbm::is_result($r)) { @@ -575,18 +558,70 @@ function poller_worker_process() { // Give slower processes some processing time $r = q("SELECT * FROM `workerqueue` WHERE `executed` <= '%s' AND `priority` > %d - ORDER BY `priority`, `created` LIMIT 1", + ORDER BY `priority`, `created` LIMIT 1 FOR UPDATE", dbesc(NULL_DATE), intval($highest_priority)); + + if (dbm::is_result($r)) { + return $r; + } } // If there is no result (or we shouldn't pass lower processes) we check without priority limit - if (($highest_priority == 0) OR !dbm::is_result($r)) { - $r = q("SELECT * FROM `workerqueue` WHERE `executed` <= '%s' ORDER BY `priority`, `created` LIMIT 1", dbesc(NULL_DATE)); + if (!dbm::is_result($r)) { + $r = q("SELECT * FROM `workerqueue` WHERE `executed` <= '%s' ORDER BY `priority`, `created` LIMIT 1 FOR UPDATE", dbesc(NULL_DATE)); } + return $r; } +/** + * @brief Assigns a workerqueue entry to the current process + * + * All the checks after the update are only needed with MyISAM. + * + * @param array $queue Workerqueue entry + * + * @return boolean "true" if the claiming was successful + */ +function poller_claim_process($queue) { + $mypid = getmypid(); + + if (!dba::update('workerqueue', array('executed' => datetime_convert(), 'pid' => $mypid), + array('id' => $queue["id"], 'pid' => 0))) { + logger("Couldn't update queue entry ".$queue["id"]." - skip this execution", LOGGER_DEBUG); + dba::commit(); + return false; + } + + // Assure that there are no tasks executed twice + $id = q("SELECT `pid`, `executed` FROM `workerqueue` WHERE `id` = %d", intval($queue["id"])); + if (!$id) { + logger("Queue item ".$queue["id"]." vanished - skip this execution", LOGGER_DEBUG); + dba::commit(); + return false; + } elseif ((strtotime($id[0]["executed"]) <= 0) OR ($id[0]["pid"] == 0)) { + logger("Entry for queue item ".$queue["id"]." wasn't stored - skip this execution", LOGGER_DEBUG); + dba::commit(); + return false; + } elseif ($id[0]["pid"] != $mypid) { + logger("Queue item ".$queue["id"]." is to be executed by process ".$id[0]["pid"]." and not by me (".$mypid.") - skip this execution", LOGGER_DEBUG); + dba::commit(); + return false; + } + dba::commit(); + return true; +} + +/** + * @brief Removes a workerqueue entry from the current process + */ +function poller_unclaim_process() { + $mypid = getmypid(); + + dba::update('workerqueue', array('executed' => NULL_DATE, 'pid' => 0), array('pid' => $mypid)); +} + /** * @brief Call the front end worker */ @@ -683,6 +718,8 @@ function poller_run_cron() { if (array_search(__file__,get_included_files())===0){ poller_run($_SERVER["argv"],$_SERVER["argc"]); + poller_unclaim_process(); + get_app()->end_process(); killme(); diff --git a/mod/worker.php b/mod/worker.php index 62f9bd3dde..947656ab7c 100644 --- a/mod/worker.php +++ b/mod/worker.php @@ -41,11 +41,15 @@ function worker_init($a){ // But since it doesn't destroy anything, we just try to get more execution time in any way. set_time_limit(0); - poller_execute($r[0]); + if (poller_claim_process($r[0])) { + poller_execute($r[0]); + } } call_worker(); + poller_unclaim_process(); + $a->end_process(); logger("Front end worker ended: ".getmypid()); From bbddea03e973c7cb2c50d79723db93cdf368773b Mon Sep 17 00:00:00 2001 From: gerhard6380 Date: Wed, 31 May 2017 02:24:09 +0200 Subject: [PATCH 057/125] API: link to original page for feed posts link to original page added to html output of feed posts if body is empty --- include/api.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/api.php b/include/api.php index caf316d76a..d8864a5ab3 100644 --- a/include/api.php +++ b/include/api.php @@ -2289,6 +2289,11 @@ $called_api = null; $statushtml = "

" . bbcode($item['title']) . "

\n" . $statushtml; } + // feeds without body should contain the link ++ if (($item['network'] == NETWORK_FEED) && (strlen($item['body']) == 0)) { ++ $statushtml .= bbcode($item['plink']); ++ } + $entities = api_get_entitities($statustext, $body); return array( From 609649557b87aa7281e7870e9a23733cce6ed1c9 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 31 May 2017 03:46:43 +0000 Subject: [PATCH 058/125] Better handling of timeout issues while probing --- src/Network/Probe.php | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/src/Network/Probe.php b/src/Network/Probe.php index 94fa2733be..531fdfef64 100644 --- a/src/Network/Probe.php +++ b/src/Network/Probe.php @@ -123,13 +123,13 @@ class Probe { } if (!is_object($xrd)) { logger("No xrd object found for ".$host, LOGGER_DEBUG); - return false; + return array(); } $links = xml::element_to_array($xrd); if (!isset($links["xrd"]["link"])) { logger("No xrd data found for ".$host, LOGGER_DEBUG); - return false; + return array(); } $xrd_data = array(); @@ -222,6 +222,10 @@ class Probe { $lrdd = self::xrd($uri); $webfinger = null; + if (is_bool($lrdd)) { + return array(); + } + if (!$lrdd) { $parts = @parse_url($uri); if (!$parts) { @@ -424,6 +428,10 @@ class Probe { } $lrdd = self::xrd($host); + if (is_bool($lrdd)) { + return array(); + } + $path_parts = explode("/", trim($parts["path"], "/")); while (!$lrdd AND (sizeof($path_parts) > 1)) { @@ -462,6 +470,10 @@ class Probe { } $lrdd = self::xrd($host); + if (is_bool($lrdd)) { + return array(); + } + if (!$lrdd) { logger('No XRD data was found for '.$uri, LOGGER_DEBUG); return self::mail($uri, $uid); From 1a0e8723c57f0a74f8c3b443f2453e28f1e32308 Mon Sep 17 00:00:00 2001 From: gerhard6380 Date: Wed, 31 May 2017 10:33:35 +0200 Subject: [PATCH 059/125] corrected change sorry, I should not change code late in the evening when I am already tired. --- include/api.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/api.php b/include/api.php index d8864a5ab3..5d962ecd03 100644 --- a/include/api.php +++ b/include/api.php @@ -2290,9 +2290,9 @@ $called_api = null; } // feeds without body should contain the link -+ if (($item['network'] == NETWORK_FEED) && (strlen($item['body']) == 0)) { -+ $statushtml .= bbcode($item['plink']); -+ } + if (($item['network'] == NETWORK_FEED) && (strlen($item['body']) == 0)) { + $statushtml .= bbcode($item['plink']); + } $entities = api_get_entitities($statustext, $body); From df7acc76557e96a3a907deb6378450d579be1100 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Wed, 31 May 2017 14:29:33 +0200 Subject: [PATCH 060/125] Bugfix: don't probe for introduction if it is not necessary --- include/NotificationsManager.php | 48 ++++++++++++++++++++++++++------ 1 file changed, 40 insertions(+), 8 deletions(-) diff --git a/include/NotificationsManager.php b/include/NotificationsManager.php index 7183393801..37d93b750c 100644 --- a/include/NotificationsManager.php +++ b/include/NotificationsManager.php @@ -720,10 +720,12 @@ class NotificationsManager { $sql_extra = " AND `ignore` = 0 "; /// @todo Fetch contact details by "get_contact_details_by_url" instead of queries to contact, fcontact and gcontact - $r = q("SELECT `intro`.`id` AS `intro_id`, `intro`.*, `contact`.*, `fcontact`.`name` AS `fname`,`fcontact`.`url` AS `furl`,`fcontact`.`photo` AS `fphoto`,`fcontact`.`request` AS `frequest`, + $r = q("SELECT `intro`.`id` AS `intro_id`, `intro`.*, `contact`.*, + `fcontact`.`name` AS `fname`, `fcontact`.`url` AS `furl`, + `fcontact`.`photo` AS `fphoto`, `fcontact`.`request` AS `frequest`, `gcontact`.`location` AS `glocation`, `gcontact`.`about` AS `gabout`, `gcontact`.`keywords` AS `gkeywords`, `gcontact`.`gender` AS `ggender`, - `gcontact`.`network` AS `gnetwork` + `gcontact`.`network` AS `gnetwork`, `gcontact`.`addr` AS `gaddr` FROM `intro` LEFT JOIN `contact` ON `contact`.`id` = `intro`.`contact-id` LEFT JOIN `gcontact` ON `gcontact`.`nurl` = `contact`.`nurl` @@ -786,11 +788,7 @@ class NotificationsManager { // Normal connection requests } else { - // Probe the contact url to get missing data - $ret = probe_url($it["url"]); - - if ($it['gnetwork'] == "") - $it['gnetwork'] = $ret["network"]; + $it = $this->getMissingIntroData($it); // Don't show these data until you are connected. Diaspora is doing the same. if($it['gnetwork'] === NETWORK_DIASPORA) { @@ -815,7 +813,7 @@ class NotificationsManager { 'post_newfriend' => (intval(get_pconfig(local_user(),'system','post_newfriend')) ? '1' : 0), 'url' => $it['url'], 'zrl' => zrl($it['url']), - 'addr' => $ret['addr'], + 'addr' => $it['gaddr'], 'network' => $it['gnetwork'], 'knowyou' => $it['knowyou'], 'note' => $it['note'], @@ -827,4 +825,38 @@ class NotificationsManager { return $arr; } + + /** + * @brief Check for missing contact data and try to fetch the data from + * from other sources + * + * @param array $arr The input array with the intro data + * + * @return array The array with the intro data + */ + private function getMissingIntroData($arr) { + // If the network and the addr isn't available from the gcontact + // table entry, take the one of the contact table entry + if ($arr['gnetwork'] == "") { + $arr['gnetwork'] = $arr['network']; + } + if ($arr['gaddr'] == "") { + $arr['gaddr'] = $arr['addr']; + } + + // If the network and addr is still not available try to probe + // the contact url to fetch the missing data + if ($arr['gnetwork'] == "" || $arr['gaddr'] == "") { + $ret = probe_url($arr["url"]); + } + + if ($arr['gnetwork'] == "") { + $arr['gnetwork'] = $ret['network']; + } + if ($arr['gaddr'] == "") { + $arr['gaddr'] = $ret['addr']; + } + + return $arr; + } } From 8311af3e9277e131e403e6f67b7809e4aa1beb00 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Wed, 31 May 2017 18:43:57 +0200 Subject: [PATCH 061/125] use Probe:uri() instead of probe_url --- include/NotificationsManager.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/NotificationsManager.php b/include/NotificationsManager.php index 37d93b750c..e662bd7354 100644 --- a/include/NotificationsManager.php +++ b/include/NotificationsManager.php @@ -4,6 +4,9 @@ * @brief Methods for read and write notifications from/to database * or for formatting notifications */ + +use Friendica\Network\Probe; + require_once 'include/html2plain.php'; require_once 'include/probe.php'; require_once 'include/datetime.php'; @@ -847,7 +850,7 @@ class NotificationsManager { // If the network and addr is still not available try to probe // the contact url to fetch the missing data if ($arr['gnetwork'] == "" || $arr['gaddr'] == "") { - $ret = probe_url($arr["url"]); + $ret = Probe::uri($arr["url"]); } if ($arr['gnetwork'] == "") { From a726056c5f630c53111e4dce8d23c19740a7aa7a Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Thu, 1 Jun 2017 11:44:59 +0200 Subject: [PATCH 062/125] use get_contact_details_by_url() instead of Probe:uri() --- include/NotificationsManager.php | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/include/NotificationsManager.php b/include/NotificationsManager.php index e662bd7354..96af0b76c2 100644 --- a/include/NotificationsManager.php +++ b/include/NotificationsManager.php @@ -5,12 +5,11 @@ * or for formatting notifications */ -use Friendica\Network\Probe; - require_once 'include/html2plain.php'; require_once 'include/probe.php'; require_once 'include/datetime.php'; require_once 'include/bbcode.php'; +require_once 'include/Contact.php'; /** * @brief Methods for read and write notifications from/to database @@ -847,10 +846,10 @@ class NotificationsManager { $arr['gaddr'] = $arr['addr']; } - // If the network and addr is still not available try to probe - // the contact url to fetch the missing data + // If the network and addr is still not available + // get the missing data data from other sources if ($arr['gnetwork'] == "" || $arr['gaddr'] == "") { - $ret = Probe::uri($arr["url"]); + $ret = get_contact_details_by_url($arr['url']); } if ($arr['gnetwork'] == "") { From 8806688d686ad44f0072b73846baafa5f9de1d02 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Thu, 1 Jun 2017 12:47:47 +0200 Subject: [PATCH 063/125] restructure the conditions if gnetwork and gaddr is empty --- include/NotificationsManager.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/NotificationsManager.php b/include/NotificationsManager.php index 96af0b76c2..ad0ede6dbe 100644 --- a/include/NotificationsManager.php +++ b/include/NotificationsManager.php @@ -850,13 +850,13 @@ class NotificationsManager { // get the missing data data from other sources if ($arr['gnetwork'] == "" || $arr['gaddr'] == "") { $ret = get_contact_details_by_url($arr['url']); - } - if ($arr['gnetwork'] == "") { - $arr['gnetwork'] = $ret['network']; - } - if ($arr['gaddr'] == "") { - $arr['gaddr'] = $ret['addr']; + if ($arr['gnetwork'] == "" && $ret['network'] != "") { + $arr['gnetwork'] = $ret['network']; + } + if ($arr['gaddr'] == "" && $ret['addr'] != "") { + $arr['gaddr'] = $ret['addr']; + } } return $arr; From cbd3edbc05999310b7f3cca5aa3d0124b26f7c6e Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Fri, 2 Jun 2017 22:15:43 -0400 Subject: [PATCH 064/125] Update remaining "dir.friendi.ca" instances --- boot.php | 2 +- doc/htconfig.md | 4 ++-- util/htconfig.vagrant.php | 2 +- view/templates/htconfig.tpl | 6 +++--- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/boot.php b/boot.php index 48381f5435..453b48475a 100644 --- a/boot.php +++ b/boot.php @@ -1375,7 +1375,7 @@ function get_server() { $server = get_config("system", "directory"); if ($server == "") { - $server = "http://dir.friendi.ca"; + $server = "http://dir.friendica.social"; } return($server); diff --git a/doc/htconfig.md b/doc/htconfig.md index 2c8b44439c..542b42b29e 100644 --- a/doc/htconfig.md +++ b/doc/htconfig.md @@ -14,7 +14,7 @@ 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'; + $a->config['system']['directory'] = 'http://dir.friendica.social'; ## jabber ## * **debug** (Boolean) - Enable debug level for the jabber account synchronisation. @@ -38,7 +38,7 @@ Example: To set the directory value please add this line to your .htconfig.php: * **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. +* **directory** - The path to global directory. If not set then "http://dir.friendica.social" 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. * **dlogfile - location of the developer log file diff --git a/util/htconfig.vagrant.php b/util/htconfig.vagrant.php index 71e9d673fb..c33f9941ef 100644 --- a/util/htconfig.vagrant.php +++ b/util/htconfig.vagrant.php @@ -69,7 +69,7 @@ $a->config['system']['no_regfullname'] = true; //$a->config['system']['block_local_dir'] = false; // Location of the global directory -$a->config['system']['directory'] = 'http://dir.friendi.ca'; +$a->config['system']['directory'] = 'http://dir.friendica.social'; // turn on friendica's log $a->config['system']['debugging'] = true; diff --git a/view/templates/htconfig.tpl b/view/templates/htconfig.tpl index 1aba902ad6..02cf67f39d 100644 --- a/view/templates/htconfig.tpl +++ b/view/templates/htconfig.tpl @@ -3,7 +3,7 @@ /* ******************************************************************** * The following configuration has to be within the .htconfig file * and will not be overruled by decisions made in the admin panel. - * + * * See below for variables that may be overruled by the admin panel. * ********************************************************************/ @@ -43,7 +43,7 @@ $a->config['system']['allowed_link_protocols'] = array('ftp', 'ftps', 'mailto', * Changes made below will only have an effect if the database does * not contain any configuration for the friendica system. * *********************************************************************/ - + // Choose a legal default timezone. If you are unsure, use "America/Los_Angeles". // It can be changed later and only applies to timestamps for anonymous viewers. @@ -98,7 +98,7 @@ $a->config['system']['no_regfullname'] = true; //$a->config['system']['block_local_dir'] = false; // Location of the global directory -$a->config['system']['directory'] = 'http://dir.friendi.ca'; +$a->config['system']['directory'] = 'http://dir.friendica.social'; // Authentication cookie lifetime, in days $a->config['system']['auth_cookie_lifetime'] = 7; From 21eb9a4b2e1bcae51e389df84bba6100b825eb69 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 3 Jun 2017 07:25:01 +0000 Subject: [PATCH 065/125] Fixed locking behaviour for the worker --- boot.php | 2 +- database.sql | 25 +++++++++++++-------- include/dbstructure.php | 1 + include/poller.php | 50 +++++++++++++++++++++++------------------ mod/ping.php | 1 + src/App.php | 4 ++-- update.php | 2 +- 7 files changed, 50 insertions(+), 35 deletions(-) diff --git a/boot.php b/boot.php index 48381f5435..9474d2d6c5 100644 --- a/boot.php +++ b/boot.php @@ -40,7 +40,7 @@ define ( 'FRIENDICA_PLATFORM', 'Friendica'); define ( 'FRIENDICA_CODENAME', 'Asparagus'); define ( 'FRIENDICA_VERSION', '3.5.2-rc' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); -define ( 'DB_UPDATE_VERSION', 1225 ); +define ( 'DB_UPDATE_VERSION', 1226 ); /** * @brief Constant with a HTML line break. diff --git a/database.sql b/database.sql index 73547b3058..2b40552eb7 100644 --- a/database.sql +++ b/database.sql @@ -1,6 +1,6 @@ -- ------------------------------------------ --- Friendica 3.5.2-dev (Asparagus) --- DB_UPDATE_VERSION 1221 +-- Friendica 3.5.2-rc (Asparagus) +-- DB_UPDATE_VERSION 1226 -- ------------------------------------------ @@ -193,7 +193,7 @@ CREATE TABLE IF NOT EXISTS `contact` ( -- CREATE TABLE IF NOT EXISTS `conv` ( `id` int(10) unsigned NOT NULL auto_increment, - `guid` varchar(64) NOT NULL DEFAULT '', + `guid` varchar(255) NOT NULL DEFAULT '', `recips` text, `uid` int(11) NOT NULL DEFAULT 0, `creator` varchar(255) NOT NULL DEFAULT '', @@ -270,7 +270,7 @@ CREATE TABLE IF NOT EXISTS `fcontact` ( `updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', PRIMARY KEY(`id`), INDEX `addr` (`addr`(32)), - INDEX `url` (`url`) + UNIQUE INDEX `url` (`url`(190)) ) DEFAULT COLLATE utf8mb4_general_ci; -- @@ -355,7 +355,7 @@ CREATE TABLE IF NOT EXISTS `gcontact` ( `generation` tinyint(3) NOT NULL DEFAULT 0, `server_url` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY(`id`), - INDEX `nurl` (`nurl`(64)), + UNIQUE INDEX `nurl` (`nurl`(190)), INDEX `name` (`name`(64)), INDEX `nick` (`nick`(32)), INDEX `addr` (`addr`(64)), @@ -425,7 +425,7 @@ CREATE TABLE IF NOT EXISTS `gserver` ( `last_contact` datetime DEFAULT '0001-01-01 00:00:00', `last_failure` datetime DEFAULT '0001-01-01 00:00:00', PRIMARY KEY(`id`), - INDEX `nurl` (`nurl`(32)) + UNIQUE INDEX `nurl` (`nurl`(190)) ) DEFAULT COLLATE utf8mb4_general_ci; -- @@ -544,6 +544,7 @@ CREATE TABLE IF NOT EXISTS `item` ( INDEX `uid_parenturi` (`uid`,`parent-uri`(190)), INDEX `uid_contactid_created` (`uid`,`contact-id`,`created`), INDEX `authorid_created` (`author-id`,`created`), + INDEX `ownerid` (`owner-id`), INDEX `uid_uri` (`uid`,`uri`(190)), INDEX `resource-id` (`resource-id`), INDEX `contactid_allowcid_allowpid_denycid_denygid` (`contact-id`,`allow_cid`(10),`allow_gid`(10),`deny_cid`(10),`deny_gid`(10)), @@ -589,7 +590,7 @@ CREATE TABLE IF NOT EXISTS `locks` ( CREATE TABLE IF NOT EXISTS `mail` ( `id` int(10) unsigned NOT NULL auto_increment, `uid` int(10) unsigned NOT NULL DEFAULT 0, - `guid` varchar(64) NOT NULL DEFAULT '', + `guid` varchar(255) NOT NULL DEFAULT '', `from-name` varchar(255) NOT NULL DEFAULT '', `from-photo` varchar(255) NOT NULL DEFAULT '', `from-url` varchar(255) NOT NULL DEFAULT '', @@ -608,7 +609,8 @@ CREATE TABLE IF NOT EXISTS `mail` ( INDEX `uid_seen` (`uid`,`seen`), INDEX `convid` (`convid`), INDEX `uri` (`uri`(64)), - INDEX `parent-uri` (`parent-uri`(64)) + INDEX `parent-uri` (`parent-uri`(64)), + INDEX `contactid` (`contact-id`) ) DEFAULT COLLATE utf8mb4_general_ci; -- @@ -746,6 +748,7 @@ CREATE TABLE IF NOT EXISTS `photo` ( `deny_cid` mediumtext, `deny_gid` mediumtext, PRIMARY KEY(`id`), + INDEX `contactid` (`contact-id`), INDEX `uid_contactid` (`uid`,`contact-id`), INDEX `uid_profile` (`uid`,`profile`), INDEX `uid_album_scale_created` (`uid`,`album`(32),`scale`,`created`), @@ -1019,6 +1022,9 @@ CREATE TABLE IF NOT EXISTS `thread` ( INDEX `uid_network_created` (`uid`,`network`,`created`), INDEX `uid_contactid_commented` (`uid`,`contact-id`,`commented`), INDEX `uid_contactid_created` (`uid`,`contact-id`,`created`), + INDEX `contactid` (`contact-id`), + INDEX `ownerid` (`owner-id`), + INDEX `authorid` (`author-id`), INDEX `uid_created` (`uid`,`created`), INDEX `uid_commented` (`uid`,`commented`), INDEX `uid_wall_created` (`uid`,`wall`,`created`) @@ -1108,6 +1114,7 @@ CREATE TABLE IF NOT EXISTS `workerqueue` ( `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', `pid` int(11) NOT NULL DEFAULT 0, `executed` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', - PRIMARY KEY(`id`) + PRIMARY KEY(`id`), + INDEX `priority_created` (`priority`,`created`) ) DEFAULT COLLATE utf8mb4_general_ci; diff --git a/include/dbstructure.php b/include/dbstructure.php index 413395905d..441e7be7f7 100644 --- a/include/dbstructure.php +++ b/include/dbstructure.php @@ -1742,6 +1742,7 @@ function db_definition() { ), "indexes" => array( "PRIMARY" => array("id"), + "priority_created" => array("priority", "created"), ) ); diff --git a/include/poller.php b/include/poller.php index 0c5bebbda5..22fb65a4f8 100644 --- a/include/poller.php +++ b/include/poller.php @@ -79,22 +79,28 @@ function poller_run($argv, $argc){ // Check free memory if ($a->min_memory_reached()) { + logger('Memory limit reached, quitting.', LOGGER_DEBUG); return; } // Count active workers and compare them with a maximum value that depends on the load if (poller_too_much_workers()) { + logger('Active worker limit reached, quitting.', LOGGER_DEBUG); return; } if (!poller_execute($r[0])) { + logger('Process execution failed, quitting.', LOGGER_DEBUG); return; } // Quit the poller once every hour - if (time() > ($starttime + 3600)) + if (time() > ($starttime + 3600)) { + logger('Process lifetime reachted, quitting.', LOGGER_DEBUG); return; + } } + logger("Couldn't select a workerqueue entry, quitting.", LOGGER_DEBUG); } /** @@ -146,7 +152,6 @@ function poller_execute($queue) { if (function_exists($funcname)) { poller_exec_function($queue, $funcname, $argv); - dba::delete('workerqueue', array('id' => $queue["id"])); } else { logger("Function ".$funcname." does not exist"); @@ -400,6 +405,8 @@ function poller_too_much_workers() { $maxqueues = $queues; + $active = poller_active_workers(); + // Decrease the number of workers at higher load $load = current_load(); if ($load) { @@ -412,8 +419,6 @@ function poller_too_much_workers() { $slope = $maxworkers / pow($maxsysload, $exponent); $queues = ceil($slope * pow(max(0, $maxsysload - $load), $exponent)); - $active = 0; - // Create a list of queue entries grouped by their priority $listitem = array(); @@ -421,17 +426,15 @@ function poller_too_much_workers() { $processes = dba::p("SELECT COUNT(*) AS `running` FROM `process` WHERE NOT EXISTS (SELECT id FROM `workerqueue` WHERE `workerqueue`.`pid` = `process`.`pid`)"); if ($process = dba::fetch($processes)) { $listitem[0] = "0:".$process["running"]; - $active += $process["running"]; } dba::close($processes); // Now adding all processes with workerqueue entries $entries = dba::p("SELECT COUNT(*) AS `entries`, `priority` FROM `workerqueue` GROUP BY `priority`"); while ($entry = dba::fetch($entries)) { - $processes = dba::p("SELECT COUNT(*) AS `running` FROM `process` LEFT JOIN `workerqueue` ON `workerqueue`.`pid` = `process`.`pid` WHERE `priority` = ?", $entry["priority"]); + $processes = dba::p("SELECT COUNT(*) AS `running` FROM `process` INNER JOIN `workerqueue` ON `workerqueue`.`pid` = `process`.`pid` WHERE `priority` = ?", $entry["priority"]); if ($process = dba::fetch($processes)) { $listitem[$entry["priority"]] = $entry["priority"].":".$process["running"]."/".$entry["entries"]; - $active += $process["running"]; } dba::close($processes); } @@ -465,8 +468,6 @@ function poller_too_much_workers() { $a = get_app(); $a->proc_run($args); } - } else { - $active = poller_active_workers(); } return($active >= $queues); @@ -540,16 +541,16 @@ function poller_passing_slow(&$highest_priority) { */ function poller_worker_process() { - dba::transaction(); - // Check if we should pass some low priority process $highest_priority = 0; if (poller_passing_slow($highest_priority)) { + dba::p('LOCK TABLES `workerqueue` WRITE'); + // Are there waiting processes with a higher priority than the currently highest? $r = q("SELECT * FROM `workerqueue` WHERE `executed` <= '%s' AND `priority` < %d - ORDER BY `priority`, `created` LIMIT 1 FOR UPDATE", + ORDER BY `priority`, `created` LIMIT 1", dbesc(NULL_DATE), intval($highest_priority)); if (dbm::is_result($r)) { @@ -558,18 +559,25 @@ function poller_worker_process() { // Give slower processes some processing time $r = q("SELECT * FROM `workerqueue` WHERE `executed` <= '%s' AND `priority` > %d - ORDER BY `priority`, `created` LIMIT 1 FOR UPDATE", + ORDER BY `priority`, `created` LIMIT 1", dbesc(NULL_DATE), intval($highest_priority)); if (dbm::is_result($r)) { return $r; } + } else { + dba::p('LOCK TABLES `workerqueue` WRITE'); } // If there is no result (or we shouldn't pass lower processes) we check without priority limit if (!dbm::is_result($r)) { - $r = q("SELECT * FROM `workerqueue` WHERE `executed` <= '%s' ORDER BY `priority`, `created` LIMIT 1 FOR UPDATE", dbesc(NULL_DATE)); + $r = q("SELECT * FROM `workerqueue` WHERE `executed` <= '%s' ORDER BY `priority`, `created` LIMIT 1", dbesc(NULL_DATE)); + } + + // We only unlock the tables here, when we got no data + if (!dbm::is_result($r)) { + dba::p('UNLOCK TABLES'); } return $r; @@ -578,7 +586,7 @@ function poller_worker_process() { /** * @brief Assigns a workerqueue entry to the current process * - * All the checks after the update are only needed with MyISAM. + * When we are sure that the table locks are working correctly, we can remove the checks from here * * @param array $queue Workerqueue entry * @@ -587,10 +595,12 @@ function poller_worker_process() { function poller_claim_process($queue) { $mypid = getmypid(); - if (!dba::update('workerqueue', array('executed' => datetime_convert(), 'pid' => $mypid), - array('id' => $queue["id"], 'pid' => 0))) { + $success = dba::update('workerqueue', array('executed' => datetime_convert(), 'pid' => $mypid), + array('id' => $queue["id"], 'pid' => 0)); + dba::p('UNLOCK TABLES'); + + if (!$success) { logger("Couldn't update queue entry ".$queue["id"]." - skip this execution", LOGGER_DEBUG); - dba::commit(); return false; } @@ -598,18 +608,14 @@ function poller_claim_process($queue) { $id = q("SELECT `pid`, `executed` FROM `workerqueue` WHERE `id` = %d", intval($queue["id"])); if (!$id) { logger("Queue item ".$queue["id"]." vanished - skip this execution", LOGGER_DEBUG); - dba::commit(); return false; } elseif ((strtotime($id[0]["executed"]) <= 0) OR ($id[0]["pid"] == 0)) { logger("Entry for queue item ".$queue["id"]." wasn't stored - skip this execution", LOGGER_DEBUG); - dba::commit(); return false; } elseif ($id[0]["pid"] != $mypid) { logger("Queue item ".$queue["id"]." is to be executed by process ".$id[0]["pid"]." and not by me (".$mypid.") - skip this execution", LOGGER_DEBUG); - dba::commit(); return false; } - dba::commit(); return true; } diff --git a/mod/ping.php b/mod/ping.php index 17180c74ee..8ebf4add38 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -9,6 +9,7 @@ require_once('include/group.php'); require_once('mod/proxy.php'); require_once('include/xml.php'); require_once('include/cache.php'); +require_once('include/enotify.php'); /** * @brief Outputs the counts and the lists of various notifications diff --git a/src/App.php b/src/App.php index aaaf6b2451..d671c5f1ab 100644 --- a/src/App.php +++ b/src/App.php @@ -900,12 +900,12 @@ class App { return; } - // If the last worker fork was less than 10 seconds before then don't fork another one. + // If the last worker fork was less than 2 seconds before then don't fork another one. // This should prevent the forking of masses of workers. $cachekey = 'app:proc_run:started'; $result = Cache::get($cachekey); - if (!is_null($result) AND ( time() - $result) < 10) { + if (!is_null($result) AND ( time() - $result) < 2) { return; } diff --git a/update.php b/update.php index 9c509be4b7..695ed39919 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ Date: Sat, 3 Jun 2017 19:46:19 +0000 Subject: [PATCH 066/125] The constant CURLE_OPERATION_TIMEDOUT isn't defined on older PHP versions --- boot.php | 9 ++++++++- database.sql | 3 ++- include/dbstructure.php | 1 + update.php | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/boot.php b/boot.php index 0f93c5e6d8..f9f8794e50 100644 --- a/boot.php +++ b/boot.php @@ -40,7 +40,7 @@ define ( 'FRIENDICA_PLATFORM', 'Friendica'); define ( 'FRIENDICA_CODENAME', 'Asparagus'); define ( 'FRIENDICA_VERSION', '3.5.2-rc' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); -define ( 'DB_UPDATE_VERSION', 1226 ); +define ( 'DB_UPDATE_VERSION', 1227 ); /** * @brief Constant with a HTML line break. @@ -457,6 +457,13 @@ if (!defined("SIGTERM")) { define("SIGTERM", 15); } +/** + * Depending on the PHP version this constant does exist - or not. + * See here: http://php.net/manual/en/curl.constants.php#117928 + */ +if (!defined('CURLE_OPERATION_TIMEDOUT')) { + define('CURLE_OPERATION_TIMEDOUT', CURLE_OPERATION_TIMEOUTED); +} /** * * Reverse the effect of magic_quotes_gpc if it is enabled. diff --git a/database.sql b/database.sql index 2b40552eb7..4a5946ef38 100644 --- a/database.sql +++ b/database.sql @@ -1,6 +1,6 @@ -- ------------------------------------------ -- Friendica 3.5.2-rc (Asparagus) --- DB_UPDATE_VERSION 1226 +-- DB_UPDATE_VERSION 1227 -- ------------------------------------------ @@ -1115,6 +1115,7 @@ CREATE TABLE IF NOT EXISTS `workerqueue` ( `pid` int(11) NOT NULL DEFAULT 0, `executed` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', PRIMARY KEY(`id`), + INDEX `pid` (`pid`), INDEX `priority_created` (`priority`,`created`) ) DEFAULT COLLATE utf8mb4_general_ci; diff --git a/include/dbstructure.php b/include/dbstructure.php index 441e7be7f7..1daf042d53 100644 --- a/include/dbstructure.php +++ b/include/dbstructure.php @@ -1742,6 +1742,7 @@ function db_definition() { ), "indexes" => array( "PRIMARY" => array("id"), + "pid" => array("pid"), "priority_created" => array("priority", "created"), ) ); diff --git a/update.php b/update.php index 695ed39919..7561a9af19 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ Date: Sun, 4 Jun 2017 07:26:21 +0000 Subject: [PATCH 067/125] Overhauled "lock" functionality --- include/dbstructure.php | 2 +- include/lock.php | 80 ----------------------------------------- src/Util/Lock.php | 62 ++++++++++++++++++++++++++++++++ 3 files changed, 63 insertions(+), 81 deletions(-) delete mode 100644 include/lock.php create mode 100644 src/Util/Lock.php diff --git a/include/dbstructure.php b/include/dbstructure.php index 441e7be7f7..1801288a45 100644 --- a/include/dbstructure.php +++ b/include/dbstructure.php @@ -1205,7 +1205,7 @@ function db_definition() { "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"), "name" => array("type" => "varchar(128)", "not null" => "1", "default" => ""), "locked" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"), - "created" => array("type" => "datetime", "default" => NULL_DATE), + "pid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"), ), "indexes" => array( "PRIMARY" => array("id"), diff --git a/include/lock.php b/include/lock.php deleted file mode 100644 index 64f6319ef1..0000000000 --- a/include/lock.php +++ /dev/null @@ -1,80 +0,0 @@ - $fn_name), array('limit' => 1)); + + if ((dbm::is_result($lock)) AND !$lock['locked']) { + dba::update('locks', array('locked' => true), array('name' => $fn_name)); + $got_lock = true; + } elseif (!dbm::is_result($lock)) { + dbm::insert('locks', array('name' => $fn_name, 'locked' => true)); + $got_lock = true; + } + + dbm::p("UNLOCK TABLES"); + + if (!$got_lock) { + sleep($wait_sec); + } + } while (!$got_lock AND ((time() - $start) < $timeout)); + + logger('lock_function: function ' . $fn_name . ' with blocking = ' . $block . ' got_lock = ' . $got_lock . ' time = ' . (time() - $start), LOGGER_DEBUG); + + return $got_lock; + } + + public static function remove($fn_name) { + dba::update('locks', array('locked' => false), array('name' => $fn_name)); + + logger('unlock_function: released lock for function ' . $fn_name, LOGGER_DEBUG); + + return; + } +} From 5de03c1b271e492b861e22c7f510fbb6ebec82a6 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 4 Jun 2017 08:36:08 +0000 Subject: [PATCH 068/125] Locks now work - ready to be used in the wild --- src/Util/Lock.php | 53 +++++++++++++++++++++++++++++++---------------- 1 file changed, 35 insertions(+), 18 deletions(-) diff --git a/src/Util/Lock.php b/src/Util/Lock.php index 03e8545adf..e8fa03f784 100644 --- a/src/Util/Lock.php +++ b/src/Util/Lock.php @@ -16,11 +16,16 @@ use dbm; */ class Lock { - -// Provide some ability to lock a PHP function so that multiple processes -// can't run the function concurrently - - public static function set($fn_name, $wait_sec = 2, $timeout = 30) { + /** + * @brief Sets a lock for a given name + * + * @param string $fn_name Name of the lock + * @param integer $timeout Seconds until we give up + * @param integer $wait_sec Time between to lock attempts + * + * @return boolean Was the lock successful? + */ + public static function set($fn_name, $timeout = 30, $wait_sec = 2) { if ($wait_sec == 0) { $wait_sec = 2; } @@ -29,34 +34,46 @@ class Lock { $start = time(); do { - dba:p("LOCK TABLE `locks` WRITE"); - $lock = dba::select('locks', array('locked'), array('name' => $fn_name), array('limit' => 1)); + dba::p("LOCK TABLE `locks` WRITE"); + $lock = dba::select('locks', array('locked', 'pid'), array('name' => $fn_name), array('limit' => 1)); - if ((dbm::is_result($lock)) AND !$lock['locked']) { - dba::update('locks', array('locked' => true), array('name' => $fn_name)); - $got_lock = true; + if (dbm::is_result($lock)) { + if ($lock['locked']) { + // When the process id isn't used anymore, we can safely claim the lock for us. + if (!posix_kill($lock['pid'], 0)) { + $lock['locked'] = false; + } + // We want to lock something that was already locked by us? So we got the lock. + if ($lock['pid'] == getmypid()) { + $got_lock = true; + } + } + if (!$lock['locked']) { + dba::update('locks', array('locked' => true, 'pid' => getmypid()), array('name' => $fn_name)); + $got_lock = true; + } } elseif (!dbm::is_result($lock)) { - dbm::insert('locks', array('name' => $fn_name, 'locked' => true)); + dba::insert('locks', array('name' => $fn_name, 'locked' => true, 'pid' => getmypid())); $got_lock = true; } - dbm::p("UNLOCK TABLES"); + dba::p("UNLOCK TABLES"); if (!$got_lock) { sleep($wait_sec); } } while (!$got_lock AND ((time() - $start) < $timeout)); - logger('lock_function: function ' . $fn_name . ' with blocking = ' . $block . ' got_lock = ' . $got_lock . ' time = ' . (time() - $start), LOGGER_DEBUG); - return $got_lock; } + /** + * @brief Removes a lock if it was set by us + * + * @param string $fn_name Name of the lock + */ public static function remove($fn_name) { - dba::update('locks', array('locked' => false), array('name' => $fn_name)); - - logger('unlock_function: released lock for function ' . $fn_name, LOGGER_DEBUG); - + dba::update('locks', array('locked' => false, 'pid' => 0), array('name' => $fn_name, 'pid' => getmypid())); return; } } From ad53a03f834ad73b4fc713f5915de9248e4d742e Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 4 Jun 2017 09:00:07 +0000 Subject: [PATCH 069/125] It should be "e" not "p" --- include/poller.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/poller.php b/include/poller.php index 22fb65a4f8..ed870c3588 100644 --- a/include/poller.php +++ b/include/poller.php @@ -545,7 +545,7 @@ function poller_worker_process() { $highest_priority = 0; if (poller_passing_slow($highest_priority)) { - dba::p('LOCK TABLES `workerqueue` WRITE'); + dba::e('LOCK TABLES `workerqueue` WRITE'); // Are there waiting processes with a higher priority than the currently highest? $r = q("SELECT * FROM `workerqueue` @@ -567,7 +567,7 @@ function poller_worker_process() { return $r; } } else { - dba::p('LOCK TABLES `workerqueue` WRITE'); + dba::e('LOCK TABLES `workerqueue` WRITE'); } // If there is no result (or we shouldn't pass lower processes) we check without priority limit @@ -577,7 +577,7 @@ function poller_worker_process() { // We only unlock the tables here, when we got no data if (!dbm::is_result($r)) { - dba::p('UNLOCK TABLES'); + dba::e('UNLOCK TABLES'); } return $r; @@ -597,7 +597,7 @@ function poller_claim_process($queue) { $success = dba::update('workerqueue', array('executed' => datetime_convert(), 'pid' => $mypid), array('id' => $queue["id"], 'pid' => 0)); - dba::p('UNLOCK TABLES'); + dba::e('UNLOCK TABLES'); if (!$success) { logger("Couldn't update queue entry ".$queue["id"]." - skip this execution", LOGGER_DEBUG); From d2cb87a200cadcf055b194ea0b2fc577640fdea2 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 4 Jun 2017 12:59:29 +0000 Subject: [PATCH 070/125] Database locks are now having its very own functions --- include/dba.php | 22 ++++++++++++++++++++++ src/Util/Lock.php | 4 ++-- 2 files changed, 24 insertions(+), 2 deletions(-) diff --git a/include/dba.php b/include/dba.php index b9e6c32d56..1fff51f3d1 100644 --- a/include/dba.php +++ b/include/dba.php @@ -806,6 +806,28 @@ class dba { return self::e($sql, $param); } + /** + * @brief Locks a table for exclusive write access + * + * This function can be extended in the future to accept a table array as well. + * + * @param string $table Table name + * + * @return boolean was the lock successful? + */ + static public function lock($table) { + return self::e("LOCK TABLES `".self::$dbo->escape($table)."` WRITE"); + } + + /** + * @brief Unlocks all locked tables + * + * @return boolean was the unlock successful? + */ + static public function unlock() { + return self::e("UNLOCK TABLES"); + } + /** * @brief Starts a transaction * diff --git a/src/Util/Lock.php b/src/Util/Lock.php index e8fa03f784..1a33e819f0 100644 --- a/src/Util/Lock.php +++ b/src/Util/Lock.php @@ -34,7 +34,7 @@ class Lock { $start = time(); do { - dba::p("LOCK TABLE `locks` WRITE"); + dba::lock('locks'); $lock = dba::select('locks', array('locked', 'pid'), array('name' => $fn_name), array('limit' => 1)); if (dbm::is_result($lock)) { @@ -57,7 +57,7 @@ class Lock { $got_lock = true; } - dba::p("UNLOCK TABLES"); + dba::unlock(); if (!$got_lock) { sleep($wait_sec); From bca5776e9c7f84d95fd7066ee2948f9ef945f78f Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 4 Jun 2017 15:59:20 +0000 Subject: [PATCH 071/125] Lock now can use the memcache as well --- include/poller.php | 35 +++++++++++++------- src/Util/Lock.php | 81 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 104 insertions(+), 12 deletions(-) diff --git a/include/poller.php b/include/poller.php index 22fb65a4f8..60937fb7e0 100644 --- a/include/poller.php +++ b/include/poller.php @@ -2,6 +2,7 @@ use Friendica\App; use Friendica\Core\Config; +use Friendica\Util\Lock; if (!file_exists("boot.php") AND (sizeof($_SERVER["argv"]) != 0)) { $directory = dirname($_SERVER["argv"][0]); @@ -19,16 +20,12 @@ require_once("boot.php"); function poller_run($argv, $argc){ global $a, $db; - if (is_null($a)) { - $a = new App(dirname(__DIR__)); - } + $a = new App(dirname(__DIR__)); - 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); Config::load(); @@ -41,6 +38,10 @@ function poller_run($argv, $argc){ load_hooks(); + if (($argc <= 1) OR ($argv[1] != "no_cron")) { + poller_run_cron(); + } + $a->start_process(); if ($a->min_memory_reached()) { @@ -55,11 +56,11 @@ function poller_run($argv, $argc){ return; } - if(($argc <= 1) OR ($argv[1] != "no_cron")) { - poller_run_cron(); + if ($a->max_processes_reached()) { + return; } - if ($a->max_processes_reached()) { + if (!Lock::set('poller_worker')) { return; } @@ -69,6 +70,8 @@ function poller_run($argv, $argc){ return; } + Lock::remove('poller_worker'); + $starttime = time(); while ($r = poller_worker_process()) { @@ -83,12 +86,18 @@ function poller_run($argv, $argc){ return; } + if (!Lock::set('poller_worker')) { + return; + } + // Count active workers and compare them with a maximum value that depends on the load if (poller_too_much_workers()) { logger('Active worker limit reached, quitting.', LOGGER_DEBUG); return; } + Lock::remove('poller_worker'); + if (!poller_execute($r[0])) { logger('Process execution failed, quitting.', LOGGER_DEBUG); return; @@ -724,6 +733,8 @@ function poller_run_cron() { if (array_search(__file__,get_included_files())===0){ poller_run($_SERVER["argv"],$_SERVER["argc"]); + Lock::removeAll(); + poller_unclaim_process(); get_app()->end_process(); diff --git a/src/Util/Lock.php b/src/Util/Lock.php index 1a33e819f0..175ad34e36 100644 --- a/src/Util/Lock.php +++ b/src/Util/Lock.php @@ -8,6 +8,8 @@ namespace Friendica\Util; * */ +use Friendica\Core\Config; +use Memcache; use dba; use dbm; @@ -15,6 +17,31 @@ use dbm; * @brief This class contain Functions for preventing parallel execution of functions */ class Lock { + /** + * @brief Check for memcache and open a connection if configured + * + * @return object|boolean The memcache object - or "false" if not successful + */ + public static function memcache() { + if (!function_exists('memcache_connect')) { + return false; + } + + if (!Config::get('system', 'memcache')) { + return false; + } + + $memcache_host = Config::get('system', 'memcache_host', '127.0.0.1'); + $memcache_port = Config::get('system', 'memcache_port', 11211); + + $memcache = new Memcache; + + if (!$memcache->connect($memcache_host, $memcache_port)) { + return false; + } + + return $memcache; + } /** * @brief Sets a lock for a given name @@ -33,6 +60,33 @@ class Lock { $got_lock = false; $start = time(); + $memcache = self::memcache(); + if (is_object($memcache)) { + $cachekey = get_app()->get_hostname().";lock:".$fn_name; + + do { + $lock = $memcache->get($cachekey); + + if (!is_bool($lock)) { + $pid = (int)$lock; + + // When the process id isn't used anymore, we can safely claim the lock for us. + // Or we do want to lock something that was already locked by us. + if (!posix_kill($pid, 0) OR ($pid == getmypid())) { + $lock = false; + } + } + if (is_bool($lock)) { + $memcache->set($cachekey, getmypid(), MEMCACHE_COMPRESSED, 300); + $got_lock = true; + } + if (!$got_lock) { + sleep($wait_sec); + } + } while (!$got_lock AND ((time() - $start) < $timeout)); + + return $got_lock; + } do { dba::lock('locks'); $lock = dba::select('locks', array('locked', 'pid'), array('name' => $fn_name), array('limit' => 1)); @@ -73,7 +127,34 @@ class Lock { * @param string $fn_name Name of the lock */ public static function remove($fn_name) { + $memcache = self::memcache(); + if (is_object($memcache)) { + $cachekey = get_app()->get_hostname().";lock:".$fn_name; + $lock = $memcache->get($cachekey); + + if (!is_bool($lock)) { + if ((int)$lock == getmypid()) { + $memcache->delete($cachekey); + } + } + return; + } + dba::update('locks', array('locked' => false, 'pid' => 0), array('name' => $fn_name, 'pid' => getmypid())); return; } + + /** + * @brief Removes all lock that were set by us + */ + public static function removeAll() { + $memcache = self::memcache(); + if (is_object($memcache)) { + // We cannot delete all cache entries, but this doesn't matter with memcache + return; + } + + dba::update('locks', array('locked' => false, 'pid' => 0), array('pid' => getmypid())); + return; + } } From 30b24a2908513d64ba2a81f1120bca7c08c46b65 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 4 Jun 2017 18:59:50 +0000 Subject: [PATCH 072/125] Locking seems to work great now --- include/poller.php | 19 ++++++++++--------- src/Util/Lock.php | 11 +++++------ 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/include/poller.php b/include/poller.php index 60937fb7e0..0d07605882 100644 --- a/include/poller.php +++ b/include/poller.php @@ -45,33 +45,32 @@ function poller_run($argv, $argc){ $a->start_process(); if ($a->min_memory_reached()) { + logger('Pre check: Memory limit reached, quitting.', LOGGER_DEBUG); return; } if (poller_max_connections_reached()) { + logger('Pre check: maximum connections reached, quitting.', LOGGER_DEBUG); return; } if ($a->maxload_reached()) { + logger('Pre check: maximum load reached, quitting.', LOGGER_DEBUG); return; } if ($a->max_processes_reached()) { - return; - } - - if (!Lock::set('poller_worker')) { + logger('Pre check: maximum processes reached, quitting.', LOGGER_DEBUG); return; } // Checking the number of workers if (poller_too_much_workers()) { poller_kill_stale_workers(); + logger('Pre check: Active worker limit reached, quitting.', LOGGER_DEBUG); return; } - Lock::remove('poller_worker'); - $starttime = time(); while ($r = poller_worker_process()) { @@ -87,7 +86,9 @@ function poller_run($argv, $argc){ } if (!Lock::set('poller_worker')) { - return; + logger('Cannot get a lock, retrying.', LOGGER_DEBUG); + poller_unclaim_process(); + continue; } // Count active workers and compare them with a maximum value that depends on the load @@ -104,7 +105,7 @@ function poller_run($argv, $argc){ } // Quit the poller once every hour - if (time() > ($starttime + 3600)) { + if (time() > ($starttime + 360)) { logger('Process lifetime reachted, quitting.', LOGGER_DEBUG); return; } @@ -733,7 +734,7 @@ function poller_run_cron() { if (array_search(__file__,get_included_files())===0){ poller_run($_SERVER["argv"],$_SERVER["argc"]); - Lock::removeAll(); + Lock::remove('poller_worker'); poller_unclaim_process(); diff --git a/src/Util/Lock.php b/src/Util/Lock.php index 175ad34e36..e8011bf59f 100644 --- a/src/Util/Lock.php +++ b/src/Util/Lock.php @@ -48,20 +48,16 @@ class Lock { * * @param string $fn_name Name of the lock * @param integer $timeout Seconds until we give up - * @param integer $wait_sec Time between to lock attempts * * @return boolean Was the lock successful? */ - public static function set($fn_name, $timeout = 30, $wait_sec = 2) { - if ($wait_sec == 0) { - $wait_sec = 2; - } - + public static function set($fn_name, $timeout = 120) { $got_lock = false; $start = time(); $memcache = self::memcache(); if (is_object($memcache)) { + $wait_sec = 1; $cachekey = get_app()->get_hostname().";lock:".$fn_name; do { @@ -87,6 +83,9 @@ class Lock { return $got_lock; } + + $wait_sec = 2; + do { dba::lock('locks'); $lock = dba::select('locks', array('locked', 'pid'), array('name' => $fn_name), array('limit' => 1)); From bde4943da51aac866ed0870617b868d779bc6835 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 4 Jun 2017 19:01:22 +0000 Subject: [PATCH 073/125] Every hour should mean: every hour :) --- include/poller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/poller.php b/include/poller.php index 0d07605882..bae2ac5e96 100644 --- a/include/poller.php +++ b/include/poller.php @@ -105,7 +105,7 @@ function poller_run($argv, $argc){ } // Quit the poller once every hour - if (time() > ($starttime + 360)) { + if (time() > ($starttime + 3600)) { logger('Process lifetime reachted, quitting.', LOGGER_DEBUG); return; } From 16276b21ebf617c5c2277b0c25f43f74131d5778 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 4 Jun 2017 19:05:15 +0000 Subject: [PATCH 074/125] Typo --- include/poller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/poller.php b/include/poller.php index bae2ac5e96..087b4b733e 100644 --- a/include/poller.php +++ b/include/poller.php @@ -106,7 +106,7 @@ function poller_run($argv, $argc){ // Quit the poller once every hour if (time() > ($starttime + 3600)) { - logger('Process lifetime reachted, quitting.', LOGGER_DEBUG); + logger('Process lifetime reached, quitting.', LOGGER_DEBUG); return; } } From fb72fc77f5268a9036b43eabea2fa5fffff57b68 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 4 Jun 2017 20:03:37 +0000 Subject: [PATCH 075/125] Some code beautification --- include/poller.php | 160 +++++++++++++++++++++++++-------------------- 1 file changed, 89 insertions(+), 71 deletions(-) diff --git a/include/poller.php b/include/poller.php index a67f6a7d86..3d53be0abb 100644 --- a/include/poller.php +++ b/include/poller.php @@ -7,9 +7,9 @@ use Friendica\Util\Lock; if (!file_exists("boot.php") AND (sizeof($_SERVER["argv"]) != 0)) { $directory = dirname($_SERVER["argv"][0]); - if (substr($directory, 0, 1) != "/") + if (substr($directory, 0, 1) != "/") { $directory = $_SERVER["PWD"]."/".$directory; - + } $directory = realpath($directory."/.."); chdir($directory); @@ -38,53 +38,58 @@ function poller_run($argv, $argc){ load_hooks(); - if (($argc <= 1) OR ($argv[1] != "no_cron")) { - poller_run_cron(); - } - - $a->start_process(); - - if ($a->min_memory_reached()) { - logger('Pre check: Memory limit reached, quitting.', LOGGER_DEBUG); - return; - } - - if (poller_max_connections_reached()) { - logger('Pre check: maximum connections reached, quitting.', LOGGER_DEBUG); - return; - } - + // At first check the maximum load. We shouldn't continue with a high load if ($a->maxload_reached()) { logger('Pre check: maximum load reached, quitting.', LOGGER_DEBUG); return; } - if ($a->max_processes_reached()) { - logger('Pre check: maximum processes reached, quitting.', LOGGER_DEBUG); - return; - } + // We now start the process. This is done after the load check since this could increase the load. + $a->start_process(); - // Checking the number of workers + // At first we check the number of workers and quit if there are too much of them + // This is done at the top to avoid that too much code is executed without a need to do so, + // since the poller mostly quits here. if (poller_too_much_workers()) { poller_kill_stale_workers(); logger('Pre check: Active worker limit reached, quitting.', LOGGER_DEBUG); return; } + // Do we have too few memory? + if ($a->min_memory_reached()) { + logger('Pre check: Memory limit reached, quitting.', LOGGER_DEBUG); + return; + } + + // Possibly there are too much database connections + if (poller_max_connections_reached()) { + logger('Pre check: maximum connections reached, quitting.', LOGGER_DEBUG); + return; + } + + // Possibly there are too much database processes that block the system + if ($a->max_processes_reached()) { + logger('Pre check: maximum processes reached, quitting.', LOGGER_DEBUG); + return; + } + + // Now we start additional cron processes if we should do so + if (($argc <= 1) OR ($argv[1] != "no_cron")) { + poller_run_cron(); + } + $starttime = time(); + // We fetch the next queue entry that is about to be executed while ($r = poller_worker_process()) { + // If we got that queue entry we claim it for us if (!poller_claim_process($r[0])) { continue; } - // Check free memory - if ($a->min_memory_reached()) { - logger('Memory limit reached, quitting.', LOGGER_DEBUG); - return; - } - + // To avoid the quitting of multiple pollers we serialize the next check if (!Lock::set('poller_worker')) { logger('Cannot get a lock, retrying.', LOGGER_DEBUG); poller_unclaim_process(); @@ -99,6 +104,13 @@ function poller_run($argv, $argc){ Lock::remove('poller_worker'); + // Check free memory + if ($a->min_memory_reached()) { + logger('Memory limit reached, quitting.', LOGGER_DEBUG); + return; + } + + // finally the work will be done if (!poller_execute($r[0])) { logger('Process execution failed, quitting.', LOGGER_DEBUG); return; @@ -160,7 +172,6 @@ function poller_execute($queue) { $funcname = str_replace(".php", "", basename($argv[0]))."_run"; if (function_exists($funcname)) { - poller_exec_function($queue, $funcname, $argv); dba::delete('workerqueue', array('id' => $queue["id"])); } else { @@ -236,24 +247,27 @@ function poller_exec_function($queue, $funcname, $argv) { $o = "\nDatabase Read:\n"; foreach ($a->callstack["database"] AS $func => $time) { $time = round($time, 3); - if ($time > 0) + if ($time > 0) { $o .= $func.": ".$time."\n"; + } } } if (isset($a->callstack["database_write"])) { $o .= "\nDatabase Write:\n"; foreach ($a->callstack["database_write"] AS $func => $time) { $time = round($time, 3); - if ($time > 0) + if ($time > 0) { $o .= $func.": ".$time."\n"; + } } } if (isset($a->callstack["network"])) { $o .= "\nNetwork:\n"; foreach ($a->callstack["network"] AS $func => $time) { $time = round($time, 3); - if ($time > 0) + if ($time > 0) { $o .= $func.": ".$time."\n"; + } } } } else { @@ -294,27 +308,30 @@ function poller_max_connections_reached() { if ($max == 0) { // the maximum number of possible user connections can be a system variable $r = q("SHOW VARIABLES WHERE `variable_name` = 'max_user_connections'"); - if ($r) + if (dbm::is_result($r)) { $max = $r[0]["Value"]; - + } // Or it can be granted. This overrides the system variable $r = q("SHOW GRANTS"); - if ($r) + if (dbm::is_result($r)) { foreach ($r AS $grants) { $grant = array_pop($grants); - if (stristr($grant, "GRANT USAGE ON")) - if (preg_match("/WITH MAX_USER_CONNECTIONS (\d*)/", $grant, $match)) + if (stristr($grant, "GRANT USAGE ON")) { + if (preg_match("/WITH MAX_USER_CONNECTIONS (\d*)/", $grant, $match)) { $max = $match[1]; + } + } } + } } // If $max is set we will use the processlist to determine the current number of connections // The processlist only shows entries of the current user if ($max != 0) { $r = q("SHOW PROCESSLIST"); - if (!dbm::is_result($r)) + if (!dbm::is_result($r)) { return false; - + } $used = count($r); logger("Connection usage (user values): ".$used."/".$max, LOGGER_DEBUG); @@ -330,28 +347,28 @@ function poller_max_connections_reached() { // We will now check for the system values. // This limit could be reached although the user limits are fine. $r = q("SHOW VARIABLES WHERE `variable_name` = 'max_connections'"); - if (!$r) + if (!dbm::is_result($r)) { return false; - + } $max = intval($r[0]["Value"]); - if ($max == 0) + if ($max == 0) { return false; - + } $r = q("SHOW STATUS WHERE `variable_name` = 'Threads_connected'"); - if (!$r) + if (!dbm::is_result($r)) { return false; - + } $used = intval($r[0]["Value"]); - if ($used == 0) + if ($used == 0) { return false; - + } logger("Connection usage (system values): ".$used."/".$max, LOGGER_DEBUG); $level = $used / $max * 100; - if ($level < $maxlevel) + if ($level < $maxlevel) { return false; - + } logger("Maximum level (".$level."%) of system connections reached: ".$used."/".$max); return true; } @@ -376,9 +393,9 @@ function poller_kill_stale_workers() { // Kill long running processes // Check if the priority is in a valid range - if (!in_array($pid["priority"], array(PRIORITY_CRITICAL, PRIORITY_HIGH, PRIORITY_MEDIUM, PRIORITY_LOW, PRIORITY_NEGLIGIBLE))) + if (!in_array($pid["priority"], array(PRIORITY_CRITICAL, PRIORITY_HIGH, PRIORITY_MEDIUM, PRIORITY_LOW, PRIORITY_NEGLIGIBLE))) { $pid["priority"] = PRIORITY_MEDIUM; - + } // Define the maximum durations $max_duration_defaults = array(PRIORITY_CRITICAL => 360, PRIORITY_HIGH => 10, PRIORITY_MEDIUM => 60, PRIORITY_LOW => 180, PRIORITY_NEGLIGIBLE => 360); $max_duration = $max_duration_defaults[$pid["priority"]]; @@ -480,7 +497,7 @@ function poller_too_much_workers() { } } - return($active >= $queues); + return $active >= $queues; } /** @@ -491,7 +508,7 @@ function poller_too_much_workers() { function poller_active_workers() { $workers = q("SELECT COUNT(*) AS `processes` FROM `process` WHERE `command` = 'poller.php'"); - return($workers[0]["processes"]); + return $workers[0]["processes"]; } /** @@ -512,36 +529,37 @@ function poller_passing_slow(&$highest_priority) { INNER JOIN `workerqueue` ON `workerqueue`.`pid` = `process`.`pid`"); // No active processes at all? Fine - if (!dbm::is_result($r)) - return(false); - + if (!dbm::is_result($r)) { + return false; + } $priorities = array(); - foreach ($r AS $line) + foreach ($r AS $line) { $priorities[] = $line["priority"]; - + } // Should not happen - if (count($priorities) == 0) - return(false); - + if (count($priorities) == 0) { + return false; + } $highest_priority = min($priorities); // The highest process is already the slowest one? // Then we quit - if ($highest_priority == PRIORITY_NEGLIGIBLE) - return(false); - + if ($highest_priority == PRIORITY_NEGLIGIBLE) { + return false; + } $high = 0; - foreach ($priorities AS $priority) - if ($priority == $highest_priority) + foreach ($priorities AS $priority) { + if ($priority == $highest_priority) { ++$high; - + } + } logger("Highest priority: ".$highest_priority." Total processes: ".count($priorities)." Count high priority processes: ".$high, LOGGER_DEBUG); $passing_slow = (($high/count($priorities)) > (2/3)); - if ($passing_slow) + if ($passing_slow) { logger("Passing slower processes than priority ".$highest_priority, LOGGER_DEBUG); - - return($passing_slow); + } + return $passing_slow; } /** From 8db079c65e8d3bd72c9cbe739f48b8a5812c14b6 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 5 Jun 2017 06:08:26 +0000 Subject: [PATCH 076/125] Don't always fork the poller. --- boot.php | 13 ++----------- include/cron.php | 5 +++-- include/notifier.php | 6 +++--- include/pubsubpublish.php | 2 +- 4 files changed, 9 insertions(+), 17 deletions(-) diff --git a/boot.php b/boot.php index f9f8794e50..59011bc64f 100644 --- a/boot.php +++ b/boot.php @@ -35,6 +35,7 @@ require_once 'include/features.php'; require_once 'include/identity.php'; require_once 'update.php'; require_once 'include/dbstructure.php'; +require_once 'include/poller.php'; define ( 'FRIENDICA_PLATFORM', 'Friendica'); define ( 'FRIENDICA_CODENAME', 'Asparagus'); @@ -1095,18 +1096,8 @@ function proc_run($cmd) { return; } - // Checking number of workers - $workers = q("SELECT COUNT(*) AS `workers` FROM `workerqueue` WHERE `executed` > '%s'", dbesc(NULL_DATE)); - - // 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) { + if (poller_too_much_workers()) { return; } diff --git a/include/cron.php b/include/cron.php index 3702bf8b36..70b87e9696 100644 --- a/include/cron.php +++ b/include/cron.php @@ -246,10 +246,11 @@ function cron_poll_contacts($argc, $argv) { logger("Polling " . $contact["network"] . " " . $contact["id"] . " " . $contact["nick"] . " " . $contact["name"]); if (($contact['network'] == NETWORK_FEED) AND ($contact['priority'] <= 3)) { - proc_run(PRIORITY_MEDIUM, 'include/onepoll.php', intval($contact['id'])); + $priority = PRIORITY_MEDIUM; } else { - proc_run(PRIORITY_LOW, 'include/onepoll.php', intval($contact['id'])); + $priority = PRIORITY_LOW; } + proc_run(array('priority' => $priority, 'dont_fork' => true), 'include/onepoll.php', intval($contact['id'])); } } } diff --git a/include/notifier.php b/include/notifier.php index 74cfabb6cd..a08057f677 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -498,7 +498,7 @@ function notifier_run(&$argv, &$argc){ } logger("Deliver ".$target_item["guid"]." to ".$contact['url']." via network ".$contact['network'], LOGGER_DEBUG); - proc_run($priority, 'include/delivery.php', $cmd, $item_id, $contact['id']); + proc_run(array('priority' => $priority, 'dont_fork' => true), 'include/delivery.php', $cmd, $item_id, $contact['id']); } } @@ -563,7 +563,7 @@ function notifier_run(&$argv, &$argc){ if ((! $mail) && (! $fsuggest) && (! $followup)) { logger('notifier: delivery agent: '.$rr['name'].' '.$rr['id'].' '.$rr['network'].' '.$target_item["guid"]); - proc_run($priority, 'include/delivery.php', $cmd, $item_id, $rr['id']); + proc_run(array('priority' => $priority, 'dont_fork' => true), 'include/delivery.php', $cmd, $item_id, $rr['id']); } } } @@ -603,7 +603,7 @@ function notifier_run(&$argv, &$argc){ } // Handling the pubsubhubbub requests - proc_run(PRIORITY_HIGH, 'include/pubsubpublish.php'); + proc_run(array('priority' => PRIORITY_HIGH, 'dont_fork' => true), 'include/pubsubpublish.php'); } logger('notifier: calling hooks', LOGGER_DEBUG); diff --git a/include/pubsubpublish.php b/include/pubsubpublish.php index 24d7b69637..bb94ea3b20 100644 --- a/include/pubsubpublish.php +++ b/include/pubsubpublish.php @@ -17,7 +17,7 @@ function pubsubpublish_run(&$argv, &$argc){ foreach ($r as $rr) { logger("Publish feed to ".$rr["callback_url"], LOGGER_DEBUG); - proc_run(PRIORITY_HIGH, 'include/pubsubpublish.php', $rr["id"]); + proc_run(array('priority' => PRIORITY_HIGH, 'dont_fork' => true), 'include/pubsubpublish.php', $rr["id"]); } } From 291c7050e9e5bba8fd72220acf16c1d45575108e Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Mon, 5 Jun 2017 08:50:37 +0200 Subject: [PATCH 077/125] it is June, and some additions --- CHANGELOG | 137 +++++++++++++++++++++++++++--------------------------- 1 file changed, 69 insertions(+), 68 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 392609dc35..b798efa243 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,46 +1,47 @@ -Version 3.5.2 (2017-05-XX) +Version 3.5.2 (2017-06-XX) Friendica Core: - Updates to the translations (DE, EN-GB, ES, IT, RU) [translation teams] + Updates to the translations (DE, EN-GB, ES, IT, PT-BR, RU) [translation teams] Updates to the documentation [annando, beardyunixer, rabuzarus, tobiasd] Updated the nginx example configuration [beardyunixer] Code revision and refactoring [annando, hypolite, Quix0r, rebeka-catalina] - Background process is now done by the new worker process [annando] + Background process is now done by the new worker process [heluecht] Added support of Composer for dependencies [Hypolite] Added support of Web app manifests [Rudloff] Added basic robot.txt functionality if none exists [Shnoulle] Added server blocklist [Hypolite, tobiasd] - Removed mcrypt dependency [annando] - Removed unused libraries [annando] + Removed mcrypt dependency [heluecht] + Removed unused libraries [heluecht] Removed Embedly integration [Hypolite] Fixed a bug in the language detection for EN [Hypolite] + Fixed a bug in the probing mechanism on old PHP version [annando] Improved API [annando, gerhard6380] - Improved Diaspora federation [annando] - Improved Mastodon federation [annando, Hypolite] - Improved import from OStatus threads [annando] + Improved Diaspora federation [heluecht] + Improved Mastodon federation [heluecht, Hypolite] + Improved import from OStatus threads [heluecht] Improved the themes (frio, quattro) [fabrixxm, Hypolite, rabuzarus, Rudloff, strk, tobiasd] - Improved maintenance mode [annando] - Improved gcontact handling [annando] + Improved maintenance mode [heluecht] + Improved gcontact handling [heluecht] Improved desktop notifications [rabuzarus] Improved keyboard shortcuts for navigation [Rudloff] - Improved the installer [annando] + Improved the installer [heluecht] Improved openid handling [strk] - Improved php7 support [annando] - Improved display of notifications [annando] + Improved php7 support [heluecht] + Improved display of notifications [heluecht] Improved logging mechanism [beardyunixer] - Improved the worker [annando] - Improved compatibility with MySQL 5.7 - Behaviour clarification of the group filter / new tab [annando] - Old options for the pager and share element were removed [annando] - Support of PDO was added [annando] - Improved error logging for issues with the database [annando] + Improved the worker [heluecht] + Behaviour clarification of the group filter / new tab [heluecht] + Old options for the pager and share element were removed [heluecht] + Support of PDO was added [heluecht] + Improved error logging for issues with the database [heluecht] + Adoption to changes in DateTime handling of MySQL [heluecht] Friendica Addons: Updates to the translation (RU) [pztrm] - (core) Fix blocking issue for Communityhome [annando] + (core) Fix blocking issue for Communityhome [heluecht] Pledgie addon was updated to remove cert problems [tobiasd] Securemail now uses openpgp-php and phpseclib [fabrixxm] Superblock Configuration [tobiasd] - Twitter Connector updated to use with new deletion method [annando] + Twitter Connector updated to use with new deletion method [heluecht] Closed Issues: 1626, 1720, 2432, 2792, 2833, 2364, 2448, 2496, 2690, 2752, 2775, @@ -54,10 +55,10 @@ Version 3.5.2 (2017-05-XX) Version 3.5.1 (2017-03-12) Friendica Core: Updates to the translations (BG, CA, CS, DE, EO, ES, FR, IS, IT, NL, PL, PT-BR, RU, SV) [translation teams] - Fix for a potential XSS vector [annando, thanks to Vít Šesták 'v6ak' for reporting the problem] + Fix for a potential XSS vector [heluecht, thanks to Vít Šesták 'v6ak' for reporting the problem] Fix for ghost request notifications on single user instances [Hypolite] Fix user language selection [tobiasd] - Fix a problem with communication to Diaspora with set posting locations [annando] + Fix a problem with communication to Diaspora with set posting locations [heluecht] Fix schema handling of direct links to a original posting [Rabuzarus] Fix a bug in notification handling [Rabuzarus] Adjustments for the Vagrant VM settings [silke, eelcomaljaars] @@ -65,22 +66,22 @@ Version 3.5.1 (2017-03-12) Improvements to the API and Friendica specific extensions [gerhard6380] Improvements to the Browser Notification functionality [Hypolite] Improvements to the themes [Hypolite, rabuzarus, rebeka-catalina, tobiasd] - Improvements to the database handling [annando] + Improvements to the database handling [heluecht] Improvements to the admin panel [tobiasd, Hypolite] - Improvements to the update process [annando] - Improvements to the handling of worker processes [annando] - Improvements to the performance [annando, Hypolite] + Improvements to the update process [heluecht] + Improvements to the handling of worker processes [heluecht] + Improvements to the performance [heluecht, Hypolite] Improvements to the documentation [Hypolite, tobiasd, rabuzarus, beardyunixer, eelcomaljaars] Improvements to the BBCode / Markdown conversation [Hypolite] - Improvements to the OStatus protocol implementation [annando] + Improvements to the OStatus protocol implementation [heluecht] Improvements to the installation wizzard [tobiasd] - Improvements to the Diaspora connectivity [annando, Hypolite] + Improvements to the Diaspora connectivity [heluecht, Hypolite] Work on PHP7 compatibility [ddorian1] Code cleanup [Hypolite, Quix0r] - Initial federation with Mastodon [annando] - The worker process can now also be started from the frontend [annando] - Deletion of postings is now done in the background [annando] - Extension of the DFRN transmitted information fields [annando] + Initial federation with Mastodon [heluecht] + The worker process can now also be started from the frontend [heluecht] + Deletion of postings is now done in the background [heluecht] + Extension of the DFRN transmitted information fields [heluecht] Translations of the core are now in /view/lang [Hypolite, tobiasd] Update of the fullCalendar library to 3.0.1 and adjusting the themes [rabuzarus] ping now works with JSON as well [Hypolite] @@ -99,16 +100,16 @@ Version 3.5.1 (2017-03-12) Updates to the translations (DE, ES, FR, IT, PT-BR) [translation teams] Improvements to the IFTTT addon [Hypolite] Improvements to the language filter addon [strk] - Improvements to the pump.io bridge [annando] - Improvements to the jappixmini addon [annando] - Improvements to the gpluspost addon [annando] - Improvements to the performance of the Twitter bridge when using workers [annando] - Diaspora Export addon is now working again [annando] + Improvements to the pump.io bridge [heluecht] + Improvements to the jappixmini addon [heluecht] + Improvements to the gpluspost addon [heluecht] + Improvements to the performance of the Twitter bridge when using workers [heluecht] + Diaspora Export addon is now working again [heluecht] Pledgie badge now uses https protocol for embedding [tobiasd] - Better posting loop prevention for the Google+/Twitter/GS connectors [annando] + Better posting loop prevention for the Google+/Twitter/GS connectors [heluecht] One can now configure the message for wppost bridged blog postings [tobiasd] - On some pages the result of the Rendertime is not shown anymore [annando] - Twitter-bridge now supports quotes and long posts when importing tweets [annando] + On some pages the result of the Rendertime is not shown anymore [heluecht] + Twitter-bridge now supports quotes and long posts when importing tweets [heluecht] Closed Issues 1019, 1163, 1612, 1613, 2103, 2177, 2252, 2260, 2403, 2991, 2614, @@ -120,48 +121,48 @@ Version 3.5.1 (2017-03-12) Version 3.5 (2016-09-13) Friendica Core: - NEW Optional local directory with possible federated contacts [annando] + NEW Optional local directory with possible federated contacts [heluecht] NEW Autocompletion for @-mentions and BBCode tags [rabuzarus] NEW Added a composer derived autoloader which allows composer autoloaders in addons/libraries [fabrixxm] - NEW theme: frio [rabuzarus, annando, fabrixxm] + NEW theme: frio [rabuzarus, heluecht, fabrixxm] Enhance .htaccess file (nerdoc, dissolve) Updates to the translations (DE, ES, IS, IT, RU) [translation teams] - Updates to the documentation [tobiasd, annando, mexcon, silke, rabuzarus, fabrixxm, Olivier Mehani, gerhard6380, ben utzer] - Extended the BBCode by [abstract] tag used for bridged postings to networks with limited character length [annando] - Code cleanup [annando, QuixOr] - Improvements to the API and Friendica specific extensions [annando, fabrixxm, gerhard6380] + Updates to the documentation [tobiasd, heluecht, mexcon, silke, rabuzarus, fabrixxm, Olivier Mehani, gerhard6380, ben utzer] + Extended the BBCode by [abstract] tag used for bridged postings to networks with limited character length [heluecht] + Code cleanup [heluecht, QuixOr] + Improvements to the API and Friendica specific extensions [heluecht, fabrixxm, gerhard6380] Improvements to the RSS/Atom feed import [mexcon] - Improvements to the communication with federated networks (Diaspora, Hubzilla, OStatus) [annando] - Improvements on the themes (quattro, vier, frost) [rabuzarus, fabrixxm, stieben, annando, Quix0r, tobiasd] + Improvements to the communication with federated networks (Diaspora, Hubzilla, OStatus) [heluecht] + Improvements on the themes (quattro, vier, frost) [rabuzarus, fabrixxm, stieben, heluecht, Quix0r, tobiasd] Improvements to the ACL dialog [fabrixxm, rabuzarus] - Improvements to the database structure and optimization of queries [annando] - Improvements to the UI (contacts, hotkeys, remember me, ARIA, code hightlighting) [rabuzarus, annando, tobiasd] - Improvements to the background process (poller, worker) [annando] - Improvements to the admin panel [tobiasd, annando, fabrixxm] - Improvements to the performance [annando] + Improvements to the database structure and optimization of queries [heluecht] + Improvements to the UI (contacts, hotkeys, remember me, ARIA, code hightlighting) [rabuzarus, heluecht, tobiasd] + Improvements to the background process (poller, worker) [heluecht] + Improvements to the admin panel [tobiasd, heluecht, fabrixxm] + Improvements to the performance [heluecht] Improvements to the installation wizzard (language selection, RINO version, check required PHP modules, default theme is now vier) [tobiasd] - Improvements to the relocation of nodes and accounts [annando] - Improvements to the DDoS detection [annando] - Improvements to the calendar/events module [annando, rabuzarus] + Improvements to the relocation of nodes and accounts [heluecht] + Improvements to the DDoS detection [heluecht] + Improvements to the calendar/events module [heluecht, rabuzarus] Improvements to OpenID login [strk] Improvements to the ShaShape font [andi] - Reworked the implementation of the DFRN, Diaspora protocols [annando] - Reworked the notifications code [fabrixxm, rabuzarus, annando] + Reworked the implementation of the DFRN, Diaspora protocols [heluecht] + Reworked the notifications code [fabrixxm, rabuzarus, heluecht] Reworked the p/config code [fabrixxm, rabuzarus] - Reworked XML generation [annando] - Removed now unused simplepie from library [annando] + Reworked XML generation [heluecht] + Removed now unused simplepie from library [heluecht] Friendica Addons Updated to the translations (DE, ES, IS, NL, PT BR), [translation teams] Piwik [tobiasd] - Twitter Connector [annando] - Pumpio Connector [annando] - Rendertime [annando] - wppost [annando] + Twitter Connector [heluecht] + Pumpio Connector [heluecht] + Rendertime [heluecht] + wppost [heluecht] showmore [rabuzarus] - fromgplus [annando] - app.net Connector [annando] - GNU Social Connector [annando] + fromgplus [heluecht] + app.net Connector [heluecht] + GNU Social Connector [heluecht] LDAP [Olivier Mehani] smileybutton [rabuzarus] retriver [mexon] From 887e309e8568b4ffa27f5fc6abf1ea67d1fbf5bb Mon Sep 17 00:00:00 2001 From: Andy H3 Date: Mon, 5 Jun 2017 21:36:26 +0700 Subject: [PATCH 078/125] Update messages.po --- view/lang/en-GB/messages.po | 804 ++++++++++++++++++------------------ 1 file changed, 402 insertions(+), 402 deletions(-) diff --git a/view/lang/en-GB/messages.po b/view/lang/en-GB/messages.po index e32209b0b5..706d90a7d2 100644 --- a/view/lang/en-GB/messages.po +++ b/view/lang/en-GB/messages.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-05-28 11:09+0200\n" -"PO-Revision-Date: 2017-05-29 07:16+0000\n" +"PO-Revision-Date: 2017-06-05 14:16+0000\n" "Last-Translator: Andy H3 \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/Friendica/friendica/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -2279,7 +2279,7 @@ msgstr "Delegations" #: include/nav.php:186 mod/delegate.php:132 msgid "Delegate Page Management" -msgstr "Delegate page management" +msgstr "Delegate Page Management" #: include/nav.php:188 mod/newmember.php:15 mod/admin.php:1624 #: mod/admin.php:1900 mod/settings.php:113 view/theme/frio/theme.php:258 @@ -2739,7 +2739,7 @@ msgstr "Contact information and social networks:" #: include/identity.php:722 msgid "Musical interests:" -msgstr "Musical interests:" +msgstr "Music:" #: include/identity.php:726 msgid "Books, literature:" @@ -2751,7 +2751,7 @@ msgstr "Television:" #: include/identity.php:734 msgid "Film/dance/culture/entertainment:" -msgstr "Arts, film, dance, culture, entertainment:" +msgstr "Arts, culture, entertainment:" #: include/identity.php:738 msgid "Love/Romance:" @@ -3287,7 +3287,7 @@ msgstr "This entry was edited" msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d comment" -msgstr[1] "%d comments:" +msgstr[1] "%d comments -" #: mod/content.php:639 mod/photos.php:1431 object/Item.php:117 msgid "Private Message" @@ -5516,7 +5516,7 @@ msgstr "Import an existing Friendica profile to this node." #: mod/removeme.php:54 mod/removeme.php:57 msgid "Remove My Account" -msgstr "Remove my account" +msgstr "Remove My Account" #: mod/removeme.php:55 msgid "" @@ -6116,7 +6116,7 @@ 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 "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." #: mod/admin.php:546 #, php-format @@ -6127,14 +6127,14 @@ msgid "" "converting the table engines. You may also use the command php " "include/dbstructure.php toinnodb of your Friendica installation for an " "automatic conversion.
" -msgstr "" +msgstr "Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the command php include/dbstructure.php toinnodb of your Friendica installation for an automatic conversion.
" #: mod/admin.php:555 msgid "" "The database update failed. Please run \"php include/dbstructure.php " "update\" from the command line and have a look at the errors that might " "appear." -msgstr "" +msgstr "The database update failed. Please run 'php include/dbstructure.php update' from the command line and have a look at the errors that might appear." #: mod/admin.php:560 mod/admin.php:1453 msgid "Normal Account" @@ -6146,23 +6146,23 @@ msgstr "Soapbox account" #: mod/admin.php:562 mod/admin.php:1455 msgid "Community/Celebrity Account" -msgstr "" +msgstr "Community/Celebrity account" #: mod/admin.php:563 mod/admin.php:1456 msgid "Automatic Friend Account" -msgstr "" +msgstr "Automatic friend account" #: mod/admin.php:564 msgid "Blog Account" -msgstr "" +msgstr "Blog account" #: mod/admin.php:565 msgid "Private Forum" -msgstr "" +msgstr "Private forum" #: mod/admin.php:587 msgid "Message queues" -msgstr "" +msgstr "Message queues" #: mod/admin.php:593 msgid "Summary" @@ -6289,7 +6289,7 @@ msgstr "Policies" #: mod/admin.php:1066 msgid "Auto Discovered Contact Directory" -msgstr "" +msgstr "Auto-discovered contact directory" #: mod/admin.php:1067 msgid "Performance" @@ -6428,7 +6428,7 @@ msgstr "Maximum image length" msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." -msgstr "" +msgstr "Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits." #: mod/admin.php:1088 msgid "JPEG image quality" @@ -6438,7 +6438,7 @@ msgstr "JPEG image quality" msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." -msgstr "" +msgstr "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is the original quality level." #: mod/admin.php:1090 msgid "Register policy" @@ -6446,72 +6446,72 @@ msgstr "Register policy" #: mod/admin.php:1091 msgid "Maximum Daily Registrations" -msgstr "" +msgstr "Maximum daily registrations" #: mod/admin.php:1091 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 "" +msgstr "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." #: mod/admin.php:1092 msgid "Register text" -msgstr "" +msgstr "Register text" #: mod/admin.php:1092 msgid "Will be displayed prominently on the registration page." -msgstr "" +msgstr "Will be displayed prominently on the registration page." #: mod/admin.php:1093 msgid "Accounts abandoned after x days" -msgstr "" +msgstr "Accounts abandoned after so many days" #: mod/admin.php:1093 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." -msgstr "" +msgstr "Will not waste system resources polling external sites for abandoned accounts. Enter 0 for no time limit." #: mod/admin.php:1094 msgid "Allowed friend domains" -msgstr "" +msgstr "Allowed friend domains" #: mod/admin.php:1094 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "" +msgstr "Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Leave empty to allow any domains" #: mod/admin.php:1095 msgid "Allowed email domains" -msgstr "" +msgstr "Allowed email domains" #: mod/admin.php:1095 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 "" +msgstr "Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Leave empty to allow any domains" #: mod/admin.php:1096 msgid "Block public" -msgstr "" +msgstr "Block public" #: mod/admin.php:1096 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." -msgstr "" +msgstr "Block public access to all otherwise public personal pages on this site, except for local users when logged in." #: mod/admin.php:1097 msgid "Force publish" -msgstr "" +msgstr "Mandatory directory listing" #: mod/admin.php:1097 msgid "" "Check to force all profiles on this site to be listed in the site directory." -msgstr "" +msgstr "Force all profiles on this site to be listed in the site directory." #: mod/admin.php:1098 msgid "Global directory URL" @@ -6525,45 +6525,45 @@ msgstr "URL to the global directory: If this is not set, the global directory is #: mod/admin.php:1099 msgid "Allow threaded items" -msgstr "" +msgstr "Allow threaded items" #: mod/admin.php:1099 msgid "Allow infinite level threading for items on this site." -msgstr "" +msgstr "Allow infinite levels of threading for items on this site." #: mod/admin.php:1100 msgid "Private posts by default for new users" -msgstr "" +msgstr "Private posts by default for new users" #: mod/admin.php:1100 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." -msgstr "" +msgstr "Set default post permissions for all new members to the default privacy group rather than public." #: mod/admin.php:1101 msgid "Don't include post content in email notifications" -msgstr "" +msgstr "Don't include post content in email notifications" #: mod/admin.php:1101 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 "" +msgstr "Don't include the content of a post/comment/private message in the email notifications sent from this site, as a privacy measure." #: mod/admin.php:1102 msgid "Disallow public access to addons listed in the apps menu." -msgstr "" +msgstr "Disallow public access to addons listed in the apps menu." #: mod/admin.php:1102 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." -msgstr "" +msgstr "Checking this box will restrict addons listed in the apps menu to members only." #: mod/admin.php:1103 msgid "Don't embed private images in posts" -msgstr "" +msgstr "Don't embed private images in posts" #: mod/admin.php:1103 msgid "" @@ -6571,138 +6571,138 @@ msgid "" "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 "" +msgstr "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." #: mod/admin.php:1104 msgid "Allow Users to set remote_self" -msgstr "" +msgstr "Allow users to set \"Remote self\"" #: mod/admin.php:1104 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 "" +msgstr "This allows every user to mark contacts as a \"Remote self\" in the repair contact dialogue. Setting this flag on a contact will mirror every posting of that contact in the users stream." #: mod/admin.php:1105 msgid "Block multiple registrations" -msgstr "" +msgstr "Block multiple registrations" #: mod/admin.php:1105 msgid "Disallow users to register additional accounts for use as pages." -msgstr "" +msgstr "Disallow users to register additional accounts for use as pages." #: mod/admin.php:1106 msgid "OpenID support" -msgstr "" +msgstr "OpenID support" #: mod/admin.php:1106 msgid "OpenID support for registration and logins." -msgstr "" +msgstr "OpenID support for registration and logins." #: mod/admin.php:1107 msgid "Fullname check" -msgstr "" +msgstr "Full name check" #: mod/admin.php:1107 msgid "" "Force users to register with a space between firstname and lastname in Full " "name, as an antispam measure" -msgstr "" +msgstr "Force users to register with a space between first name and last name in the full name field; it may reduce spam and abuse registrations." #: mod/admin.php:1108 msgid "Community Page Style" -msgstr "" +msgstr "Community page style" #: mod/admin.php:1108 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 of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server." #: mod/admin.php:1109 msgid "Posts per user on community page" -msgstr "" +msgstr "Posts per user on community page" #: mod/admin.php:1109 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "'Global Community')" -msgstr "" +msgstr "Maximum number of posts per user on the community page (not valid for 'Global Community')." #: mod/admin.php:1110 msgid "Enable OStatus support" -msgstr "" +msgstr "Enable OStatus support" #: mod/admin.php:1110 msgid "" "Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public, so privacy warnings will be " "occasionally displayed." -msgstr "" +msgstr "Provide built-in OStatus (StatusNet, GNU Social, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed." #: mod/admin.php:1111 msgid "OStatus conversation completion interval" -msgstr "" +msgstr "OStatus conversation completion interval" #: mod/admin.php:1111 msgid "" "How often shall the poller check for new entries in OStatus conversations? " "This can be a very ressource task." -msgstr "" +msgstr "How often shall the poller check for new entries in OStatus conversations? This can be rather resources consuming." #: mod/admin.php:1112 msgid "Only import OStatus threads from our contacts" -msgstr "" +msgstr "Only import OStatus threads from known contacts" #: mod/admin.php:1112 msgid "" "Normally we import every content from our OStatus contacts. With this option" " we only store threads that are started by a contact that is known on our " "system." -msgstr "" +msgstr "Normally we import every content from our OStatus contacts. With this option we only store threads that are started by a contact that is known on our system." #: mod/admin.php:1113 msgid "OStatus support can only be enabled if threading is enabled." -msgstr "" +msgstr "OStatus support can only be enabled if threading is enabled." #: mod/admin.php:1115 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." -msgstr "" +msgstr "Diaspora support can't be enabled because Friendica was installed into a sub directory." #: mod/admin.php:1116 msgid "Enable Diaspora support" -msgstr "" +msgstr "Enable Diaspora support" #: mod/admin.php:1116 msgid "Provide built-in Diaspora network compatibility." -msgstr "" +msgstr "Provide built-in Diaspora network compatibility." #: mod/admin.php:1117 msgid "Only allow Friendica contacts" -msgstr "" +msgstr "Only allow Friendica contacts" #: mod/admin.php:1117 msgid "" "All contacts must use Friendica protocols. All other built-in communication " "protocols disabled." -msgstr "" +msgstr "All contacts must use Friendica protocols. All other built-in communication protocols will be disabled." #: mod/admin.php:1118 msgid "Verify SSL" -msgstr "" +msgstr "Verify SSL" #: mod/admin.php:1118 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 "" +msgstr "If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites." #: mod/admin.php:1119 msgid "Proxy user" -msgstr "" +msgstr "Proxy user" #: mod/admin.php:1120 msgid "Proxy URL" @@ -6710,81 +6710,81 @@ msgstr "Proxy URL" #: mod/admin.php:1121 msgid "Network timeout" -msgstr "" +msgstr "Network timeout" #: mod/admin.php:1121 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "" +msgstr "Value is in seconds. Set to 0 for unlimited (not recommended)." #: mod/admin.php:1122 msgid "Maximum Load Average" -msgstr "" +msgstr "Maximum load average" #: mod/admin.php:1122 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." -msgstr "" +msgstr "Maximum system load before delivery and poll processes are deferred (default 50)." #: mod/admin.php:1123 msgid "Maximum Load Average (Frontend)" -msgstr "" +msgstr "Maximum load average (frontend)" #: mod/admin.php:1123 msgid "Maximum system load before the frontend quits service - default 50." -msgstr "" +msgstr "Maximum system load before the frontend quits service (default 50)." #: mod/admin.php:1124 msgid "Minimal Memory" -msgstr "" +msgstr "Minimal memory" #: mod/admin.php:1124 msgid "" "Minimal free memory in MB for the poller. Needs access to /proc/meminfo - " "default 0 (deactivated)." -msgstr "" +msgstr "Minimal free memory in MB for the poller. Needs access to /proc/meminfo (default 0 - deactivated)." #: mod/admin.php:1125 msgid "Maximum table size for optimization" -msgstr "" +msgstr "Maximum table size for optimization" #: mod/admin.php:1125 msgid "" "Maximum table size (in MB) for the automatic optimization - default 100 MB. " "Enter -1 to disable it." -msgstr "" +msgstr "Maximum table size (in MB) for the automatic optimization (default 100 MB; -1 to deactivate)." #: mod/admin.php:1126 msgid "Minimum level of fragmentation" -msgstr "" +msgstr "Minimum level of fragmentation" #: mod/admin.php:1126 msgid "" "Minimum fragmenation level to start the automatic optimization - default " "value is 30%." -msgstr "" +msgstr "Minimum fragmentation level to start the automatic optimization (default 30%)." #: mod/admin.php:1128 msgid "Periodical check of global contacts" -msgstr "" +msgstr "Periodical check of global contacts" #: mod/admin.php:1128 msgid "" "If enabled, the global contacts are checked periodically for missing or " "outdated data and the vitality of the contacts and servers." -msgstr "" +msgstr "This checks global contacts periodically for missing or outdated data and the vitality of the contacts and servers." #: mod/admin.php:1129 msgid "Days between requery" -msgstr "" +msgstr "Days between enquiry" #: mod/admin.php:1129 msgid "Number of days after which a server is requeried for his contacts." -msgstr "" +msgstr "Number of days after which a server is required check contacts." #: mod/admin.php:1130 msgid "Discover contacts from other servers" -msgstr "" +msgstr "Discover contacts from other servers" #: mod/admin.php:1130 msgid "" @@ -6798,28 +6798,28 @@ msgstr "Periodically query other servers for contacts. You can choose between 'U #: mod/admin.php:1131 msgid "Timeframe for fetching global contacts" -msgstr "" +msgstr "Time-frame for fetching global contacts" #: mod/admin.php:1131 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 "" +msgstr "If discovery is activated, this value defines the time-frame for the activity of the global contacts that are fetched from other servers." #: mod/admin.php:1132 msgid "Search the local directory" -msgstr "" +msgstr "Search the local directory" #: mod/admin.php:1132 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 "" +msgstr "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." #: mod/admin.php:1134 msgid "Publish server information" -msgstr "" +msgstr "Publish server information" #: mod/admin.php:1134 msgid "" @@ -6827,80 +6827,80 @@ 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 "This publishes generic data about the server and its usage. 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." #: mod/admin.php:1136 msgid "Suppress Tags" -msgstr "" +msgstr "Suppress tags" #: mod/admin.php:1136 msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "" +msgstr "Suppress listed hashtags at the end of posts." #: mod/admin.php:1137 msgid "Path to item cache" -msgstr "" +msgstr "Path to item cache" #: mod/admin.php:1137 msgid "The item caches buffers generated bbcode and external images." -msgstr "" +msgstr "The item caches buffers generated bbcode and external images." #: mod/admin.php:1138 msgid "Cache duration in seconds" -msgstr "" +msgstr "Cache duration in seconds" #: mod/admin.php:1138 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 "" +msgstr "How long should cache files be held? (Default 86400 seconds - one day; -1 disables item cache)" #: mod/admin.php:1139 msgid "Maximum numbers of comments per post" -msgstr "" +msgstr "Maximum numbers of comments per post" #: mod/admin.php:1139 msgid "How much comments should be shown for each post? Default value is 100." -msgstr "" +msgstr "How many comments should be shown for each post? (Default 100)" #: mod/admin.php:1140 msgid "Temp path" -msgstr "" +msgstr "Temp path" #: mod/admin.php:1140 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." -msgstr "" +msgstr "Enter a different tmp path, if your system restricts the webserver's access to the system temp path." #: mod/admin.php:1141 msgid "Base path to installation" -msgstr "" +msgstr "Base path to installation" #: mod/admin.php:1141 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 "" +msgstr "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." #: mod/admin.php:1142 msgid "Disable picture proxy" -msgstr "" +msgstr "Disable picture proxy" #: mod/admin.php:1142 msgid "" "The picture proxy increases performance and privacy. It shouldn't be used on" " systems with very low bandwith." -msgstr "" +msgstr "The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith." #: mod/admin.php:1143 msgid "Only search in tags" -msgstr "" +msgstr "Only search in tags" #: mod/admin.php:1143 msgid "On large systems the text search can slow down the system extremely." -msgstr "" +msgstr "On large systems the text search can slow down the system significantly." #: mod/admin.php:1145 msgid "New base url" @@ -6914,46 +6914,46 @@ msgstr "Change base URL for this server. Sends relocate message to all DFRN cont #: mod/admin.php:1147 msgid "RINO Encryption" -msgstr "" +msgstr "RINO Encryption" #: mod/admin.php:1147 msgid "Encryption layer between nodes." -msgstr "" +msgstr "Encryption layer between nodes." #: mod/admin.php:1149 msgid "Maximum number of parallel workers" -msgstr "" +msgstr "Maximum number of parallel workers" #: mod/admin.php:1149 msgid "" "On shared hosters set this to 2. On larger systems, values of 10 are great. " "Default value is 4." -msgstr "" +msgstr "On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4." #: mod/admin.php:1150 msgid "Don't use 'proc_open' with the worker" -msgstr "" +msgstr "Don't use 'proc_open' with the worker" #: mod/admin.php:1150 msgid "" "Enable this if your system doesn't allow the use of 'proc_open'. This can " "happen on shared hosters. If this is enabled you should increase the " "frequency of poller calls in your crontab." -msgstr "" +msgstr "Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosts. If this is enabled you should increase the frequency of poller calls in your crontab." #: mod/admin.php:1151 msgid "Enable fastlane" -msgstr "" +msgstr "Enable fast-lane" #: mod/admin.php:1151 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes" " with higher priority are blocked by processes of lower priority." -msgstr "" +msgstr "The fast-lane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority." #: mod/admin.php:1152 msgid "Enable frontend worker" -msgstr "" +msgstr "Enable frontend worker" #: mod/admin.php:1152 msgid "" @@ -6963,66 +6963,66 @@ msgid "" "You should only enable this option if you cannot utilize cron/scheduled jobs" " on your server. The worker background process needs to be activated for " "this." -msgstr "" +msgstr "If enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this." #: mod/admin.php:1182 msgid "Update has been marked successful" -msgstr "" +msgstr "Update has been marked successful" #: mod/admin.php:1190 #, php-format msgid "Database structure update %s was successfully applied." -msgstr "" +msgstr "Database structure update %s was successfully applied." #: mod/admin.php:1193 #, php-format msgid "Executing of database structure update %s failed with error: %s" -msgstr "" +msgstr "Executing of database structure update %s failed with error: %s" #: mod/admin.php:1207 #, php-format msgid "Executing %s failed with error: %s" -msgstr "" +msgstr "Executing %s failed with error: %s" #: mod/admin.php:1210 #, php-format msgid "Update %s was successfully applied." -msgstr "" +msgstr "Update %s was successfully applied." #: mod/admin.php:1213 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "" +msgstr "Update %s did not return a status. Unknown if it succeeded." #: mod/admin.php:1216 #, php-format msgid "There was no additional update function %s that needed to be called." -msgstr "" +msgstr "There was no additional update function %s that needed to be called." #: mod/admin.php:1236 msgid "No failed updates." -msgstr "" +msgstr "No failed updates." #: mod/admin.php:1237 msgid "Check database structure" -msgstr "" +msgstr "Check database structure" #: mod/admin.php:1242 msgid "Failed Updates" -msgstr "" +msgstr "Failed updates" #: mod/admin.php:1243 msgid "" "This does not include updates prior to 1139, which did not return a status." -msgstr "" +msgstr "This does not include updates prior to 1139, which did not return a status." #: mod/admin.php:1244 msgid "Mark success (if update was manually applied)" -msgstr "" +msgstr "Mark success (if update was manually applied)" #: mod/admin.php:1245 msgid "Attempt to execute this update step automatically" -msgstr "" +msgstr "Attempt to execute this update step automatically" #: mod/admin.php:1279 #, php-format @@ -7030,7 +7030,7 @@ msgid "" "\n" "\t\t\tDear %1$s,\n" "\t\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "" +msgstr "\n\t\t\tDear %1$s,\n\t\t\t\tThe administrator of %2$s has set up an account for you." #: mod/admin.php:1282 #, php-format @@ -7060,84 +7060,84 @@ msgid "" "\t\t\tyou to make some new and interesting friends.\n" "\n" "\t\t\tThank you and welcome to %4$s." -msgstr "" +msgstr "\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, this may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4$s." #: mod/admin.php:1326 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s user blocked/unblocked" +msgstr[1] "%s users blocked/unblocked" #: mod/admin.php:1333 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s user deleted" +msgstr[1] "%s users deleted" #: mod/admin.php:1380 #, php-format msgid "User '%s' deleted" -msgstr "" +msgstr "User '%s' deleted" #: mod/admin.php:1388 #, php-format msgid "User '%s' unblocked" -msgstr "" +msgstr "User '%s' unblocked" #: mod/admin.php:1388 #, php-format msgid "User '%s' blocked" -msgstr "" +msgstr "User '%s' blocked" #: mod/admin.php:1496 mod/admin.php:1522 msgid "Register date" -msgstr "" +msgstr "Register date" #: mod/admin.php:1496 mod/admin.php:1522 msgid "Last login" -msgstr "" +msgstr "Last login" #: mod/admin.php:1496 mod/admin.php:1522 msgid "Last item" -msgstr "" +msgstr "Last item" #: mod/admin.php:1496 mod/settings.php:45 msgid "Account" -msgstr "" +msgstr "Account" #: mod/admin.php:1505 msgid "Add User" -msgstr "" +msgstr "Add user" #: mod/admin.php:1506 msgid "select all" -msgstr "" +msgstr "select all" #: mod/admin.php:1507 msgid "User registrations waiting for confirm" -msgstr "" +msgstr "User registrations awaiting confirmation" #: mod/admin.php:1508 msgid "User waiting for permanent deletion" -msgstr "" +msgstr "User awaiting permanent deletion" #: mod/admin.php:1509 msgid "Request date" -msgstr "" +msgstr "Request date" #: mod/admin.php:1510 msgid "No registrations." -msgstr "" +msgstr "No registrations." #: mod/admin.php:1511 msgid "Note from the user" -msgstr "" +msgstr "Note from the user" #: mod/admin.php:1513 msgid "Deny" -msgstr "" +msgstr "Deny" #: mod/admin.php:1515 mod/contacts.php:616 mod/contacts.php:816 #: mod/contacts.php:994 @@ -7151,81 +7151,81 @@ msgstr "Unblock" #: mod/admin.php:1517 msgid "Site admin" -msgstr "" +msgstr "Site admin" #: mod/admin.php:1518 msgid "Account expired" -msgstr "" +msgstr "Account expired" #: mod/admin.php:1521 msgid "New User" -msgstr "" +msgstr "New user" #: mod/admin.php:1522 msgid "Deleted since" -msgstr "" +msgstr "Deleted since" #: mod/admin.php:1527 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" +msgstr "Selected users will be deleted!\\n\\nEverything these users has posted on this site will be permanently deleted!\\n\\nAre you sure?" #: mod/admin.php:1528 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 "" +msgstr "The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?" #: mod/admin.php:1538 msgid "Name of the new user." -msgstr "" +msgstr "Name of the new user." #: mod/admin.php:1539 msgid "Nickname" -msgstr "" +msgstr "Nickname" #: mod/admin.php:1539 msgid "Nickname of the new user." -msgstr "" +msgstr "Nickname of the new user." #: mod/admin.php:1540 msgid "Email address of the new user." -msgstr "" +msgstr "Email address of the new user." #: mod/admin.php:1583 #, php-format msgid "Plugin %s disabled." -msgstr "" +msgstr "Plugin %s disabled." #: mod/admin.php:1587 #, php-format msgid "Plugin %s enabled." -msgstr "" +msgstr "Plugin %s enabled." #: mod/admin.php:1598 mod/admin.php:1850 msgid "Disable" -msgstr "" +msgstr "Disable" #: mod/admin.php:1600 mod/admin.php:1852 msgid "Enable" -msgstr "" +msgstr "Enable" #: mod/admin.php:1623 mod/admin.php:1899 msgid "Toggle" -msgstr "" +msgstr "Toggle" #: mod/admin.php:1631 mod/admin.php:1908 msgid "Author: " -msgstr "" +msgstr "Author: " #: mod/admin.php:1632 mod/admin.php:1909 msgid "Maintainer: " -msgstr "" +msgstr "Maintainer: " #: mod/admin.php:1687 msgid "Reload active plugins" -msgstr "" +msgstr "Reload active plugins" #: mod/admin.php:1692 #, php-format @@ -7233,70 +7233,70 @@ msgid "" "There are currently no plugins available on your node. You can find the " "official plugin repository at %1$s and might find other interesting plugins " "in the open plugin registry at %2$s" -msgstr "" +msgstr "There are currently no plugins available on your node. You can find the official plugin repository at %1$s and might find other interesting plugins in the open plugin registry at %2$s" #: mod/admin.php:1811 msgid "No themes found." -msgstr "" +msgstr "No themes found." #: mod/admin.php:1890 msgid "Screenshot" -msgstr "" +msgstr "Screenshot" #: mod/admin.php:1950 msgid "Reload active themes" -msgstr "" +msgstr "Reload active themes" #: mod/admin.php:1955 #, php-format msgid "No themes found on the system. They should be paced in %1$s" -msgstr "" +msgstr "No themes found on the system. They should be paced in %1$s" #: mod/admin.php:1956 msgid "[Experimental]" -msgstr "" +msgstr "[Experimental]" #: mod/admin.php:1957 msgid "[Unsupported]" -msgstr "" +msgstr "[Unsupported]" #: mod/admin.php:1981 msgid "Log settings updated." -msgstr "" +msgstr "Log settings updated." #: mod/admin.php:2013 msgid "PHP log currently enabled." -msgstr "" +msgstr "PHP log currently enabled." #: mod/admin.php:2015 msgid "PHP log currently disabled." -msgstr "" +msgstr "PHP log currently disabled." #: mod/admin.php:2024 msgid "Clear" -msgstr "" +msgstr "Clear" #: mod/admin.php:2029 msgid "Enable Debugging" -msgstr "" +msgstr "Enable debugging" #: mod/admin.php:2030 msgid "Log file" -msgstr "" +msgstr "Log file" #: mod/admin.php:2030 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." -msgstr "" +msgstr "Must be writable by web server and relative to your Friendica top-level directory." #: mod/admin.php:2031 msgid "Log level" -msgstr "" +msgstr "Log level" #: mod/admin.php:2034 msgid "PHP logging" -msgstr "" +msgstr "PHP logging" #: mod/admin.php:2035 msgid "" @@ -7305,24 +7305,24 @@ msgid "" "'error_log' line is relative to the friendica top-level directory and must " "be writeable by the web server. The option '1' for 'log_errors' and " "'display_errors' is to enable these options, set to '0' to disable them." -msgstr "" +msgstr "To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The file name set in the 'error_log' line is relative to the Friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them." #: mod/admin.php:2165 mod/admin.php:2166 mod/settings.php:783 msgid "Off" -msgstr "" +msgstr "Off" #: mod/admin.php:2165 mod/admin.php:2166 mod/settings.php:783 msgid "On" -msgstr "" +msgstr "On" #: mod/admin.php:2166 #, php-format msgid "Lock feature %s" -msgstr "" +msgstr "Lock feature %s" #: mod/admin.php:2174 msgid "Manage Additional Features" -msgstr "" +msgstr "Manage additional features" #: mod/contacts.php:137 #, php-format @@ -7707,51 +7707,51 @@ msgstr "Profile deleted." #: mod/profiles.php:58 mod/profiles.php:94 msgid "Profile-" -msgstr "" +msgstr "Profile-" #: mod/profiles.php:77 mod/profiles.php:122 msgid "New profile created." -msgstr "" +msgstr "New profile created." #: mod/profiles.php:100 msgid "Profile unavailable to clone." -msgstr "" +msgstr "Profile unavailable to clone." #: mod/profiles.php:196 msgid "Profile Name is required." -msgstr "" +msgstr "Profile name is required." #: mod/profiles.php:336 msgid "Marital Status" -msgstr "" +msgstr "Marital status" #: mod/profiles.php:340 msgid "Romantic Partner" -msgstr "" +msgstr "Romantic partner" #: mod/profiles.php:352 msgid "Work/Employment" -msgstr "" +msgstr "Work/Employment:" #: mod/profiles.php:355 msgid "Religion" -msgstr "" +msgstr "Religion" #: mod/profiles.php:359 msgid "Political Views" -msgstr "" +msgstr "Political views" #: mod/profiles.php:363 msgid "Gender" -msgstr "" +msgstr "Gender" #: mod/profiles.php:367 msgid "Sexual Preference" -msgstr "" +msgstr "Sexual preference" #: mod/profiles.php:371 msgid "XMPP" -msgstr "" +msgstr "XMPP" #: mod/profiles.php:375 msgid "Homepage" @@ -7759,182 +7759,182 @@ msgstr "Homepage" #: mod/profiles.php:379 mod/profiles.php:698 msgid "Interests" -msgstr "" +msgstr "Interests" #: mod/profiles.php:383 msgid "Address" -msgstr "" +msgstr "Address" #: mod/profiles.php:390 mod/profiles.php:694 msgid "Location" -msgstr "" +msgstr "Location" #: mod/profiles.php:475 msgid "Profile updated." -msgstr "" +msgstr "Profile updated." #: mod/profiles.php:567 msgid " and " -msgstr "" +msgstr " and " #: mod/profiles.php:576 msgid "public profile" -msgstr "" +msgstr "public profile" #: mod/profiles.php:579 #, php-format msgid "%1$s changed %2$s to “%3$s”" -msgstr "" +msgstr "%1$s changed %2$s to “%3$s”" #: mod/profiles.php:580 #, php-format msgid " - Visit %1$s's %2$s" -msgstr "" +msgstr " - Visit %1$s's %2$s" #: mod/profiles.php:582 #, php-format msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "" +msgstr "%1$s has an updated %2$s, changing %3$s." #: mod/profiles.php:640 msgid "Hide contacts and friends:" -msgstr "" +msgstr "Hide contacts and friends:" #: mod/profiles.php:645 msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "" +msgstr "Hide your contact/friend list from viewers of this profile?" #: mod/profiles.php:670 msgid "Show more profile fields:" -msgstr "" +msgstr "Show more profile fields:" #: mod/profiles.php:682 msgid "Profile Actions" -msgstr "" +msgstr "Profile actions" #: mod/profiles.php:683 msgid "Edit Profile Details" -msgstr "" +msgstr "Edit Profile Details" #: mod/profiles.php:685 msgid "Change Profile Photo" -msgstr "" +msgstr "Change profile photo" #: mod/profiles.php:686 msgid "View this profile" -msgstr "" +msgstr "View this profile" #: mod/profiles.php:688 msgid "Create a new profile using these settings" -msgstr "" +msgstr "Create a new profile using these settings" #: mod/profiles.php:689 msgid "Clone this profile" -msgstr "" +msgstr "Clone this profile" #: mod/profiles.php:690 msgid "Delete this profile" -msgstr "" +msgstr "Delete this profile" #: mod/profiles.php:692 msgid "Basic information" -msgstr "" +msgstr "Basic information" #: mod/profiles.php:693 msgid "Profile picture" -msgstr "" +msgstr "Profile picture" #: mod/profiles.php:695 msgid "Preferences" -msgstr "" +msgstr "Preferences" #: mod/profiles.php:696 msgid "Status information" -msgstr "" +msgstr "Status information" #: mod/profiles.php:697 msgid "Additional information" -msgstr "" +msgstr "Additional information" #: mod/profiles.php:700 msgid "Relation" -msgstr "" +msgstr "Relation" #: mod/profiles.php:704 msgid "Your Gender:" -msgstr "" +msgstr "Gender:" #: mod/profiles.php:705 msgid " Marital Status:" -msgstr "" +msgstr " Marital status:" #: mod/profiles.php:707 msgid "Example: fishing photography software" -msgstr "" +msgstr "Example: fishing photography software" #: mod/profiles.php:712 msgid "Profile Name:" -msgstr "" +msgstr "Profile name:" #: mod/profiles.php:714 msgid "" "This is your public profile.
It may " "be visible to anybody using the internet." -msgstr "" +msgstr "This is your public profile.
It may be visible to anybody using the internet." #: mod/profiles.php:715 msgid "Your Full Name:" -msgstr "" +msgstr "My full name:" #: mod/profiles.php:716 msgid "Title/Description:" -msgstr "" +msgstr "Title/Description:" #: mod/profiles.php:719 msgid "Street Address:" -msgstr "" +msgstr "Street address:" #: mod/profiles.php:720 msgid "Locality/City:" -msgstr "" +msgstr "Locality/City:" #: mod/profiles.php:721 msgid "Region/State:" -msgstr "" +msgstr "Region/State:" #: mod/profiles.php:722 msgid "Postal/Zip Code:" -msgstr "" +msgstr "Postcode:" #: mod/profiles.php:723 msgid "Country:" -msgstr "" +msgstr "Country:" #: mod/profiles.php:727 msgid "Who: (if applicable)" -msgstr "" +msgstr "Who: (if applicable)" #: mod/profiles.php:727 msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "" +msgstr "Examples: cathy123, Cathy Williams, cathy@example.com" #: mod/profiles.php:728 msgid "Since [date]:" -msgstr "" +msgstr "Since when:" #: mod/profiles.php:730 msgid "Tell us about yourself..." -msgstr "" +msgstr "About myself:" #: mod/profiles.php:731 msgid "XMPP (Jabber) address:" -msgstr "" +msgstr "XMPP (Jabber) address:" #: mod/profiles.php:731 msgid "" "The XMPP address will be propagated to your contacts so that they can follow" " you." -msgstr "" +msgstr "The XMPP address will be propagated to your contacts so that they can follow you." #: mod/profiles.php:732 msgid "Homepage URL:" @@ -7942,67 +7942,67 @@ msgstr "Homepage URL:" #: mod/profiles.php:735 msgid "Religious Views:" -msgstr "" +msgstr "Religious views:" #: mod/profiles.php:736 msgid "Public Keywords:" -msgstr "" +msgstr "Public keywords:" #: mod/profiles.php:736 msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "" +msgstr "Used for suggesting potential friends, can be seen by others." #: mod/profiles.php:737 msgid "Private Keywords:" -msgstr "" +msgstr "Private keywords:" #: mod/profiles.php:737 msgid "(Used for searching profiles, never shown to others)" -msgstr "" +msgstr "Used for searching profiles, never shown to others." #: mod/profiles.php:740 msgid "Musical interests" -msgstr "" +msgstr "Music:" #: mod/profiles.php:741 msgid "Books, literature" -msgstr "" +msgstr "Books, literature, poetry:" #: mod/profiles.php:742 msgid "Television" -msgstr "" +msgstr "Television:" #: mod/profiles.php:743 msgid "Film/dance/culture/entertainment" -msgstr "" +msgstr "Film, dance, culture, entertainment" #: mod/profiles.php:744 msgid "Hobbies/Interests" -msgstr "" +msgstr "Hobbies/Interests:" #: mod/profiles.php:745 msgid "Love/romance" -msgstr "" +msgstr "Love/Romance:" #: mod/profiles.php:746 msgid "Work/employment" -msgstr "" +msgstr "Work/Employment:" #: mod/profiles.php:747 msgid "School/education" -msgstr "" +msgstr "School/Education:" #: mod/profiles.php:748 msgid "Contact information and Social Networks" -msgstr "" +msgstr "Contact information and other social networks:" #: mod/profiles.php:789 msgid "Edit/Manage Profiles" -msgstr "" +msgstr "Edit/Manage Profiles" #: mod/settings.php:62 msgid "Display" -msgstr "" +msgstr "Display" #: mod/settings.php:69 mod/settings.php:891 msgid "Social Networks" @@ -8010,27 +8010,27 @@ msgstr "Social networks" #: mod/settings.php:90 msgid "Connected apps" -msgstr "" +msgstr "Connected apps" #: mod/settings.php:104 msgid "Remove account" -msgstr "" +msgstr "Remove account" #: mod/settings.php:159 msgid "Missing some important data!" -msgstr "" +msgstr "Missing some important data!" #: mod/settings.php:273 msgid "Failed to connect with email account using the settings provided." -msgstr "" +msgstr "Failed to connect with email account using the settings provided." #: mod/settings.php:278 msgid "Email settings updated." -msgstr "" +msgstr "Email settings updated." #: mod/settings.php:293 msgid "Features updated" -msgstr "" +msgstr "Features updated" #: mod/settings.php:363 msgid "Relocate message has been send to your contacts" @@ -8038,67 +8038,67 @@ msgstr "Relocate message has been send to your contacts" #: mod/settings.php:382 msgid "Empty passwords are not allowed. Password unchanged." -msgstr "" +msgstr "Empty passwords are not allowed. Password unchanged." #: mod/settings.php:390 msgid "Wrong password." -msgstr "" +msgstr "Wrong password." #: mod/settings.php:401 msgid "Password changed." -msgstr "" +msgstr "Password changed." #: mod/settings.php:403 msgid "Password update failed. Please try again." -msgstr "" +msgstr "Password update failed. Please try again." #: mod/settings.php:483 msgid " Please use a shorter name." -msgstr "" +msgstr " Please use a shorter name." #: mod/settings.php:485 msgid " Name too short." -msgstr "" +msgstr " Name too short." #: mod/settings.php:494 msgid "Wrong Password" -msgstr "" +msgstr "Wrong password" #: mod/settings.php:499 msgid " Not valid email." -msgstr "" +msgstr "Invalid email." #: mod/settings.php:505 msgid " Cannot change to that email." -msgstr "" +msgstr " Cannot change to that email." #: mod/settings.php:561 msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "" +msgstr "Private forum has no privacy permissions. Using default privacy group." #: mod/settings.php:565 msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "" +msgstr "Private forum has no privacy permissions and no default privacy group." #: mod/settings.php:605 msgid "Settings updated." -msgstr "" +msgstr "Settings updated." #: mod/settings.php:681 mod/settings.php:707 mod/settings.php:743 msgid "Add application" -msgstr "" +msgstr "Add application" #: mod/settings.php:685 mod/settings.php:711 msgid "Consumer Key" -msgstr "" +msgstr "Consumer key" #: mod/settings.php:686 mod/settings.php:712 msgid "Consumer Secret" -msgstr "" +msgstr "Consumer secret" #: mod/settings.php:687 mod/settings.php:713 msgid "Redirect" -msgstr "" +msgstr "Redirect" #: mod/settings.php:688 mod/settings.php:714 msgid "Icon url" @@ -8106,43 +8106,43 @@ msgstr "Icon URL" #: mod/settings.php:699 msgid "You can't edit this application." -msgstr "" +msgstr "You cannot edit this application." #: mod/settings.php:742 msgid "Connected Apps" -msgstr "" +msgstr "Connected Apps" #: mod/settings.php:746 msgid "Client key starts with" -msgstr "" +msgstr "Client key starts with" #: mod/settings.php:747 msgid "No name" -msgstr "" +msgstr "No name" #: mod/settings.php:748 msgid "Remove authorization" -msgstr "" +msgstr "Remove authorization" #: mod/settings.php:760 msgid "No Plugin settings configured" -msgstr "" +msgstr "No plugin settings configured" #: mod/settings.php:769 msgid "Plugin Settings" -msgstr "" +msgstr "Plugin Settings" #: mod/settings.php:791 msgid "Additional Features" -msgstr "" +msgstr "Additional Features" #: mod/settings.php:801 mod/settings.php:805 msgid "General Social Media Settings" -msgstr "" +msgstr "General Social Media Settings" #: mod/settings.php:811 msgid "Disable intelligent shortening" -msgstr "" +msgstr "Disable intelligent shortening" #: mod/settings.php:813 msgid "" @@ -8153,104 +8153,104 @@ msgstr "Normally the system tries to find the best link to add to shortened post #: mod/settings.php:819 msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "" +msgstr "Automatically follow any GNU Social (OStatus) followers/mentioners" #: mod/settings.php:821 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 "Create a new contact for every unknown OStatus user from whom you receive a message." #: mod/settings.php:827 msgid "Default group for OStatus contacts" -msgstr "" +msgstr "Default group for OStatus contacts" #: mod/settings.php:835 msgid "Your legacy GNU Social account" -msgstr "" +msgstr "Your legacy GNU Social account" #: mod/settings.php:837 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 "Entering your old GNU Social/Statusnet account name here (format: user@domain.tld), will automatically added your contacts. The field will be emptied when done." #: mod/settings.php:840 msgid "Repair OStatus subscriptions" -msgstr "" +msgstr "Repair OStatus subscriptions" #: mod/settings.php:849 mod/settings.php:850 #, php-format msgid "Built-in support for %s connectivity is %s" -msgstr "" +msgstr "Built-in support for %s connectivity is %s" #: mod/settings.php:849 mod/settings.php:850 msgid "enabled" -msgstr "" +msgstr "enabled" #: mod/settings.php:849 mod/settings.php:850 msgid "disabled" -msgstr "" +msgstr "disabled" #: mod/settings.php:850 msgid "GNU Social (OStatus)" -msgstr "" +msgstr "GNU Social (OStatus)" #: mod/settings.php:884 msgid "Email access is disabled on this site." -msgstr "" +msgstr "Email access is disabled on this site." #: mod/settings.php:896 msgid "Email/Mailbox Setup" -msgstr "" +msgstr "Email/Mailbox setup" #: mod/settings.php:897 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." -msgstr "" +msgstr "Specify how to connect to your mailbox, if you wish to communicate with existing email contacts." #: mod/settings.php:898 msgid "Last successful email check:" -msgstr "" +msgstr "Last successful email check:" #: mod/settings.php:900 msgid "IMAP server name:" -msgstr "" +msgstr "IMAP server name:" #: mod/settings.php:901 msgid "IMAP port:" -msgstr "" +msgstr "IMAP port:" #: mod/settings.php:902 msgid "Security:" -msgstr "" +msgstr "Security:" #: mod/settings.php:902 mod/settings.php:907 msgid "None" -msgstr "" +msgstr "None" #: mod/settings.php:903 msgid "Email login name:" -msgstr "" +msgstr "Email login name:" #: mod/settings.php:904 msgid "Email password:" -msgstr "" +msgstr "Email password:" #: mod/settings.php:905 msgid "Reply-to address:" -msgstr "" +msgstr "Reply-to address:" #: mod/settings.php:906 msgid "Send public posts to all email contacts:" -msgstr "" +msgstr "Send public posts to all email contacts:" #: mod/settings.php:907 msgid "Action after import:" -msgstr "" +msgstr "Action after import:" #: mod/settings.php:907 msgid "Move to folder" @@ -8262,25 +8262,25 @@ msgstr "Move to folder:" #: mod/settings.php:1004 msgid "Display Settings" -msgstr "" +msgstr "Display Settings" #: mod/settings.php:1010 mod/settings.php:1033 msgid "Display Theme:" -msgstr "" +msgstr "Display theme:" #: mod/settings.php:1011 msgid "Mobile Theme:" -msgstr "" +msgstr "Mobile theme:" #: mod/settings.php:1012 msgid "Suppress warning of insecure networks" -msgstr "" +msgstr "Suppress warning of insecure networks" #: mod/settings.php:1012 msgid "" "Should the system suppress the warning that the current group contains " "members of networks that can't receive non public postings." -msgstr "" +msgstr "Suppresses warnings if groups contains members whose networks that cannot receive non-public postings." #: mod/settings.php:1013 msgid "Update browser every xx seconds" @@ -8288,53 +8288,53 @@ msgstr "Update browser every so many seconds:" #: mod/settings.php:1013 msgid "Minimum of 10 seconds. Enter -1 to disable it." -msgstr "" +msgstr "Minimum 10 seconds; to disable -1." #: mod/settings.php:1014 msgid "Number of items to display per page:" -msgstr "" +msgstr "Number of items displayed per page:" #: mod/settings.php:1014 mod/settings.php:1015 msgid "Maximum of 100 items" -msgstr "" +msgstr "Maximum of 100 items" #: mod/settings.php:1015 msgid "Number of items to display per page when viewed from mobile device:" -msgstr "" +msgstr "Number of items displayed per page on mobile devices:" #: mod/settings.php:1016 msgid "Don't show emoticons" -msgstr "" +msgstr "Don't show emoticons" #: mod/settings.php:1017 msgid "Calendar" -msgstr "" +msgstr "Calendar" #: mod/settings.php:1018 msgid "Beginning of week:" -msgstr "" +msgstr "Week begins: " #: mod/settings.php:1019 msgid "Don't show notices" -msgstr "" +msgstr "Don't show notices" #: mod/settings.php:1020 msgid "Infinite scroll" -msgstr "" +msgstr "Infinite scroll" #: mod/settings.php:1021 msgid "Automatic updates only at the top of the network page" -msgstr "" +msgstr "Automatically updates only top of the network page" #: mod/settings.php:1022 msgid "Bandwith Saver Mode" -msgstr "" +msgstr "Bandwith saving mode" #: mod/settings.php:1022 msgid "" "When enabled, embedded content is not displayed on automatic updates, they " "only show on page reload." -msgstr "" +msgstr "If enabled, embedded content is not displayed on automatic updates; it is only shown on page reload." #: mod/settings.php:1024 msgid "General Theme Settings" @@ -8352,7 +8352,7 @@ msgstr "Content/Layout" #: view/theme/frio/config.php:69 view/theme/quattro/config.php:72 #: view/theme/vier/config.php:115 msgid "Theme settings" -msgstr "" +msgstr "Theme settings" #: mod/settings.php:1111 msgid "Account Types" @@ -8364,7 +8364,7 @@ msgstr "Personal Page subtypes" #: mod/settings.php:1113 msgid "Community Forum Subtypes" -msgstr "" +msgstr "Community forum subtypes" #: mod/settings.php:1120 msgid "Personal Page" @@ -8417,11 +8417,11 @@ msgstr "Automatically approves contact requests as followers" #: mod/settings.php:1144 msgid "Public Forum" -msgstr "" +msgstr "Public forum" #: mod/settings.php:1145 msgid "Automatically approve all contact requests" -msgstr "" +msgstr "Automatically approve all contact requests" #: mod/settings.php:1148 msgid "Automatic Friend Page" @@ -8433,19 +8433,19 @@ msgstr "Automatically approves contact requests as friends" #: mod/settings.php:1152 msgid "Private Forum [Experimental]" -msgstr "" +msgstr "Private forum [Experimental]" #: mod/settings.php:1153 msgid "Private forum - approved members only" -msgstr "" +msgstr "Private forum - approved members only" #: mod/settings.php:1164 msgid "OpenID:" -msgstr "" +msgstr "OpenID:" #: mod/settings.php:1164 msgid "(Optional) Allow this OpenID to login to this account." -msgstr "" +msgstr "(Optional) Allow this OpenID to login to this account." #: mod/settings.php:1172 msgid "Publish your default profile in your local site directory?" @@ -8479,7 +8479,7 @@ msgstr "Allow friends to tag my post?" #: mod/settings.php:1204 msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "" +msgstr "Allow us to suggest you as a potential friend to new members?" #: mod/settings.php:1209 msgid "Permit unknown people to send you private mail?" @@ -8487,7 +8487,7 @@ msgstr "Allow unknown people to send me private messages?" #: mod/settings.php:1217 msgid "Profile is not published." -msgstr "" +msgstr "Profile is not published." #: mod/settings.php:1225 #, php-format @@ -8512,27 +8512,27 @@ msgstr "Advanced expiration" #: mod/settings.php:1235 msgid "Expire posts:" -msgstr "" +msgstr "Expire posts:" #: mod/settings.php:1236 msgid "Expire personal notes:" -msgstr "" +msgstr "Expire personal notes:" #: mod/settings.php:1237 msgid "Expire starred posts:" -msgstr "" +msgstr "Expire starred posts:" #: mod/settings.php:1238 msgid "Expire photos:" -msgstr "" +msgstr "Expire photos:" #: mod/settings.php:1239 msgid "Only expire posts by others:" -msgstr "" +msgstr "Only expire posts by others:" #: mod/settings.php:1270 msgid "Account Settings" -msgstr "" +msgstr "Account Settings" #: mod/settings.php:1278 msgid "Password Settings" @@ -8540,7 +8540,7 @@ msgstr "Password change" #: mod/settings.php:1280 msgid "Leave password fields blank unless changing" -msgstr "" +msgstr "Leave password fields blank unless changing" #: mod/settings.php:1281 msgid "Current Password:" @@ -8552,7 +8552,7 @@ msgstr "Current password to confirm change" #: mod/settings.php:1282 msgid "Password:" -msgstr "" +msgstr "Password:" #: mod/settings.php:1286 msgid "Basic Settings" @@ -8574,7 +8574,7 @@ msgstr "Language:" msgid "" "Set the language we use to show you friendica interface and to send you " "emails" -msgstr "" +msgstr "Set the language of your Friendica interface and emails receiving" #: mod/settings.php:1291 msgid "Default Post Location:" @@ -8602,19 +8602,19 @@ msgstr "Default post permissions" #: mod/settings.php:1299 msgid "(click to open/close)" -msgstr "" +msgstr "(click to open/close)" #: mod/settings.php:1310 msgid "Default Private Post" -msgstr "" +msgstr "Default private post" #: mod/settings.php:1311 msgid "Default Public Post" -msgstr "" +msgstr "Default public post" #: mod/settings.php:1315 msgid "Default Permissions for New Posts" -msgstr "" +msgstr "Default permissions for new posts" #: mod/settings.php:1327 msgid "Maximum private messages per day from unknown people:" @@ -8638,7 +8638,7 @@ msgstr "joining forums or communities" #: mod/settings.php:1334 msgid "making an interesting profile change" -msgstr "" +msgstr "making an interesting profile change" #: mod/settings.php:1335 msgid "Send a notification email when:" @@ -8712,127 +8712,127 @@ msgstr "If you have moved this profile from another server and some of your cont #: mod/settings.php:1357 msgid "Resend relocate message to contacts" -msgstr "" +msgstr "Resend relocation message to contacts" #: object/Item.php:356 msgid "via" -msgstr "" +msgstr "via" #: view/theme/duepuntozero/config.php:47 msgid "greenzero" -msgstr "" +msgstr "greenzero" #: view/theme/duepuntozero/config.php:48 msgid "purplezero" -msgstr "" +msgstr "purplezero" #: view/theme/duepuntozero/config.php:49 msgid "easterbunny" -msgstr "" +msgstr "easterbunny" #: view/theme/duepuntozero/config.php:50 msgid "darkzero" -msgstr "" +msgstr "darkzero" #: view/theme/duepuntozero/config.php:51 msgid "comix" -msgstr "" +msgstr "comix" #: view/theme/duepuntozero/config.php:52 msgid "slackr" -msgstr "" +msgstr "slackr" #: view/theme/duepuntozero/config.php:67 msgid "Variations" -msgstr "" +msgstr "Variations" #: view/theme/frio/php/Image.php:23 msgid "Repeat the image" -msgstr "" +msgstr "Repeat the image" #: view/theme/frio/php/Image.php:23 msgid "Will repeat your image to fill the background." -msgstr "" +msgstr "Will repeat your image to fill the background." #: view/theme/frio/php/Image.php:25 msgid "Stretch" -msgstr "" +msgstr "Stretch" #: view/theme/frio/php/Image.php:25 msgid "Will stretch to width/height of the image." -msgstr "" +msgstr "Will stretch to width/height of the image." #: view/theme/frio/php/Image.php:27 msgid "Resize fill and-clip" -msgstr "" +msgstr "Resize fill and-clip" #: view/theme/frio/php/Image.php:27 msgid "Resize to fill and retain aspect ratio." -msgstr "" +msgstr "Resize to fill and retain aspect ratio." #: view/theme/frio/php/Image.php:29 msgid "Resize best fit" -msgstr "" +msgstr "Resize to best fit" #: view/theme/frio/php/Image.php:29 msgid "Resize to best fit and retain aspect ratio." -msgstr "" +msgstr "Resize to best fit and retain aspect ratio." #: view/theme/frio/config.php:50 msgid "Default" -msgstr "" +msgstr "Default" #: view/theme/frio/config.php:62 msgid "Note: " -msgstr "" +msgstr "Note - " #: view/theme/frio/config.php:62 msgid "Check image permissions if all users are allowed to visit the image" -msgstr "" +msgstr "Check image permissions if all users are allowed to visit the image" #: view/theme/frio/config.php:70 msgid "Select scheme" -msgstr "" +msgstr "Select scheme:" #: view/theme/frio/config.php:71 msgid "Navigation bar background color" -msgstr "Navigation bar background colour" +msgstr "Navigation bar background colour:" #: view/theme/frio/config.php:72 msgid "Navigation bar icon color " -msgstr "Navigation bar icon colour " +msgstr "Navigation bar icon colour:" #: view/theme/frio/config.php:73 msgid "Link color" -msgstr "Link colour" +msgstr "Link colour:" #: view/theme/frio/config.php:74 msgid "Set the background color" -msgstr "Set the background colour" +msgstr "Background colour:" #: view/theme/frio/config.php:75 msgid "Content background transparency" -msgstr "" +msgstr "Content background transparency:" #: view/theme/frio/config.php:76 msgid "Set the background image" -msgstr "" +msgstr "Background image:" #: view/theme/frio/theme.php:228 msgid "Guest" -msgstr "" +msgstr "Guest" #: view/theme/frio/theme.php:234 msgid "Visitor" -msgstr "" +msgstr "Visitor" #: view/theme/quattro/config.php:73 msgid "Alignment" -msgstr "" +msgstr "Alignment" #: view/theme/quattro/config.php:73 msgid "Left" -msgstr "" +msgstr "Left" #: view/theme/quattro/config.php:73 msgid "Center" @@ -8844,51 +8844,51 @@ msgstr "Colour scheme" #: view/theme/quattro/config.php:75 msgid "Posts font size" -msgstr "" +msgstr "Posts font size" #: view/theme/quattro/config.php:76 msgid "Textareas font size" -msgstr "" +msgstr "Textareas font size" #: view/theme/vier/config.php:70 msgid "Comma separated list of helper forums" -msgstr "" +msgstr "Comma separated list of helper forums" #: view/theme/vier/config.php:116 msgid "Set style" -msgstr "" +msgstr "Set style" #: view/theme/vier/config.php:117 msgid "Community Pages" -msgstr "" +msgstr "Community pages" #: view/theme/vier/config.php:118 view/theme/vier/theme.php:151 msgid "Community Profiles" -msgstr "" +msgstr "Community profiles" #: view/theme/vier/config.php:119 msgid "Help or @NewHere ?" -msgstr "" +msgstr "Help or @NewHere ?" #: view/theme/vier/config.php:120 view/theme/vier/theme.php:392 msgid "Connect Services" -msgstr "" +msgstr "Connect services" #: view/theme/vier/config.php:121 view/theme/vier/theme.php:199 msgid "Find Friends" -msgstr "" +msgstr "Find friends" #: view/theme/vier/config.php:122 view/theme/vier/theme.php:181 msgid "Last users" -msgstr "" +msgstr "Last users" #: view/theme/vier/theme.php:200 msgid "Local Directory" -msgstr "" +msgstr "Local directory" #: view/theme/vier/theme.php:292 msgid "Quick Start" -msgstr "" +msgstr "Quick start" #: src/App.php:505 msgid "Delete this item?" @@ -8900,7 +8900,7 @@ msgstr "Show fewer." #: index.php:436 msgid "toggle mobile" -msgstr "" +msgstr "Toggle mobile" #: boot.php:726 #, php-format @@ -8937,7 +8937,7 @@ msgstr "Terms of service" #: boot.php:882 msgid "Website Privacy Policy" -msgstr "" +msgstr "Website Privacy Policy" #: boot.php:883 msgid "privacy policy" From 757bf754935424ffbd6bf1a61e92dbeb918909c9 Mon Sep 17 00:00:00 2001 From: Andy H3 Date: Mon, 5 Jun 2017 21:37:56 +0700 Subject: [PATCH 079/125] Update strings.php --- view/lang/en-GB/strings.php | 802 ++++++++++++++++++------------------ 1 file changed, 401 insertions(+), 401 deletions(-) diff --git a/view/lang/en-GB/strings.php b/view/lang/en-GB/strings.php index eb83b85f58..2a4f0c5cb9 100644 --- a/view/lang/en-GB/strings.php +++ b/view/lang/en-GB/strings.php @@ -544,7 +544,7 @@ $a->strings["New Message"] = "New Message"; $a->strings["Manage"] = "Manage"; $a->strings["Manage other pages"] = "Manage other pages"; $a->strings["Delegations"] = "Delegations"; -$a->strings["Delegate Page Management"] = "Delegate page management"; +$a->strings["Delegate Page Management"] = "Delegate Page Management"; $a->strings["Settings"] = "Settings"; $a->strings["Account settings"] = "Account settings"; $a->strings["Profiles"] = "Profiles"; @@ -644,10 +644,10 @@ $a->strings["Hobbies/Interests:"] = "Hobbies/Interests:"; $a->strings["Likes:"] = "Likes:"; $a->strings["Dislikes:"] = "Dislikes:"; $a->strings["Contact information and Social Networks:"] = "Contact information and social networks:"; -$a->strings["Musical interests:"] = "Musical interests:"; +$a->strings["Musical interests:"] = "Music:"; $a->strings["Books, literature:"] = "Books/Literature:"; $a->strings["Television:"] = "Television:"; -$a->strings["Film/dance/culture/entertainment:"] = "Arts, film, dance, culture, entertainment:"; +$a->strings["Film/dance/culture/entertainment:"] = "Arts, culture, entertainment:"; $a->strings["Love/Romance:"] = "Love/Romance:"; $a->strings["Work/employment:"] = "Work/Employment:"; $a->strings["School/education:"] = "School/Education:"; @@ -772,7 +772,7 @@ $a->strings["Group: %s"] = "Group: %s"; $a->strings["This entry was edited"] = "This entry was edited"; $a->strings["%d comment"] = array( 0 => "%d comment", - 1 => "%d comments:", + 1 => "%d comments -", ); $a->strings["Private Message"] = "Private message"; $a->strings["I like this (toggle)"] = "I like this (toggle)"; @@ -1271,7 +1271,7 @@ $a->strings["Choose a profile nickname. This must begin with a text character. Y $a->strings["Choose a nickname: "] = "Choose a nickname: "; $a->strings["Import"] = "Import profile"; $a->strings["Import your profile to this friendica instance"] = "Import an existing Friendica profile to this node."; -$a->strings["Remove My Account"] = "Remove my account"; +$a->strings["Remove My Account"] = "Remove My Account"; $a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "This will completely remove your account. Once this has been done it is not recoverable."; $a->strings["Please enter your password for verification:"] = "Please enter your password for verification:"; $a->strings["Resubscribing to OStatus contacts"] = "Resubscribing to OStatus contacts"; @@ -1405,16 +1405,16 @@ $a->strings["Recipient Name"] = "Recipient name"; $a->strings["Recipient Profile"] = "Recipient profile"; $a->strings["Created"] = "Created"; $a->strings["Last Tried"] = "Last Tried"; -$a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = ""; -$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the command php include/dbstructure.php toinnodb of your Friendica installation for an automatic conversion.
"] = ""; -$a->strings["The database update failed. Please run \"php include/dbstructure.php update\" from the command line and have a look at the errors that might appear."] = ""; +$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."] = "This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."; +$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the command php include/dbstructure.php toinnodb of your Friendica installation for an automatic conversion.
"] = "Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the command php include/dbstructure.php toinnodb of your Friendica installation for an automatic conversion.
"; +$a->strings["The database update failed. Please run \"php include/dbstructure.php update\" from the command line and have a look at the errors that might appear."] = "The database update failed. Please run 'php include/dbstructure.php update' from the command line and have a look at the errors that might appear."; $a->strings["Normal Account"] = "Standard account"; $a->strings["Soapbox Account"] = "Soapbox account"; -$a->strings["Community/Celebrity Account"] = ""; -$a->strings["Automatic Friend Account"] = ""; -$a->strings["Blog Account"] = ""; -$a->strings["Private Forum"] = ""; -$a->strings["Message queues"] = ""; +$a->strings["Community/Celebrity Account"] = "Community/Celebrity account"; +$a->strings["Automatic Friend Account"] = "Automatic friend account"; +$a->strings["Blog Account"] = "Blog account"; +$a->strings["Private Forum"] = "Private forum"; +$a->strings["Message queues"] = "Message queues"; $a->strings["Summary"] = "Summary"; $a->strings["Registered users"] = "Registered users"; $a->strings["Pending registrations"] = "Pending registrations"; @@ -1445,7 +1445,7 @@ $a->strings["Self-signed certificate, use SSL for local links only (discouraged) $a->strings["Save Settings"] = "Save settings"; $a->strings["File upload"] = "File upload"; $a->strings["Policies"] = "Policies"; -$a->strings["Auto Discovered Contact Directory"] = ""; +$a->strings["Auto Discovered Contact Directory"] = "Auto-discovered contact directory"; $a->strings["Performance"] = "Performance"; $a->strings["Worker"] = "Worker"; $a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Relocate - Warning, advanced function: This could make this server unreachable."; @@ -1476,195 +1476,195 @@ $a->strings["Make this instance multi-user or single-user for the named user"] = $a->strings["Maximum image size"] = "Maximum image size"; $a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximum size in bytes of uploaded images. Default is 0, which means no limits."; $a->strings["Maximum image length"] = "Maximum image length"; -$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = ""; +$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."; $a->strings["JPEG image quality"] = "JPEG image quality"; -$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = ""; +$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is the original quality level."; $a->strings["Register policy"] = "Register policy"; -$a->strings["Maximum Daily Registrations"] = ""; -$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."] = ""; -$a->strings["Register text"] = ""; -$a->strings["Will be displayed prominently on the registration page."] = ""; -$a->strings["Accounts abandoned after x days"] = ""; -$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = ""; -$a->strings["Allowed friend domains"] = ""; -$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = ""; -$a->strings["Allowed email domains"] = ""; -$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = ""; -$a->strings["Block public"] = ""; -$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = ""; -$a->strings["Force publish"] = ""; -$a->strings["Check to force all profiles on this site to be listed in the site directory."] = ""; +$a->strings["Maximum Daily Registrations"] = "Maximum daily registrations"; +$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."] = "If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."; +$a->strings["Register text"] = "Register text"; +$a->strings["Will be displayed prominently on the registration page."] = "Will be displayed prominently on the registration page."; +$a->strings["Accounts abandoned after x days"] = "Accounts abandoned after so many days"; +$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Will not waste system resources polling external sites for abandoned accounts. Enter 0 for no time limit."; +$a->strings["Allowed friend domains"] = "Allowed friend domains"; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Leave empty to allow any domains"; +$a->strings["Allowed email domains"] = "Allowed email domains"; +$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Leave empty to allow any domains"; +$a->strings["Block public"] = "Block public"; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Block public access to all otherwise public personal pages on this site, except for local users when logged in."; +$a->strings["Force publish"] = "Mandatory directory listing"; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Force all profiles on this site to be listed in the site directory."; $a->strings["Global directory URL"] = "Global directory URL"; $a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL to the global directory: If this is not set, the global directory is completely unavailable to the application."; -$a->strings["Allow threaded items"] = ""; -$a->strings["Allow infinite level threading for items on this site."] = ""; -$a->strings["Private posts by default for new users"] = ""; -$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = ""; -$a->strings["Don't include post content in email notifications"] = ""; -$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = ""; -$a->strings["Disallow public access to addons listed in the apps menu."] = ""; -$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = ""; -$a->strings["Don't embed private images in posts"] = ""; -$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = ""; -$a->strings["Allow Users to set remote_self"] = ""; -$a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = ""; -$a->strings["Block multiple registrations"] = ""; -$a->strings["Disallow users to register additional accounts for use as pages."] = ""; -$a->strings["OpenID support"] = ""; -$a->strings["OpenID support for registration and logins."] = ""; -$a->strings["Fullname check"] = ""; -$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = ""; -$a->strings["Community Page Style"] = ""; -$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = ""; -$a->strings["Posts per user on community page"] = ""; -$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = ""; -$a->strings["Enable OStatus support"] = ""; -$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = ""; -$a->strings["OStatus conversation completion interval"] = ""; -$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = ""; -$a->strings["Only import OStatus threads from our contacts"] = ""; -$a->strings["Normally we import every content from our OStatus contacts. With this option we only store threads that are started by a contact that is known on our system."] = ""; -$a->strings["OStatus support can only be enabled if threading is enabled."] = ""; -$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = ""; -$a->strings["Enable Diaspora support"] = ""; -$a->strings["Provide built-in Diaspora network compatibility."] = ""; -$a->strings["Only allow Friendica contacts"] = ""; -$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = ""; -$a->strings["Verify SSL"] = ""; -$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = ""; -$a->strings["Proxy user"] = ""; +$a->strings["Allow threaded items"] = "Allow threaded items"; +$a->strings["Allow infinite level threading for items on this site."] = "Allow infinite levels of threading for items on this site."; +$a->strings["Private posts by default for new users"] = "Private posts by default for new users"; +$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Set default post permissions for all new members to the default privacy group rather than public."; +$a->strings["Don't include post content in email notifications"] = "Don't include post content in email notifications"; +$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "Don't include the content of a post/comment/private message in the email notifications sent from this site, as a privacy measure."; +$a->strings["Disallow public access to addons listed in the apps menu."] = "Disallow public access to addons listed in the apps menu."; +$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Checking this box will restrict addons listed in the apps menu to members only."; +$a->strings["Don't embed private images in posts"] = "Don't embed private images in posts"; +$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = "Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."; +$a->strings["Allow Users to set remote_self"] = "Allow users to set \"Remote self\""; +$a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = "This allows every user to mark contacts as a \"Remote self\" in the repair contact dialogue. Setting this flag on a contact will mirror every posting of that contact in the users stream."; +$a->strings["Block multiple registrations"] = "Block multiple registrations"; +$a->strings["Disallow users to register additional accounts for use as pages."] = "Disallow users to register additional accounts for use as pages."; +$a->strings["OpenID support"] = "OpenID support"; +$a->strings["OpenID support for registration and logins."] = "OpenID support for registration and logins."; +$a->strings["Fullname check"] = "Full name check"; +$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Force users to register with a space between first name and last name in the full name field; it may reduce spam and abuse registrations."; +$a->strings["Community Page Style"] = "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."] = "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"] = "Posts per user on community page"; +$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "Maximum number of posts per user on the community page (not valid for 'Global Community')."; +$a->strings["Enable OStatus support"] = "Enable OStatus support"; +$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Provide built-in OStatus (StatusNet, GNU Social, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."; +$a->strings["OStatus conversation completion interval"] = "OStatus conversation completion interval"; +$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "How often shall the poller check for new entries in OStatus conversations? This can be rather resources consuming."; +$a->strings["Only import OStatus threads from our contacts"] = "Only import OStatus threads from known contacts"; +$a->strings["Normally we import every content from our OStatus contacts. With this option we only store threads that are started by a contact that is known on our system."] = "Normally we import every content from our OStatus contacts. With this option we only store threads that are started by a contact that is known on our system."; +$a->strings["OStatus support can only be enabled if threading is enabled."] = "OStatus support can only be enabled if threading is enabled."; +$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "Diaspora support can't be enabled because Friendica was installed into a sub directory."; +$a->strings["Enable Diaspora support"] = "Enable Diaspora support"; +$a->strings["Provide built-in Diaspora network compatibility."] = "Provide built-in Diaspora network compatibility."; +$a->strings["Only allow Friendica contacts"] = "Only allow Friendica contacts"; +$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "All contacts must use Friendica protocols. All other built-in communication protocols will be disabled."; +$a->strings["Verify SSL"] = "Verify SSL"; +$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."; +$a->strings["Proxy user"] = "Proxy user"; $a->strings["Proxy URL"] = "Proxy URL"; -$a->strings["Network timeout"] = ""; -$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = ""; -$a->strings["Maximum Load Average"] = ""; -$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = ""; -$a->strings["Maximum Load Average (Frontend)"] = ""; -$a->strings["Maximum system load before the frontend quits service - default 50."] = ""; -$a->strings["Minimal Memory"] = ""; -$a->strings["Minimal free memory in MB for the poller. Needs access to /proc/meminfo - default 0 (deactivated)."] = ""; -$a->strings["Maximum table size for optimization"] = ""; -$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = ""; -$a->strings["Minimum level of fragmentation"] = ""; -$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = ""; -$a->strings["Periodical check of global contacts"] = ""; -$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = ""; -$a->strings["Days between requery"] = ""; -$a->strings["Number of days after which a server is requeried for his contacts."] = ""; -$a->strings["Discover contacts from other servers"] = ""; +$a->strings["Network timeout"] = "Network timeout"; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Value is in seconds. Set to 0 for unlimited (not recommended)."; +$a->strings["Maximum Load Average"] = "Maximum load average"; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximum system load before delivery and poll processes are deferred (default 50)."; +$a->strings["Maximum Load Average (Frontend)"] = "Maximum load average (frontend)"; +$a->strings["Maximum system load before the frontend quits service - default 50."] = "Maximum system load before the frontend quits service (default 50)."; +$a->strings["Minimal Memory"] = "Minimal memory"; +$a->strings["Minimal free memory in MB for the poller. Needs access to /proc/meminfo - default 0 (deactivated)."] = "Minimal free memory in MB for the poller. Needs access to /proc/meminfo (default 0 - deactivated)."; +$a->strings["Maximum table size for optimization"] = "Maximum table size for optimization"; +$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = "Maximum table size (in MB) for the automatic optimization (default 100 MB; -1 to deactivate)."; +$a->strings["Minimum level of fragmentation"] = "Minimum level of fragmentation"; +$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = "Minimum fragmentation level to start the automatic optimization (default 30%)."; +$a->strings["Periodical check of global contacts"] = "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."] = "This checks global contacts periodically for missing or outdated data and the vitality of the contacts and servers."; +$a->strings["Days between requery"] = "Days between enquiry"; +$a->strings["Number of days after which a server is requeried for his contacts."] = "Number of days after which a server is required check contacts."; +$a->strings["Discover contacts from other servers"] = "Discover contacts from other servers"; $a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = "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 recommend setting is 'Users, Global Contacts'."; -$a->strings["Timeframe for fetching global contacts"] = ""; -$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = ""; -$a->strings["Search the local directory"] = ""; -$a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = ""; -$a->strings["Publish server information"] = ""; -$a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details."] = ""; -$a->strings["Suppress Tags"] = ""; -$a->strings["Suppress showing a list of hashtags at the end of the posting."] = ""; -$a->strings["Path to item cache"] = ""; -$a->strings["The item caches buffers generated bbcode and external images."] = ""; -$a->strings["Cache duration in seconds"] = ""; -$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = ""; -$a->strings["Maximum numbers of comments per post"] = ""; -$a->strings["How much comments should be shown for each post? Default value is 100."] = ""; -$a->strings["Temp path"] = ""; -$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = ""; -$a->strings["Base path to installation"] = ""; -$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = ""; -$a->strings["Disable picture proxy"] = ""; -$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = ""; -$a->strings["Only search in tags"] = ""; -$a->strings["On large systems the text search can slow down the system extremely."] = ""; +$a->strings["Timeframe for fetching global contacts"] = "Time-frame 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."] = "If discovery is activated, this value defines the time-frame for the activity of the global contacts that are fetched from other servers."; +$a->strings["Search the local directory"] = "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."] = "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"] = "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."] = "This publishes generic data about the server and its usage. 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["Suppress Tags"] = "Suppress tags"; +$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "Suppress listed hashtags at the end of posts."; +$a->strings["Path to item cache"] = "Path to item cache"; +$a->strings["The item caches buffers generated bbcode and external images."] = "The item caches buffers generated bbcode and external images."; +$a->strings["Cache duration in seconds"] = "Cache duration in seconds"; +$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "How long should cache files be held? (Default 86400 seconds - one day; -1 disables item cache)"; +$a->strings["Maximum numbers of comments per post"] = "Maximum numbers of comments per post"; +$a->strings["How much comments should be shown for each post? Default value is 100."] = "How many comments should be shown for each post? (Default 100)"; +$a->strings["Temp path"] = "Temp path"; +$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "Enter a different tmp path, if your system restricts the webserver's access to the system temp path."; +$a->strings["Base path to installation"] = "Base path to installation"; +$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."; +$a->strings["Disable picture proxy"] = "Disable picture proxy"; +$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."; +$a->strings["Only search in tags"] = "Only search in tags"; +$a->strings["On large systems the text search can slow down the system extremely."] = "On large systems the text search can slow down the system significantly."; $a->strings["New base url"] = "New base URL"; $a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = "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["Maximum number of parallel workers"] = ""; -$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = ""; -$a->strings["Don't use 'proc_open' with the worker"] = ""; -$a->strings["Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosters. If this is enabled you should increase the frequency of poller calls in your crontab."] = ""; -$a->strings["Enable fastlane"] = ""; -$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = ""; -$a->strings["Enable frontend worker"] = ""; -$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = ""; -$a->strings["Update has been marked successful"] = ""; -$a->strings["Database structure update %s was successfully applied."] = ""; -$a->strings["Executing of database structure update %s failed with error: %s"] = ""; -$a->strings["Executing %s failed with error: %s"] = ""; -$a->strings["Update %s was successfully applied."] = ""; -$a->strings["Update %s did not return a status. Unknown if it succeeded."] = ""; -$a->strings["There was no additional update function %s that needed to be called."] = ""; -$a->strings["No failed updates."] = ""; -$a->strings["Check database structure"] = ""; -$a->strings["Failed Updates"] = ""; -$a->strings["This does not include updates prior to 1139, which did not return a status."] = ""; -$a->strings["Mark success (if update was manually applied)"] = ""; -$a->strings["Attempt to execute this update step automatically"] = ""; -$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = ""; -$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = ""; +$a->strings["RINO Encryption"] = "RINO Encryption"; +$a->strings["Encryption layer between nodes."] = "Encryption layer between nodes."; +$a->strings["Maximum number of parallel workers"] = "Maximum number of parallel workers"; +$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = "On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."; +$a->strings["Don't use 'proc_open' with the worker"] = "Don't use 'proc_open' with the worker"; +$a->strings["Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosters. If this is enabled you should increase the frequency of poller calls in your crontab."] = "Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosts. If this is enabled you should increase the frequency of poller calls in your crontab."; +$a->strings["Enable fastlane"] = "Enable fast-lane"; +$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = "The fast-lane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."; +$a->strings["Enable frontend worker"] = "Enable frontend worker"; +$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = "If enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."; +$a->strings["Update has been marked successful"] = "Update has been marked successful"; +$a->strings["Database structure update %s was successfully applied."] = "Database structure update %s was successfully applied."; +$a->strings["Executing of database structure update %s failed with error: %s"] = "Executing of database structure update %s failed with error: %s"; +$a->strings["Executing %s failed with error: %s"] = "Executing %s failed with error: %s"; +$a->strings["Update %s was successfully applied."] = "Update %s was successfully applied."; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s did not return a status. Unknown if it succeeded."; +$a->strings["There was no additional update function %s that needed to be called."] = "There was no additional update function %s that needed to be called."; +$a->strings["No failed updates."] = "No failed updates."; +$a->strings["Check database structure"] = "Check database structure"; +$a->strings["Failed Updates"] = "Failed updates"; +$a->strings["This does not include updates prior to 1139, which did not return a status."] = "This does not include updates prior to 1139, which did not return a status."; +$a->strings["Mark success (if update was manually applied)"] = "Mark success (if update was manually applied)"; +$a->strings["Attempt to execute this update step automatically"] = "Attempt to execute this update step automatically"; +$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "\n\t\t\tDear %1\$s,\n\t\t\t\tThe administrator of %2\$s has set up an account for you."; +$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = "\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, this may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."; $a->strings["%s user blocked/unblocked"] = array( - 0 => "", - 1 => "", + 0 => "%s user blocked/unblocked", + 1 => "%s users blocked/unblocked", ); $a->strings["%s user deleted"] = array( - 0 => "", - 1 => "", + 0 => "%s user deleted", + 1 => "%s users deleted", ); -$a->strings["User '%s' deleted"] = ""; -$a->strings["User '%s' unblocked"] = ""; -$a->strings["User '%s' blocked"] = ""; -$a->strings["Register date"] = ""; -$a->strings["Last login"] = ""; -$a->strings["Last item"] = ""; -$a->strings["Account"] = ""; -$a->strings["Add User"] = ""; -$a->strings["select all"] = ""; -$a->strings["User registrations waiting for confirm"] = ""; -$a->strings["User waiting for permanent deletion"] = ""; -$a->strings["Request date"] = ""; -$a->strings["No registrations."] = ""; -$a->strings["Note from the user"] = ""; -$a->strings["Deny"] = ""; +$a->strings["User '%s' deleted"] = "User '%s' deleted"; +$a->strings["User '%s' unblocked"] = "User '%s' unblocked"; +$a->strings["User '%s' blocked"] = "User '%s' blocked"; +$a->strings["Register date"] = "Register date"; +$a->strings["Last login"] = "Last login"; +$a->strings["Last item"] = "Last item"; +$a->strings["Account"] = "Account"; +$a->strings["Add User"] = "Add user"; +$a->strings["select all"] = "select all"; +$a->strings["User registrations waiting for confirm"] = "User registrations awaiting confirmation"; +$a->strings["User waiting for permanent deletion"] = "User awaiting permanent deletion"; +$a->strings["Request date"] = "Request date"; +$a->strings["No registrations."] = "No registrations."; +$a->strings["Note from the user"] = "Note from the user"; +$a->strings["Deny"] = "Deny"; $a->strings["Block"] = "Block"; $a->strings["Unblock"] = "Unblock"; -$a->strings["Site admin"] = ""; -$a->strings["Account expired"] = ""; -$a->strings["New User"] = ""; -$a->strings["Deleted since"] = ""; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; -$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; -$a->strings["Name of the new user."] = ""; -$a->strings["Nickname"] = ""; -$a->strings["Nickname of the new user."] = ""; -$a->strings["Email address of the new user."] = ""; -$a->strings["Plugin %s disabled."] = ""; -$a->strings["Plugin %s enabled."] = ""; -$a->strings["Disable"] = ""; -$a->strings["Enable"] = ""; -$a->strings["Toggle"] = ""; -$a->strings["Author: "] = ""; -$a->strings["Maintainer: "] = ""; -$a->strings["Reload active plugins"] = ""; -$a->strings["There are currently no plugins available on your node. You can find the official plugin repository at %1\$s and might find other interesting plugins in the open plugin registry at %2\$s"] = ""; -$a->strings["No themes found."] = ""; -$a->strings["Screenshot"] = ""; -$a->strings["Reload active themes"] = ""; -$a->strings["No themes found on the system. They should be paced in %1\$s"] = ""; -$a->strings["[Experimental]"] = ""; -$a->strings["[Unsupported]"] = ""; -$a->strings["Log settings updated."] = ""; -$a->strings["PHP log currently enabled."] = ""; -$a->strings["PHP log currently disabled."] = ""; -$a->strings["Clear"] = ""; -$a->strings["Enable Debugging"] = ""; -$a->strings["Log file"] = ""; -$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = ""; -$a->strings["Log level"] = ""; -$a->strings["PHP logging"] = ""; -$a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = ""; -$a->strings["Off"] = ""; -$a->strings["On"] = ""; -$a->strings["Lock feature %s"] = ""; -$a->strings["Manage Additional Features"] = ""; +$a->strings["Site admin"] = "Site admin"; +$a->strings["Account expired"] = "Account expired"; +$a->strings["New User"] = "New user"; +$a->strings["Deleted since"] = "Deleted since"; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Selected users will be deleted!\\n\\nEverything these users has posted on this site will be permanently deleted!\\n\\nAre you sure?"; +$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"; +$a->strings["Name of the new user."] = "Name of the new user."; +$a->strings["Nickname"] = "Nickname"; +$a->strings["Nickname of the new user."] = "Nickname of the new user."; +$a->strings["Email address of the new user."] = "Email address of the new user."; +$a->strings["Plugin %s disabled."] = "Plugin %s disabled."; +$a->strings["Plugin %s enabled."] = "Plugin %s enabled."; +$a->strings["Disable"] = "Disable"; +$a->strings["Enable"] = "Enable"; +$a->strings["Toggle"] = "Toggle"; +$a->strings["Author: "] = "Author: "; +$a->strings["Maintainer: "] = "Maintainer: "; +$a->strings["Reload active plugins"] = "Reload active plugins"; +$a->strings["There are currently no plugins available on your node. You can find the official plugin repository at %1\$s and might find other interesting plugins in the open plugin registry at %2\$s"] = "There are currently no plugins available on your node. You can find the official plugin repository at %1\$s and might find other interesting plugins in the open plugin registry at %2\$s"; +$a->strings["No themes found."] = "No themes found."; +$a->strings["Screenshot"] = "Screenshot"; +$a->strings["Reload active themes"] = "Reload active themes"; +$a->strings["No themes found on the system. They should be paced in %1\$s"] = "No themes found on the system. They should be paced in %1\$s"; +$a->strings["[Experimental]"] = "[Experimental]"; +$a->strings["[Unsupported]"] = "[Unsupported]"; +$a->strings["Log settings updated."] = "Log settings updated."; +$a->strings["PHP log currently enabled."] = "PHP log currently enabled."; +$a->strings["PHP log currently disabled."] = "PHP log currently disabled."; +$a->strings["Clear"] = "Clear"; +$a->strings["Enable Debugging"] = "Enable debugging"; +$a->strings["Log file"] = "Log file"; +$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Must be writable by web server and relative to your Friendica top-level directory."; +$a->strings["Log level"] = "Log level"; +$a->strings["PHP logging"] = "PHP logging"; +$a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = "To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The file name set in the 'error_log' line is relative to the Friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."; +$a->strings["Off"] = "Off"; +$a->strings["On"] = "On"; +$a->strings["Lock feature %s"] = "Lock feature %s"; +$a->strings["Manage Additional Features"] = "Manage additional features"; $a->strings["%d contact edited."] = array( 0 => "%d contact edited.", 1 => "%d contacts edited.", @@ -1759,165 +1759,165 @@ $a->strings["Please adjust the image cropping for optimum viewing."] = "Please a $a->strings["Done Editing"] = "Done editing"; $a->strings["Image uploaded successfully."] = "Image uploaded successfully."; $a->strings["Profile deleted."] = "Profile deleted."; -$a->strings["Profile-"] = ""; -$a->strings["New profile created."] = ""; -$a->strings["Profile unavailable to clone."] = ""; -$a->strings["Profile Name is required."] = ""; -$a->strings["Marital Status"] = ""; -$a->strings["Romantic Partner"] = ""; -$a->strings["Work/Employment"] = ""; -$a->strings["Religion"] = ""; -$a->strings["Political Views"] = ""; -$a->strings["Gender"] = ""; -$a->strings["Sexual Preference"] = ""; -$a->strings["XMPP"] = ""; +$a->strings["Profile-"] = "Profile-"; +$a->strings["New profile created."] = "New profile created."; +$a->strings["Profile unavailable to clone."] = "Profile unavailable to clone."; +$a->strings["Profile Name is required."] = "Profile name is required."; +$a->strings["Marital Status"] = "Marital status"; +$a->strings["Romantic Partner"] = "Romantic partner"; +$a->strings["Work/Employment"] = "Work/Employment:"; +$a->strings["Religion"] = "Religion"; +$a->strings["Political Views"] = "Political views"; +$a->strings["Gender"] = "Gender"; +$a->strings["Sexual Preference"] = "Sexual preference"; +$a->strings["XMPP"] = "XMPP"; $a->strings["Homepage"] = "Homepage"; -$a->strings["Interests"] = ""; -$a->strings["Address"] = ""; -$a->strings["Location"] = ""; -$a->strings["Profile updated."] = ""; -$a->strings[" and "] = ""; -$a->strings["public profile"] = ""; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = ""; -$a->strings[" - Visit %1\$s's %2\$s"] = ""; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = ""; -$a->strings["Hide contacts and friends:"] = ""; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = ""; -$a->strings["Show more profile fields:"] = ""; -$a->strings["Profile Actions"] = ""; -$a->strings["Edit Profile Details"] = ""; -$a->strings["Change Profile Photo"] = ""; -$a->strings["View this profile"] = ""; -$a->strings["Create a new profile using these settings"] = ""; -$a->strings["Clone this profile"] = ""; -$a->strings["Delete this profile"] = ""; -$a->strings["Basic information"] = ""; -$a->strings["Profile picture"] = ""; -$a->strings["Preferences"] = ""; -$a->strings["Status information"] = ""; -$a->strings["Additional information"] = ""; -$a->strings["Relation"] = ""; -$a->strings["Your Gender:"] = ""; -$a->strings[" Marital Status:"] = ""; -$a->strings["Example: fishing photography software"] = ""; -$a->strings["Profile Name:"] = ""; -$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = ""; -$a->strings["Your Full Name:"] = ""; -$a->strings["Title/Description:"] = ""; -$a->strings["Street Address:"] = ""; -$a->strings["Locality/City:"] = ""; -$a->strings["Region/State:"] = ""; -$a->strings["Postal/Zip Code:"] = ""; -$a->strings["Country:"] = ""; -$a->strings["Who: (if applicable)"] = ""; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = ""; -$a->strings["Since [date]:"] = ""; -$a->strings["Tell us about yourself..."] = ""; -$a->strings["XMPP (Jabber) address:"] = ""; -$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = ""; +$a->strings["Interests"] = "Interests"; +$a->strings["Address"] = "Address"; +$a->strings["Location"] = "Location"; +$a->strings["Profile updated."] = "Profile updated."; +$a->strings[" and "] = " and "; +$a->strings["public profile"] = "public profile"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s changed %2\$s to “%3\$s”"; +$a->strings[" - Visit %1\$s's %2\$s"] = " - Visit %1\$s's %2\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s has an updated %2\$s, changing %3\$s."; +$a->strings["Hide contacts and friends:"] = "Hide contacts and friends:"; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Hide your contact/friend list from viewers of this profile?"; +$a->strings["Show more profile fields:"] = "Show more profile fields:"; +$a->strings["Profile Actions"] = "Profile actions"; +$a->strings["Edit Profile Details"] = "Edit Profile Details"; +$a->strings["Change Profile Photo"] = "Change profile photo"; +$a->strings["View this profile"] = "View this profile"; +$a->strings["Create a new profile using these settings"] = "Create a new profile using these settings"; +$a->strings["Clone this profile"] = "Clone this profile"; +$a->strings["Delete this profile"] = "Delete this profile"; +$a->strings["Basic information"] = "Basic information"; +$a->strings["Profile picture"] = "Profile picture"; +$a->strings["Preferences"] = "Preferences"; +$a->strings["Status information"] = "Status information"; +$a->strings["Additional information"] = "Additional information"; +$a->strings["Relation"] = "Relation"; +$a->strings["Your Gender:"] = "Gender:"; +$a->strings[" Marital Status:"] = " Marital status:"; +$a->strings["Example: fishing photography software"] = "Example: fishing photography software"; +$a->strings["Profile Name:"] = "Profile name:"; +$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "This is your public profile.
It may be visible to anybody using the internet."; +$a->strings["Your Full Name:"] = "My full name:"; +$a->strings["Title/Description:"] = "Title/Description:"; +$a->strings["Street Address:"] = "Street address:"; +$a->strings["Locality/City:"] = "Locality/City:"; +$a->strings["Region/State:"] = "Region/State:"; +$a->strings["Postal/Zip Code:"] = "Postcode:"; +$a->strings["Country:"] = "Country:"; +$a->strings["Who: (if applicable)"] = "Who: (if applicable)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Examples: cathy123, Cathy Williams, cathy@example.com"; +$a->strings["Since [date]:"] = "Since when:"; +$a->strings["Tell us about yourself..."] = "About myself:"; +$a->strings["XMPP (Jabber) address:"] = "XMPP (Jabber) address:"; +$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "The XMPP address will be propagated to your contacts so that they can follow you."; $a->strings["Homepage URL:"] = "Homepage URL:"; -$a->strings["Religious Views:"] = ""; -$a->strings["Public Keywords:"] = ""; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = ""; -$a->strings["Private Keywords:"] = ""; -$a->strings["(Used for searching profiles, never shown to others)"] = ""; -$a->strings["Musical interests"] = ""; -$a->strings["Books, literature"] = ""; -$a->strings["Television"] = ""; -$a->strings["Film/dance/culture/entertainment"] = ""; -$a->strings["Hobbies/Interests"] = ""; -$a->strings["Love/romance"] = ""; -$a->strings["Work/employment"] = ""; -$a->strings["School/education"] = ""; -$a->strings["Contact information and Social Networks"] = ""; -$a->strings["Edit/Manage Profiles"] = ""; -$a->strings["Display"] = ""; +$a->strings["Religious Views:"] = "Religious views:"; +$a->strings["Public Keywords:"] = "Public keywords:"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "Used for suggesting potential friends, can be seen by others."; +$a->strings["Private Keywords:"] = "Private keywords:"; +$a->strings["(Used for searching profiles, never shown to others)"] = "Used for searching profiles, never shown to others."; +$a->strings["Musical interests"] = "Music:"; +$a->strings["Books, literature"] = "Books, literature, poetry:"; +$a->strings["Television"] = "Television:"; +$a->strings["Film/dance/culture/entertainment"] = "Film, dance, culture, entertainment"; +$a->strings["Hobbies/Interests"] = "Hobbies/Interests:"; +$a->strings["Love/romance"] = "Love/Romance:"; +$a->strings["Work/employment"] = "Work/Employment:"; +$a->strings["School/education"] = "School/Education:"; +$a->strings["Contact information and Social Networks"] = "Contact information and other social networks:"; +$a->strings["Edit/Manage Profiles"] = "Edit/Manage Profiles"; +$a->strings["Display"] = "Display"; $a->strings["Social Networks"] = "Social networks"; -$a->strings["Connected apps"] = ""; -$a->strings["Remove account"] = ""; -$a->strings["Missing some important data!"] = ""; -$a->strings["Failed to connect with email account using the settings provided."] = ""; -$a->strings["Email settings updated."] = ""; -$a->strings["Features updated"] = ""; +$a->strings["Connected apps"] = "Connected apps"; +$a->strings["Remove account"] = "Remove account"; +$a->strings["Missing some important data!"] = "Missing some important data!"; +$a->strings["Failed to connect with email account using the settings provided."] = "Failed to connect with email account using the settings provided."; +$a->strings["Email settings updated."] = "Email settings updated."; +$a->strings["Features updated"] = "Features updated"; $a->strings["Relocate message has been send to your contacts"] = "Relocate message has been send to your contacts"; -$a->strings["Empty passwords are not allowed. Password unchanged."] = ""; -$a->strings["Wrong password."] = ""; -$a->strings["Password changed."] = ""; -$a->strings["Password update failed. Please try again."] = ""; -$a->strings[" Please use a shorter name."] = ""; -$a->strings[" Name too short."] = ""; -$a->strings["Wrong Password"] = ""; -$a->strings[" Not valid email."] = ""; -$a->strings[" Cannot change to that email."] = ""; -$a->strings["Private forum has no privacy permissions. Using default privacy group."] = ""; -$a->strings["Private forum has no privacy permissions and no default privacy group."] = ""; -$a->strings["Settings updated."] = ""; -$a->strings["Add application"] = ""; -$a->strings["Consumer Key"] = ""; -$a->strings["Consumer Secret"] = ""; -$a->strings["Redirect"] = ""; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Empty passwords are not allowed. Password unchanged."; +$a->strings["Wrong password."] = "Wrong password."; +$a->strings["Password changed."] = "Password changed."; +$a->strings["Password update failed. Please try again."] = "Password update failed. Please try again."; +$a->strings[" Please use a shorter name."] = " Please use a shorter name."; +$a->strings[" Name too short."] = " Name too short."; +$a->strings["Wrong Password"] = "Wrong password"; +$a->strings[" Not valid email."] = "Invalid email."; +$a->strings[" Cannot change to that email."] = " Cannot change to that email."; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Private forum has no privacy permissions. Using default privacy group."; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Private forum has no privacy permissions and no default privacy group."; +$a->strings["Settings updated."] = "Settings updated."; +$a->strings["Add application"] = "Add application"; +$a->strings["Consumer Key"] = "Consumer key"; +$a->strings["Consumer Secret"] = "Consumer secret"; +$a->strings["Redirect"] = "Redirect"; $a->strings["Icon url"] = "Icon URL"; -$a->strings["You can't edit this application."] = ""; -$a->strings["Connected Apps"] = ""; -$a->strings["Client key starts with"] = ""; -$a->strings["No name"] = ""; -$a->strings["Remove authorization"] = ""; -$a->strings["No Plugin settings configured"] = ""; -$a->strings["Plugin Settings"] = ""; -$a->strings["Additional Features"] = ""; -$a->strings["General Social Media Settings"] = ""; -$a->strings["Disable intelligent shortening"] = ""; +$a->strings["You can't edit this application."] = "You cannot edit this application."; +$a->strings["Connected Apps"] = "Connected Apps"; +$a->strings["Client key starts with"] = "Client key starts with"; +$a->strings["No name"] = "No name"; +$a->strings["Remove authorization"] = "Remove authorization"; +$a->strings["No Plugin settings configured"] = "No plugin settings configured"; +$a->strings["Plugin Settings"] = "Plugin Settings"; +$a->strings["Additional Features"] = "Additional Features"; +$a->strings["General Social Media Settings"] = "General Social Media Settings"; +$a->strings["Disable intelligent shortening"] = "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."] = "Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original Friendica post."; -$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = ""; -$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = ""; -$a->strings["Default group for OStatus contacts"] = ""; -$a->strings["Your legacy GNU Social account"] = ""; -$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = ""; -$a->strings["Repair OStatus subscriptions"] = ""; -$a->strings["Built-in support for %s connectivity is %s"] = ""; -$a->strings["enabled"] = ""; -$a->strings["disabled"] = ""; -$a->strings["GNU Social (OStatus)"] = ""; -$a->strings["Email access is disabled on this site."] = ""; -$a->strings["Email/Mailbox Setup"] = ""; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = ""; -$a->strings["Last successful email check:"] = ""; -$a->strings["IMAP server name:"] = ""; -$a->strings["IMAP port:"] = ""; -$a->strings["Security:"] = ""; -$a->strings["None"] = ""; -$a->strings["Email login name:"] = ""; -$a->strings["Email password:"] = ""; -$a->strings["Reply-to address:"] = ""; -$a->strings["Send public posts to all email contacts:"] = ""; -$a->strings["Action after import:"] = ""; +$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "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."] = "Create a new contact for every unknown OStatus user from whom you receive a message."; +$a->strings["Default group for OStatus contacts"] = "Default group for OStatus contacts"; +$a->strings["Your legacy GNU Social account"] = "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."] = "Entering your old GNU Social/Statusnet account name here (format: user@domain.tld), will automatically added your contacts. The field will be emptied when done."; +$a->strings["Repair OStatus subscriptions"] = "Repair OStatus subscriptions"; +$a->strings["Built-in support for %s connectivity is %s"] = "Built-in support for %s connectivity is %s"; +$a->strings["enabled"] = "enabled"; +$a->strings["disabled"] = "disabled"; +$a->strings["GNU Social (OStatus)"] = "GNU Social (OStatus)"; +$a->strings["Email access is disabled on this site."] = "Email access is disabled on this site."; +$a->strings["Email/Mailbox Setup"] = "Email/Mailbox setup"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Specify how to connect to your mailbox, if you wish to communicate with existing email contacts."; +$a->strings["Last successful email check:"] = "Last successful email check:"; +$a->strings["IMAP server name:"] = "IMAP server name:"; +$a->strings["IMAP port:"] = "IMAP port:"; +$a->strings["Security:"] = "Security:"; +$a->strings["None"] = "None"; +$a->strings["Email login name:"] = "Email login name:"; +$a->strings["Email password:"] = "Email password:"; +$a->strings["Reply-to address:"] = "Reply-to address:"; +$a->strings["Send public posts to all email contacts:"] = "Send public posts to all email contacts:"; +$a->strings["Action after import:"] = "Action after import:"; $a->strings["Move to folder"] = "Move to folder"; $a->strings["Move to folder:"] = "Move to folder:"; -$a->strings["Display Settings"] = ""; -$a->strings["Display Theme:"] = ""; -$a->strings["Mobile Theme:"] = ""; -$a->strings["Suppress warning of insecure networks"] = ""; -$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = ""; +$a->strings["Display Settings"] = "Display Settings"; +$a->strings["Display Theme:"] = "Display theme:"; +$a->strings["Mobile Theme:"] = "Mobile theme:"; +$a->strings["Suppress warning of insecure networks"] = "Suppress warning of insecure networks"; +$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = "Suppresses warnings if groups contains members whose networks that cannot receive non-public postings."; $a->strings["Update browser every xx seconds"] = "Update browser every so many seconds:"; -$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = ""; -$a->strings["Number of items to display per page:"] = ""; -$a->strings["Maximum of 100 items"] = ""; -$a->strings["Number of items to display per page when viewed from mobile device:"] = ""; -$a->strings["Don't show emoticons"] = ""; -$a->strings["Calendar"] = ""; -$a->strings["Beginning of week:"] = ""; -$a->strings["Don't show notices"] = ""; -$a->strings["Infinite scroll"] = ""; -$a->strings["Automatic updates only at the top of the network page"] = ""; -$a->strings["Bandwith Saver Mode"] = ""; -$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = ""; +$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimum 10 seconds; to disable -1."; +$a->strings["Number of items to display per page:"] = "Number of items displayed per page:"; +$a->strings["Maximum of 100 items"] = "Maximum of 100 items"; +$a->strings["Number of items to display per page when viewed from mobile device:"] = "Number of items displayed per page on mobile devices:"; +$a->strings["Don't show emoticons"] = "Don't show emoticons"; +$a->strings["Calendar"] = "Calendar"; +$a->strings["Beginning of week:"] = "Week begins: "; +$a->strings["Don't show notices"] = "Don't show notices"; +$a->strings["Infinite scroll"] = "Infinite scroll"; +$a->strings["Automatic updates only at the top of the network page"] = "Automatically updates only top of the network page"; +$a->strings["Bandwith Saver Mode"] = "Bandwith saving mode"; +$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "If enabled, embedded content is not displayed on automatic updates; it is only shown on page reload."; $a->strings["General Theme Settings"] = "Themes"; $a->strings["Custom Theme Settings"] = "Theme customisation"; $a->strings["Content Settings"] = "Content/Layout"; -$a->strings["Theme settings"] = ""; +$a->strings["Theme settings"] = "Theme settings"; $a->strings["Account Types"] = "Account types:"; $a->strings["Personal Page Subtypes"] = "Personal Page subtypes"; -$a->strings["Community Forum Subtypes"] = ""; +$a->strings["Community Forum Subtypes"] = "Community forum subtypes"; $a->strings["Personal Page"] = "Personal Page"; $a->strings["This account is a regular personal profile"] = "Regular personal profile"; $a->strings["Organisation Page"] = "Organisation Page"; @@ -1930,14 +1930,14 @@ $a->strings["Normal Account Page"] = "Standard"; $a->strings["This account is a normal personal profile"] = "Regular personal profile"; $a->strings["Soapbox Page"] = "Soapbox"; $a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Automatically approves contact requests as followers"; -$a->strings["Public Forum"] = ""; -$a->strings["Automatically approve all contact requests"] = ""; +$a->strings["Public Forum"] = "Public forum"; +$a->strings["Automatically approve all contact requests"] = "Automatically approve all contact requests"; $a->strings["Automatic Friend Page"] = "Popularity"; $a->strings["Automatically approve all connection/friend requests as friends"] = "Automatically approves contact requests as friends"; -$a->strings["Private Forum [Experimental]"] = ""; -$a->strings["Private forum - approved members only"] = ""; -$a->strings["OpenID:"] = ""; -$a->strings["(Optional) Allow this OpenID to login to this account."] = ""; +$a->strings["Private Forum [Experimental]"] = "Private forum [Experimental]"; +$a->strings["Private forum - approved members only"] = "Private forum - approved members only"; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optional) Allow this OpenID to login to this account."; $a->strings["Publish your default profile in your local site directory?"] = "Publish default profile in local site directory?"; $a->strings["Your profile may be visible in public."] = "Your local directory may be publicly visible"; $a->strings["Publish your default profile in the global social directory?"] = "Publish default profile in global directory?"; @@ -1945,46 +1945,46 @@ $a->strings["Hide your contact/friend list from viewers of your default profile? $a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Posting public messages to Diaspora and other networks will not be possible if enabled"; $a->strings["Allow friends to post to your profile page?"] = "Allow friends to post to my wall?"; $a->strings["Allow friends to tag your posts?"] = "Allow friends to tag my post?"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = ""; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Allow us to suggest you as a potential friend to new members?"; $a->strings["Permit unknown people to send you private mail?"] = "Allow unknown people to send me private messages?"; -$a->strings["Profile is not published."] = ""; +$a->strings["Profile is not published."] = "Profile is not published."; $a->strings["Your Identity Address is '%s' or '%s'."] = "My identity address: '%s' or '%s'"; $a->strings["Automatically expire posts after this many days:"] = "Automatically expire posts after this many days:"; $a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Posts will not expire if empty; expired posts will be deleted"; $a->strings["Advanced expiration settings"] = "Advanced expiration settings"; $a->strings["Advanced Expiration"] = "Advanced expiration"; -$a->strings["Expire posts:"] = ""; -$a->strings["Expire personal notes:"] = ""; -$a->strings["Expire starred posts:"] = ""; -$a->strings["Expire photos:"] = ""; -$a->strings["Only expire posts by others:"] = ""; -$a->strings["Account Settings"] = ""; +$a->strings["Expire posts:"] = "Expire posts:"; +$a->strings["Expire personal notes:"] = "Expire personal notes:"; +$a->strings["Expire starred posts:"] = "Expire starred posts:"; +$a->strings["Expire photos:"] = "Expire photos:"; +$a->strings["Only expire posts by others:"] = "Only expire posts by others:"; +$a->strings["Account Settings"] = "Account Settings"; $a->strings["Password Settings"] = "Password change"; -$a->strings["Leave password fields blank unless changing"] = ""; +$a->strings["Leave password fields blank unless changing"] = "Leave password fields blank unless changing"; $a->strings["Current Password:"] = "Current password:"; $a->strings["Your current password to confirm the changes"] = "Current password to confirm change"; -$a->strings["Password:"] = ""; +$a->strings["Password:"] = "Password:"; $a->strings["Basic Settings"] = "Basic information"; $a->strings["Email Address:"] = "Email address:"; $a->strings["Your Timezone:"] = "Time zone:"; $a->strings["Your Language:"] = "Language:"; -$a->strings["Set the language we use to show you friendica interface and to send you emails"] = ""; +$a->strings["Set the language we use to show you friendica interface and to send you emails"] = "Set the language of your Friendica interface and emails receiving"; $a->strings["Default Post Location:"] = "Posting location:"; $a->strings["Use Browser Location:"] = "Use browser location:"; $a->strings["Security and Privacy Settings"] = "Security and privacy"; $a->strings["Maximum Friend Requests/Day:"] = "Maximum friend requests per day:"; $a->strings["(to prevent spam abuse)"] = "May prevent spam or abuse registrations"; $a->strings["Default Post Permissions"] = "Default post permissions"; -$a->strings["(click to open/close)"] = ""; -$a->strings["Default Private Post"] = ""; -$a->strings["Default Public Post"] = ""; -$a->strings["Default Permissions for New Posts"] = ""; +$a->strings["(click to open/close)"] = "(click to open/close)"; +$a->strings["Default Private Post"] = "Default private post"; +$a->strings["Default Public Post"] = "Default public post"; +$a->strings["Default Permissions for New Posts"] = "Default permissions for new posts"; $a->strings["Maximum private messages per day from unknown people:"] = "Maximum private messages per day from unknown people:"; $a->strings["Notification Settings"] = "Notification"; $a->strings["By default post a status message when:"] = "By default post a status message when:"; $a->strings["accepting a friend request"] = "accepting friend requests"; $a->strings["joining a forum/community"] = "joining forums or communities"; -$a->strings["making an interesting profile change"] = ""; +$a->strings["making an interesting profile change"] = "making an interesting profile change"; $a->strings["Send a notification email when:"] = "Send notification email when:"; $a->strings["You receive an introduction"] = "Receiving an introduction"; $a->strings["Your introductions are confirmed"] = "My introductions are confirmed"; @@ -2002,54 +2002,54 @@ $a->strings["Advanced Account/Page Type Settings"] = "Advanced account types"; $a->strings["Change the behaviour of this account for special situations"] = "Change behaviour of this account for special situations"; $a->strings["Relocate"] = "Recent relocation"; $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."] = "If you have moved this profile from another server and some of your contacts don't receive your updates:"; -$a->strings["Resend relocate message to contacts"] = ""; -$a->strings["via"] = ""; -$a->strings["greenzero"] = ""; -$a->strings["purplezero"] = ""; -$a->strings["easterbunny"] = ""; -$a->strings["darkzero"] = ""; -$a->strings["comix"] = ""; -$a->strings["slackr"] = ""; -$a->strings["Variations"] = ""; -$a->strings["Repeat the image"] = ""; -$a->strings["Will repeat your image to fill the background."] = ""; -$a->strings["Stretch"] = ""; -$a->strings["Will stretch to width/height of the image."] = ""; -$a->strings["Resize fill and-clip"] = ""; -$a->strings["Resize to fill and retain aspect ratio."] = ""; -$a->strings["Resize best fit"] = ""; -$a->strings["Resize to best fit and retain aspect ratio."] = ""; -$a->strings["Default"] = ""; -$a->strings["Note: "] = ""; -$a->strings["Check image permissions if all users are allowed to visit the image"] = ""; -$a->strings["Select scheme"] = ""; -$a->strings["Navigation bar background color"] = "Navigation bar background colour"; -$a->strings["Navigation bar icon color "] = "Navigation bar icon colour "; -$a->strings["Link color"] = "Link colour"; -$a->strings["Set the background color"] = "Set the background colour"; -$a->strings["Content background transparency"] = ""; -$a->strings["Set the background image"] = ""; -$a->strings["Guest"] = ""; -$a->strings["Visitor"] = ""; -$a->strings["Alignment"] = ""; -$a->strings["Left"] = ""; +$a->strings["Resend relocate message to contacts"] = "Resend relocation message to contacts"; +$a->strings["via"] = "via"; +$a->strings["greenzero"] = "greenzero"; +$a->strings["purplezero"] = "purplezero"; +$a->strings["easterbunny"] = "easterbunny"; +$a->strings["darkzero"] = "darkzero"; +$a->strings["comix"] = "comix"; +$a->strings["slackr"] = "slackr"; +$a->strings["Variations"] = "Variations"; +$a->strings["Repeat the image"] = "Repeat the image"; +$a->strings["Will repeat your image to fill the background."] = "Will repeat your image to fill the background."; +$a->strings["Stretch"] = "Stretch"; +$a->strings["Will stretch to width/height of the image."] = "Will stretch to width/height of the image."; +$a->strings["Resize fill and-clip"] = "Resize fill and-clip"; +$a->strings["Resize to fill and retain aspect ratio."] = "Resize to fill and retain aspect ratio."; +$a->strings["Resize best fit"] = "Resize to best fit"; +$a->strings["Resize to best fit and retain aspect ratio."] = "Resize to best fit and retain aspect ratio."; +$a->strings["Default"] = "Default"; +$a->strings["Note: "] = "Note - "; +$a->strings["Check image permissions if all users are allowed to visit the image"] = "Check image permissions if all users are allowed to visit the image"; +$a->strings["Select scheme"] = "Select scheme:"; +$a->strings["Navigation bar background color"] = "Navigation bar background colour:"; +$a->strings["Navigation bar icon color "] = "Navigation bar icon colour:"; +$a->strings["Link color"] = "Link colour:"; +$a->strings["Set the background color"] = "Background colour:"; +$a->strings["Content background transparency"] = "Content background transparency:"; +$a->strings["Set the background image"] = "Background image:"; +$a->strings["Guest"] = "Guest"; +$a->strings["Visitor"] = "Visitor"; +$a->strings["Alignment"] = "Alignment"; +$a->strings["Left"] = "Left"; $a->strings["Center"] = "Centre"; $a->strings["Color scheme"] = "Colour scheme"; -$a->strings["Posts font size"] = ""; -$a->strings["Textareas font size"] = ""; -$a->strings["Comma separated list of helper forums"] = ""; -$a->strings["Set style"] = ""; -$a->strings["Community Pages"] = ""; -$a->strings["Community Profiles"] = ""; -$a->strings["Help or @NewHere ?"] = ""; -$a->strings["Connect Services"] = ""; -$a->strings["Find Friends"] = ""; -$a->strings["Last users"] = ""; -$a->strings["Local Directory"] = ""; -$a->strings["Quick Start"] = ""; +$a->strings["Posts font size"] = "Posts font size"; +$a->strings["Textareas font size"] = "Textareas font size"; +$a->strings["Comma separated list of helper forums"] = "Comma separated list of helper forums"; +$a->strings["Set style"] = "Set style"; +$a->strings["Community Pages"] = "Community pages"; +$a->strings["Community Profiles"] = "Community profiles"; +$a->strings["Help or @NewHere ?"] = "Help or @NewHere ?"; +$a->strings["Connect Services"] = "Connect services"; +$a->strings["Find Friends"] = "Find friends"; +$a->strings["Last users"] = "Last users"; +$a->strings["Local Directory"] = "Local directory"; +$a->strings["Quick Start"] = "Quick start"; $a->strings["Delete this item?"] = "Delete this item?"; $a->strings["show fewer"] = "Show fewer."; -$a->strings["toggle mobile"] = ""; +$a->strings["toggle mobile"] = "Toggle mobile"; $a->strings["Update %s failed. See error logs."] = "Update %s failed. See error logs."; $a->strings["Create a New Account"] = "Create a new account"; $a->strings["Password: "] = "Password: "; @@ -2058,5 +2058,5 @@ $a->strings["Or login using OpenID: "] = "Or login with OpenID: "; $a->strings["Forgot your password?"] = "Forgot your password?"; $a->strings["Website Terms of Service"] = "Website Terms of Service"; $a->strings["terms of service"] = "Terms of service"; -$a->strings["Website Privacy Policy"] = ""; +$a->strings["Website Privacy Policy"] = "Website Privacy Policy"; $a->strings["privacy policy"] = "Privacy policy"; From b86c4d539e8f04f8cbe536d93d6c2fd131a794bf Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 5 Jun 2017 14:59:53 +0000 Subject: [PATCH 080/125] Locking waits now for a shorter period. DB locking is used at other locations as well --- include/dba.php | 17 +++++++++++++++-- include/poller.php | 8 ++++---- include/socgraph.php | 11 ++++------- src/Util/Lock.php | 6 +++--- 4 files changed, 26 insertions(+), 16 deletions(-) diff --git a/include/dba.php b/include/dba.php index 1fff51f3d1..1f428bf465 100644 --- a/include/dba.php +++ b/include/dba.php @@ -816,7 +816,15 @@ class dba { * @return boolean was the lock successful? */ static public function lock($table) { - return self::e("LOCK TABLES `".self::$dbo->escape($table)."` WRITE"); + // See here: https://dev.mysql.com/doc/refman/5.7/en/lock-tables-and-transactions.html + self::e("SET autocommit=0"); + $success = self::e("LOCK TABLES `".self::$dbo->escape($table)."` WRITE"); + if (!$success) { + self::e("SET autocommit=1"); + } else { + self::$in_transaction = true; + } + return $success; } /** @@ -825,7 +833,12 @@ class dba { * @return boolean was the unlock successful? */ static public function unlock() { - return self::e("UNLOCK TABLES"); + // See here: https://dev.mysql.com/doc/refman/5.7/en/lock-tables-and-transactions.html + self::e("COMMIT"); + $success = self::e("UNLOCK TABLES"); + self::e("SET autocommit=1"); + self::$in_transaction = false; + return $success; } /** diff --git a/include/poller.php b/include/poller.php index 3d53be0abb..1de9126d2d 100644 --- a/include/poller.php +++ b/include/poller.php @@ -573,7 +573,7 @@ function poller_worker_process() { $highest_priority = 0; if (poller_passing_slow($highest_priority)) { - dba::e('LOCK TABLES `workerqueue` WRITE'); + dba::lock('workerqueue'); // Are there waiting processes with a higher priority than the currently highest? $r = q("SELECT * FROM `workerqueue` @@ -595,7 +595,7 @@ function poller_worker_process() { return $r; } } else { - dba::e('LOCK TABLES `workerqueue` WRITE'); + dba::lock('workerqueue'); } // If there is no result (or we shouldn't pass lower processes) we check without priority limit @@ -605,7 +605,7 @@ function poller_worker_process() { // We only unlock the tables here, when we got no data if (!dbm::is_result($r)) { - dba::e('UNLOCK TABLES'); + dba::unlock(); } return $r; @@ -625,7 +625,7 @@ function poller_claim_process($queue) { $success = dba::update('workerqueue', array('executed' => datetime_convert(), 'pid' => $mypid), array('id' => $queue["id"], 'pid' => 0)); - dba::e('UNLOCK TABLES'); + dba::unlock(); if (!$success) { logger("Couldn't update queue entry ".$queue["id"]." - skip this execution", LOGGER_DEBUG); diff --git a/include/socgraph.php b/include/socgraph.php index fbac08cc97..7a39e388be 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -1995,10 +1995,11 @@ function get_gcontact_id($contact) { if (in_array($contact["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS))) $contact["url"] = clean_contact_url($contact["url"]); - $r = q("SELECT `id`, `last_contact`, `last_failure`, `network` FROM `gcontact` WHERE `nurl` = '%s' LIMIT 2", + dba::lock('gcontact'); + $r = q("SELECT `id`, `last_contact`, `last_failure`, `network` FROM `gcontact` WHERE `nurl` = '%s' LIMIT 1", dbesc(normalise_link($contact["url"]))); - if ($r) { + if (dbm::is_result($r)) { $gcontact_id = $r[0]["id"]; // Update every 90 days @@ -2036,17 +2037,13 @@ function get_gcontact_id($contact) { $doprobing = in_array($r[0]["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS, "")); } } + dba::unlock(); if ($doprobing) { logger("Last Contact: ". $last_contact_str." - Last Failure: ".$last_failure_str." - Checking: ".$contact["url"], LOGGER_DEBUG); proc_run(PRIORITY_LOW, 'include/gprobe.php', bin2hex($contact["url"])); } - if ((dbm::is_result($r)) AND (count($r) > 1) AND ($gcontact_id > 0) AND ($contact["url"] != "")) - q("DELETE FROM `gcontact` WHERE `nurl` = '%s' AND `id` != %d", - dbesc(normalise_link($contact["url"])), - intval($gcontact_id)); - return $gcontact_id; } diff --git a/src/Util/Lock.php b/src/Util/Lock.php index e8011bf59f..7cc3472e69 100644 --- a/src/Util/Lock.php +++ b/src/Util/Lock.php @@ -57,7 +57,7 @@ class Lock { $memcache = self::memcache(); if (is_object($memcache)) { - $wait_sec = 1; + $wait_sec = 0.2; $cachekey = get_app()->get_hostname().";lock:".$fn_name; do { @@ -77,9 +77,9 @@ class Lock { $got_lock = true; } if (!$got_lock) { - sleep($wait_sec); + usleep($wait_sec * 1000000); } - } while (!$got_lock AND ((time() - $start) < $timeout)); + } while (!$got_lock AND ((time(true) - $start) < $timeout)); return $got_lock; } From a7403349bcefd00cbec2491e767ce350c1b7ca59 Mon Sep 17 00:00:00 2001 From: Andy H3 Date: Mon, 5 Jun 2017 22:20:27 +0700 Subject: [PATCH 081/125] Create messages.po --- view/lang/en-US/messages.po | 8944 +++++++++++++++++++++++++++++++++++ 1 file changed, 8944 insertions(+) create mode 100644 view/lang/en-US/messages.po diff --git a/view/lang/en-US/messages.po b/view/lang/en-US/messages.po new file mode 100644 index 0000000000..706d90a7d2 --- /dev/null +++ b/view/lang/en-US/messages.po @@ -0,0 +1,8944 @@ +# FRIENDICA Distributed Social Network +# Copyright (C) 2010, 2011, 2012, 2013 the Friendica Project +# This file is distributed under the same license as the Friendica package. +# +# Translators: +# Andy H3 , 2017 +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-28 11:09+0200\n" +"PO-Revision-Date: 2017-06-05 14:16+0000\n" +"Last-Translator: Andy H3 \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/Friendica/friendica/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Unknown | Not categorised" + +#: include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Block immediately" + +#: 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 "Known to me, but no opinion" + +#: include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "OK, probably harmless" + +#: include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Reputable, has my trust" + +#: include/contact_selectors.php:56 mod/admin.php:986 +msgid "Frequently" +msgstr "Frequently" + +#: include/contact_selectors.php:57 mod/admin.php:987 +msgid "Hourly" +msgstr "Hourly" + +#: include/contact_selectors.php:58 mod/admin.php:988 +msgid "Twice daily" +msgstr "Twice daily" + +#: include/contact_selectors.php:59 mod/admin.php:989 +msgid "Daily" +msgstr "Daily" + +#: include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Weekly" + +#: include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Monthly" + +#: include/contact_selectors.php:76 mod/dfrn_request.php:886 +msgid "Friendica" +msgstr "Friendica" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: include/contact_selectors.php:79 include/contact_selectors.php:86 +#: mod/admin.php:1496 mod/admin.php:1509 mod/admin.php:1522 mod/admin.php:1540 +msgid "Email" +msgstr "Email" + +#: include/contact_selectors.php:80 mod/dfrn_request.php:888 +#: mod/settings.php:849 +msgid "Diaspora" +msgstr "Diaspora" + +#: include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" + +#: include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" + +#: include/contact_selectors.php:88 +msgid "pump.io" +msgstr "Pump.io" + +#: include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" + +#: include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Diaspora connector" + +#: include/contact_selectors.php:91 +msgid "GNU Social Connector" +msgstr "GNU Social connector" + +#: include/contact_selectors.php:92 +msgid "pnut" +msgstr "Pnut" + +#: include/contact_selectors.php:93 +msgid "App.net" +msgstr "App.net" + +#: include/features.php:65 +msgid "General Features" +msgstr "General" + +#: include/features.php:67 +msgid "Multiple Profiles" +msgstr "Multiple profiles" + +#: include/features.php:67 +msgid "Ability to create multiple profiles" +msgstr "Ability to create multiple profiles" + +#: include/features.php:68 +msgid "Photo Location" +msgstr "Photo location" + +#: include/features.php:68 +msgid "" +"Photo metadata is normally stripped. This extracts the location (if present)" +" prior to stripping metadata and links it to a map." +msgstr "Photo metadata is normally removed. This extracts the location (if present) prior to removing metadata and links it to a map." + +#: include/features.php:69 +msgid "Export Public Calendar" +msgstr "Export public calendar" + +#: include/features.php:69 +msgid "Ability for visitors to download the public calendar" +msgstr "Ability for visitors to download the public calendar" + +#: include/features.php:74 +msgid "Post Composition Features" +msgstr "Post composition" + +#: include/features.php:75 +msgid "Post Preview" +msgstr "Post preview" + +#: include/features.php:75 +msgid "Allow previewing posts and comments before publishing them" +msgstr "Allow previewing posts and comments before publishing them" + +#: include/features.php:76 +msgid "Auto-mention Forums" +msgstr "Auto-mention forums" + +#: include/features.php:76 +msgid "" +"Add/remove mention when a forum page is selected/deselected in ACL window." +msgstr "Add/Remove mention when a forum page is selected or deselected in the ACL window." + +#: include/features.php:81 +msgid "Network Sidebar Widgets" +msgstr "Network sidebars" + +#: include/features.php:82 +msgid "Search by Date" +msgstr "Search by date" + +#: include/features.php:82 +msgid "Ability to select posts by date ranges" +msgstr "Ability to select posts by date ranges" + +#: include/features.php:83 include/features.php:113 +msgid "List Forums" +msgstr "List forums" + +#: include/features.php:83 +msgid "Enable widget to display the forums your are connected with" +msgstr "Enable widget to display the forums your are connected with" + +#: include/features.php:84 +msgid "Group Filter" +msgstr "Group filter" + +#: include/features.php:84 +msgid "Enable widget to display Network posts only from selected group" +msgstr "Enable widget to display network posts only from selected group" + +#: include/features.php:85 +msgid "Network Filter" +msgstr "Network filter" + +#: include/features.php:85 +msgid "Enable widget to display Network posts only from selected network" +msgstr "Enable widget to display network posts only from selected network" + +#: include/features.php:86 mod/network.php:209 mod/search.php:37 +msgid "Saved Searches" +msgstr "Saved searches" + +#: include/features.php:86 +msgid "Save search terms for re-use" +msgstr "Save search terms for re-use" + +#: include/features.php:91 +msgid "Network Tabs" +msgstr "Network tabs" + +#: include/features.php:92 +msgid "Network Personal Tab" +msgstr "Network personal tab" + +#: include/features.php:92 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Enable tab to display only network posts that you've interacted with" + +#: include/features.php:93 +msgid "Network New Tab" +msgstr "Network new tab" + +#: include/features.php:93 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "Enable tab to display only new network posts (last 12 hours)" + +#: include/features.php:94 +msgid "Network Shared Links Tab" +msgstr "Network shared links tab" + +#: include/features.php:94 +msgid "Enable tab to display only Network posts with links in them" +msgstr "Enable tab to display only network posts with links in them" + +#: include/features.php:99 +msgid "Post/Comment Tools" +msgstr "Post/Comment tools" + +#: include/features.php:100 +msgid "Multiple Deletion" +msgstr "Multiple deletion" + +#: include/features.php:100 +msgid "Select and delete multiple posts/comments at once" +msgstr "Select and delete multiple posts/comments at once" + +#: include/features.php:101 +msgid "Edit Sent Posts" +msgstr "Edit sent posts" + +#: include/features.php:101 +msgid "Edit and correct posts and comments after sending" +msgstr "Ability to editing posts and comments after sending" + +#: include/features.php:102 +msgid "Tagging" +msgstr "Tagging" + +#: include/features.php:102 +msgid "Ability to tag existing posts" +msgstr "Ability to tag existing posts" + +#: include/features.php:103 +msgid "Post Categories" +msgstr "Post categories" + +#: include/features.php:103 +msgid "Add categories to your posts" +msgstr "Add categories to your posts" + +#: include/features.php:104 include/contact_widgets.php:162 +msgid "Saved Folders" +msgstr "Saved Folders" + +#: include/features.php:104 +msgid "Ability to file posts under folders" +msgstr "Ability to file posts under folders" + +#: include/features.php:105 +msgid "Dislike Posts" +msgstr "Dislike posts" + +#: include/features.php:105 +msgid "Ability to dislike posts/comments" +msgstr "Ability to dislike posts/comments" + +#: include/features.php:106 +msgid "Star Posts" +msgstr "Star posts" + +#: include/features.php:106 +msgid "Ability to mark special posts with a star indicator" +msgstr "Ability to highlight posts with a star" + +#: include/features.php:107 +msgid "Mute Post Notifications" +msgstr "Mute post notifications" + +#: include/features.php:107 +msgid "Ability to mute notifications for a thread" +msgstr "Ability to mute notifications for a thread" + +#: include/features.php:112 +msgid "Advanced Profile Settings" +msgstr "Advanced profiles" + +#: include/features.php:113 +msgid "Show visitors public community forums at the Advanced Profile Page" +msgstr "Show visitors of public community forums at the advanced profile page" + +#: 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 "A deleted group with this name has been 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/group.php:210 +msgid "Default privacy group for new contacts" +msgstr "Default privacy group for new contacts" + +#: include/group.php:243 +msgid "Everybody" +msgstr "Everybody" + +#: include/group.php:266 +msgid "edit" +msgstr "edit" + +#: include/group.php:287 mod/newmember.php:39 +msgid "Groups" +msgstr "Groups" + +#: include/group.php:289 +msgid "Edit groups" +msgstr "Edit groups" + +#: include/group.php:291 +msgid "Edit group" +msgstr "Edit group" + +#: include/group.php:292 +msgid "Create a new group" +msgstr "Create new group" + +#: include/group.php:293 mod/group.php:100 mod/group.php:197 +msgid "Group Name: " +msgstr "Group name: " + +#: include/group.php:295 +msgid "Contacts not in any group" +msgstr "Contacts not in any group" + +#: include/group.php:297 mod/network.php:210 +msgid "add" +msgstr "add" + +#: include/ForumManager.php:116 include/text.php:1094 include/nav.php:133 +#: view/theme/vier/theme.php:256 +msgid "Forums" +msgstr "Forums" + +#: include/ForumManager.php:118 view/theme/vier/theme.php:258 +msgid "External link to forum" +msgstr "External link to forum" + +#: include/ForumManager.php:121 include/contact_widgets.php:271 +#: include/items.php:2432 mod/content.php:625 object/Item.php:417 +#: view/theme/vier/theme.php:261 src/App.php:506 +msgid "show more" +msgstr "Show more..." + +#: include/NotificationsManager.php:153 +msgid "System" +msgstr "System" + +#: include/NotificationsManager.php:160 include/nav.php:160 mod/admin.php:518 +#: view/theme/frio/theme.php:255 +msgid "Network" +msgstr "Network" + +#: include/NotificationsManager.php:167 mod/network.php:835 +#: mod/profiles.php:699 +msgid "Personal" +msgstr "Personal" + +#: include/NotificationsManager.php:174 include/nav.php:107 +#: include/nav.php:163 +msgid "Home" +msgstr "Home" + +#: include/NotificationsManager.php:181 include/nav.php:168 +msgid "Introductions" +msgstr "Introductions" + +#: include/NotificationsManager.php:239 include/NotificationsManager.php:251 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s commented on %s's post" + +#: include/NotificationsManager.php:250 +#, php-format +msgid "%s created a new post" +msgstr "%s posted something new" + +#: include/NotificationsManager.php:265 +#, php-format +msgid "%s liked %s's post" +msgstr "%s liked %s's post" + +#: include/NotificationsManager.php:278 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s disliked %s's post" + +#: include/NotificationsManager.php:291 +#, php-format +msgid "%s is attending %s's event" +msgstr "%s is going to %s's event" + +#: include/NotificationsManager.php:304 +#, php-format +msgid "%s is not attending %s's event" +msgstr "%s is not going to %s's event" + +#: include/NotificationsManager.php:317 +#, php-format +msgid "%s may attend %s's event" +msgstr "%s may go to %s's event" + +#: include/NotificationsManager.php:334 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s is now friends with %s" + +#: include/NotificationsManager.php:770 +msgid "Friend Suggestion" +msgstr "Friend suggestion" + +#: include/NotificationsManager.php:803 +msgid "Friend/Connect Request" +msgstr "Friend/Contact request" + +#: include/NotificationsManager.php:803 +msgid "New Follower" +msgstr "New follower" + +#: include/acl_selectors.php:355 +msgid "Post to Email" +msgstr "Post to email" + +#: include/acl_selectors.php:360 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Connectors are disabled since \"%s\" is enabled." + +#: include/acl_selectors.php:361 mod/settings.php:1189 +msgid "Hide your profile details from unknown viewers?" +msgstr "Hide profile details from unknown viewers?" + +#: include/acl_selectors.php:367 +msgid "Visible to everybody" +msgstr "Visible to everybody" + +#: include/acl_selectors.php:368 view/theme/vier/config.php:109 +msgid "show" +msgstr "show" + +#: include/acl_selectors.php:369 view/theme/vier/config.php:109 +msgid "don't show" +msgstr "don't show" + +#: include/acl_selectors.php:375 mod/editpost.php:125 +msgid "CC: email addresses" +msgstr "CC: email addresses" + +#: include/acl_selectors.php:376 mod/editpost.php:132 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Example: bob@example.com, mary@example.com" + +#: include/acl_selectors.php:378 mod/events.php:511 mod/photos.php:1198 +#: mod/photos.php:1595 +msgid "Permissions" +msgstr "Permissions" + +#: include/acl_selectors.php:379 +msgid "Close" +msgstr "Close" + +#: include/auth.php:52 +msgid "Logged out." +msgstr "Logged out." + +#: include/auth.php:123 include/auth.php:185 mod/openid.php:110 +msgid "Login failed." +msgstr "Login failed." + +#: include/auth.php:139 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 "We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID." + +#: include/auth.php:139 include/user.php:75 +msgid "The error message was:" +msgstr "The error message was:" + +#: include/bb2diaspora.php:233 include/event.php:19 mod/localtime.php:13 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" + +#: include/bb2diaspora.php:239 include/event.php:36 include/event.php:56 +#: include/event.php:459 +msgid "Starts:" +msgstr "Starts:" + +#: include/bb2diaspora.php:247 include/event.php:39 include/event.php:62 +#: include/event.php:460 +msgid "Finishes:" +msgstr "Finishes:" + +#: include/bb2diaspora.php:256 include/event.php:43 include/event.php:69 +#: include/event.php:461 include/identity.php:342 mod/directory.php:135 +#: mod/events.php:496 mod/notifications.php:246 mod/contacts.php:639 +msgid "Location:" +msgstr "Location:" + +#: include/contact_widgets.php:8 +msgid "Add New Contact" +msgstr "Add new contact" + +#: include/contact_widgets.php:9 +msgid "Enter address or web location" +msgstr "Enter address or web location" + +#: include/contact_widgets.php:10 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Example: jo@example.com, http://example.com/jo" + +#: include/contact_widgets.php:12 include/identity.php:230 +#: mod/allfriends.php:87 mod/dirfind.php:209 mod/match.php:92 +#: mod/suggest.php:103 +msgid "Connect" +msgstr "Connect" + +#: include/contact_widgets.php:26 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invitation available" +msgstr[1] "%d invitations available" + +#: include/contact_widgets.php:32 +msgid "Find People" +msgstr "Find people" + +#: include/contact_widgets.php:33 +msgid "Enter name or interest" +msgstr "Enter name or interest" + +#: include/contact_widgets.php:34 include/conversation.php:1018 +#: include/Contact.php:389 mod/allfriends.php:71 mod/dirfind.php:212 +#: mod/follow.php:108 mod/match.php:77 mod/suggest.php:85 mod/contacts.php:613 +msgid "Connect/Follow" +msgstr "Connect/Follow" + +#: include/contact_widgets.php:35 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Examples: Robert Morgenstein, fishing" + +#: include/contact_widgets.php:36 mod/directory.php:202 mod/contacts.php:809 +msgid "Find" +msgstr "Find" + +#: include/contact_widgets.php:37 mod/suggest.php:116 +#: view/theme/vier/theme.php:203 +msgid "Friend Suggestions" +msgstr "Friend suggestions" + +#: include/contact_widgets.php:38 view/theme/vier/theme.php:202 +msgid "Similar Interests" +msgstr "Similar interests" + +#: include/contact_widgets.php:39 +msgid "Random Profile" +msgstr "Random profile" + +#: include/contact_widgets.php:40 view/theme/vier/theme.php:204 +msgid "Invite Friends" +msgstr "Invite friends" + +#: include/contact_widgets.php:127 +msgid "Networks" +msgstr "Networks" + +#: include/contact_widgets.php:130 +msgid "All Networks" +msgstr "All networks" + +#: include/contact_widgets.php:165 include/contact_widgets.php:200 +msgid "Everything" +msgstr "Everything" + +#: include/contact_widgets.php:197 +msgid "Categories" +msgstr "Categories" + +#: include/contact_widgets.php:266 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d contact in common" +msgstr[1] "%d contacts in common" + +#: include/conversation.php:134 include/conversation.php:286 +#: include/like.php:183 include/text.php:1871 +msgid "event" +msgstr "event" + +#: include/conversation.php:137 include/conversation.php:147 +#: include/conversation.php:289 include/conversation.php:298 +#: include/like.php:181 include/diaspora.php:1653 mod/subthread.php:89 +#: mod/tagger.php:63 +msgid "status" +msgstr "status" + +#: include/conversation.php:142 include/conversation.php:294 +#: include/like.php:181 include/text.php:1873 mod/subthread.php:89 +#: mod/tagger.php:63 +msgid "photo" +msgstr "photo" + +#: include/conversation.php:154 include/like.php:30 include/diaspora.php:1649 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s likes %2$s's %3$s" + +#: include/conversation.php:157 include/like.php:34 include/like.php:39 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s doesn't like %2$s's %3$s" + +#: include/conversation.php:160 +#, php-format +msgid "%1$s attends %2$s's %3$s" +msgstr "%1$s goes to %2$s's %3$s" + +#: include/conversation.php:163 +#, php-format +msgid "%1$s doesn't attend %2$s's %3$s" +msgstr "%1$s doesn't go %2$s's %3$s" + +#: include/conversation.php:166 +#, php-format +msgid "%1$s attends maybe %2$s's %3$s" +msgstr "%1$s might go to %2$s's %3$s" + +#: include/conversation.php:199 mod/dfrn_confirm.php:480 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s is now friends with %2$s" + +#: include/conversation.php:240 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s poked %2$s" + +#: include/conversation.php:261 mod/mood.php:64 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s is currently %2$s" + +#: include/conversation.php:308 mod/tagger.php:96 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s tagged %2$s's %3$s with %4$s" + +#: include/conversation.php:335 +msgid "post/item" +msgstr "Post/Item" + +#: include/conversation.php:336 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s marked %2$s's %3$s as favourite" + +#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1664 +#: mod/profiles.php:344 +msgid "Likes" +msgstr "Likes" + +#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1664 +#: mod/profiles.php:348 +msgid "Dislikes" +msgstr "Dislikes" + +#: include/conversation.php:616 include/conversation.php:1542 +#: mod/content.php:374 mod/photos.php:1665 +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Attending" +msgstr[1] "Attending" + +#: include/conversation.php:616 mod/content.php:374 mod/photos.php:1665 +msgid "Not attending" +msgstr "Not attending" + +#: include/conversation.php:616 mod/content.php:374 mod/photos.php:1665 +msgid "Might attend" +msgstr "Might attend" + +#: include/conversation.php:748 mod/content.php:454 mod/content.php:760 +#: mod/photos.php:1730 object/Item.php:137 +msgid "Select" +msgstr "Select" + +#: include/conversation.php:749 mod/content.php:455 mod/content.php:761 +#: mod/photos.php:1731 mod/admin.php:1514 mod/contacts.php:819 +#: mod/contacts.php:1018 mod/settings.php:745 object/Item.php:138 +msgid "Delete" +msgstr "Delete" + +#: include/conversation.php:792 mod/content.php:488 mod/content.php:916 +#: mod/content.php:917 object/Item.php:353 object/Item.php:354 +#, php-format +msgid "View %s's profile @ %s" +msgstr "View %s's profile @ %s" + +#: include/conversation.php:804 object/Item.php:341 +msgid "Categories:" +msgstr "Categories:" + +#: include/conversation.php:805 object/Item.php:342 +msgid "Filed under:" +msgstr "Filed under:" + +#: include/conversation.php:812 mod/content.php:498 mod/content.php:929 +#: object/Item.php:367 +#, php-format +msgid "%s from %s" +msgstr "%s from %s" + +#: include/conversation.php:828 mod/content.php:514 +msgid "View in context" +msgstr "View in context" + +#: include/conversation.php:830 include/conversation.php:1299 +#: mod/content.php:516 mod/content.php:954 mod/editpost.php:116 +#: mod/message.php:339 mod/message.php:524 mod/photos.php:1629 +#: mod/wallmessage.php:142 object/Item.php:392 +msgid "Please wait" +msgstr "Please wait" + +#: include/conversation.php:907 +msgid "remove" +msgstr "Remove" + +#: include/conversation.php:911 +msgid "Delete Selected Items" +msgstr "Delete selected items" + +#: include/conversation.php:1003 +msgid "Follow Thread" +msgstr "Follow thread" + +#: include/conversation.php:1004 include/Contact.php:432 +msgid "View Status" +msgstr "View status" + +#: include/conversation.php:1005 include/conversation.php:1021 +#: include/Contact.php:375 include/Contact.php:388 include/Contact.php:433 +#: mod/allfriends.php:70 mod/directory.php:153 mod/dirfind.php:211 +#: mod/match.php:76 mod/suggest.php:84 +msgid "View Profile" +msgstr "View profile" + +#: include/conversation.php:1006 include/Contact.php:434 +msgid "View Photos" +msgstr "View photos" + +#: include/conversation.php:1007 include/Contact.php:435 +msgid "Network Posts" +msgstr "Network posts" + +#: include/conversation.php:1008 include/Contact.php:436 +msgid "View Contact" +msgstr "View contact" + +#: include/conversation.php:1009 include/Contact.php:438 +msgid "Send PM" +msgstr "Send PM" + +#: include/conversation.php:1013 include/Contact.php:439 +msgid "Poke" +msgstr "Poke" + +#: include/conversation.php:1140 +#, php-format +msgid "%s likes this." +msgstr "%s likes this." + +#: include/conversation.php:1143 +#, php-format +msgid "%s doesn't like this." +msgstr "%s doesn't like this." + +#: include/conversation.php:1146 +#, php-format +msgid "%s attends." +msgstr "%s attends." + +#: include/conversation.php:1149 +#, php-format +msgid "%s doesn't attend." +msgstr "%s doesn't attend." + +#: include/conversation.php:1152 +#, php-format +msgid "%s attends maybe." +msgstr "%s may attend." + +#: include/conversation.php:1163 +msgid "and" +msgstr "and" + +#: include/conversation.php:1169 +#, php-format +msgid ", and %d other people" +msgstr ", and %d other people" + +#: include/conversation.php:1178 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d people like this" + +#: include/conversation.php:1179 +#, php-format +msgid "%s like this." +msgstr "%s like this." + +#: include/conversation.php:1182 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d people don't like this" + +#: include/conversation.php:1183 +#, php-format +msgid "%s don't like this." +msgstr "%s don't like this." + +#: include/conversation.php:1186 +#, php-format +msgid "%2$d people attend" +msgstr "%2$d people attend" + +#: include/conversation.php:1187 +#, php-format +msgid "%s attend." +msgstr "%s attend." + +#: include/conversation.php:1190 +#, php-format +msgid "%2$d people don't attend" +msgstr "%2$d people don't attend" + +#: include/conversation.php:1191 +#, php-format +msgid "%s don't attend." +msgstr "%s don't attend." + +#: include/conversation.php:1194 +#, php-format +msgid "%2$d people attend maybe" +msgstr "%2$d people attend maybe" + +#: include/conversation.php:1195 +#, php-format +msgid "%s anttend maybe." +msgstr "%s attend maybe." + +#: include/conversation.php:1224 include/conversation.php:1240 +msgid "Visible to everybody" +msgstr "Visible to everybody" + +#: include/conversation.php:1225 include/conversation.php:1241 +#: mod/message.php:273 mod/message.php:280 mod/message.php:420 +#: mod/message.php:427 mod/wallmessage.php:116 mod/wallmessage.php:123 +msgid "Please enter a link URL:" +msgstr "Please enter a link URL:" + +#: include/conversation.php:1226 include/conversation.php:1242 +msgid "Please enter a video link/URL:" +msgstr "Please enter a video link/URL:" + +#: include/conversation.php:1227 include/conversation.php:1243 +msgid "Please enter an audio link/URL:" +msgstr "Please enter an audio link/URL:" + +#: include/conversation.php:1228 include/conversation.php:1244 +msgid "Tag term:" +msgstr "Tag term:" + +#: include/conversation.php:1229 include/conversation.php:1245 +#: mod/filer.php:31 +msgid "Save to Folder:" +msgstr "Save to folder:" + +#: include/conversation.php:1230 include/conversation.php:1246 +msgid "Where are you right now?" +msgstr "Where are you right now?" + +#: include/conversation.php:1231 +msgid "Delete item(s)?" +msgstr "Delete item(s)?" + +#: include/conversation.php:1280 +msgid "Share" +msgstr "Share" + +#: include/conversation.php:1281 mod/editpost.php:102 mod/message.php:337 +#: mod/message.php:521 mod/wallmessage.php:140 +msgid "Upload photo" +msgstr "Upload photo" + +#: include/conversation.php:1282 mod/editpost.php:103 +msgid "upload photo" +msgstr "upload photo" + +#: include/conversation.php:1283 mod/editpost.php:104 +msgid "Attach file" +msgstr "Attach file" + +#: include/conversation.php:1284 mod/editpost.php:105 +msgid "attach file" +msgstr "attach file" + +#: include/conversation.php:1285 mod/editpost.php:106 mod/message.php:338 +#: mod/message.php:522 mod/wallmessage.php:141 +msgid "Insert web link" +msgstr "Insert web link" + +#: include/conversation.php:1286 mod/editpost.php:107 +msgid "web link" +msgstr "web link" + +#: include/conversation.php:1287 mod/editpost.php:108 +msgid "Insert video link" +msgstr "Insert video link" + +#: include/conversation.php:1288 mod/editpost.php:109 +msgid "video link" +msgstr "video link" + +#: include/conversation.php:1289 mod/editpost.php:110 +msgid "Insert audio link" +msgstr "Insert audio link" + +#: include/conversation.php:1290 mod/editpost.php:111 +msgid "audio link" +msgstr "audio link" + +#: include/conversation.php:1291 mod/editpost.php:112 +msgid "Set your location" +msgstr "Set your location" + +#: include/conversation.php:1292 mod/editpost.php:113 +msgid "set location" +msgstr "set location" + +#: include/conversation.php:1293 mod/editpost.php:114 +msgid "Clear browser location" +msgstr "Clear browser location" + +#: include/conversation.php:1294 mod/editpost.php:115 +msgid "clear location" +msgstr "clear location" + +#: include/conversation.php:1296 mod/editpost.php:129 +msgid "Set title" +msgstr "Set title" + +#: include/conversation.php:1298 mod/editpost.php:131 +msgid "Categories (comma-separated list)" +msgstr "Categories (comma-separated list)" + +#: include/conversation.php:1300 mod/editpost.php:117 +msgid "Permission settings" +msgstr "Permission settings" + +#: include/conversation.php:1301 mod/editpost.php:146 +msgid "permissions" +msgstr "permissions" + +#: include/conversation.php:1309 mod/editpost.php:126 +msgid "Public post" +msgstr "Public post" + +#: include/conversation.php:1314 mod/content.php:738 mod/editpost.php:137 +#: mod/events.php:506 mod/photos.php:1649 mod/photos.php:1691 +#: mod/photos.php:1771 object/Item.php:711 +msgid "Preview" +msgstr "Preview" + +#: include/conversation.php:1318 include/items.php:2165 mod/editpost.php:140 +#: mod/fbrowser.php:102 mod/fbrowser.php:137 mod/follow.php:126 +#: mod/message.php:211 mod/photos.php:247 mod/photos.php:339 +#: mod/suggest.php:34 mod/tagrm.php:13 mod/tagrm.php:98 mod/videos.php:134 +#: mod/dfrn_request.php:894 mod/contacts.php:458 mod/settings.php:683 +#: mod/settings.php:709 +msgid "Cancel" +msgstr "Cancel" + +#: include/conversation.php:1324 +msgid "Post to Groups" +msgstr "Post to groups" + +#: include/conversation.php:1325 +msgid "Post to Contacts" +msgstr "Post to contacts" + +#: include/conversation.php:1326 +msgid "Private post" +msgstr "Private post" + +#: include/conversation.php:1331 include/identity.php:270 mod/editpost.php:144 +msgid "Message" +msgstr "Message" + +#: include/conversation.php:1332 mod/editpost.php:145 +msgid "Browser" +msgstr "Browser" + +#: include/conversation.php:1514 +msgid "View all" +msgstr "View all" + +#: include/conversation.php:1536 +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Like" +msgstr[1] "Likes" + +#: include/conversation.php:1539 +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Dislike" +msgstr[1] "Dislikes" + +#: include/conversation.php:1545 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Not attending" +msgstr[1] "Not attending" + +#: include/conversation.php:1548 include/profile_selectors.php:6 +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "Undecided" +msgstr[1] "Undecided" + +#: include/datetime.php:66 include/datetime.php:68 mod/profiles.php:701 +msgid "Miscellaneous" +msgstr "Miscellaneous" + +#: include/datetime.php:196 include/identity.php:656 +msgid "Birthday:" +msgstr "Birthday:" + +#: include/datetime.php:198 mod/profiles.php:724 +msgid "Age: " +msgstr "Age: " + +#: include/datetime.php:200 +msgid "YYYY-MM-DD or MM-DD" +msgstr "YYYY-MM-DD or MM-DD" + +#: include/datetime.php:370 +msgid "never" +msgstr "never" + +#: include/datetime.php:376 +msgid "less than a second ago" +msgstr "less than a second ago" + +#: include/datetime.php:379 +msgid "year" +msgstr "year" + +#: include/datetime.php:379 +msgid "years" +msgstr "years" + +#: include/datetime.php:380 include/event.php:453 mod/cal.php:281 +#: mod/events.php:387 +msgid "month" +msgstr "month" + +#: include/datetime.php:380 +msgid "months" +msgstr "months" + +#: include/datetime.php:381 include/event.php:454 mod/cal.php:282 +#: mod/events.php:388 +msgid "week" +msgstr "week" + +#: include/datetime.php:381 +msgid "weeks" +msgstr "weeks" + +#: include/datetime.php:382 include/event.php:455 mod/cal.php:283 +#: mod/events.php:389 +msgid "day" +msgstr "day" + +#: include/datetime.php:382 +msgid "days" +msgstr "days" + +#: include/datetime.php:383 +msgid "hour" +msgstr "hour" + +#: include/datetime.php:383 +msgid "hours" +msgstr "hours" + +#: include/datetime.php:384 +msgid "minute" +msgstr "minute" + +#: include/datetime.php:384 +msgid "minutes" +msgstr "minutes" + +#: include/datetime.php:385 +msgid "second" +msgstr "second" + +#: include/datetime.php:385 +msgid "seconds" +msgstr "seconds" + +#: include/datetime.php:394 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s ago" + +#: include/datetime.php:620 +#, php-format +msgid "%s's birthday" +msgstr "%s's birthday" + +#: include/datetime.php:621 include/dfrn.php:1254 +#, php-format +msgid "Happy Birthday %s" +msgstr "Happy Birthday, %s!" + +#: include/delivery.php:428 +msgid "(no subject)" +msgstr "(no subject)" + +#: include/delivery.php:440 include/enotify.php:46 +msgid "noreply" +msgstr "noreply" + +#: include/dfrn.php:1253 +#, php-format +msgid "%s\\'s birthday" +msgstr "%s\\'s birthday" + +#: include/event.php:408 +msgid "all-day" +msgstr "All-day" + +#: include/event.php:410 +msgid "Sun" +msgstr "Sun" + +#: include/event.php:411 +msgid "Mon" +msgstr "Mon" + +#: include/event.php:412 +msgid "Tue" +msgstr "Tue" + +#: include/event.php:413 +msgid "Wed" +msgstr "Wed" + +#: include/event.php:414 +msgid "Thu" +msgstr "Thu" + +#: include/event.php:415 +msgid "Fri" +msgstr "Fri" + +#: include/event.php:416 +msgid "Sat" +msgstr "Sat" + +#: include/event.php:418 include/text.php:1199 mod/settings.php:982 +msgid "Sunday" +msgstr "Sunday" + +#: include/event.php:419 include/text.php:1199 mod/settings.php:982 +msgid "Monday" +msgstr "Monday" + +#: include/event.php:420 include/text.php:1199 +msgid "Tuesday" +msgstr "Tuesday" + +#: include/event.php:421 include/text.php:1199 +msgid "Wednesday" +msgstr "Wednesday" + +#: include/event.php:422 include/text.php:1199 +msgid "Thursday" +msgstr "Thursday" + +#: include/event.php:423 include/text.php:1199 +msgid "Friday" +msgstr "Friday" + +#: include/event.php:424 include/text.php:1199 +msgid "Saturday" +msgstr "Saturday" + +#: include/event.php:426 +msgid "Jan" +msgstr "Jan" + +#: include/event.php:427 +msgid "Feb" +msgstr "Feb" + +#: include/event.php:428 +msgid "Mar" +msgstr "Mar" + +#: include/event.php:429 +msgid "Apr" +msgstr "Apr" + +#: include/event.php:430 include/event.php:443 include/text.php:1203 +msgid "May" +msgstr "May" + +#: include/event.php:431 +msgid "Jun" +msgstr "Jun" + +#: include/event.php:432 +msgid "Jul" +msgstr "Jul" + +#: include/event.php:433 +msgid "Aug" +msgstr "Aug" + +#: include/event.php:434 +msgid "Sept" +msgstr "Sep" + +#: include/event.php:435 +msgid "Oct" +msgstr "Oct" + +#: include/event.php:436 +msgid "Nov" +msgstr "Nov" + +#: include/event.php:437 +msgid "Dec" +msgstr "Dec" + +#: include/event.php:439 include/text.php:1203 +msgid "January" +msgstr "January" + +#: include/event.php:440 include/text.php:1203 +msgid "February" +msgstr "February" + +#: include/event.php:441 include/text.php:1203 +msgid "March" +msgstr "March" + +#: include/event.php:442 include/text.php:1203 +msgid "April" +msgstr "April" + +#: include/event.php:444 include/text.php:1203 +msgid "June" +msgstr "June" + +#: include/event.php:445 include/text.php:1203 +msgid "July" +msgstr "July" + +#: include/event.php:446 include/text.php:1203 +msgid "August" +msgstr "August" + +#: include/event.php:447 include/text.php:1203 +msgid "September" +msgstr "September" + +#: include/event.php:448 include/text.php:1203 +msgid "October" +msgstr "October" + +#: include/event.php:449 include/text.php:1203 +msgid "November" +msgstr "November" + +#: include/event.php:450 include/text.php:1203 +msgid "December" +msgstr "December" + +#: include/event.php:452 mod/cal.php:280 mod/events.php:386 +msgid "today" +msgstr "today" + +#: include/event.php:457 +msgid "No events to display" +msgstr "No events to display" + +#: include/event.php:570 +msgid "l, F j" +msgstr "l, F j" + +#: include/event.php:592 +msgid "Edit event" +msgstr "Edit event" + +#: include/event.php:593 +msgid "Delete event" +msgstr "Delete event" + +#: include/event.php:619 include/text.php:1601 include/text.php:1608 +msgid "link to source" +msgstr "Link to source" + +#: include/event.php:873 +msgid "Export" +msgstr "Export" + +#: include/event.php:874 +msgid "Export calendar as ical" +msgstr "Export calendar as ical" + +#: include/event.php:875 +msgid "Export calendar as csv" +msgstr "Export calendar as csv" + +#: include/follow.php:84 mod/dfrn_request.php:514 +msgid "Disallowed profile URL." +msgstr "Disallowed profile URL." + +#: include/follow.php:89 mod/friendica.php:115 mod/dfrn_request.php:520 +#: mod/admin.php:280 mod/admin.php:298 +msgid "Blocked domain" +msgstr "Blocked domain" + +#: include/follow.php:94 +msgid "Connect URL missing." +msgstr "Connect URL missing." + +#: include/follow.php:122 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "This site is not configured to allow communications with other networks." + +#: include/follow.php:123 include/follow.php:137 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "No compatible communication protocols or feeds were discovered." + +#: include/follow.php:135 +msgid "The profile address specified does not provide adequate information." +msgstr "The profile address specified does not provide adequate information." + +#: include/follow.php:140 +msgid "An author or name was not found." +msgstr "An author or name was not found." + +#: include/follow.php:143 +msgid "No browser URL could be matched to this address." +msgstr "No browser URL could be matched to this address." + +#: include/follow.php:146 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Unable to match @-style identity address with a known protocol or email contact." + +#: include/follow.php:147 +msgid "Use mailto: in front of address to force email check." +msgstr "Use mailto: in front of address to force email check." + +#: include/follow.php:153 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "The profile address specified belongs to a network which has been disabled on this site." + +#: include/follow.php:158 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Limited profile: This person will be unable to receive direct/private messages from you." + +#: include/follow.php:259 +msgid "Unable to retrieve contact information." +msgstr "Unable to retrieve contact information." + +#: include/like.php:44 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%1$s is going to %2$s's %3$s" + +#: include/like.php:49 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%1$s is not going to %2$s's %3$s" + +#: include/like.php:54 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%1$s may go to %2$s's %3$s" + +#: include/photos.php:57 include/photos.php:66 mod/fbrowser.php:42 +#: mod/fbrowser.php:63 mod/photos.php:189 mod/photos.php:1125 +#: mod/photos.php:1258 mod/photos.php:1279 mod/photos.php:1841 +#: mod/photos.php:1855 +msgid "Contact Photos" +msgstr "Contact photos" + +#: include/security.php:63 +msgid "Welcome " +msgstr "Welcome " + +#: include/security.php:64 +msgid "Please upload a profile photo." +msgstr "Please upload a profile photo." + +#: include/security.php:67 +msgid "Welcome back " +msgstr "Welcome back " + +#: include/security.php:431 +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 "The form security token was incorrect. This probably happened because the form has not been submitted within 3 hours." + +#: include/text.php:308 +msgid "newer" +msgstr "Later posts" + +#: include/text.php:309 +msgid "older" +msgstr "Earlier posts" + +#: include/text.php:314 +msgid "first" +msgstr "first" + +#: include/text.php:315 +msgid "prev" +msgstr "prev" + +#: include/text.php:349 +msgid "next" +msgstr "next" + +#: include/text.php:350 +msgid "last" +msgstr "last" + +#: include/text.php:404 +msgid "Loading more entries..." +msgstr "Loading more entries..." + +#: include/text.php:405 +msgid "The end" +msgstr "The end" + +#: include/text.php:956 +msgid "No contacts" +msgstr "No contacts" + +#: include/text.php:981 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d contact" +msgstr[1] "%d contacts" + +#: include/text.php:994 +msgid "View Contacts" +msgstr "View contacts" + +#: include/text.php:1081 include/nav.php:125 mod/search.php:152 +msgid "Search" +msgstr "Search" + +#: include/text.php:1082 mod/editpost.php:101 mod/filer.php:32 +#: mod/notes.php:64 +msgid "Save" +msgstr "Save" + +#: include/text.php:1084 include/nav.php:42 +msgid "@name, !forum, #tags, content" +msgstr "@name, !forum, #tags, content" + +#: include/text.php:1089 include/nav.php:128 +msgid "Full Text" +msgstr "Full text" + +#: include/text.php:1090 include/nav.php:129 +msgid "Tags" +msgstr "Tags" + +#: include/text.php:1091 include/nav.php:130 include/nav.php:194 +#: include/identity.php:853 include/identity.php:856 mod/viewcontacts.php:124 +#: mod/contacts.php:803 mod/contacts.php:864 view/theme/frio/theme.php:259 +msgid "Contacts" +msgstr "Contacts" + +#: include/text.php:1145 +msgid "poke" +msgstr "poke" + +#: include/text.php:1145 +msgid "poked" +msgstr "poked" + +#: include/text.php:1146 +msgid "ping" +msgstr "ping" + +#: include/text.php:1146 +msgid "pinged" +msgstr "pinged" + +#: include/text.php:1147 +msgid "prod" +msgstr "prod" + +#: include/text.php:1147 +msgid "prodded" +msgstr "prodded" + +#: include/text.php:1148 +msgid "slap" +msgstr "slap" + +#: include/text.php:1148 +msgid "slapped" +msgstr "slapped" + +#: include/text.php:1149 +msgid "finger" +msgstr "finger" + +#: include/text.php:1149 +msgid "fingered" +msgstr "fingered" + +#: include/text.php:1150 +msgid "rebuff" +msgstr "rebuff" + +#: include/text.php:1150 +msgid "rebuffed" +msgstr "rebuffed" + +#: include/text.php:1164 +msgid "happy" +msgstr "happy" + +#: include/text.php:1165 +msgid "sad" +msgstr "sad" + +#: include/text.php:1166 +msgid "mellow" +msgstr "mellow" + +#: include/text.php:1167 +msgid "tired" +msgstr "tired" + +#: include/text.php:1168 +msgid "perky" +msgstr "perky" + +#: include/text.php:1169 +msgid "angry" +msgstr "angry" + +#: include/text.php:1170 +msgid "stupified" +msgstr "stupified" + +#: include/text.php:1171 +msgid "puzzled" +msgstr "puzzled" + +#: include/text.php:1172 +msgid "interested" +msgstr "interested" + +#: include/text.php:1173 +msgid "bitter" +msgstr "bitter" + +#: include/text.php:1174 +msgid "cheerful" +msgstr "cheerful" + +#: include/text.php:1175 +msgid "alive" +msgstr "alive" + +#: include/text.php:1176 +msgid "annoyed" +msgstr "annoyed" + +#: include/text.php:1177 +msgid "anxious" +msgstr "anxious" + +#: include/text.php:1178 +msgid "cranky" +msgstr "cranky" + +#: include/text.php:1179 +msgid "disturbed" +msgstr "disturbed" + +#: include/text.php:1180 +msgid "frustrated" +msgstr "frustrated" + +#: include/text.php:1181 +msgid "motivated" +msgstr "motivated" + +#: include/text.php:1182 +msgid "relaxed" +msgstr "relaxed" + +#: include/text.php:1183 +msgid "surprised" +msgstr "surprised" + +#: include/text.php:1393 mod/videos.php:388 +msgid "View Video" +msgstr "View video" + +#: include/text.php:1425 +msgid "bytes" +msgstr "bytes" + +#: include/text.php:1457 include/text.php:1469 +msgid "Click to open/close" +msgstr "Click to open/close" + +#: include/text.php:1595 +msgid "View on separate page" +msgstr "View on separate page" + +#: include/text.php:1596 +msgid "view on separate page" +msgstr "view on separate page" + +#: include/text.php:1875 +msgid "activity" +msgstr "activity" + +#: include/text.php:1877 mod/content.php:624 object/Item.php:416 +#: object/Item.php:428 +msgid "comment" +msgid_plural "comments" +msgstr[0] "comment" +msgstr[1] "comments" + +#: include/text.php:1878 +msgid "post" +msgstr "post" + +#: include/text.php:2046 +msgid "Item filed" +msgstr "Item filed" + +#: include/Contact.php:437 +msgid "Drop Contact" +msgstr "Drop contact" + +#: include/Contact.php:819 +msgid "Organisation" +msgstr "Organisation" + +#: include/Contact.php:822 +msgid "News" +msgstr "News" + +#: include/Contact.php:825 +msgid "Forum" +msgstr "Forum" + +#: include/bbcode.php:419 include/bbcode.php:1178 include/bbcode.php:1179 +msgid "Image/photo" +msgstr "Image/Photo" + +#: include/bbcode.php:536 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" + +#: include/bbcode.php:1135 include/bbcode.php:1157 +msgid "$1 wrote:" +msgstr "$1 wrote:" + +#: include/bbcode.php:1187 include/bbcode.php:1188 +msgid "Encrypted content" +msgstr "Encrypted content" + +#: include/bbcode.php:1303 +msgid "Invalid source protocol" +msgstr "Invalid source protocol" + +#: include/bbcode.php:1313 +msgid "Invalid link protocol" +msgstr "Invalid link protocol" + +#: include/enotify.php:27 +msgid "Friendica Notification" +msgstr "Friendica notification" + +#: include/enotify.php:30 +msgid "Thank You," +msgstr "Thank you" + +#: include/enotify.php:33 +#, php-format +msgid "%s Administrator" +msgstr "%s Administrator" + +#: include/enotify.php:35 +#, php-format +msgid "%1$s, %2$s Administrator" +msgstr "%1$s, %2$s Administrator" + +#: include/enotify.php:73 +#, php-format +msgid "%s " +msgstr "%s " + +#: include/enotify.php:86 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica:Notify] New mail received at %s" + +#: include/enotify.php:88 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s sent you a new private message at %2$s." + +#: include/enotify.php:89 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s sent you %2$s." + +#: include/enotify.php:89 +msgid "a private message" +msgstr "a private message" + +#: include/enotify.php:91 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Please visit %s to view or reply to your private messages." + +#: include/enotify.php:137 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "%1$s commented on [url=%2$s]a %3$s[/url]" + +#: include/enotify.php:144 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" + +#: include/enotify.php:152 +#, 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:162 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Friendica:Notify] Comment to conversation #%1$d by %2$s" + +#: include/enotify.php:164 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s commented on an item/conversation you have been following." + +#: include/enotify.php:167 include/enotify.php:181 include/enotify.php:195 +#: include/enotify.php:209 include/enotify.php:227 include/enotify.php:241 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Please visit %s to view or reply to the conversation." + +#: include/enotify.php:174 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "[Friendica:Notify] %s posted to your profile wall" + +#: include/enotify.php:176 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s posted to your profile wall at %2$s" + +#: include/enotify.php:177 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "%1$s posted to [url=%2$s]your wall[/url]" + +#: include/enotify.php:188 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica:Notify] %s tagged you" + +#: include/enotify.php:190 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s tagged you at %2$s" + +#: include/enotify.php:191 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "%1$s [url=%2$s]tagged you[/url]." + +#: include/enotify.php:202 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "[Friendica:Notify] %s shared a new post" + +#: include/enotify.php:204 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "%1$s shared a new post at %2$s" + +#: include/enotify.php:205 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "%1$s [url=%2$s]shared a post[/url]." + +#: include/enotify.php:216 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "[Friendica:Notify] %1$s poked you" + +#: include/enotify.php:218 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s poked you at %2$s" + +#: include/enotify.php:219 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "%1$s [url=%2$s]poked you[/url]." + +#: include/enotify.php:234 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica:Notify] %s tagged your post" + +#: include/enotify.php:236 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s tagged your post at %2$s" + +#: include/enotify.php:237 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "%1$s tagged [url=%2$s]your post[/url]" + +#: include/enotify.php:248 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica:Notify] Introduction received" + +#: include/enotify.php:250 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "You've received an introduction from '%1$s' at %2$s" + +#: include/enotify.php:251 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "You've received [url=%1$s]an introduction[/url] from %2$s." + +#: include/enotify.php:255 include/enotify.php:298 +#, php-format +msgid "You may visit their profile at %s" +msgstr "You may visit their profile at %s" + +#: include/enotify.php:257 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Please visit %s to approve or reject the introduction." + +#: include/enotify.php:265 +msgid "[Friendica:Notify] A new person is sharing with you" +msgstr "[Friendica:Notify] A new person is sharing with you" + +#: include/enotify.php:267 include/enotify.php:268 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "%1$s is sharing with you at %2$s" + +#: include/enotify.php:274 +msgid "[Friendica:Notify] You have a new follower" +msgstr "[Friendica:Notify] You have a new follower" + +#: include/enotify.php:276 include/enotify.php:277 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "You have a new follower at %2$s : %1$s" + +#: include/enotify.php:288 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "[Friendica:Notify] Friend suggestion received" + +#: include/enotify.php:290 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "You've received a friend suggestion from '%1$s' at %2$s" + +#: include/enotify.php:291 +#, php-format +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." + +#: include/enotify.php:296 +msgid "Name:" +msgstr "Name:" + +#: include/enotify.php:297 +msgid "Photo:" +msgstr "Photo:" + +#: include/enotify.php:300 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Please visit %s to approve or reject the suggestion." + +#: include/enotify.php:308 include/enotify.php:322 +msgid "[Friendica:Notify] Connection accepted" +msgstr "[Friendica:Notify] Connection accepted" + +#: include/enotify.php:310 include/enotify.php:324 +#, php-format +msgid "'%1$s' has accepted your connection request at %2$s" +msgstr "'%1$s' has accepted your connection request at %2$s" + +#: include/enotify.php:311 include/enotify.php:325 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "%2$s has accepted your [url=%1$s]connection request[/url]." + +#: include/enotify.php:315 +msgid "" +"You are now mutual friends and may exchange status updates, photos, and " +"email without restriction." +msgstr "You are now mutual friends and may exchange status updates, photos, and email without restriction." + +#: include/enotify.php:317 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "Please visit %s if you wish to make any changes to this relationship." + +#: include/enotify.php:329 +#, 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' has chosen to accept you as \"Follower\". This 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." + +#: include/enotify.php:331 +#, php-format +msgid "" +"'%1$s' may choose to extend this into a two-way or more permissive " +"relationship in the future." +msgstr "'%1$s' may choose to extend this into a two-way or more permissive relationship in the future." + +#: include/enotify.php:333 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "Please visit %s if you wish to make any changes to this relationship." + +#: include/enotify.php:343 +msgid "[Friendica System:Notify] registration request" +msgstr "[Friendica:Notify] registration request" + +#: include/enotify.php:345 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "You've received a registration request from '%1$s' at %2$s." + +#: include/enotify.php:346 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "You've received a [url=%1$s]registration request[/url] from %2$s." + +#: include/enotify.php:350 +#, php-format +msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" +msgstr "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" + +#: include/enotify.php:353 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "Please visit %s to approve or reject the request." + +#: include/message.php:14 include/message.php:168 +msgid "[no subject]" +msgstr "[no subject]" + +#: include/message.php:145 include/Photo.php:1075 include/Photo.php:1091 +#: include/Photo.php:1099 include/Photo.php:1124 mod/wall_upload.php:249 +#: mod/item.php:468 +msgid "Wall Photos" +msgstr "Wall photos" + +#: include/nav.php:37 mod/navigation.php:21 +msgid "Nothing new here" +msgstr "Nothing new here" + +#: include/nav.php:41 mod/navigation.php:25 +msgid "Clear notifications" +msgstr "Clear notifications" + +#: include/nav.php:80 view/theme/frio/theme.php:245 boot.php:862 +msgid "Logout" +msgstr "Logout" + +#: include/nav.php:80 view/theme/frio/theme.php:245 +msgid "End this session" +msgstr "End this session" + +#: include/nav.php:83 include/identity.php:784 mod/contacts.php:648 +#: mod/contacts.php:844 view/theme/frio/theme.php:248 +msgid "Status" +msgstr "Status" + +#: include/nav.php:83 include/nav.php:163 view/theme/frio/theme.php:248 +msgid "Your posts and conversations" +msgstr "My posts and conversations" + +#: include/nav.php:84 include/identity.php:632 include/identity.php:759 +#: include/identity.php:792 mod/newmember.php:20 mod/profperm.php:107 +#: mod/contacts.php:650 mod/contacts.php:852 view/theme/frio/theme.php:249 +msgid "Profile" +msgstr "Profile" + +#: include/nav.php:84 view/theme/frio/theme.php:249 +msgid "Your profile page" +msgstr "My profile page" + +#: include/nav.php:85 include/identity.php:800 mod/fbrowser.php:33 +#: view/theme/frio/theme.php:250 +msgid "Photos" +msgstr "Photos" + +#: include/nav.php:85 view/theme/frio/theme.php:250 +msgid "Your photos" +msgstr "My photos" + +#: include/nav.php:86 include/identity.php:808 include/identity.php:811 +#: view/theme/frio/theme.php:251 +msgid "Videos" +msgstr "Videos" + +#: include/nav.php:86 view/theme/frio/theme.php:251 +msgid "Your videos" +msgstr "My videos" + +#: include/nav.php:87 include/nav.php:151 include/identity.php:820 +#: include/identity.php:831 mod/cal.php:272 mod/events.php:377 +#: view/theme/frio/theme.php:252 view/theme/frio/theme.php:256 +msgid "Events" +msgstr "Events" + +#: include/nav.php:87 view/theme/frio/theme.php:252 +msgid "Your events" +msgstr "My events" + +#: include/nav.php:88 +msgid "Personal notes" +msgstr "Personal notes" + +#: include/nav.php:88 +msgid "Your personal notes" +msgstr "My personal notes" + +#: include/nav.php:97 mod/bookmarklet.php:14 boot.php:863 +msgid "Login" +msgstr "Login" + +#: include/nav.php:97 +msgid "Sign in" +msgstr "Sign in" + +#: include/nav.php:107 +msgid "Home Page" +msgstr "Home page" + +#: include/nav.php:111 mod/register.php:291 boot.php:839 +msgid "Register" +msgstr "Register" + +#: include/nav.php:111 +msgid "Create an account" +msgstr "Create account" + +#: include/nav.php:117 mod/help.php:50 view/theme/vier/theme.php:299 +msgid "Help" +msgstr "Help" + +#: include/nav.php:117 +msgid "Help and documentation" +msgstr "Help and documentation" + +#: include/nav.php:121 +msgid "Apps" +msgstr "Apps" + +#: include/nav.php:121 +msgid "Addon applications, utilities, games" +msgstr "Addon applications, utilities, games" + +#: include/nav.php:125 +msgid "Search site content" +msgstr "Search site content" + +#: include/nav.php:145 include/nav.php:147 mod/community.php:32 +msgid "Community" +msgstr "Community" + +#: include/nav.php:145 +msgid "Conversations on this site" +msgstr "Public conversations on this site" + +#: include/nav.php:147 +msgid "Conversations on the network" +msgstr "Conversations on the network" + +#: include/nav.php:151 include/identity.php:823 include/identity.php:834 +#: view/theme/frio/theme.php:256 +msgid "Events and Calendar" +msgstr "Events and calendar" + +#: include/nav.php:154 +msgid "Directory" +msgstr "Directory" + +#: include/nav.php:154 +msgid "People directory" +msgstr "People directory" + +#: include/nav.php:156 +msgid "Information" +msgstr "Information" + +#: include/nav.php:156 +msgid "Information about this friendica instance" +msgstr "Information about this Friendica instance" + +#: include/nav.php:160 view/theme/frio/theme.php:255 +msgid "Conversations from your friends" +msgstr "My friends' conversations" + +#: include/nav.php:161 +msgid "Network Reset" +msgstr "Network reset" + +#: include/nav.php:161 +msgid "Load Network page with no filters" +msgstr "Load network page without filters" + +#: include/nav.php:168 +msgid "Friend Requests" +msgstr "Friend requests" + +#: include/nav.php:171 mod/notifications.php:98 +msgid "Notifications" +msgstr "Notifications" + +#: include/nav.php:172 +msgid "See all notifications" +msgstr "See all notifications" + +#: include/nav.php:173 mod/settings.php:907 +msgid "Mark as seen" +msgstr "Mark as seen" + +#: include/nav.php:173 +msgid "Mark all system notifications seen" +msgstr "Mark all system notifications seen" + +#: include/nav.php:177 mod/message.php:181 view/theme/frio/theme.php:257 +msgid "Messages" +msgstr "Messages" + +#: include/nav.php:177 view/theme/frio/theme.php:257 +msgid "Private mail" +msgstr "Private messages" + +#: include/nav.php:178 +msgid "Inbox" +msgstr "Inbox" + +#: include/nav.php:179 +msgid "Outbox" +msgstr "Outbox" + +#: include/nav.php:180 mod/message.php:18 +msgid "New Message" +msgstr "New Message" + +#: include/nav.php:183 +msgid "Manage" +msgstr "Manage" + +#: include/nav.php:183 +msgid "Manage other pages" +msgstr "Manage other pages" + +#: include/nav.php:186 mod/settings.php:83 +msgid "Delegations" +msgstr "Delegations" + +#: include/nav.php:186 mod/delegate.php:132 +msgid "Delegate Page Management" +msgstr "Delegate Page Management" + +#: include/nav.php:188 mod/newmember.php:15 mod/admin.php:1624 +#: mod/admin.php:1900 mod/settings.php:113 view/theme/frio/theme.php:258 +msgid "Settings" +msgstr "Settings" + +#: include/nav.php:188 view/theme/frio/theme.php:258 +msgid "Account settings" +msgstr "Account settings" + +#: include/nav.php:191 include/identity.php:296 +msgid "Profiles" +msgstr "Profiles" + +#: include/nav.php:191 +msgid "Manage/Edit Profiles" +msgstr "Manage/Edit profiles" + +#: include/nav.php:194 view/theme/frio/theme.php:259 +msgid "Manage/edit friends and contacts" +msgstr "Manage/Edit friends and contacts" + +#: include/nav.php:199 mod/admin.php:197 +msgid "Admin" +msgstr "Admin" + +#: include/nav.php:199 +msgid "Site setup and configuration" +msgstr "Site setup and configuration" + +#: include/nav.php:202 +msgid "Navigation" +msgstr "Navigation" + +#: include/nav.php:202 +msgid "Site map" +msgstr "Site map" + +#: include/network.php:687 +msgid "view full size" +msgstr "view full size" + +#: include/oembed.php:256 +msgid "Embedded content" +msgstr "Embedded content" + +#: include/oembed.php:264 +msgid "Embedding disabled" +msgstr "Embedding disabled" + +#: include/uimport.php:85 +msgid "Error decoding account file" +msgstr "Error decoding account file" + +#: include/uimport.php:91 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Error! No version data in file! Is this a Friendica account file?" + +#: include/uimport.php:108 include/uimport.php:119 +msgid "Error! Cannot check nickname" +msgstr "Error! Cannot check nickname." + +#: include/uimport.php:112 include/uimport.php:123 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "User '%s' already exists on this server!" + +#: include/uimport.php:145 +msgid "User creation error" +msgstr "User creation error" + +#: include/uimport.php:166 +msgid "User profile creation error" +msgstr "User profile creation error" + +#: include/uimport.php:215 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d contact not imported" +msgstr[1] "%d contacts not imported" + +#: include/uimport.php:281 +msgid "Done. You can now login with your username and password" +msgstr "Done. You can now login with your username and password" + +#: include/user.php:39 mod/settings.php:377 +msgid "Passwords do not match. Password unchanged." +msgstr "Passwords do not match. Password unchanged." + +#: include/user.php:48 +msgid "An invitation is required." +msgstr "An invitation is required." + +#: include/user.php:53 +msgid "Invitation could not be verified." +msgstr "Invitation could not be verified." + +#: include/user.php:61 +msgid "Invalid OpenID url" +msgstr "Invalid OpenID URL" + +#: include/user.php:82 +msgid "Please enter the required information." +msgstr "Please enter the required information." + +#: include/user.php:96 +msgid "Please use a shorter name." +msgstr "Please use a shorter name." + +#: include/user.php:98 +msgid "Name too short." +msgstr "Name too short." + +#: include/user.php:106 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "That doesn't appear to be your full (i.e first and last) name." + +#: include/user.php:111 +msgid "Your email domain is not among those allowed on this site." +msgstr "Your email domain is not allowed on this site." + +#: include/user.php:114 +msgid "Not a valid email address." +msgstr "Not a valid email address." + +#: include/user.php:127 +msgid "Cannot use that email." +msgstr "Cannot use that email." + +#: include/user.php:133 +msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." +msgstr "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." + +#: include/user.php:140 include/user.php:228 +msgid "Nickname is already registered. Please choose another." +msgstr "Nickname is already registered. Please choose another." + +#: include/user.php:150 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Nickname was once registered here and may not be re-used. Please choose another." + +#: include/user.php:166 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "SERIOUS ERROR: Generation of security keys failed." + +#: include/user.php:214 +msgid "An error occurred during registration. Please try again." +msgstr "An error occurred during registration. Please try again." + +#: include/user.php:237 view/theme/duepuntozero/config.php:46 +msgid "default" +msgstr "default" + +#: include/user.php:247 +msgid "An error occurred creating your default profile. Please try again." +msgstr "An error occurred creating your default profile. Please try again." + +#: include/user.php:260 include/user.php:264 include/profile_selectors.php:42 +msgid "Friends" +msgstr "Friends" + +#: include/user.php:306 include/user.php:314 include/user.php:322 +#: include/api.php:3697 mod/photos.php:73 mod/photos.php:189 +#: mod/photos.php:776 mod/photos.php:1258 mod/photos.php:1279 +#: mod/photos.php:1865 mod/profile_photo.php:74 mod/profile_photo.php:82 +#: mod/profile_photo.php:90 mod/profile_photo.php:214 +#: mod/profile_photo.php:309 mod/profile_photo.php:319 +msgid "Profile Photos" +msgstr "Profile photos" + +#: include/user.php:397 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" +"\t" +msgstr "\n\t\tDear %1$s,\n\t\t\tThank you for registering at %2$s. Your account is pending approval by the administrator.\n\t" + +#: include/user.php:407 +#, php-format +msgid "Registration at %s" +msgstr "Registration at %s" + +#: include/user.php:417 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t" +msgstr "\n\t\tDear %1$s,\n\t\t\tThank you for registering at %2$s. Your account has been created.\n\t" + +#: include/user.php:421 +#, php-format +msgid "" +"\n" +"\t\tThe login details are as follows:\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t%1$s\n" +"\t\t\tPassword:\t%5$s\n" +"\n" +"\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\tin.\n" +"\n" +"\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\tthan that.\n" +"\n" +"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\tIf you are new and do not know anybody here, they may help\n" +"\t\tyou to make some new and interesting friends.\n" +"\n" +"\n" +"\t\tThank you and welcome to %2$s." +msgstr "\n\t\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 for your account \"Settings\" 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 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, these settings may help to\n\t\tmake new and interesting friends.\n\n\n\t\tThank you and welcome to %2$s." + +#: include/user.php:453 mod/admin.php:1314 +#, php-format +msgid "Registration details for %s" +msgstr "Registration details for %s" + +#: include/api.php:1102 +#, php-format +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "Daily posting limit of %d posts reached. This post was rejected." + +#: include/api.php:1123 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." +msgstr "Weekly posting limit of %d posts reached. This post was rejected." + +#: include/api.php:1144 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "Monthly posting limit of %d posts reached. This post was rejected." + +#: include/dba.php:57 include/dba_pdo.php:75 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Cannot locate DNS info for database server '%s'" + +#: include/dbstructure.php:25 +msgid "There are no tables on MyISAM." +msgstr "There are no tables on MyISAM." + +#: include/dbstructure.php:66 +#, php-format +msgid "" +"\n" +"\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." +msgstr "\n\t\t\tThe Friendica 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\n might be invalid." + +#: include/dbstructure.php:71 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "The error message is\n[pre]%s[/pre]" + +#: include/dbstructure.php:195 +#, php-format +msgid "" +"\n" +"Error %d occurred during database update:\n" +"%s\n" +msgstr "\nError %d occurred during database update:\n%s\n" + +#: include/dbstructure.php:198 +msgid "Errors encountered performing database changes: " +msgstr "Errors encountered performing database changes: " + +#: include/dbstructure.php:206 +msgid ": Database update" +msgstr ": Database update" + +#: include/dbstructure.php:438 +#, php-format +msgid "%s: updating %s table." +msgstr "%s: updating %s table." + +#: include/diaspora.php:2214 +msgid "Sharing notification from Diaspora network" +msgstr "Sharing notification from Diaspora network" + +#: include/diaspora.php:3234 +msgid "Attachments:" +msgstr "Attachments:" + +#: include/identity.php:45 +msgid "Requested account is not available." +msgstr "Requested account is unavailable." + +#: include/identity.php:54 mod/profile.php:22 +msgid "Requested profile is not available." +msgstr "Requested profile is unavailable." + +#: include/identity.php:98 include/identity.php:325 include/identity.php:755 +msgid "Edit profile" +msgstr "Edit profile" + +#: include/identity.php:265 +msgid "Atom feed" +msgstr "Atom feed" + +#: include/identity.php:296 +msgid "Manage/edit profiles" +msgstr "Manage/Edit profiles" + +#: include/identity.php:301 include/identity.php:327 mod/profiles.php:790 +msgid "Change profile photo" +msgstr "Change profile photo" + +#: include/identity.php:302 mod/profiles.php:791 +msgid "Create New Profile" +msgstr "Create new profile" + +#: include/identity.php:312 mod/profiles.php:780 +msgid "Profile Image" +msgstr "Profile image" + +#: include/identity.php:315 mod/profiles.php:782 +msgid "visible to everybody" +msgstr "Visible to everybody" + +#: include/identity.php:316 mod/profiles.php:687 mod/profiles.php:783 +msgid "Edit visibility" +msgstr "Edit visibility" + +#: include/identity.php:344 include/identity.php:644 mod/directory.php:137 +#: mod/notifications.php:252 +msgid "Gender:" +msgstr "Gender:" + +#: include/identity.php:347 include/identity.php:665 mod/directory.php:139 +msgid "Status:" +msgstr "Status:" + +#: include/identity.php:349 include/identity.php:682 mod/directory.php:141 +msgid "Homepage:" +msgstr "Homepage:" + +#: include/identity.php:351 include/identity.php:702 mod/directory.php:143 +#: mod/notifications.php:248 mod/contacts.php:643 +msgid "About:" +msgstr "About:" + +#: include/identity.php:353 mod/contacts.php:641 +msgid "XMPP:" +msgstr "XMPP:" + +#: include/identity.php:439 mod/notifications.php:260 mod/contacts.php:58 +msgid "Network:" +msgstr "Network:" + +#: include/identity.php:468 include/identity.php:558 +msgid "g A l F d" +msgstr "g A l F d" + +#: include/identity.php:469 include/identity.php:559 +msgid "F d" +msgstr "F d" + +#: include/identity.php:520 include/identity.php:609 +msgid "[today]" +msgstr "[today]" + +#: include/identity.php:532 +msgid "Birthday Reminders" +msgstr "Birthday reminders" + +#: include/identity.php:533 +msgid "Birthdays this week:" +msgstr "Birthdays this week:" + +#: include/identity.php:595 +msgid "[No description]" +msgstr "[No description]" + +#: include/identity.php:620 +msgid "Event Reminders" +msgstr "Event reminders" + +#: include/identity.php:621 +msgid "Events this week:" +msgstr "Events this week:" + +#: include/identity.php:641 mod/settings.php:1287 +msgid "Full Name:" +msgstr "Full name:" + +#: include/identity.php:648 +msgid "j F, Y" +msgstr "j F, Y" + +#: include/identity.php:649 +msgid "j F" +msgstr "j F" + +#: include/identity.php:661 +msgid "Age:" +msgstr "Age:" + +#: include/identity.php:674 +#, php-format +msgid "for %1$d %2$s" +msgstr "for %1$d %2$s" + +#: include/identity.php:678 mod/profiles.php:706 +msgid "Sexual Preference:" +msgstr "Sexual preference:" + +#: include/identity.php:686 mod/profiles.php:733 +msgid "Hometown:" +msgstr "Home town:" + +#: include/identity.php:690 mod/follow.php:139 mod/notifications.php:250 +#: mod/contacts.php:645 +msgid "Tags:" +msgstr "Tags:" + +#: include/identity.php:694 mod/profiles.php:734 +msgid "Political Views:" +msgstr "Political views:" + +#: include/identity.php:698 +msgid "Religion:" +msgstr "Religion:" + +#: include/identity.php:706 +msgid "Hobbies/Interests:" +msgstr "Hobbies/Interests:" + +#: include/identity.php:710 mod/profiles.php:738 +msgid "Likes:" +msgstr "Likes:" + +#: include/identity.php:714 mod/profiles.php:739 +msgid "Dislikes:" +msgstr "Dislikes:" + +#: include/identity.php:718 +msgid "Contact information and Social Networks:" +msgstr "Contact information and social networks:" + +#: include/identity.php:722 +msgid "Musical interests:" +msgstr "Music:" + +#: include/identity.php:726 +msgid "Books, literature:" +msgstr "Books/Literature:" + +#: include/identity.php:730 +msgid "Television:" +msgstr "Television:" + +#: include/identity.php:734 +msgid "Film/dance/culture/entertainment:" +msgstr "Arts, culture, entertainment:" + +#: include/identity.php:738 +msgid "Love/Romance:" +msgstr "Love/Romance:" + +#: include/identity.php:742 +msgid "Work/employment:" +msgstr "Work/Employment:" + +#: include/identity.php:746 +msgid "School/education:" +msgstr "School/Education:" + +#: include/identity.php:751 +msgid "Forums:" +msgstr "Forums:" + +#: include/identity.php:760 mod/events.php:509 +msgid "Basic" +msgstr "Basic" + +#: include/identity.php:761 mod/events.php:510 mod/admin.php:1065 +#: mod/contacts.php:881 +msgid "Advanced" +msgstr "Advanced" + +#: include/identity.php:787 mod/follow.php:147 mod/contacts.php:847 +msgid "Status Messages and Posts" +msgstr "Status Messages and Posts" + +#: include/identity.php:795 mod/contacts.php:855 +msgid "Profile Details" +msgstr "Profile Details" + +#: include/identity.php:803 mod/photos.php:95 +msgid "Photo Albums" +msgstr "Photo Albums" + +#: include/identity.php:842 mod/notes.php:49 +msgid "Personal Notes" +msgstr "Personal notes" + +#: include/identity.php:845 +msgid "Only You Can See This" +msgstr "Only you can see this." + +#: include/items.php:1736 mod/dfrn_confirm.php:738 mod/dfrn_request.php:759 +msgid "[Name Withheld]" +msgstr "[Name Withheld]" + +#: include/items.php:2121 mod/display.php:105 mod/display.php:280 +#: mod/display.php:485 mod/notice.php:17 mod/viewsrc.php:16 mod/admin.php:248 +#: mod/admin.php:1571 mod/admin.php:1822 +msgid "Item not found." +msgstr "Item not found." + +#: include/items.php:2160 +msgid "Do you really want to delete this item?" +msgstr "Do you really want to delete this item?" + +#: include/items.php:2162 mod/api.php:107 mod/follow.php:115 +#: mod/message.php:208 mod/register.php:247 mod/suggest.php:31 +#: mod/dfrn_request.php:880 mod/contacts.php:455 mod/profiles.php:643 +#: mod/profiles.php:646 mod/profiles.php:673 mod/settings.php:1172 +#: mod/settings.php:1178 mod/settings.php:1185 mod/settings.php:1189 +#: mod/settings.php:1194 mod/settings.php:1199 mod/settings.php:1204 +#: mod/settings.php:1209 mod/settings.php:1235 mod/settings.php:1236 +#: mod/settings.php:1237 mod/settings.php:1238 mod/settings.php:1239 +msgid "Yes" +msgstr "Yes" + +#: include/items.php:2309 mod/allfriends.php:14 mod/api.php:28 mod/api.php:33 +#: mod/attach.php:35 mod/cal.php:301 mod/common.php:20 mod/crepair.php:105 +#: mod/delegate.php:14 mod/dfrn_confirm.php:63 mod/dirfind.php:15 +#: mod/display.php:482 mod/editpost.php:12 mod/events.php:188 +#: mod/follow.php:13 mod/follow.php:76 mod/follow.php:160 mod/fsuggest.php:80 +#: mod/group.php:20 mod/invite.php:17 mod/invite.php:105 mod/manage.php:103 +#: mod/message.php:48 mod/message.php:173 mod/mood.php:116 mod/network.php:7 +#: mod/nogroup.php:29 mod/notes.php:25 mod/notifications.php:73 +#: mod/ostatus_subscribe.php:11 mod/photos.php:168 mod/photos.php:1111 +#: mod/poke.php:155 mod/register.php:44 mod/repair_ostatus.php:11 +#: mod/suggest.php:60 mod/viewcontacts.php:49 mod/wall_attach.php:69 +#: mod/wall_attach.php:72 mod/wall_upload.php:101 mod/wall_upload.php:104 +#: mod/wallmessage.php:11 mod/wallmessage.php:35 mod/wallmessage.php:75 +#: mod/wallmessage.php:99 mod/item.php:197 mod/item.php:209 mod/regmod.php:106 +#: mod/uimport.php:26 mod/contacts.php:363 mod/profile_photo.php:19 +#: mod/profile_photo.php:179 mod/profile_photo.php:190 +#: mod/profile_photo.php:203 mod/profiles.php:172 mod/profiles.php:610 +#: mod/settings.php:24 mod/settings.php:132 mod/settings.php:669 index.php:410 +msgid "Permission denied." +msgstr "Permission denied." + +#: include/items.php:2426 +msgid "Archives" +msgstr "Archives" + +#: include/ostatus.php:1962 +#, php-format +msgid "%s is now following %s." +msgstr "%s is now following %s." + +#: include/ostatus.php:1963 +msgid "following" +msgstr "following" + +#: include/ostatus.php:1966 +#, php-format +msgid "%s stopped following %s." +msgstr "%s stopped following %s." + +#: include/ostatus.php:1967 +msgid "stopped following" +msgstr "stopped following" + +#: include/plugin.php:531 include/plugin.php:533 +msgid "Click here to upgrade." +msgstr "Click here to upgrade." + +#: include/plugin.php:539 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "This action exceeds the limits set by your subscription plan." + +#: include/plugin.php:544 +msgid "This action is not available under your subscription plan." +msgstr "This action is not available under your subscription plan." + +#: include/profile_selectors.php:6 +msgid "Male" +msgstr "Male" + +#: include/profile_selectors.php:6 +msgid "Female" +msgstr "Female" + +#: include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Currently Male" + +#: include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Currently Female" + +#: include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Mostly Male" + +#: include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Mostly Female" + +#: include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgender" + +#: include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Intersex" + +#: include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transsexual" + +#: include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Hermaphrodite" + +#: include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Neuter" + +#: include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Non-specific" + +#: include/profile_selectors.php:6 +msgid "Other" +msgstr "Other" + +#: include/profile_selectors.php:23 +msgid "Males" +msgstr "Males" + +#: include/profile_selectors.php:23 +msgid "Females" +msgstr "Females" + +#: include/profile_selectors.php:23 +msgid "Gay" +msgstr "Gay" + +#: include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "Lesbian" + +#: include/profile_selectors.php:23 +msgid "No Preference" +msgstr "No Preference" + +#: include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "Bisexual" + +#: include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "Auto-sexual" + +#: include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "Abstinent" + +#: include/profile_selectors.php:23 +msgid "Virgin" +msgstr "Virgin" + +#: include/profile_selectors.php:23 +msgid "Deviant" +msgstr "Deviant" + +#: include/profile_selectors.php:23 +msgid "Fetish" +msgstr "Fetish" + +#: include/profile_selectors.php:23 +msgid "Oodles" +msgstr "Oodles" + +#: include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "Asexual" + +#: include/profile_selectors.php:42 +msgid "Single" +msgstr "Single" + +#: include/profile_selectors.php:42 +msgid "Lonely" +msgstr "Lonely" + +#: include/profile_selectors.php:42 +msgid "Available" +msgstr "Available" + +#: include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "Unavailable" + +#: include/profile_selectors.php:42 +msgid "Has crush" +msgstr "Having a crush" + +#: include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "Infatuated" + +#: include/profile_selectors.php:42 +msgid "Dating" +msgstr "Dating" + +#: include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "Unfaithful" + +#: include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "Sex addict" + +#: include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "Friends with benefits" + +#: include/profile_selectors.php:42 +msgid "Casual" +msgstr "Casual" + +#: include/profile_selectors.php:42 +msgid "Engaged" +msgstr "Engaged" + +#: include/profile_selectors.php:42 +msgid "Married" +msgstr "Married" + +#: include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "Imaginarily married" + +#: include/profile_selectors.php:42 +msgid "Partners" +msgstr "Partners" + +#: include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "Cohabiting" + +#: include/profile_selectors.php:42 +msgid "Common law" +msgstr "Common law spouse" + +#: include/profile_selectors.php:42 +msgid "Happy" +msgstr "Happy" + +#: include/profile_selectors.php:42 +msgid "Not looking" +msgstr "Not looking" + +#: include/profile_selectors.php:42 +msgid "Swinger" +msgstr "Swinger" + +#: include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "Betrayed" + +#: include/profile_selectors.php:42 +msgid "Separated" +msgstr "Separated" + +#: include/profile_selectors.php:42 +msgid "Unstable" +msgstr "Unstable" + +#: include/profile_selectors.php:42 +msgid "Divorced" +msgstr "Divorced" + +#: include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "Imaginarily divorced" + +#: include/profile_selectors.php:42 +msgid "Widowed" +msgstr "Widowed" + +#: include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "Uncertain" + +#: include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "It's complicated" + +#: include/profile_selectors.php:42 +msgid "Don't care" +msgstr "Don't care" + +#: include/profile_selectors.php:42 +msgid "Ask me" +msgstr "Ask me" + +#: mod/allfriends.php:48 +msgid "No friends to display." +msgstr "No friends to display." + +#: mod/api.php:78 mod/api.php:104 +msgid "Authorize application connection" +msgstr "Authorize application connection" + +#: mod/api.php:79 +msgid "Return to your app and insert this Securty Code:" +msgstr "Return to your app and insert this security code:" + +#: mod/api.php:91 +msgid "Please login to continue." +msgstr "Please login to continue." + +#: mod/api.php:106 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Do you want to authorize this application to access your posts and contacts and create new posts for you?" + +#: mod/api.php:108 mod/follow.php:115 mod/register.php:248 +#: mod/dfrn_request.php:880 mod/profiles.php:643 mod/profiles.php:647 +#: mod/profiles.php:673 mod/settings.php:1172 mod/settings.php:1178 +#: mod/settings.php:1185 mod/settings.php:1189 mod/settings.php:1194 +#: mod/settings.php:1199 mod/settings.php:1204 mod/settings.php:1209 +#: mod/settings.php:1235 mod/settings.php:1236 mod/settings.php:1237 +#: mod/settings.php:1238 mod/settings.php:1239 +msgid "No" +msgstr "No" + +#: mod/apps.php:9 index.php:257 +msgid "You must be logged in to use addons. " +msgstr "You must be logged in to use addons. " + +#: mod/apps.php:14 +msgid "Applications" +msgstr "Applications" + +#: mod/apps.php:17 +msgid "No installed applications." +msgstr "No installed applications." + +#: mod/attach.php:10 +msgid "Item not available." +msgstr "Item not available." + +#: mod/attach.php:22 +msgid "Item was not found." +msgstr "Item was not found." + +#: mod/babel.php:18 +msgid "Source (bbcode) text:" +msgstr "Source (bbcode) text:" + +#: mod/babel.php:25 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Source (Diaspora) text to convert to BBcode:" + +#: mod/babel.php:33 +msgid "Source input: " +msgstr "Source input: " + +#: mod/babel.php:37 +msgid "bb2html (raw HTML): " +msgstr "bb2html (raw HTML): " + +#: mod/babel.php:41 +msgid "bb2html: " +msgstr "bb2html: " + +#: mod/babel.php:45 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " + +#: mod/babel.php:49 +msgid "bb2md: " +msgstr "bb2md: " + +#: mod/babel.php:53 +msgid "bb2md2html: " +msgstr "bb2md2html: " + +#: mod/babel.php:57 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " + +#: mod/babel.php:61 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " + +#: mod/babel.php:67 +msgid "Source input (Diaspora format): " +msgstr "Source input (Diaspora format): " + +#: mod/babel.php:71 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: mod/bookmarklet.php:43 +msgid "The post was created" +msgstr "The post was created" + +#: mod/cal.php:145 mod/display.php:329 mod/profile.php:156 +msgid "Access to this profile has been restricted." +msgstr "Access to this profile has been restricted." + +#: mod/cal.php:273 mod/events.php:378 +msgid "View" +msgstr "View" + +#: mod/cal.php:274 mod/events.php:380 +msgid "Previous" +msgstr "Previous" + +#: mod/cal.php:275 mod/events.php:381 mod/install.php:203 +msgid "Next" +msgstr "Next" + +#: mod/cal.php:284 mod/events.php:390 +msgid "list" +msgstr "List" + +#: mod/cal.php:294 +msgid "User not found" +msgstr "User not found" + +#: mod/cal.php:310 +msgid "This calendar format is not supported" +msgstr "This calendar format is not supported" + +#: mod/cal.php:312 +msgid "No exportable data found" +msgstr "No exportable data found" + +#: mod/cal.php:327 +msgid "calendar" +msgstr "calendar" + +#: mod/common.php:93 +msgid "No contacts in common." +msgstr "No contacts in common." + +#: mod/common.php:143 mod/contacts.php:874 +msgid "Common Friends" +msgstr "Common friends" + +#: mod/community.php:18 mod/directory.php:33 mod/display.php:201 +#: mod/photos.php:981 mod/search.php:96 mod/search.php:102 mod/videos.php:200 +#: mod/viewcontacts.php:39 mod/webfinger.php:10 mod/dfrn_request.php:804 +#: mod/probe.php:9 +msgid "Public access denied." +msgstr "Public access denied." + +#: mod/community.php:23 +msgid "Not available." +msgstr "Not available." + +#: mod/community.php:50 mod/search.php:222 +msgid "No results." +msgstr "No results." + +#: mod/content.php:120 mod/network.php:478 +msgid "No such group" +msgstr "No such group" + +#: mod/content.php:131 mod/group.php:214 mod/network.php:505 +msgid "Group is empty" +msgstr "Group is empty" + +#: mod/content.php:136 mod/network.php:509 +#, php-format +msgid "Group: %s" +msgstr "Group: %s" + +#: mod/content.php:326 object/Item.php:96 +msgid "This entry was edited" +msgstr "This entry was edited" + +#: mod/content.php:622 object/Item.php:414 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d comment" +msgstr[1] "%d comments -" + +#: mod/content.php:639 mod/photos.php:1431 object/Item.php:117 +msgid "Private Message" +msgstr "Private message" + +#: mod/content.php:703 mod/photos.php:1627 object/Item.php:271 +msgid "I like this (toggle)" +msgstr "I like this (toggle)" + +#: mod/content.php:703 object/Item.php:271 +msgid "like" +msgstr "Like" + +#: mod/content.php:704 mod/photos.php:1628 object/Item.php:272 +msgid "I don't like this (toggle)" +msgstr "I don't like this (toggle)" + +#: mod/content.php:704 object/Item.php:272 +msgid "dislike" +msgstr "Dislike" + +#: mod/content.php:706 object/Item.php:275 +msgid "Share this" +msgstr "Share this" + +#: mod/content.php:706 object/Item.php:275 +msgid "share" +msgstr "Share" + +#: mod/content.php:726 mod/photos.php:1645 mod/photos.php:1687 +#: mod/photos.php:1767 object/Item.php:699 +msgid "This is you" +msgstr "This is me" + +#: mod/content.php:728 mod/content.php:951 mod/photos.php:1647 +#: mod/photos.php:1689 mod/photos.php:1769 object/Item.php:389 +#: object/Item.php:701 +msgid "Comment" +msgstr "Comment" + +#: mod/content.php:729 mod/crepair.php:159 mod/events.php:508 +#: mod/fsuggest.php:109 mod/install.php:244 mod/install.php:284 +#: mod/invite.php:144 mod/localtime.php:46 mod/manage.php:156 +#: mod/message.php:340 mod/message.php:523 mod/mood.php:139 +#: mod/photos.php:1143 mod/photos.php:1273 mod/photos.php:1599 +#: mod/photos.php:1648 mod/photos.php:1690 mod/photos.php:1770 +#: mod/poke.php:204 mod/contacts.php:588 mod/profiles.php:684 +#: object/Item.php:702 view/theme/duepuntozero/config.php:64 +#: view/theme/frio/config.php:67 view/theme/quattro/config.php:70 +#: view/theme/vier/config.php:113 +msgid "Submit" +msgstr "Submit" + +#: mod/content.php:730 object/Item.php:703 +msgid "Bold" +msgstr "Bold" + +#: mod/content.php:731 object/Item.php:704 +msgid "Italic" +msgstr "Italic" + +#: mod/content.php:732 object/Item.php:705 +msgid "Underline" +msgstr "Underline" + +#: mod/content.php:733 object/Item.php:706 +msgid "Quote" +msgstr "Quote" + +#: mod/content.php:734 object/Item.php:707 +msgid "Code" +msgstr "Code" + +#: mod/content.php:735 object/Item.php:708 +msgid "Image" +msgstr "Image" + +#: mod/content.php:736 object/Item.php:709 +msgid "Link" +msgstr "Link" + +#: mod/content.php:737 object/Item.php:710 +msgid "Video" +msgstr "Video" + +#: mod/content.php:747 mod/settings.php:744 object/Item.php:122 +#: object/Item.php:124 +msgid "Edit" +msgstr "Edit" + +#: mod/content.php:773 object/Item.php:238 +msgid "add star" +msgstr "Add star" + +#: mod/content.php:774 object/Item.php:239 +msgid "remove star" +msgstr "Remove star" + +#: mod/content.php:775 object/Item.php:240 +msgid "toggle star status" +msgstr "Toggle star status" + +#: mod/content.php:778 object/Item.php:243 +msgid "starred" +msgstr "Starred" + +#: mod/content.php:779 mod/content.php:801 object/Item.php:260 +msgid "add tag" +msgstr "Add tag" + +#: mod/content.php:790 object/Item.php:248 +msgid "ignore thread" +msgstr "Ignore thread" + +#: mod/content.php:791 object/Item.php:249 +msgid "unignore thread" +msgstr "Unignore thread" + +#: mod/content.php:792 object/Item.php:250 +msgid "toggle ignore status" +msgstr "Toggle ignore status" + +#: mod/content.php:795 mod/ostatus_subscribe.php:75 object/Item.php:253 +msgid "ignored" +msgstr "Ignored" + +#: mod/content.php:806 object/Item.php:141 +msgid "save to folder" +msgstr "Save to folder" + +#: mod/content.php:854 object/Item.php:212 +msgid "I will attend" +msgstr "I will attend" + +#: mod/content.php:854 object/Item.php:212 +msgid "I will not attend" +msgstr "I will not attend" + +#: mod/content.php:854 object/Item.php:212 +msgid "I might attend" +msgstr "I might attend" + +#: mod/content.php:918 object/Item.php:355 +msgid "to" +msgstr "to" + +#: mod/content.php:919 object/Item.php:357 +msgid "Wall-to-Wall" +msgstr "Wall-to-wall" + +#: mod/content.php:920 object/Item.php:358 +msgid "via Wall-To-Wall:" +msgstr "via wall-to-wall:" + +#: mod/credits.php:19 +msgid "Credits" +msgstr "Credits" + +#: mod/credits.php:20 +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 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!" + +#: mod/crepair.php:92 +msgid "Contact settings applied." +msgstr "Contact settings applied." + +#: mod/crepair.php:94 +msgid "Contact update failed." +msgstr "Contact update failed." + +#: mod/crepair.php:119 mod/dfrn_confirm.php:128 mod/fsuggest.php:22 +#: mod/fsuggest.php:94 +msgid "Contact not found." +msgstr "Contact not found." + +#: mod/crepair.php:125 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "Warning: These are highly advanced settings. If you enter incorrect information your communications with this contact may not working." + +#: mod/crepair.php:126 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Please use your browser 'Back' button now if you are uncertain what to do on this page." + +#: mod/crepair.php:139 mod/crepair.php:141 +msgid "No mirroring" +msgstr "No mirroring" + +#: mod/crepair.php:139 +msgid "Mirror as forwarded posting" +msgstr "Mirror as forwarded posting" + +#: mod/crepair.php:139 mod/crepair.php:141 +msgid "Mirror as my own posting" +msgstr "Mirror as my own posting" + +#: mod/crepair.php:155 +msgid "Return to contact editor" +msgstr "Return to contact editor" + +#: mod/crepair.php:157 +msgid "Refetch contact data" +msgstr "Re-fetch contact data." + +#: mod/crepair.php:161 +msgid "Remote Self" +msgstr "Remote self" + +#: mod/crepair.php:164 +msgid "Mirror postings from this contact" +msgstr "Mirror postings from this contact:" + +#: mod/crepair.php:166 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "This will cause Friendica to repost new entries from this contact." + +#: mod/crepair.php:170 mod/admin.php:1496 mod/admin.php:1509 +#: mod/admin.php:1522 mod/admin.php:1538 mod/settings.php:684 +#: mod/settings.php:710 +msgid "Name" +msgstr "Name:" + +#: mod/crepair.php:171 +msgid "Account Nickname" +msgstr "Account nickname:" + +#: mod/crepair.php:172 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Tag name - overrides name/nickname:" + +#: mod/crepair.php:173 +msgid "Account URL" +msgstr "Account URL:" + +#: mod/crepair.php:174 +msgid "Friend Request URL" +msgstr "Friend request URL:" + +#: mod/crepair.php:175 +msgid "Friend Confirm URL" +msgstr "Friend confirm URL:" + +#: mod/crepair.php:176 +msgid "Notification Endpoint URL" +msgstr "Notification endpoint URL" + +#: mod/crepair.php:177 +msgid "Poll/Feed URL" +msgstr "Poll/Feed URL:" + +#: mod/crepair.php:178 +msgid "New photo from this URL" +msgstr "New photo from this URL:" + +#: mod/delegate.php:103 +msgid "No potential page delegates located." +msgstr "No potential page delegates found." + +#: mod/delegate.php:134 +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 "Delegates are able to manage all aspects of this account except for key setting features. Please do not delegate your personal account to anybody that you do not trust completely." + +#: mod/delegate.php:135 +msgid "Existing Page Managers" +msgstr "Existing page managers" + +#: mod/delegate.php:137 +msgid "Existing Page Delegates" +msgstr "Existing page delegates" + +#: mod/delegate.php:139 +msgid "Potential Delegates" +msgstr "Potential delegates" + +#: mod/delegate.php:141 mod/tagrm.php:97 +msgid "Remove" +msgstr "Remove" + +#: mod/delegate.php:142 +msgid "Add" +msgstr "Add" + +#: mod/delegate.php:143 +msgid "No entries." +msgstr "No entries." + +#: mod/dfrn_confirm.php:72 mod/profiles.php:23 mod/profiles.php:139 +#: mod/profiles.php:186 mod/profiles.php:622 +msgid "Profile not found." +msgstr "Profile not found." + +#: mod/dfrn_confirm.php:129 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "This may occasionally happen if contact was requested by both persons and it has already been approved." + +#: mod/dfrn_confirm.php:246 +msgid "Response from remote site was not understood." +msgstr "Response from remote site was not understood." + +#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260 +msgid "Unexpected response from remote site: " +msgstr "Unexpected response from remote site: " + +#: mod/dfrn_confirm.php:269 +msgid "Confirmation completed successfully." +msgstr "Confirmation completed successfully." + +#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292 +msgid "Remote site reported: " +msgstr "Remote site reported: " + +#: mod/dfrn_confirm.php:283 +msgid "Temporary failure. Please wait and try again." +msgstr "Temporary failure. Please wait and try again." + +#: mod/dfrn_confirm.php:290 +msgid "Introduction failed or was revoked." +msgstr "Introduction failed or was revoked." + +#: mod/dfrn_confirm.php:420 +msgid "Unable to set contact photo." +msgstr "Unable to set contact photo." + +#: mod/dfrn_confirm.php:561 +#, php-format +msgid "No user record found for '%s' " +msgstr "No user record found for '%s' " + +#: mod/dfrn_confirm.php:571 +msgid "Our site encryption key is apparently messed up." +msgstr "Our site encryption key is apparently messed up." + +#: mod/dfrn_confirm.php:582 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "An empty URL was provided or the URL could not be decrypted by us." + +#: mod/dfrn_confirm.php:604 +msgid "Contact record was not found for you on our site." +msgstr "Contact record was not found for you on our site." + +#: mod/dfrn_confirm.php:618 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "Site public key not available in contact record for URL %s." + +#: mod/dfrn_confirm.php:638 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "The ID provided by your system is a duplicate on our system. It should work if you try again." + +#: mod/dfrn_confirm.php:649 +msgid "Unable to set your contact credentials on our system." +msgstr "Unable to set your contact credentials on our system." + +#: mod/dfrn_confirm.php:711 +msgid "Unable to update your contact profile details on our system" +msgstr "Unable to update your contact profile details on our system" + +#: mod/dfrn_confirm.php:783 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s has joined %2$s" + +#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:539 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "%1$s welcomes %2$s" + +#: mod/directory.php:195 view/theme/vier/theme.php:201 +msgid "Global Directory" +msgstr "Global Directory" + +#: mod/directory.php:197 +msgid "Find on this site" +msgstr "Find on this site" + +#: mod/directory.php:199 +msgid "Results for:" +msgstr "Results for:" + +#: mod/directory.php:201 +msgid "Site Directory" +msgstr "Site directory" + +#: mod/directory.php:208 +msgid "No entries (some entries may be hidden)." +msgstr "No entries (entries may be hidden)." + +#: mod/dirfind.php:39 +#, php-format +msgid "People Search - %s" +msgstr "People search - %s" + +#: mod/dirfind.php:50 +#, php-format +msgid "Forum Search - %s" +msgstr "Forum search - %s" + +#: mod/dirfind.php:247 mod/match.php:112 +msgid "No matches" +msgstr "No matches" + +#: mod/display.php:480 +msgid "Item has been removed." +msgstr "Item has been removed." + +#: mod/editpost.php:19 mod/editpost.php:29 +msgid "Item not found" +msgstr "Item not found" + +#: mod/editpost.php:34 +msgid "Edit post" +msgstr "Edit post" + +#: mod/events.php:96 mod/events.php:98 +msgid "Event can not end before it has started." +msgstr "Event cannot end before it has started." + +#: mod/events.php:105 mod/events.php:107 +msgid "Event title and start time are required." +msgstr "Event title and starting time are required." + +#: mod/events.php:379 +msgid "Create New Event" +msgstr "Create new event" + +#: mod/events.php:484 +msgid "Event details" +msgstr "Event details" + +#: mod/events.php:485 +msgid "Starting date and Title are required." +msgstr "Starting date and title are required." + +#: mod/events.php:486 mod/events.php:487 +msgid "Event Starts:" +msgstr "Event starts:" + +#: mod/events.php:486 mod/events.php:498 mod/profiles.php:712 +msgid "Required" +msgstr "Required" + +#: mod/events.php:488 mod/events.php:504 +msgid "Finish date/time is not known or not relevant" +msgstr "Finish date/time is not known or not relevant" + +#: mod/events.php:490 mod/events.php:491 +msgid "Event Finishes:" +msgstr "Event finishes:" + +#: mod/events.php:492 mod/events.php:505 +msgid "Adjust for viewer timezone" +msgstr "Adjust for viewer's time zone" + +#: mod/events.php:494 +msgid "Description:" +msgstr "Description:" + +#: mod/events.php:498 mod/events.php:500 +msgid "Title:" +msgstr "Title:" + +#: mod/events.php:501 mod/events.php:502 +msgid "Share this event" +msgstr "Share this event" + +#: mod/events.php:531 +msgid "Failed to remove event" +msgstr "Failed to remove event" + +#: mod/events.php:533 +msgid "Event removed" +msgstr "Event removed" + +#: mod/fbrowser.php:134 +msgid "Files" +msgstr "Files" + +#: mod/fetch.php:15 mod/fetch.php:42 mod/fetch.php:51 mod/help.php:56 +#: mod/p.php:19 mod/p.php:46 mod/p.php:55 index.php:301 +msgid "Not Found" +msgstr "Not found" + +#: mod/filer.php:31 +msgid "- select -" +msgstr "- select -" + +#: mod/follow.php:21 mod/dfrn_request.php:893 +msgid "Submit Request" +msgstr "Submit request" + +#: mod/follow.php:32 +msgid "You already added this contact." +msgstr "You already added this contact." + +#: mod/follow.php:41 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "Diaspora support isn't enabled. Contact can't be added." + +#: mod/follow.php:48 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "OStatus support is disabled. Contact can't be added." + +#: mod/follow.php:55 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "The network type couldn't be detected. Contact can't be added." + +#: mod/follow.php:114 mod/dfrn_request.php:879 +msgid "Please answer the following:" +msgstr "Please answer the following:" + +#: mod/follow.php:115 mod/dfrn_request.php:880 +#, php-format +msgid "Does %s know you?" +msgstr "Does %s know you?" + +#: mod/follow.php:116 mod/dfrn_request.php:884 +msgid "Add a personal note:" +msgstr "Add a personal note:" + +#: mod/follow.php:122 mod/dfrn_request.php:890 +msgid "Your Identity Address:" +msgstr "My identity address:" + +#: mod/follow.php:131 mod/notifications.php:257 mod/contacts.php:635 +msgid "Profile URL" +msgstr "Profile URL:" + +#: mod/follow.php:188 +msgid "Contact added" +msgstr "Contact added" + +#: mod/friendica.php:69 +msgid "This is Friendica, version" +msgstr "This is Friendica, version" + +#: mod/friendica.php:70 +msgid "running at web location" +msgstr "running at web location" + +#: mod/friendica.php:74 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Please visit Friendica.com to learn more about the Friendica project." + +#: mod/friendica.php:78 +msgid "Bug reports and issues: please visit" +msgstr "Bug reports and issues: please visit" + +#: mod/friendica.php:78 +msgid "the bugtracker at github" +msgstr "the bugtracker at github" + +#: mod/friendica.php:81 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com" + +#: mod/friendica.php:95 +msgid "Installed plugins/addons/apps:" +msgstr "Installed plugins/addons/apps:" + +#: mod/friendica.php:109 +msgid "No installed plugins/addons/apps" +msgstr "No installed plugins/addons/apps" + +#: mod/friendica.php:114 +msgid "On this server the following remote servers are blocked." +msgstr "On this server the following remote servers are blocked." + +#: mod/friendica.php:115 mod/admin.php:281 mod/admin.php:299 +msgid "Reason for the block" +msgstr "Reason for the block" + +#: mod/fsuggest.php:65 +msgid "Friend suggestion sent." +msgstr "Friend suggestion sent" + +#: mod/fsuggest.php:99 +msgid "Suggest Friends" +msgstr "Suggest friends" + +#: mod/fsuggest.php:101 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Suggest a friend for %s" + +#: mod/group.php:30 +msgid "Group created." +msgstr "Group created." + +#: mod/group.php:36 +msgid "Could not create group." +msgstr "Could not create group." + +#: mod/group.php:50 mod/group.php:155 +msgid "Group not found." +msgstr "Group not found." + +#: mod/group.php:64 +msgid "Group name changed." +msgstr "Group name changed." + +#: mod/group.php:77 mod/profperm.php:22 index.php:409 +msgid "Permission denied" +msgstr "Permission denied" + +#: mod/group.php:94 +msgid "Save Group" +msgstr "Save group" + +#: mod/group.php:99 +msgid "Create a group of contacts/friends." +msgstr "Create a group of contacts/friends." + +#: mod/group.php:124 +msgid "Group removed." +msgstr "Group removed." + +#: mod/group.php:126 +msgid "Unable to remove group." +msgstr "Unable to remove group." + +#: mod/group.php:190 +msgid "Delete Group" +msgstr "Delete group" + +#: mod/group.php:196 +msgid "Group Editor" +msgstr "Group Editor" + +#: mod/group.php:201 +msgid "Edit Group Name" +msgstr "Edit group name" + +#: mod/group.php:211 +msgid "Members" +msgstr "Members" + +#: mod/group.php:213 mod/contacts.php:703 +msgid "All Contacts" +msgstr "All contacts" + +#: mod/group.php:227 +msgid "Remove Contact" +msgstr "Remove contact" + +#: mod/group.php:251 +msgid "Add Contact" +msgstr "Add contact" + +#: mod/group.php:263 mod/profperm.php:109 +msgid "Click on a contact to add or remove." +msgstr "Click on a contact to add or remove." + +#: mod/hcard.php:13 +msgid "No profile" +msgstr "No profile" + +#: mod/help.php:44 +msgid "Help:" +msgstr "Help:" + +#: mod/help.php:59 index.php:304 +msgid "Page not found." +msgstr "Page not found" + +#: mod/home.php:41 +#, php-format +msgid "Welcome to %s" +msgstr "Welcome to %s" + +#: mod/install.php:108 +msgid "Friendica Communications Server - Setup" +msgstr "Friendica Communications Server - Setup" + +#: mod/install.php:114 +msgid "Could not connect to database." +msgstr "Could not connect to database." + +#: mod/install.php:118 +msgid "Could not create table." +msgstr "Could not create table." + +#: mod/install.php:124 +msgid "Your Friendica site database has been installed." +msgstr "Your Friendica site database has been installed." + +#: mod/install.php:129 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "You may need to import the file \"database.sql\" manually using phpmyadmin or mysql." + +#: mod/install.php:130 mod/install.php:202 mod/install.php:549 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Please see the file \"INSTALL.txt\"." + +#: mod/install.php:142 +msgid "Database already in use." +msgstr "Database already in use." + +#: mod/install.php:199 +msgid "System check" +msgstr "System check" + +#: mod/install.php:204 +msgid "Check again" +msgstr "Check again" + +#: mod/install.php:223 +msgid "Database connection" +msgstr "Database connection" + +#: mod/install.php:224 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "In order to install Friendica we need to know how to connect to your database." + +#: mod/install.php:225 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Please contact your hosting provider or site administrator if you have questions about these settings." + +#: mod/install.php:226 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "The database you specify below should already exist. If it does not, please create it before continuing." + +#: mod/install.php:230 +msgid "Database Server Name" +msgstr "Database server name" + +#: mod/install.php:231 +msgid "Database Login Name" +msgstr "Database login name" + +#: mod/install.php:232 +msgid "Database Login Password" +msgstr "Database login password" + +#: mod/install.php:232 +msgid "For security reasons the password must not be empty" +msgstr "For security reasons the password must not be empty" + +#: mod/install.php:233 +msgid "Database Name" +msgstr "Database name" + +#: mod/install.php:234 mod/install.php:275 +msgid "Site administrator email address" +msgstr "Site administrator email address" + +#: mod/install.php:234 mod/install.php:275 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Your account email address must match this in order to use the web admin panel." + +#: mod/install.php:238 mod/install.php:278 +msgid "Please select a default timezone for your website" +msgstr "Please select a default time zone for your website" + +#: mod/install.php:265 +msgid "Site settings" +msgstr "Site settings" + +#: mod/install.php:279 +msgid "System Language:" +msgstr "System language:" + +#: mod/install.php:279 +msgid "" +"Set the default language for your Friendica installation interface and to " +"send emails." +msgstr "Set the default language for your Friendica installation interface and email communication." + +#: mod/install.php:319 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Could not find a command line version of PHP in the web server PATH." + +#: mod/install.php:320 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run the background processing. See 'Setup the poller'" +msgstr "If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See 'Setup the poller'" + +#: mod/install.php:324 +msgid "PHP executable path" +msgstr "PHP executable path" + +#: mod/install.php:324 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Enter full path to php executable. You can leave this blank to continue the installation." + +#: mod/install.php:329 +msgid "Command line PHP" +msgstr "Command line PHP" + +#: mod/install.php:338 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "PHP executable is not a php cli binary; it could possibly be a cgi-fgci version." + +#: mod/install.php:339 +msgid "Found PHP version: " +msgstr "Found PHP version: " + +#: mod/install.php:341 +msgid "PHP cli binary" +msgstr "PHP cli binary" + +#: mod/install.php:352 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "The command line version of PHP on your system does not have \"register_argc_argv\" enabled." + +#: mod/install.php:353 +msgid "This is required for message delivery to work." +msgstr "This is required for message delivery to work." + +#: mod/install.php:355 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: mod/install.php:378 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys" + +#: mod/install.php:379 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "If running under Windows OS, please see \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: mod/install.php:381 +msgid "Generate encryption keys" +msgstr "Generate encryption keys" + +#: mod/install.php:388 +msgid "libCurl PHP module" +msgstr "libCurl PHP module" + +#: mod/install.php:389 +msgid "GD graphics PHP module" +msgstr "GD graphics PHP module" + +#: mod/install.php:390 +msgid "OpenSSL PHP module" +msgstr "OpenSSL PHP module" + +#: mod/install.php:391 +msgid "PDO or MySQLi PHP module" +msgstr "PDO or MySQLi PHP module" + +#: mod/install.php:392 +msgid "mb_string PHP module" +msgstr "mb_string PHP module" + +#: mod/install.php:393 +msgid "XML PHP module" +msgstr "XML PHP module" + +#: mod/install.php:394 +msgid "iconv module" +msgstr "iconv module" + +#: mod/install.php:398 mod/install.php:400 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite module" + +#: mod/install.php:398 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Error: Apache web server mod-rewrite module is required but not installed." + +#: mod/install.php:406 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Error: libCURL PHP module required but not installed." + +#: mod/install.php:410 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Error: GD graphics PHP module with JPEG support required but not installed." + +#: mod/install.php:414 +msgid "Error: openssl PHP module required but not installed." +msgstr "Error: openssl PHP module required but not installed." + +#: mod/install.php:418 +msgid "Error: PDO or MySQLi PHP module required but not installed." +msgstr "Error: PDO or MySQLi PHP module required but not installed." + +#: mod/install.php:422 +msgid "Error: The MySQL driver for PDO is not installed." +msgstr "Error: MySQL driver for PDO is not installed." + +#: mod/install.php:426 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Error: mb_string PHP module required but not installed." + +#: mod/install.php:430 +msgid "Error: iconv PHP module required but not installed." +msgstr "Error: iconv PHP module required but not installed." + +#: mod/install.php:440 +msgid "Error, XML PHP module required but not installed." +msgstr "Error, XML PHP module required but not installed." + +#: mod/install.php:452 +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-level directory of your web server, but it is unable to do so." + +#: mod/install.php:453 +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 issue, as the web server may not be able to write files in your directory - even if you can." + +#: mod/install.php:454 +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 "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top-level directory." + +#: mod/install.php:455 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "Alternatively, you may skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions." + +#: mod/install.php:458 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php is writeable" + +#: mod/install.php:468 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering." + +#: mod/install.php:469 +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 "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 directory." + +#: mod/install.php:470 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Please ensure the user (e.g. www-data) that your web server runs as has write access to this directory." + +#: mod/install.php:471 +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: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains." + +#: mod/install.php:474 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 is writeable" + +#: mod/install.php:490 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "URL rewrite in .htaccess is not working. Check your server configuration." + +#: mod/install.php:492 +msgid "Url rewrite is working" +msgstr "URL rewrite is working" + +#: mod/install.php:511 +msgid "ImageMagick PHP extension is not installed" +msgstr "ImageMagick PHP extension is not installed" + +#: mod/install.php:513 +msgid "ImageMagick PHP extension is installed" +msgstr "ImageMagick PHP extension is installed" + +#: mod/install.php:515 +msgid "ImageMagick supports GIF" +msgstr "ImageMagick supports GIF" + +#: mod/install.php:522 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root." + +#: mod/install.php:547 +msgid "

What next

" +msgstr "

What next

" + +#: mod/install.php:548 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." + +#: mod/invite.php:30 +msgid "Total invitation limit exceeded." +msgstr "Total invitation limit exceeded" + +#: mod/invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Not a valid email address" + +#: mod/invite.php:78 +msgid "Please join us on Friendica" +msgstr "Please join us on Friendica." + +#: mod/invite.php:89 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Invitation limit is exceeded. Please contact your site administrator." + +#: mod/invite.php:93 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Message delivery failed" + +#: mod/invite.php:97 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d message sent." +msgstr[1] "%d messages sent." + +#: mod/invite.php:116 +msgid "You have no more invitations available" +msgstr "You have no more invitations available." + +#: mod/invite.php:124 +#, 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 "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." + +#: mod/invite.php:126 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "To accept this invitation, please register at %s or any other public Friendica website." + +#: mod/invite.php:127 +#, 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 sites are all inter-connect to create a large 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." + +#: mod/invite.php:130 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Our apologies. This system is not currently configured to connect with other public sites or invite members." + +#: mod/invite.php:136 +msgid "Send invitations" +msgstr "Send invitations" + +#: mod/invite.php:137 +msgid "Enter email addresses, one per line:" +msgstr "Enter email addresses, one per line:" + +#: mod/invite.php:138 mod/message.php:334 mod/message.php:517 +#: mod/wallmessage.php:137 +msgid "Your message:" +msgstr "Your message:" + +#: mod/invite.php:139 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web." + +#: mod/invite.php:141 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "You will need to supply this invitation code: $invite_code" + +#: mod/invite.php:141 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Once you have registered, please connect with me via my profile page at:" + +#: mod/invite.php:143 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" +msgstr "For more information about the Friendica project and why we feel it is important, please visit http://friendica.com" + +#: mod/localtime.php:25 +msgid "Time Conversion" +msgstr "Time conversion" + +#: mod/localtime.php:27 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica provides this service for sharing events with other networks and friends in unknown time zones." + +#: mod/localtime.php:31 +#, php-format +msgid "UTC time: %s" +msgstr "UTC time: %s" + +#: mod/localtime.php:34 +#, php-format +msgid "Current timezone: %s" +msgstr "Current time zone: %s" + +#: mod/localtime.php:37 +#, php-format +msgid "Converted localtime: %s" +msgstr "Converted local time: %s" + +#: mod/localtime.php:42 +msgid "Please select your timezone:" +msgstr "Please select your time zone:" + +#: mod/lockview.php:33 mod/lockview.php:41 +msgid "Remote privacy information not available." +msgstr "Remote privacy information not available." + +#: mod/lockview.php:50 +msgid "Visible to:" +msgstr "Visible to:" + +#: mod/lostpass.php:21 +msgid "No valid account found." +msgstr "No valid account found." + +#: mod/lostpass.php:37 +msgid "Password reset request issued. Check your email." +msgstr "Password reset request issued. Please check your email." + +#: mod/lostpass.php:43 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" +"\t\tpassword. In order to confirm this request, please select the verification link\n" +"\t\tbelow or paste it into your web browser address bar.\n" +"\n" +"\t\tIf you did NOT request this change, please DO NOT follow the link\n" +"\t\tprovided and ignore and/or delete this email.\n" +"\n" +"\t\tYour password will not be changed unless we can verify that you\n" +"\t\tissued this request." +msgstr "\n\t\tDear %1$s,\n\t\t\tA request was issued 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/delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request." + +#: mod/lostpass.php:54 +#, php-format +msgid "" +"\n" +"\t\tFollow this link to verify your identity:\n" +"\n" +"\t\t%1$s\n" +"\n" +"\t\tYou will then receive a follow-up message containing the new password.\n" +"\t\tYou may change that password from your account settings page after logging in.\n" +"\n" +"\t\tThe login details are as follows:\n" +"\n" +"\t\tSite Location:\t%2$s\n" +"\t\tLogin Name:\t%3$s" +msgstr "\n\t\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" + +#: mod/lostpass.php:73 +#, php-format +msgid "Password reset requested at %s" +msgstr "Password reset requested at %s" + +#: mod/lostpass.php:93 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Request could not be verified. (You may have previously submitted it.) Password reset failed." + +#: mod/lostpass.php:112 boot.php:877 +msgid "Password Reset" +msgstr "Password reset" + +#: mod/lostpass.php:113 +msgid "Your password has been reset as requested." +msgstr "Your password has been reset as requested." + +#: mod/lostpass.php:114 +msgid "Your new password is" +msgstr "Your new password is" + +#: mod/lostpass.php:115 +msgid "Save or copy your new password - and then" +msgstr "Save or copy your new password - and then" + +#: mod/lostpass.php:116 +msgid "click here to login" +msgstr "click here to login" + +#: mod/lostpass.php:117 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Your password may be changed from the Settings page after successful login." + +#: mod/lostpass.php:127 +#, php-format +msgid "" +"\n" +"\t\t\t\tDear %1$s,\n" +"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" +"\t\t\t\tinformation for your records (or change your password immediately to\n" +"\t\t\t\tsomething that you will remember).\n" +"\t\t\t" +msgstr "\n\t\t\t\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" + +#: mod/lostpass.php:133 +#, php-format +msgid "" +"\n" +"\t\t\t\tYour login details are as follows:\n" +"\n" +"\t\t\t\tSite Location:\t%1$s\n" +"\t\t\t\tLogin Name:\t%2$s\n" +"\t\t\t\tPassword:\t%3$s\n" +"\n" +"\t\t\t\tYou may change that password from your account settings page after logging in.\n" +"\t\t\t" +msgstr "\n\t\t\t\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" + +#: mod/lostpass.php:149 +#, php-format +msgid "Your password has been changed at %s" +msgstr "Your password has been changed at %s" + +#: mod/lostpass.php:161 +msgid "Forgot your Password?" +msgstr "Reset My Password" + +#: mod/lostpass.php:162 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Enter email address or nickname to reset your password. You will receive further instruction via email." + +#: mod/lostpass.php:163 boot.php:865 +msgid "Nickname or Email: " +msgstr "Nickname or email: " + +#: mod/lostpass.php:164 +msgid "Reset" +msgstr "Reset" + +#: mod/maintenance.php:21 +msgid "System down for maintenance" +msgstr "Sorry, the system is currently down for maintenance." + +#: mod/manage.php:152 +msgid "Manage Identities and/or Pages" +msgstr "Manage Identities and Pages" + +#: mod/manage.php:153 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Accounts that I manage or own." + +#: mod/manage.php:154 +msgid "Select an identity to manage: " +msgstr "Select identity:" + +#: mod/match.php:38 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "No keywords to match. Please add keywords to your default profile." + +#: mod/match.php:91 +msgid "is interested in:" +msgstr "is interested in:" + +#: mod/match.php:105 +msgid "Profile Match" +msgstr "Profile Match" + +#: mod/message.php:62 mod/wallmessage.php:52 +msgid "No recipient selected." +msgstr "No recipient selected." + +#: mod/message.php:66 +msgid "Unable to locate contact information." +msgstr "Unable to locate contact information." + +#: mod/message.php:69 mod/wallmessage.php:58 +msgid "Message could not be sent." +msgstr "Message could not be sent." + +#: mod/message.php:72 mod/wallmessage.php:61 +msgid "Message collection failure." +msgstr "Message collection failure." + +#: mod/message.php:75 mod/wallmessage.php:64 +msgid "Message sent." +msgstr "Message sent." + +#: mod/message.php:206 +msgid "Do you really want to delete this message?" +msgstr "Do you really want to delete this message?" + +#: mod/message.php:226 +msgid "Message deleted." +msgstr "Message deleted." + +#: mod/message.php:257 +msgid "Conversation removed." +msgstr "Conversation removed." + +#: mod/message.php:324 mod/wallmessage.php:128 +msgid "Send Private Message" +msgstr "Send private message" + +#: mod/message.php:325 mod/message.php:512 mod/wallmessage.php:130 +msgid "To:" +msgstr "To:" + +#: mod/message.php:330 mod/message.php:514 mod/wallmessage.php:131 +msgid "Subject:" +msgstr "Subject:" + +#: mod/message.php:366 +msgid "No messages." +msgstr "No messages." + +#: mod/message.php:405 +msgid "Message not available." +msgstr "Message not available." + +#: mod/message.php:479 +msgid "Delete message" +msgstr "Delete message" + +#: mod/message.php:505 mod/message.php:593 +msgid "Delete conversation" +msgstr "Delete conversation" + +#: mod/message.php:507 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "No secure communications available. You may be able to respond from the sender's profile page." + +#: mod/message.php:511 +msgid "Send Reply" +msgstr "Send reply" + +#: mod/message.php:563 +#, php-format +msgid "Unknown sender - %s" +msgstr "Unknown sender - %s" + +#: mod/message.php:565 +#, php-format +msgid "You and %s" +msgstr "Me and %s" + +#: mod/message.php:567 +#, php-format +msgid "%s and You" +msgstr "%s and me" + +#: mod/message.php:596 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" + +#: mod/message.php:599 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d message" +msgstr[1] "%d messages" + +#: mod/mood.php:135 +msgid "Mood" +msgstr "Mood" + +#: mod/mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Set your current mood and tell your friends" + +#: mod/network.php:154 mod/search.php:230 mod/contacts.php:808 +#, php-format +msgid "Results for: %s" +msgstr "Results for: %s" + +#: mod/network.php:200 mod/search.php:28 +msgid "Remove term" +msgstr "Remove term" + +#: mod/network.php:407 +#, php-format +msgid "" +"Warning: This group contains %s member from a network that doesn't allow non" +" public messages." +msgid_plural "" +"Warning: This group contains %s members from a network that doesn't allow " +"non public messages." +msgstr[0] "Warning: This group contains %s member from a network that doesn't allow non public messages." +msgstr[1] "Warning: This group contains %s members from a network that doesn't allow non public messages." + +#: mod/network.php:410 +msgid "Messages in this group won't be send to these receivers." +msgstr "Messages in this group won't be send to these receivers." + +#: mod/network.php:538 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Private messages to this person are at risk of public disclosure." + +#: mod/network.php:543 +msgid "Invalid contact." +msgstr "Invalid contact." + +#: mod/network.php:816 +msgid "Commented Order" +msgstr "Commented last" + +#: mod/network.php:819 +msgid "Sort by Comment Date" +msgstr "Sort by comment date" + +#: mod/network.php:824 +msgid "Posted Order" +msgstr "Posted last" + +#: mod/network.php:827 +msgid "Sort by Post Date" +msgstr "Sort by post date" + +#: mod/network.php:838 +msgid "Posts that mention or involve you" +msgstr "Posts mentioning or involving me" + +#: mod/network.php:846 +msgid "New" +msgstr "New" + +#: mod/network.php:849 +msgid "Activity Stream - by date" +msgstr "Activity Stream - by date" + +#: mod/network.php:857 +msgid "Shared Links" +msgstr "Shared links" + +#: mod/network.php:860 +msgid "Interesting Links" +msgstr "Interesting links" + +#: mod/network.php:868 +msgid "Starred" +msgstr "Starred" + +#: mod/network.php:871 +msgid "Favourite Posts" +msgstr "My favourite posts" + +#: mod/newmember.php:7 +msgid "Welcome to Friendica" +msgstr "Welcome to Friendica" + +#: mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "New Member Checklist" + +#: mod/newmember.php:10 +msgid "" +"We would like to offer some tips and links to help make your experience " +"enjoyable. Click any item to visit the relevant page. A link to this page " +"will be visible from your home page for two weeks after your initial " +"registration and then will quietly disappear." +msgstr "We 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." + +#: mod/newmember.php:11 +msgid "Getting Started" +msgstr "Getting started" + +#: mod/newmember.php:13 +msgid "Friendica Walk-Through" +msgstr "Friendica walk-through" + +#: mod/newmember.php:13 +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 "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." + +#: mod/newmember.php:17 +msgid "Go to Your Settings" +msgstr "Go to your settings" + +#: mod/newmember.php:17 +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 "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." + +#: mod/newmember.php:18 +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 "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." + +#: mod/newmember.php:22 mod/profile_photo.php:255 mod/profiles.php:703 +msgid "Upload Profile Photo" +msgstr "Upload profile photo" + +#: mod/newmember.php:22 +msgid "" +"Upload a profile photo if you have not done so already. Studies have shown " +"that people with real photos of themselves are ten times more likely to make" +" friends than people who do not." +msgstr "Upload 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." + +#: mod/newmember.php:23 +msgid "Edit Your Profile" +msgstr "Edit your profile" + +#: mod/newmember.php:23 +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 "Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors." + +#: mod/newmember.php:24 +msgid "Profile Keywords" +msgstr "Profile keywords" + +#: mod/newmember.php:24 +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 "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." + +#: mod/newmember.php:26 +msgid "Connecting" +msgstr "Connecting" + +#: mod/newmember.php:32 +msgid "Importing Emails" +msgstr "Importing emails" + +#: mod/newmember.php:32 +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 "Enter your email access information on your Connector Settings if you wish to import and interact with friends or mailing lists from your email INBOX" + +#: mod/newmember.php:35 +msgid "Go to Your Contacts Page" +msgstr "Go to your contacts page" + +#: mod/newmember.php:35 +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 "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." + +#: mod/newmember.php:36 +msgid "Go to Your Site's Directory" +msgstr "Go to your site's directory" + +#: mod/newmember.php:36 +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 "The directory 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 when requested." + +#: mod/newmember.php:37 +msgid "Finding New People" +msgstr "Finding new people" + +#: mod/newmember.php:37 +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 "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." + +#: mod/newmember.php:41 +msgid "Group Your Contacts" +msgstr "Group your contacts" + +#: mod/newmember.php:41 +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 "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." + +#: mod/newmember.php:44 +msgid "Why Aren't My Posts Public?" +msgstr "Why aren't my posts public?" + +#: mod/newmember.php:44 +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 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." + +#: mod/newmember.php:48 +msgid "Getting Help" +msgstr "Getting help" + +#: mod/newmember.php:50 +msgid "Go to the Help Section" +msgstr "Go to the help section" + +#: mod/newmember.php:50 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Our help pages may be consulted for detail on other program features and resources." + +#: mod/nogroup.php:45 mod/viewcontacts.php:105 mod/contacts.php:597 +#: mod/contacts.php:941 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visit %s's profile [%s]" + +#: mod/nogroup.php:46 mod/contacts.php:942 +msgid "Edit contact" +msgstr "Edit contact" + +#: mod/nogroup.php:67 +msgid "Contacts who are not members of a group" +msgstr "Contacts who are not members of a group" + +#: mod/notifications.php:37 +msgid "Invalid request identifier." +msgstr "Invalid request identifier." + +#: mod/notifications.php:46 mod/notifications.php:182 +#: mod/notifications.php:229 +msgid "Discard" +msgstr "Discard" + +#: mod/notifications.php:62 mod/notifications.php:181 +#: mod/notifications.php:265 mod/contacts.php:617 mod/contacts.php:817 +#: mod/contacts.php:1002 +msgid "Ignore" +msgstr "Ignore" + +#: mod/notifications.php:107 +msgid "Network Notifications" +msgstr "Network notifications" + +#: mod/notifications.php:113 mod/notify.php:72 +msgid "System Notifications" +msgstr "System notifications" + +#: mod/notifications.php:119 +msgid "Personal Notifications" +msgstr "Personal notifications" + +#: mod/notifications.php:125 +msgid "Home Notifications" +msgstr "Home notifications" + +#: mod/notifications.php:154 +msgid "Show Ignored Requests" +msgstr "Show ignored requests." + +#: mod/notifications.php:154 +msgid "Hide Ignored Requests" +msgstr "Hide ignored requests" + +#: mod/notifications.php:166 mod/notifications.php:236 +msgid "Notification type: " +msgstr "Notification type: " + +#: mod/notifications.php:169 +#, php-format +msgid "suggested by %s" +msgstr "suggested by %s" + +#: mod/notifications.php:174 mod/notifications.php:253 mod/contacts.php:624 +msgid "Hide this contact from others" +msgstr "Hide this contact from others" + +#: mod/notifications.php:175 mod/notifications.php:254 +msgid "Post a new friend activity" +msgstr "Post a new friend activity" + +#: mod/notifications.php:175 mod/notifications.php:254 +msgid "if applicable" +msgstr "if applicable" + +#: mod/notifications.php:178 mod/notifications.php:263 mod/admin.php:1512 +msgid "Approve" +msgstr "Approve" + +#: mod/notifications.php:197 +msgid "Claims to be known to you: " +msgstr "Says they know me:" + +#: mod/notifications.php:198 +msgid "yes" +msgstr "yes" + +#: mod/notifications.php:198 +msgid "no" +msgstr "no" + +#: mod/notifications.php:199 mod/notifications.php:204 +msgid "Shall your connection be bidirectional or not?" +msgstr "Shall your connection be in both directions or not?" + +#: mod/notifications.php:200 mod/notifications.php:205 +#, php-format +msgid "" +"Accepting %s as a friend allows %s to subscribe to your posts, and you will " +"also receive updates from them in your news feed." +msgstr "Accepting %s as a friend allows %s to subscribe to your posts; you will also receive updates from them in your news feed." + +#: mod/notifications.php:201 +#, php-format +msgid "" +"Accepting %s as a subscriber allows them to subscribe to your posts, but you" +" will not receive updates from them in your news feed." +msgstr "Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed." + +#: mod/notifications.php:206 +#, php-format +msgid "" +"Accepting %s as a sharer allows them to subscribe to your posts, but you " +"will not receive updates from them in your news feed." +msgstr "Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed." + +#: mod/notifications.php:217 +msgid "Friend" +msgstr "Friend" + +#: mod/notifications.php:218 +msgid "Sharer" +msgstr "Sharer" + +#: mod/notifications.php:218 +msgid "Subscriber" +msgstr "Subscriber" + +#: mod/notifications.php:274 +msgid "No introductions." +msgstr "No introductions." + +#: mod/notifications.php:315 +msgid "Show unread" +msgstr "Show unread" + +#: mod/notifications.php:315 +msgid "Show all" +msgstr "Show all" + +#: mod/notifications.php:321 +#, php-format +msgid "No more %s notifications." +msgstr "No more %s notifications." + +#: mod/notify.php:68 +msgid "No more system notifications." +msgstr "No more system notifications." + +#: mod/oexchange.php:24 +msgid "Post successful." +msgstr "Post successful." + +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID protocol error. No ID returned." + +#: mod/openid.php:60 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "Account not found and OpenID registration is not permitted on this site." + +#: mod/ostatus_subscribe.php:16 +msgid "Subscribing to OStatus contacts" +msgstr "Subscribing to OStatus contacts" + +#: mod/ostatus_subscribe.php:27 +msgid "No contact provided." +msgstr "No contact provided." + +#: mod/ostatus_subscribe.php:33 +msgid "Couldn't fetch information for contact." +msgstr "Couldn't fetch information for contact." + +#: mod/ostatus_subscribe.php:42 +msgid "Couldn't fetch friends for contact." +msgstr "Couldn't fetch friends for contact." + +#: mod/ostatus_subscribe.php:56 mod/repair_ostatus.php:46 +msgid "Done" +msgstr "Done" + +#: mod/ostatus_subscribe.php:70 +msgid "success" +msgstr "success" + +#: mod/ostatus_subscribe.php:72 +msgid "failed" +msgstr "failed" + +#: mod/ostatus_subscribe.php:80 mod/repair_ostatus.php:52 +msgid "Keep this window open until done." +msgstr "Keep this window open until done." + +#: mod/p.php:12 +msgid "Not Extended" +msgstr "Not extended" + +#: mod/photos.php:96 mod/photos.php:1902 +msgid "Recent Photos" +msgstr "Recent photos" + +#: mod/photos.php:99 mod/photos.php:1330 mod/photos.php:1904 +msgid "Upload New Photos" +msgstr "Upload new photos" + +#: mod/photos.php:114 mod/settings.php:38 +msgid "everybody" +msgstr "everybody" + +#: mod/photos.php:178 +msgid "Contact information unavailable" +msgstr "Contact information unavailable" + +#: mod/photos.php:199 +msgid "Album not found." +msgstr "Album not found." + +#: mod/photos.php:232 mod/photos.php:244 mod/photos.php:1274 +msgid "Delete Album" +msgstr "Delete album" + +#: mod/photos.php:242 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Do you really want to delete this photo album and all its photos?" + +#: mod/photos.php:325 mod/photos.php:336 mod/photos.php:1600 +msgid "Delete Photo" +msgstr "Delete photo" + +#: mod/photos.php:334 +msgid "Do you really want to delete this photo?" +msgstr "Do you really want to delete this photo?" + +#: mod/photos.php:715 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s was tagged in %2$s by %3$s" + +#: mod/photos.php:715 +msgid "a photo" +msgstr "a photo" + +#: mod/photos.php:815 mod/wall_upload.php:181 mod/profile_photo.php:155 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "Image exceeds size limit of %s" + +#: mod/photos.php:823 +msgid "Image file is empty." +msgstr "Image file is empty." + +#: mod/photos.php:856 mod/wall_upload.php:218 mod/profile_photo.php:164 +msgid "Unable to process image." +msgstr "Unable to process image." + +#: mod/photos.php:885 mod/wall_upload.php:257 mod/profile_photo.php:314 +msgid "Image upload failed." +msgstr "Image upload failed." + +#: mod/photos.php:990 +msgid "No photos selected" +msgstr "No photos selected" + +#: mod/photos.php:1093 mod/videos.php:311 +msgid "Access to this item is restricted." +msgstr "Access to this item is restricted." + +#: mod/photos.php:1153 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." + +#: mod/photos.php:1190 +msgid "Upload Photos" +msgstr "Upload photos" + +#: mod/photos.php:1194 mod/photos.php:1269 +msgid "New album name: " +msgstr "New album name: " + +#: mod/photos.php:1195 +msgid "or existing album name: " +msgstr "or existing album name: " + +#: mod/photos.php:1196 +msgid "Do not show a status post for this upload" +msgstr "Do not show a status post for this upload" + +#: mod/photos.php:1207 mod/photos.php:1604 mod/settings.php:1308 +msgid "Show to Groups" +msgstr "Show to groups" + +#: mod/photos.php:1208 mod/photos.php:1605 mod/settings.php:1309 +msgid "Show to Contacts" +msgstr "Show to contacts" + +#: mod/photos.php:1209 +msgid "Private Photo" +msgstr "Private photo" + +#: mod/photos.php:1210 +msgid "Public Photo" +msgstr "Public photo" + +#: mod/photos.php:1280 +msgid "Edit Album" +msgstr "Edit album" + +#: mod/photos.php:1285 +msgid "Show Newest First" +msgstr "Show newest first" + +#: mod/photos.php:1287 +msgid "Show Oldest First" +msgstr "Show oldest first" + +#: mod/photos.php:1316 mod/photos.php:1887 +msgid "View Photo" +msgstr "View photo" + +#: mod/photos.php:1361 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permission denied. Access to this item may be restricted." + +#: mod/photos.php:1363 +msgid "Photo not available" +msgstr "Photo not available" + +#: mod/photos.php:1424 +msgid "View photo" +msgstr "View photo" + +#: mod/photos.php:1424 +msgid "Edit photo" +msgstr "Edit photo" + +#: mod/photos.php:1425 +msgid "Use as profile photo" +msgstr "Use as profile photo" + +#: mod/photos.php:1450 +msgid "View Full Size" +msgstr "View full size" + +#: mod/photos.php:1540 +msgid "Tags: " +msgstr "Tags: " + +#: mod/photos.php:1543 +msgid "[Remove any tag]" +msgstr "[Remove any tag]" + +#: mod/photos.php:1586 +msgid "New album name" +msgstr "New album name" + +#: mod/photos.php:1587 +msgid "Caption" +msgstr "Caption" + +#: mod/photos.php:1588 +msgid "Add a Tag" +msgstr "Add Tag" + +#: mod/photos.php:1588 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Example: @bob, @jojo@example.com, #California, #camping" + +#: mod/photos.php:1589 +msgid "Do not rotate" +msgstr "Do not rotate" + +#: mod/photos.php:1590 +msgid "Rotate CW (right)" +msgstr "Rotate right (CW)" + +#: mod/photos.php:1591 +msgid "Rotate CCW (left)" +msgstr "Rotate left (CCW)" + +#: mod/photos.php:1606 +msgid "Private photo" +msgstr "Private photo" + +#: mod/photos.php:1607 +msgid "Public photo" +msgstr "Public photo" + +#: mod/photos.php:1816 +msgid "Map" +msgstr "Map" + +#: mod/photos.php:1893 mod/videos.php:395 +msgid "View Album" +msgstr "View album" + +#: mod/ping.php:273 +msgid "{0} wants to be your friend" +msgstr "{0} wants to be your friend" + +#: mod/ping.php:288 +msgid "{0} sent you a message" +msgstr "{0} sent you a message" + +#: mod/ping.php:303 +msgid "{0} requested registration" +msgstr "{0} requested registration" + +#: mod/poke.php:197 +msgid "Poke/Prod" +msgstr "Poke/Prod" + +#: mod/poke.php:198 +msgid "poke, prod or do other things to somebody" +msgstr "Poke, prod or do other things to somebody" + +#: mod/poke.php:199 +msgid "Recipient" +msgstr "Recipient:" + +#: mod/poke.php:200 +msgid "Choose what you wish to do to recipient" +msgstr "Choose what you wish to do:" + +#: mod/poke.php:203 +msgid "Make this post private" +msgstr "Make this post private" + +#: mod/profile.php:176 +msgid "Tips for New Members" +msgstr "Tips for New Members" + +#: mod/profperm.php:28 mod/profperm.php:59 +msgid "Invalid profile identifier." +msgstr "Invalid profile identifier." + +#: mod/profperm.php:105 +msgid "Profile Visibility Editor" +msgstr "Profile Visibility Editor" + +#: mod/profperm.php:118 +msgid "Visible To" +msgstr "Visible to" + +#: mod/profperm.php:134 +msgid "All Contacts (with secure profile access)" +msgstr "All contacts with secure profile access" + +#: mod/register.php:95 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Registration successful. Please check your email for further instructions." + +#: mod/register.php:100 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
login: %s
" +"password: %s

You can change your password after login." +msgstr "Failed to send email message. Here your account details:
login: %s
password: %s

You can change your password after login." + +#: mod/register.php:107 +msgid "Registration successful." +msgstr "Registration successful." + +#: mod/register.php:113 +msgid "Your registration can not be processed." +msgstr "Your registration cannot be processed." + +#: mod/register.php:162 +msgid "Your registration is pending approval by the site owner." +msgstr "Your registration is pending approval by the site administrator." + +#: mod/register.php:200 mod/uimport.php:53 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "This site has exceeded the number of allowed daily account registrations. Please try again tomorrow." + +#: mod/register.php:228 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'." + +#: mod/register.php:229 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items." + +#: mod/register.php:230 +msgid "Your OpenID (optional): " +msgstr "Your OpenID (optional): " + +#: mod/register.php:244 +msgid "Include your profile in member directory?" +msgstr "Include your profile in member directory?" + +#: mod/register.php:269 +msgid "Note for the admin" +msgstr "Note for the admin" + +#: mod/register.php:269 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "Leave a message for the admin, why you want to join this node." + +#: mod/register.php:270 +msgid "Membership on this site is by invitation only." +msgstr "Membership on this site is by invitation only." + +#: mod/register.php:271 +msgid "Your invitation ID: " +msgstr "Your invitation ID: " + +#: mod/register.php:274 mod/admin.php:1062 +msgid "Registration" +msgstr "Registration" + +#: mod/register.php:282 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "Your full name: " + +#: mod/register.php:283 +msgid "Your Email Address: " +msgstr "Your email address: " + +#: mod/register.php:285 mod/settings.php:1279 +msgid "New Password:" +msgstr "New password:" + +#: mod/register.php:285 +msgid "Leave empty for an auto generated password." +msgstr "Leave empty for an auto generated password." + +#: mod/register.php:286 mod/settings.php:1280 +msgid "Confirm:" +msgstr "Confirm new password:" + +#: mod/register.php:287 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Choose a profile nickname. Your nickname will be part of your identity address; for example: 'nickname@$sitename'." + +#: mod/register.php:288 +msgid "Choose a nickname: " +msgstr "Choose a nickname: " + +#: mod/register.php:297 mod/uimport.php:68 +msgid "Import" +msgstr "Import profile" + +#: mod/register.php:298 +msgid "Import your profile to this friendica instance" +msgstr "Import an existing Friendica profile to this node." + +#: mod/removeme.php:54 mod/removeme.php:57 +msgid "Remove My Account" +msgstr "Remove My Account" + +#: mod/removeme.php:55 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "This will completely remove your account. Once this has been done it is not recoverable." + +#: mod/removeme.php:56 +msgid "Please enter your password for verification:" +msgstr "Please enter your password for verification:" + +#: mod/repair_ostatus.php:16 +msgid "Resubscribing to OStatus contacts" +msgstr "Resubscribing to OStatus contacts" + +#: mod/repair_ostatus.php:32 +msgid "Error" +msgstr "Error" + +#: mod/search.php:103 +msgid "Only logged in users are permitted to perform a search." +msgstr "Only logged in users are permitted to perform a search." + +#: mod/search.php:127 +msgid "Too Many Requests" +msgstr "Too many requests" + +#: mod/search.php:128 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "Only one search per minute is permitted for not logged in users." + +#: mod/search.php:228 +#, php-format +msgid "Items tagged with: %s" +msgstr "Items tagged with: %s" + +#: mod/subthread.php:105 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s is following %2$s's %3$s" + +#: mod/suggest.php:29 +msgid "Do you really want to delete this suggestion?" +msgstr "Do you really want to delete this suggestion?" + +#: mod/suggest.php:73 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "No suggestions available. If this is a new site, please try again in 24 hours." + +#: mod/suggest.php:86 mod/suggest.php:106 +msgid "Ignore/Hide" +msgstr "Ignore/Hide" + +#: mod/tagrm.php:45 +msgid "Tag removed" +msgstr "Tag removed" + +#: mod/tagrm.php:84 +msgid "Remove Item Tag" +msgstr "Remove Item tag" + +#: mod/tagrm.php:86 +msgid "Select a tag to remove: " +msgstr "Select a tag to remove: " + +#: mod/uexport.php:38 +msgid "Export account" +msgstr "Export account" + +#: mod/uexport.php:38 +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 "Export your account info and contacts. Use this to backup your account or to move it to another server." + +#: mod/uexport.php:39 +msgid "Export all" +msgstr "Export all" + +#: mod/uexport.php:39 +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 "Export your account 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)" + +#: mod/uexport.php:46 mod/settings.php:97 +msgid "Export personal data" +msgstr "Export personal data" + +#: mod/update_community.php:21 mod/update_display.php:25 +#: mod/update_network.php:29 mod/update_notes.php:38 mod/update_profile.php:37 +msgid "[Embedded content - reload page to view]" +msgstr "[Embedded content - reload page to view]" + +#: mod/videos.php:126 +msgid "Do you really want to delete this video?" +msgstr "Do you really want to delete this video?" + +#: mod/videos.php:131 +msgid "Delete Video" +msgstr "Delete video" + +#: mod/videos.php:210 +msgid "No videos selected" +msgstr "No videos selected" + +#: mod/videos.php:404 +msgid "Recent Videos" +msgstr "Recent videos" + +#: mod/videos.php:406 +msgid "Upload New Videos" +msgstr "Upload new videos" + +#: mod/viewcontacts.php:78 +msgid "No contacts." +msgstr "No contacts." + +#: mod/viewsrc.php:8 +msgid "Access denied." +msgstr "Access denied." + +#: mod/wall_attach.php:19 mod/wall_attach.php:27 mod/wall_attach.php:78 +#: mod/wall_upload.php:36 mod/wall_upload.php:52 mod/wall_upload.php:110 +#: mod/wall_upload.php:150 mod/wall_upload.php:153 +msgid "Invalid request." +msgstr "Invalid request." + +#: mod/wall_attach.php:96 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Sorry, maybe your upload is bigger than the PHP configuration allows" + +#: mod/wall_attach.php:96 +msgid "Or - did you try to upload an empty file?" +msgstr "Or did you try to upload an empty file?" + +#: mod/wall_attach.php:107 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "File exceeds size limit of %s" + +#: mod/wall_attach.php:160 mod/wall_attach.php:176 +msgid "File upload failed." +msgstr "File upload failed." + +#: mod/wallmessage.php:44 mod/wallmessage.php:108 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Number of daily wall messages for %s exceeded. Message failed." + +#: mod/wallmessage.php:55 +msgid "Unable to check your home location." +msgstr "Unable to check your home location." + +#: mod/wallmessage.php:82 mod/wallmessage.php:91 +msgid "No recipient." +msgstr "No recipient." + +#: mod/wallmessage.php:129 +#, 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 "If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders." + +#: mod/webfinger.php:11 mod/probe.php:10 +msgid "Only logged in users are permitted to perform a probing." +msgstr "Only logged in users are permitted to perform a probing." + +#: mod/dfrn_request.php:103 +msgid "This introduction has already been accepted." +msgstr "This introduction has already been accepted." + +#: mod/dfrn_request.php:126 mod/dfrn_request.php:528 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Profile location is not valid or does not contain profile information." + +#: mod/dfrn_request.php:131 mod/dfrn_request.php:533 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Warning: profile location has no identifiable owner name." + +#: mod/dfrn_request.php:134 mod/dfrn_request.php:536 +msgid "Warning: profile location has no profile photo." +msgstr "Warning: profile location has no profile photo." + +#: mod/dfrn_request.php:138 mod/dfrn_request.php:540 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d required parameter was not found at the given location" +msgstr[1] "%d required parameters were not found at the given location" + +#: mod/dfrn_request.php:182 +msgid "Introduction complete." +msgstr "Introduction complete." + +#: mod/dfrn_request.php:227 +msgid "Unrecoverable protocol error." +msgstr "Unrecoverable protocol error." + +#: mod/dfrn_request.php:255 +msgid "Profile unavailable." +msgstr "Profile unavailable." + +#: mod/dfrn_request.php:282 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s has received too many connection requests today." + +#: mod/dfrn_request.php:283 +msgid "Spam protection measures have been invoked." +msgstr "Spam protection measures have been invoked." + +#: mod/dfrn_request.php:284 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Friends are advised to please try again in 24 hours." + +#: mod/dfrn_request.php:346 +msgid "Invalid locator" +msgstr "Invalid locator" + +#: mod/dfrn_request.php:355 +msgid "Invalid email address." +msgstr "Invalid email address." + +#: mod/dfrn_request.php:380 +msgid "This account has not been configured for email. Request failed." +msgstr "This account has not been configured for email. Request failed." + +#: mod/dfrn_request.php:483 +msgid "You have already introduced yourself here." +msgstr "You have already introduced yourself here." + +#: mod/dfrn_request.php:487 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Apparently you are already friends with %s." + +#: mod/dfrn_request.php:508 +msgid "Invalid profile URL." +msgstr "Invalid profile URL." + +#: mod/dfrn_request.php:593 mod/contacts.php:221 +msgid "Failed to update contact record." +msgstr "Failed to update contact record." + +#: mod/dfrn_request.php:614 +msgid "Your introduction has been sent." +msgstr "Your introduction has been sent." + +#: mod/dfrn_request.php:656 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "Remote subscription can't be done for your network. Please subscribe directly on your system." + +#: mod/dfrn_request.php:677 +msgid "Please login to confirm introduction." +msgstr "Please login to confirm introduction." + +#: mod/dfrn_request.php:687 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Incorrect identity currently logged in. Please login to this profile." + +#: mod/dfrn_request.php:701 mod/dfrn_request.php:718 +msgid "Confirm" +msgstr "Confirm" + +#: mod/dfrn_request.php:713 +msgid "Hide this contact" +msgstr "Hide this contact" + +#: mod/dfrn_request.php:716 +#, php-format +msgid "Welcome home %s." +msgstr "Welcome home %s." + +#: mod/dfrn_request.php:717 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Please confirm your introduction/connection request to %s." + +#: mod/dfrn_request.php:848 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Please enter your 'Identity address' from one of the following supported communications networks:" + +#: mod/dfrn_request.php:872 +#, 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 "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." + +#: mod/dfrn_request.php:877 +msgid "Friend/Connection Request" +msgstr "Friend/Connection request" + +#: mod/dfrn_request.php:878 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Examples: jojo@friendica.example.com, http://friendica.example.com/profile/jojo, sam@identi.ca" + +#: mod/dfrn_request.php:887 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated social web" + +#: mod/dfrn_request.php:889 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr " - please do not use this form. Instead, enter %s into your Diaspora search bar." + +#: mod/item.php:118 +msgid "Unable to locate original post." +msgstr "Unable to locate original post." + +#: mod/item.php:345 +msgid "Empty post discarded." +msgstr "Empty post discarded." + +#: mod/item.php:904 +msgid "System error. Post not saved." +msgstr "System error. Post not saved." + +#: mod/item.php:995 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "This message was sent to you by %s, a member of the Friendica social network." + +#: mod/item.php:997 +#, php-format +msgid "You may visit them online at %s" +msgstr "You may visit them online at %s" + +#: mod/item.php:998 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Please contact the sender by replying to this post if you do not wish to receive these messages." + +#: mod/item.php:1002 +#, php-format +msgid "%s posted an update." +msgstr "%s posted an update." + +#: mod/regmod.php:60 +msgid "Account approved." +msgstr "Account approved." + +#: mod/regmod.php:88 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registration revoked for %s" + +#: mod/regmod.php:100 +msgid "Please login." +msgstr "Please login." + +#: mod/uimport.php:70 +msgid "Move account" +msgstr "Move Existing Friendica Account" + +#: mod/uimport.php:71 +msgid "You can import an account from another Friendica server." +msgstr "You can import an existing Friendica profile to this node." + +#: mod/uimport.php:72 +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 "You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here." + +#: mod/uimport.php:73 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora." + +#: mod/uimport.php:74 +msgid "Account file" +msgstr "Account file:" + +#: mod/uimport.php:74 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "To export your account, go to \"Settings->Export personal data\" and select \"Export account\"" + +#: mod/admin.php:97 +msgid "Theme settings updated." +msgstr "Theme settings updated." + +#: mod/admin.php:166 mod/admin.php:1060 +msgid "Site" +msgstr "Site" + +#: mod/admin.php:167 mod/admin.php:994 mod/admin.php:1504 mod/admin.php:1520 +msgid "Users" +msgstr "Users" + +#: mod/admin.php:168 mod/admin.php:1622 mod/admin.php:1685 mod/settings.php:76 +msgid "Plugins" +msgstr "Plugins" + +#: mod/admin.php:169 mod/admin.php:1898 mod/admin.php:1948 +msgid "Themes" +msgstr "Theme selection" + +#: mod/admin.php:170 mod/settings.php:54 +msgid "Additional features" +msgstr "Additional features" + +#: mod/admin.php:171 +msgid "DB updates" +msgstr "DB updates" + +#: mod/admin.php:172 mod/admin.php:513 +msgid "Inspect Queue" +msgstr "Inspect queue" + +#: mod/admin.php:173 mod/admin.php:289 +msgid "Server Blocklist" +msgstr "Server blocklist" + +#: mod/admin.php:174 mod/admin.php:479 +msgid "Federation Statistics" +msgstr "Federation statistics" + +#: mod/admin.php:188 mod/admin.php:199 mod/admin.php:2022 +msgid "Logs" +msgstr "Logs" + +#: mod/admin.php:189 mod/admin.php:2090 +msgid "View Logs" +msgstr "View logs" + +#: mod/admin.php:190 +msgid "probe address" +msgstr "Probe address" + +#: mod/admin.php:191 +msgid "check webfinger" +msgstr "Check webfinger" + +#: mod/admin.php:198 +msgid "Plugin Features" +msgstr "Plugin Features" + +#: mod/admin.php:200 +msgid "diagnostics" +msgstr "Diagnostics" + +#: mod/admin.php:201 +msgid "User registrations waiting for confirmation" +msgstr "User registrations awaiting confirmation" + +#: mod/admin.php:280 +msgid "The blocked domain" +msgstr "Blocked domain" + +#: mod/admin.php:281 mod/admin.php:294 +msgid "The reason why you blocked this domain." +msgstr "Reason why you blocked this domain." + +#: mod/admin.php:282 +msgid "Delete domain" +msgstr "Delete domain" + +#: mod/admin.php:282 +msgid "Check to delete this entry from the blocklist" +msgstr "Check to delete this entry from the blocklist" + +#: mod/admin.php:288 mod/admin.php:478 mod/admin.php:512 mod/admin.php:592 +#: mod/admin.php:1059 mod/admin.php:1503 mod/admin.php:1621 mod/admin.php:1684 +#: mod/admin.php:1897 mod/admin.php:1947 mod/admin.php:2021 mod/admin.php:2089 +msgid "Administration" +msgstr "Administration" + +#: mod/admin.php:290 +msgid "" +"This page can be used to define a black list of servers from the federated " +"network that are not allowed to interact with your node. For all entered " +"domains you should also give a reason why you have blocked the remote " +"server." +msgstr "This page can be used to define a black list of servers from the federated network that are not allowed to interact with your node. For all entered domains you should also give a reason why you have blocked the remote server." + +#: mod/admin.php:291 +msgid "" +"The list of blocked servers will be made publically available on the " +"/friendica page so that your users and people investigating communication " +"problems can find the reason easily." +msgstr "The list of blocked servers will publicly available on the Friendica page so that your users and people investigating communication problems can readily find the reason." + +#: mod/admin.php:292 +msgid "Add new entry to block list" +msgstr "Add new entry to block list" + +#: mod/admin.php:293 +msgid "Server Domain" +msgstr "Server domain" + +#: mod/admin.php:293 +msgid "" +"The domain of the new server to add to the block list. Do not include the " +"protocol." +msgstr "The domain of the new server to add to the block list. Do not include the protocol." + +#: mod/admin.php:294 +msgid "Block reason" +msgstr "Block reason" + +#: mod/admin.php:295 +msgid "Add Entry" +msgstr "Add entry" + +#: mod/admin.php:296 +msgid "Save changes to the blocklist" +msgstr "Save changes to the blocklist" + +#: mod/admin.php:297 +msgid "Current Entries in the Blocklist" +msgstr "Current entries in the blocklist" + +#: mod/admin.php:300 +msgid "Delete entry from blocklist" +msgstr "Delete entry from blocklist" + +#: mod/admin.php:303 +msgid "Delete entry from blocklist?" +msgstr "Delete entry from blocklist?" + +#: mod/admin.php:328 +msgid "Server added to blocklist." +msgstr "Server added to blocklist." + +#: mod/admin.php:344 +msgid "Site blocklist updated." +msgstr "Site blocklist updated." + +#: mod/admin.php:409 +msgid "unknown" +msgstr "unknown" + +#: mod/admin.php:472 +msgid "" +"This page offers you some numbers to the known part of the federated social " +"network your Friendica node is part of. These numbers are not complete but " +"only reflect the part of the network your node is aware of." +msgstr "This page offers you the amount of known part of the federated social network your Friendica node is part of. These numbers are not complete and only reflect the part of the network your node is aware of." + +#: mod/admin.php:473 +msgid "" +"The Auto Discovered Contact Directory feature is not enabled, it " +"will improve the data displayed here." +msgstr "The Auto Discovered Contact Directory feature is not enabled; enabling it will improve the data displayed here." + +#: mod/admin.php:485 +#, php-format +msgid "Currently this node is aware of %d nodes from the following platforms:" +msgstr "Currently this node is aware of %d nodes from the following platforms:" + +#: mod/admin.php:515 +msgid "ID" +msgstr "ID" + +#: mod/admin.php:516 +msgid "Recipient Name" +msgstr "Recipient name" + +#: mod/admin.php:517 +msgid "Recipient Profile" +msgstr "Recipient profile" + +#: mod/admin.php:519 +msgid "Created" +msgstr "Created" + +#: mod/admin.php:520 +msgid "Last Tried" +msgstr "Last Tried" + +#: mod/admin.php:521 +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 "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." + +#: mod/admin.php:546 +#, php-format +msgid "" +"Your DB still runs with MyISAM tables. You should change the engine type to " +"InnoDB. As Friendica will use InnoDB only features in the future, you should" +" change this! See here for a guide that may be helpful " +"converting the table engines. You may also use the command php " +"include/dbstructure.php toinnodb of your Friendica installation for an " +"automatic conversion.
" +msgstr "Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the command php include/dbstructure.php toinnodb of your Friendica installation for an automatic conversion.
" + +#: mod/admin.php:555 +msgid "" +"The database update failed. Please run \"php include/dbstructure.php " +"update\" from the command line and have a look at the errors that might " +"appear." +msgstr "The database update failed. Please run 'php include/dbstructure.php update' from the command line and have a look at the errors that might appear." + +#: mod/admin.php:560 mod/admin.php:1453 +msgid "Normal Account" +msgstr "Standard account" + +#: mod/admin.php:561 mod/admin.php:1454 +msgid "Soapbox Account" +msgstr "Soapbox account" + +#: mod/admin.php:562 mod/admin.php:1455 +msgid "Community/Celebrity Account" +msgstr "Community/Celebrity account" + +#: mod/admin.php:563 mod/admin.php:1456 +msgid "Automatic Friend Account" +msgstr "Automatic friend account" + +#: mod/admin.php:564 +msgid "Blog Account" +msgstr "Blog account" + +#: mod/admin.php:565 +msgid "Private Forum" +msgstr "Private forum" + +#: mod/admin.php:587 +msgid "Message queues" +msgstr "Message queues" + +#: mod/admin.php:593 +msgid "Summary" +msgstr "Summary" + +#: mod/admin.php:595 +msgid "Registered users" +msgstr "Registered users" + +#: mod/admin.php:597 +msgid "Pending registrations" +msgstr "Pending registrations" + +#: mod/admin.php:598 +msgid "Version" +msgstr "Version" + +#: mod/admin.php:603 +msgid "Active plugins" +msgstr "Active plugins" + +#: mod/admin.php:628 +msgid "Can not parse base url. Must have at least ://" +msgstr "Can not parse base URL. Must have at least ://" + +#: mod/admin.php:920 +msgid "Site settings updated." +msgstr "Site settings updated." + +#: mod/admin.php:948 mod/settings.php:944 +msgid "No special theme for mobile devices" +msgstr "No special theme for mobile devices" + +#: mod/admin.php:977 +msgid "No community page" +msgstr "No community page" + +#: mod/admin.php:978 +msgid "Public postings from users of this site" +msgstr "Public postings from users of this site" + +#: mod/admin.php:979 +msgid "Global community page" +msgstr "Global community page" + +#: mod/admin.php:984 mod/contacts.php:541 +msgid "Never" +msgstr "Never" + +#: mod/admin.php:985 +msgid "At post arrival" +msgstr "At post arrival" + +#: mod/admin.php:993 mod/contacts.php:568 +msgid "Disabled" +msgstr "Disabled" + +#: mod/admin.php:995 +msgid "Users, Global Contacts" +msgstr "Users, Global Contacts" + +#: mod/admin.php:996 +msgid "Users, Global Contacts/fallback" +msgstr "Users, Global Contacts/fallback" + +#: mod/admin.php:1000 +msgid "One month" +msgstr "One month" + +#: mod/admin.php:1001 +msgid "Three months" +msgstr "Three months" + +#: mod/admin.php:1002 +msgid "Half a year" +msgstr "Half a year" + +#: mod/admin.php:1003 +msgid "One year" +msgstr "One a year" + +#: mod/admin.php:1008 +msgid "Multi user instance" +msgstr "Multi user instance" + +#: mod/admin.php:1031 +msgid "Closed" +msgstr "Closed" + +#: mod/admin.php:1032 +msgid "Requires approval" +msgstr "Requires approval" + +#: mod/admin.php:1033 +msgid "Open" +msgstr "Open" + +#: mod/admin.php:1037 +msgid "No SSL policy, links will track page SSL state" +msgstr "No SSL policy, links will track page SSL state" + +#: mod/admin.php:1038 +msgid "Force all links to use SSL" +msgstr "Force all links to use SSL" + +#: mod/admin.php:1039 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Self-signed certificate, use SSL for local links only (discouraged)" + +#: mod/admin.php:1061 mod/admin.php:1686 mod/admin.php:1949 mod/admin.php:2023 +#: mod/admin.php:2176 mod/settings.php:682 mod/settings.php:793 +#: mod/settings.php:842 mod/settings.php:909 mod/settings.php:1006 +#: mod/settings.php:1272 +msgid "Save Settings" +msgstr "Save settings" + +#: mod/admin.php:1063 +msgid "File upload" +msgstr "File upload" + +#: mod/admin.php:1064 +msgid "Policies" +msgstr "Policies" + +#: mod/admin.php:1066 +msgid "Auto Discovered Contact Directory" +msgstr "Auto-discovered contact directory" + +#: mod/admin.php:1067 +msgid "Performance" +msgstr "Performance" + +#: mod/admin.php:1068 +msgid "Worker" +msgstr "Worker" + +#: mod/admin.php:1069 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "Relocate - Warning, advanced function: This could make this server unreachable." + +#: mod/admin.php:1072 +msgid "Site name" +msgstr "Site name" + +#: mod/admin.php:1073 +msgid "Host name" +msgstr "Host name" + +#: mod/admin.php:1074 +msgid "Sender Email" +msgstr "Sender email" + +#: mod/admin.php:1074 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "The email address your server shall use to send notification emails from." + +#: mod/admin.php:1075 +msgid "Banner/Logo" +msgstr "Banner/Logo" + +#: mod/admin.php:1076 +msgid "Shortcut icon" +msgstr "Shortcut icon" + +#: mod/admin.php:1076 +msgid "Link to an icon that will be used for browsers." +msgstr "Link to an icon that will be used for browsers." + +#: mod/admin.php:1077 +msgid "Touch icon" +msgstr "Touch icon" + +#: mod/admin.php:1077 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "Link to an icon that will be used for tablets and mobiles." + +#: mod/admin.php:1078 +msgid "Additional Info" +msgstr "Additional Info" + +#: mod/admin.php:1078 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/siteinfo." +msgstr "For public servers: add additional information here that will be listed at %s/siteinfo." + +#: mod/admin.php:1079 +msgid "System language" +msgstr "System language" + +#: mod/admin.php:1080 +msgid "System theme" +msgstr "System theme" + +#: mod/admin.php:1080 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Default system theme - may be overridden by user profiles - change theme settings" + +#: mod/admin.php:1081 +msgid "Mobile system theme" +msgstr "Mobile system theme" + +#: mod/admin.php:1081 +msgid "Theme for mobile devices" +msgstr "Theme for mobile devices" + +#: mod/admin.php:1082 +msgid "SSL link policy" +msgstr "SSL link policy" + +#: mod/admin.php:1082 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Determines whether generated links should be forced to use SSL" + +#: mod/admin.php:1083 +msgid "Force SSL" +msgstr "Force SSL" + +#: mod/admin.php:1083 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops." + +#: mod/admin.php:1084 +msgid "Hide help entry from navigation menu" +msgstr "Hide help entry from navigation menu" + +#: mod/admin.php:1084 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "Hides the menu entry for the Help pages from the navigation menu. Help pages can still be accessed by calling ../help directly via its URL." + +#: mod/admin.php:1085 +msgid "Single user instance" +msgstr "Single user instance" + +#: mod/admin.php:1085 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Make this instance multi-user or single-user for the named user" + +#: mod/admin.php:1086 +msgid "Maximum image size" +msgstr "Maximum image size" + +#: mod/admin.php:1086 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Maximum size in bytes of uploaded images. Default is 0, which means no limits." + +#: mod/admin.php:1087 +msgid "Maximum image length" +msgstr "Maximum image length" + +#: mod/admin.php:1087 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits." + +#: mod/admin.php:1088 +msgid "JPEG image quality" +msgstr "JPEG image quality" + +#: mod/admin.php:1088 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is the original quality level." + +#: mod/admin.php:1090 +msgid "Register policy" +msgstr "Register policy" + +#: mod/admin.php:1091 +msgid "Maximum Daily Registrations" +msgstr "Maximum daily registrations" + +#: mod/admin.php:1091 +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 "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." + +#: mod/admin.php:1092 +msgid "Register text" +msgstr "Register text" + +#: mod/admin.php:1092 +msgid "Will be displayed prominently on the registration page." +msgstr "Will be displayed prominently on the registration page." + +#: mod/admin.php:1093 +msgid "Accounts abandoned after x days" +msgstr "Accounts abandoned after so many days" + +#: mod/admin.php:1093 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Will not waste system resources polling external sites for abandoned accounts. Enter 0 for no time limit." + +#: mod/admin.php:1094 +msgid "Allowed friend domains" +msgstr "Allowed friend domains" + +#: mod/admin.php:1094 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Leave empty to allow any domains" + +#: mod/admin.php:1095 +msgid "Allowed email domains" +msgstr "Allowed email domains" + +#: mod/admin.php:1095 +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 "Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Leave empty to allow any domains" + +#: mod/admin.php:1096 +msgid "Block public" +msgstr "Block public" + +#: mod/admin.php:1096 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Block public access to all otherwise public personal pages on this site, except for local users when logged in." + +#: mod/admin.php:1097 +msgid "Force publish" +msgstr "Mandatory directory listing" + +#: mod/admin.php:1097 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Force all profiles on this site to be listed in the site directory." + +#: mod/admin.php:1098 +msgid "Global directory URL" +msgstr "Global directory URL" + +#: mod/admin.php:1098 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "URL to the global directory: If this is not set, the global directory is completely unavailable to the application." + +#: mod/admin.php:1099 +msgid "Allow threaded items" +msgstr "Allow threaded items" + +#: mod/admin.php:1099 +msgid "Allow infinite level threading for items on this site." +msgstr "Allow infinite levels of threading for items on this site." + +#: mod/admin.php:1100 +msgid "Private posts by default for new users" +msgstr "Private posts by default for new users" + +#: mod/admin.php:1100 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "Set default post permissions for all new members to the default privacy group rather than public." + +#: mod/admin.php:1101 +msgid "Don't include post content in email notifications" +msgstr "Don't include post content in email notifications" + +#: mod/admin.php:1101 +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 "Don't include the content of a post/comment/private message in the email notifications sent from this site, as a privacy measure." + +#: mod/admin.php:1102 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Disallow public access to addons listed in the apps menu." + +#: mod/admin.php:1102 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "Checking this box will restrict addons listed in the apps menu to members only." + +#: mod/admin.php:1103 +msgid "Don't embed private images in posts" +msgstr "Don't embed private images in posts" + +#: mod/admin.php:1103 +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 "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." + +#: mod/admin.php:1104 +msgid "Allow Users to set remote_self" +msgstr "Allow users to set \"Remote self\"" + +#: mod/admin.php:1104 +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 "This allows every user to mark contacts as a \"Remote self\" in the repair contact dialogue. Setting this flag on a contact will mirror every posting of that contact in the users stream." + +#: mod/admin.php:1105 +msgid "Block multiple registrations" +msgstr "Block multiple registrations" + +#: mod/admin.php:1105 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Disallow users to register additional accounts for use as pages." + +#: mod/admin.php:1106 +msgid "OpenID support" +msgstr "OpenID support" + +#: mod/admin.php:1106 +msgid "OpenID support for registration and logins." +msgstr "OpenID support for registration and logins." + +#: mod/admin.php:1107 +msgid "Fullname check" +msgstr "Full name check" + +#: mod/admin.php:1107 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "Force users to register with a space between first name and last name in the full name field; it may reduce spam and abuse registrations." + +#: mod/admin.php:1108 +msgid "Community Page Style" +msgstr "Community page style" + +#: mod/admin.php:1108 +msgid "" +"Type of community page to show. 'Global community' shows every public " +"posting from an open distributed network that arrived on this server." +msgstr "Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server." + +#: mod/admin.php:1109 +msgid "Posts per user on community page" +msgstr "Posts per user on community page" + +#: mod/admin.php:1109 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"'Global Community')" +msgstr "Maximum number of posts per user on the community page (not valid for 'Global Community')." + +#: mod/admin.php:1110 +msgid "Enable OStatus support" +msgstr "Enable OStatus support" + +#: mod/admin.php:1110 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "Provide built-in OStatus (StatusNet, GNU Social, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed." + +#: mod/admin.php:1111 +msgid "OStatus conversation completion interval" +msgstr "OStatus conversation completion interval" + +#: mod/admin.php:1111 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "How often shall the poller check for new entries in OStatus conversations? This can be rather resources consuming." + +#: mod/admin.php:1112 +msgid "Only import OStatus threads from our contacts" +msgstr "Only import OStatus threads from known contacts" + +#: mod/admin.php:1112 +msgid "" +"Normally we import every content from our OStatus contacts. With this option" +" we only store threads that are started by a contact that is known on our " +"system." +msgstr "Normally we import every content from our OStatus contacts. With this option we only store threads that are started by a contact that is known on our system." + +#: mod/admin.php:1113 +msgid "OStatus support can only be enabled if threading is enabled." +msgstr "OStatus support can only be enabled if threading is enabled." + +#: mod/admin.php:1115 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "Diaspora support can't be enabled because Friendica was installed into a sub directory." + +#: mod/admin.php:1116 +msgid "Enable Diaspora support" +msgstr "Enable Diaspora support" + +#: mod/admin.php:1116 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Provide built-in Diaspora network compatibility." + +#: mod/admin.php:1117 +msgid "Only allow Friendica contacts" +msgstr "Only allow Friendica contacts" + +#: mod/admin.php:1117 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "All contacts must use Friendica protocols. All other built-in communication protocols will be disabled." + +#: mod/admin.php:1118 +msgid "Verify SSL" +msgstr "Verify SSL" + +#: mod/admin.php:1118 +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 "If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites." + +#: mod/admin.php:1119 +msgid "Proxy user" +msgstr "Proxy user" + +#: mod/admin.php:1120 +msgid "Proxy URL" +msgstr "Proxy URL" + +#: mod/admin.php:1121 +msgid "Network timeout" +msgstr "Network timeout" + +#: mod/admin.php:1121 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Value is in seconds. Set to 0 for unlimited (not recommended)." + +#: mod/admin.php:1122 +msgid "Maximum Load Average" +msgstr "Maximum load average" + +#: mod/admin.php:1122 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Maximum system load before delivery and poll processes are deferred (default 50)." + +#: mod/admin.php:1123 +msgid "Maximum Load Average (Frontend)" +msgstr "Maximum load average (frontend)" + +#: mod/admin.php:1123 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "Maximum system load before the frontend quits service (default 50)." + +#: mod/admin.php:1124 +msgid "Minimal Memory" +msgstr "Minimal memory" + +#: mod/admin.php:1124 +msgid "" +"Minimal free memory in MB for the poller. Needs access to /proc/meminfo - " +"default 0 (deactivated)." +msgstr "Minimal free memory in MB for the poller. Needs access to /proc/meminfo (default 0 - deactivated)." + +#: mod/admin.php:1125 +msgid "Maximum table size for optimization" +msgstr "Maximum table size for optimization" + +#: mod/admin.php:1125 +msgid "" +"Maximum table size (in MB) for the automatic optimization - default 100 MB. " +"Enter -1 to disable it." +msgstr "Maximum table size (in MB) for the automatic optimization (default 100 MB; -1 to deactivate)." + +#: mod/admin.php:1126 +msgid "Minimum level of fragmentation" +msgstr "Minimum level of fragmentation" + +#: mod/admin.php:1126 +msgid "" +"Minimum fragmenation level to start the automatic optimization - default " +"value is 30%." +msgstr "Minimum fragmentation level to start the automatic optimization (default 30%)." + +#: mod/admin.php:1128 +msgid "Periodical check of global contacts" +msgstr "Periodical check of global contacts" + +#: mod/admin.php:1128 +msgid "" +"If enabled, the global contacts are checked periodically for missing or " +"outdated data and the vitality of the contacts and servers." +msgstr "This checks global contacts periodically for missing or outdated data and the vitality of the contacts and servers." + +#: mod/admin.php:1129 +msgid "Days between requery" +msgstr "Days between enquiry" + +#: mod/admin.php:1129 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "Number of days after which a server is required check contacts." + +#: mod/admin.php:1130 +msgid "Discover contacts from other servers" +msgstr "Discover contacts from other servers" + +#: mod/admin.php:1130 +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 "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 recommend setting is 'Users, Global Contacts'." + +#: mod/admin.php:1131 +msgid "Timeframe for fetching global contacts" +msgstr "Time-frame for fetching global contacts" + +#: mod/admin.php:1131 +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 "If discovery is activated, this value defines the time-frame for the activity of the global contacts that are fetched from other servers." + +#: mod/admin.php:1132 +msgid "Search the local directory" +msgstr "Search the local directory" + +#: mod/admin.php:1132 +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 "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." + +#: mod/admin.php:1134 +msgid "Publish server information" +msgstr "Publish server information" + +#: mod/admin.php:1134 +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 "This publishes generic data about the server and its usage. 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." + +#: mod/admin.php:1136 +msgid "Suppress Tags" +msgstr "Suppress tags" + +#: mod/admin.php:1136 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "Suppress listed hashtags at the end of posts." + +#: mod/admin.php:1137 +msgid "Path to item cache" +msgstr "Path to item cache" + +#: mod/admin.php:1137 +msgid "The item caches buffers generated bbcode and external images." +msgstr "The item caches buffers generated bbcode and external images." + +#: mod/admin.php:1138 +msgid "Cache duration in seconds" +msgstr "Cache duration in seconds" + +#: mod/admin.php:1138 +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 "How long should cache files be held? (Default 86400 seconds - one day; -1 disables item cache)" + +#: mod/admin.php:1139 +msgid "Maximum numbers of comments per post" +msgstr "Maximum numbers of comments per post" + +#: mod/admin.php:1139 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "How many comments should be shown for each post? (Default 100)" + +#: mod/admin.php:1140 +msgid "Temp path" +msgstr "Temp path" + +#: mod/admin.php:1140 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "Enter a different tmp path, if your system restricts the webserver's access to the system temp path." + +#: mod/admin.php:1141 +msgid "Base path to installation" +msgstr "Base path to installation" + +#: mod/admin.php:1141 +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 "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." + +#: mod/admin.php:1142 +msgid "Disable picture proxy" +msgstr "Disable picture proxy" + +#: mod/admin.php:1142 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwith." +msgstr "The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith." + +#: mod/admin.php:1143 +msgid "Only search in tags" +msgstr "Only search in tags" + +#: mod/admin.php:1143 +msgid "On large systems the text search can slow down the system extremely." +msgstr "On large systems the text search can slow down the system significantly." + +#: mod/admin.php:1145 +msgid "New base url" +msgstr "New base URL" + +#: mod/admin.php:1145 +msgid "" +"Change base url for this server. Sends relocate message to all DFRN contacts" +" of all users." +msgstr "Change base URL for this server. Sends relocate message to all DFRN contacts of all users." + +#: mod/admin.php:1147 +msgid "RINO Encryption" +msgstr "RINO Encryption" + +#: mod/admin.php:1147 +msgid "Encryption layer between nodes." +msgstr "Encryption layer between nodes." + +#: mod/admin.php:1149 +msgid "Maximum number of parallel workers" +msgstr "Maximum number of parallel workers" + +#: mod/admin.php:1149 +msgid "" +"On shared hosters set this to 2. On larger systems, values of 10 are great. " +"Default value is 4." +msgstr "On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4." + +#: mod/admin.php:1150 +msgid "Don't use 'proc_open' with the worker" +msgstr "Don't use 'proc_open' with the worker" + +#: mod/admin.php:1150 +msgid "" +"Enable this if your system doesn't allow the use of 'proc_open'. This can " +"happen on shared hosters. If this is enabled you should increase the " +"frequency of poller calls in your crontab." +msgstr "Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosts. If this is enabled you should increase the frequency of poller calls in your crontab." + +#: mod/admin.php:1151 +msgid "Enable fastlane" +msgstr "Enable fast-lane" + +#: mod/admin.php:1151 +msgid "" +"When enabed, the fastlane mechanism starts an additional worker if processes" +" with higher priority are blocked by processes of lower priority." +msgstr "The fast-lane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority." + +#: mod/admin.php:1152 +msgid "Enable frontend worker" +msgstr "Enable frontend worker" + +#: mod/admin.php:1152 +msgid "" +"When enabled the Worker process is triggered when backend access is " +"performed (e.g. messages being delivered). On smaller sites you might want " +"to call yourdomain.tld/worker on a regular basis via an external cron job. " +"You should only enable this option if you cannot utilize cron/scheduled jobs" +" on your server. The worker background process needs to be activated for " +"this." +msgstr "If enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this." + +#: mod/admin.php:1182 +msgid "Update has been marked successful" +msgstr "Update has been marked successful" + +#: mod/admin.php:1190 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "Database structure update %s was successfully applied." + +#: mod/admin.php:1193 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "Executing of database structure update %s failed with error: %s" + +#: mod/admin.php:1207 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "Executing %s failed with error: %s" + +#: mod/admin.php:1210 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Update %s was successfully applied." + +#: mod/admin.php:1213 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Update %s did not return a status. Unknown if it succeeded." + +#: mod/admin.php:1216 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "There was no additional update function %s that needed to be called." + +#: mod/admin.php:1236 +msgid "No failed updates." +msgstr "No failed updates." + +#: mod/admin.php:1237 +msgid "Check database structure" +msgstr "Check database structure" + +#: mod/admin.php:1242 +msgid "Failed Updates" +msgstr "Failed updates" + +#: mod/admin.php:1243 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "This does not include updates prior to 1139, which did not return a status." + +#: mod/admin.php:1244 +msgid "Mark success (if update was manually applied)" +msgstr "Mark success (if update was manually applied)" + +#: mod/admin.php:1245 +msgid "Attempt to execute this update step automatically" +msgstr "Attempt to execute this update step automatically" + +#: mod/admin.php:1279 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "\n\t\t\tDear %1$s,\n\t\t\t\tThe administrator of %2$s has set up an account for you." + +#: mod/admin.php:1282 +#, php-format +msgid "" +"\n" +"\t\t\tThe login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%1$s\n" +"\t\t\tLogin Name:\t\t%2$s\n" +"\t\t\tPassword:\t\t%3$s\n" +"\n" +"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\t\tin.\n" +"\n" +"\t\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\t\tthan that.\n" +"\n" +"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\t\tIf you are new and do not know anybody here, they may help\n" +"\t\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\t\tThank you and welcome to %4$s." +msgstr "\n\t\t\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, this may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4$s." + +#: mod/admin.php:1326 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s user blocked/unblocked" +msgstr[1] "%s users blocked/unblocked" + +#: mod/admin.php:1333 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s user deleted" +msgstr[1] "%s users deleted" + +#: mod/admin.php:1380 +#, php-format +msgid "User '%s' deleted" +msgstr "User '%s' deleted" + +#: mod/admin.php:1388 +#, php-format +msgid "User '%s' unblocked" +msgstr "User '%s' unblocked" + +#: mod/admin.php:1388 +#, php-format +msgid "User '%s' blocked" +msgstr "User '%s' blocked" + +#: mod/admin.php:1496 mod/admin.php:1522 +msgid "Register date" +msgstr "Register date" + +#: mod/admin.php:1496 mod/admin.php:1522 +msgid "Last login" +msgstr "Last login" + +#: mod/admin.php:1496 mod/admin.php:1522 +msgid "Last item" +msgstr "Last item" + +#: mod/admin.php:1496 mod/settings.php:45 +msgid "Account" +msgstr "Account" + +#: mod/admin.php:1505 +msgid "Add User" +msgstr "Add user" + +#: mod/admin.php:1506 +msgid "select all" +msgstr "select all" + +#: mod/admin.php:1507 +msgid "User registrations waiting for confirm" +msgstr "User registrations awaiting confirmation" + +#: mod/admin.php:1508 +msgid "User waiting for permanent deletion" +msgstr "User awaiting permanent deletion" + +#: mod/admin.php:1509 +msgid "Request date" +msgstr "Request date" + +#: mod/admin.php:1510 +msgid "No registrations." +msgstr "No registrations." + +#: mod/admin.php:1511 +msgid "Note from the user" +msgstr "Note from the user" + +#: mod/admin.php:1513 +msgid "Deny" +msgstr "Deny" + +#: mod/admin.php:1515 mod/contacts.php:616 mod/contacts.php:816 +#: mod/contacts.php:994 +msgid "Block" +msgstr "Block" + +#: mod/admin.php:1516 mod/contacts.php:616 mod/contacts.php:816 +#: mod/contacts.php:994 +msgid "Unblock" +msgstr "Unblock" + +#: mod/admin.php:1517 +msgid "Site admin" +msgstr "Site admin" + +#: mod/admin.php:1518 +msgid "Account expired" +msgstr "Account expired" + +#: mod/admin.php:1521 +msgid "New User" +msgstr "New user" + +#: mod/admin.php:1522 +msgid "Deleted since" +msgstr "Deleted since" + +#: mod/admin.php:1527 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Selected users will be deleted!\\n\\nEverything these users has posted on this site will be permanently deleted!\\n\\nAre you sure?" + +#: mod/admin.php:1528 +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 "The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?" + +#: mod/admin.php:1538 +msgid "Name of the new user." +msgstr "Name of the new user." + +#: mod/admin.php:1539 +msgid "Nickname" +msgstr "Nickname" + +#: mod/admin.php:1539 +msgid "Nickname of the new user." +msgstr "Nickname of the new user." + +#: mod/admin.php:1540 +msgid "Email address of the new user." +msgstr "Email address of the new user." + +#: mod/admin.php:1583 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s disabled." + +#: mod/admin.php:1587 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s enabled." + +#: mod/admin.php:1598 mod/admin.php:1850 +msgid "Disable" +msgstr "Disable" + +#: mod/admin.php:1600 mod/admin.php:1852 +msgid "Enable" +msgstr "Enable" + +#: mod/admin.php:1623 mod/admin.php:1899 +msgid "Toggle" +msgstr "Toggle" + +#: mod/admin.php:1631 mod/admin.php:1908 +msgid "Author: " +msgstr "Author: " + +#: mod/admin.php:1632 mod/admin.php:1909 +msgid "Maintainer: " +msgstr "Maintainer: " + +#: mod/admin.php:1687 +msgid "Reload active plugins" +msgstr "Reload active plugins" + +#: mod/admin.php:1692 +#, php-format +msgid "" +"There are currently no plugins available on your node. You can find the " +"official plugin repository at %1$s and might find other interesting plugins " +"in the open plugin registry at %2$s" +msgstr "There are currently no plugins available on your node. You can find the official plugin repository at %1$s and might find other interesting plugins in the open plugin registry at %2$s" + +#: mod/admin.php:1811 +msgid "No themes found." +msgstr "No themes found." + +#: mod/admin.php:1890 +msgid "Screenshot" +msgstr "Screenshot" + +#: mod/admin.php:1950 +msgid "Reload active themes" +msgstr "Reload active themes" + +#: mod/admin.php:1955 +#, php-format +msgid "No themes found on the system. They should be paced in %1$s" +msgstr "No themes found on the system. They should be paced in %1$s" + +#: mod/admin.php:1956 +msgid "[Experimental]" +msgstr "[Experimental]" + +#: mod/admin.php:1957 +msgid "[Unsupported]" +msgstr "[Unsupported]" + +#: mod/admin.php:1981 +msgid "Log settings updated." +msgstr "Log settings updated." + +#: mod/admin.php:2013 +msgid "PHP log currently enabled." +msgstr "PHP log currently enabled." + +#: mod/admin.php:2015 +msgid "PHP log currently disabled." +msgstr "PHP log currently disabled." + +#: mod/admin.php:2024 +msgid "Clear" +msgstr "Clear" + +#: mod/admin.php:2029 +msgid "Enable Debugging" +msgstr "Enable debugging" + +#: mod/admin.php:2030 +msgid "Log file" +msgstr "Log file" + +#: mod/admin.php:2030 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Must be writable by web server and relative to your Friendica top-level directory." + +#: mod/admin.php:2031 +msgid "Log level" +msgstr "Log level" + +#: mod/admin.php:2034 +msgid "PHP logging" +msgstr "PHP logging" + +#: mod/admin.php:2035 +msgid "" +"To enable logging of PHP errors and warnings you can add the following to " +"the .htconfig.php file of your installation. The filename set in the " +"'error_log' line is relative to the friendica top-level directory and must " +"be writeable by the web server. The option '1' for 'log_errors' and " +"'display_errors' is to enable these options, set to '0' to disable them." +msgstr "To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The file name set in the 'error_log' line is relative to the Friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them." + +#: mod/admin.php:2165 mod/admin.php:2166 mod/settings.php:783 +msgid "Off" +msgstr "Off" + +#: mod/admin.php:2165 mod/admin.php:2166 mod/settings.php:783 +msgid "On" +msgstr "On" + +#: mod/admin.php:2166 +#, php-format +msgid "Lock feature %s" +msgstr "Lock feature %s" + +#: mod/admin.php:2174 +msgid "Manage Additional Features" +msgstr "Manage additional features" + +#: mod/contacts.php:137 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "%d contact edited." +msgstr[1] "%d contacts edited." + +#: mod/contacts.php:172 mod/contacts.php:381 +msgid "Could not access contact record." +msgstr "Could not access contact record." + +#: mod/contacts.php:186 +msgid "Could not locate selected profile." +msgstr "Could not locate selected profile." + +#: mod/contacts.php:219 +msgid "Contact updated." +msgstr "Contact updated." + +#: mod/contacts.php:402 +msgid "Contact has been blocked" +msgstr "Contact has been blocked" + +#: mod/contacts.php:402 +msgid "Contact has been unblocked" +msgstr "Contact has been unblocked" + +#: mod/contacts.php:413 +msgid "Contact has been ignored" +msgstr "Contact has been ignored" + +#: mod/contacts.php:413 +msgid "Contact has been unignored" +msgstr "Contact has been unignored" + +#: mod/contacts.php:425 +msgid "Contact has been archived" +msgstr "Contact has been archived" + +#: mod/contacts.php:425 +msgid "Contact has been unarchived" +msgstr "Contact has been unarchived" + +#: mod/contacts.php:450 +msgid "Drop contact" +msgstr "Drop contact" + +#: mod/contacts.php:453 mod/contacts.php:812 +msgid "Do you really want to delete this contact?" +msgstr "Do you really want to delete this contact?" + +#: mod/contacts.php:472 +msgid "Contact has been removed." +msgstr "Contact has been removed." + +#: mod/contacts.php:509 +#, php-format +msgid "You are mutual friends with %s" +msgstr "You are mutual friends with %s" + +#: mod/contacts.php:513 +#, php-format +msgid "You are sharing with %s" +msgstr "You are sharing with %s" + +#: mod/contacts.php:518 +#, php-format +msgid "%s is sharing with you" +msgstr "%s is sharing with you" + +#: mod/contacts.php:538 +msgid "Private communications are not available for this contact." +msgstr "Private communications are not available for this contact." + +#: mod/contacts.php:545 +msgid "(Update was successful)" +msgstr "(Update was successful)" + +#: mod/contacts.php:545 +msgid "(Update was not successful)" +msgstr "(Update was not successful)" + +#: mod/contacts.php:547 mod/contacts.php:975 +msgid "Suggest friends" +msgstr "Suggest friends" + +#: mod/contacts.php:551 +#, php-format +msgid "Network type: %s" +msgstr "Network type: %s" + +#: mod/contacts.php:564 +msgid "Communications lost with this contact!" +msgstr "Communications lost with this contact!" + +#: mod/contacts.php:567 +msgid "Fetch further information for feeds" +msgstr "Fetch further information for feeds" + +#: mod/contacts.php:568 +msgid "Fetch information" +msgstr "Fetch information" + +#: mod/contacts.php:568 +msgid "Fetch information and keywords" +msgstr "Fetch information and keywords" + +#: mod/contacts.php:586 +msgid "Contact" +msgstr "Contact" + +#: mod/contacts.php:589 +msgid "Profile Visibility" +msgstr "Profile visibility" + +#: mod/contacts.php:590 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Please choose the profile you would like to display to %s when viewing your profile securely." + +#: mod/contacts.php:591 +msgid "Contact Information / Notes" +msgstr "Personal note" + +#: mod/contacts.php:592 +msgid "Edit contact notes" +msgstr "Edit contact notes" + +#: mod/contacts.php:598 +msgid "Block/Unblock contact" +msgstr "Block/Unblock contact" + +#: mod/contacts.php:599 +msgid "Ignore contact" +msgstr "Ignore contact" + +#: mod/contacts.php:600 +msgid "Repair URL settings" +msgstr "Repair URL settings" + +#: mod/contacts.php:601 +msgid "View conversations" +msgstr "View conversations" + +#: mod/contacts.php:607 +msgid "Last update:" +msgstr "Last update:" + +#: mod/contacts.php:609 +msgid "Update public posts" +msgstr "Update public posts" + +#: mod/contacts.php:611 mod/contacts.php:985 +msgid "Update now" +msgstr "Update now" + +#: mod/contacts.php:617 mod/contacts.php:817 mod/contacts.php:1002 +msgid "Unignore" +msgstr "Unignore" + +#: mod/contacts.php:621 +msgid "Currently blocked" +msgstr "Currently blocked" + +#: mod/contacts.php:622 +msgid "Currently ignored" +msgstr "Currently ignored" + +#: mod/contacts.php:623 +msgid "Currently archived" +msgstr "Currently archived" + +#: mod/contacts.php:624 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Replies/Likes to your public posts may still be visible" + +#: mod/contacts.php:625 +msgid "Notification for new posts" +msgstr "Notification for new posts" + +#: mod/contacts.php:625 +msgid "Send a notification of every new post of this contact" +msgstr "Send notification for every new post from this contact" + +#: mod/contacts.php:628 +msgid "Blacklisted keywords" +msgstr "Blacklisted keywords" + +#: mod/contacts.php:628 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected" + +#: mod/contacts.php:646 +msgid "Actions" +msgstr "Actions" + +#: mod/contacts.php:649 +msgid "Contact Settings" +msgstr "Notification and privacy " + +#: mod/contacts.php:695 +msgid "Suggestions" +msgstr "Suggestions" + +#: mod/contacts.php:698 +msgid "Suggest potential friends" +msgstr "Suggest potential friends" + +#: mod/contacts.php:706 +msgid "Show all contacts" +msgstr "Show all contacts" + +#: mod/contacts.php:711 +msgid "Unblocked" +msgstr "Unblocked" + +#: mod/contacts.php:714 +msgid "Only show unblocked contacts" +msgstr "Only show unblocked contacts" + +#: mod/contacts.php:720 +msgid "Blocked" +msgstr "Blocked" + +#: mod/contacts.php:723 +msgid "Only show blocked contacts" +msgstr "Only show blocked contacts" + +#: mod/contacts.php:729 +msgid "Ignored" +msgstr "Ignored" + +#: mod/contacts.php:732 +msgid "Only show ignored contacts" +msgstr "Only show ignored contacts" + +#: mod/contacts.php:738 +msgid "Archived" +msgstr "Archived" + +#: mod/contacts.php:741 +msgid "Only show archived contacts" +msgstr "Only show archived contacts" + +#: mod/contacts.php:747 +msgid "Hidden" +msgstr "Hidden" + +#: mod/contacts.php:750 +msgid "Only show hidden contacts" +msgstr "Only show hidden contacts" + +#: mod/contacts.php:807 +msgid "Search your contacts" +msgstr "Search your contacts" + +#: mod/contacts.php:815 mod/settings.php:162 mod/settings.php:708 +msgid "Update" +msgstr "Update" + +#: mod/contacts.php:818 mod/contacts.php:1010 +msgid "Archive" +msgstr "Archive" + +#: mod/contacts.php:818 mod/contacts.php:1010 +msgid "Unarchive" +msgstr "Unarchive" + +#: mod/contacts.php:821 +msgid "Batch Actions" +msgstr "Batch actions" + +#: mod/contacts.php:867 +msgid "View all contacts" +msgstr "View all contacts" + +#: mod/contacts.php:877 +msgid "View all common friends" +msgstr "View all common friends" + +#: mod/contacts.php:884 +msgid "Advanced Contact Settings" +msgstr "Advanced contact settings" + +#: mod/contacts.php:918 +msgid "Mutual Friendship" +msgstr "Mutual friendship" + +#: mod/contacts.php:922 +msgid "is a fan of yours" +msgstr "is a fan of yours" + +#: mod/contacts.php:926 +msgid "you are a fan of" +msgstr "I follow them" + +#: mod/contacts.php:996 +msgid "Toggle Blocked status" +msgstr "Toggle blocked status" + +#: mod/contacts.php:1004 +msgid "Toggle Ignored status" +msgstr "Toggle ignored status" + +#: mod/contacts.php:1012 +msgid "Toggle Archive status" +msgstr "Toggle archive status" + +#: mod/contacts.php:1020 +msgid "Delete contact" +msgstr "Delete contact" + +#: mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Image uploaded but image cropping failed." + +#: mod/profile_photo.php:77 mod/profile_photo.php:85 mod/profile_photo.php:93 +#: mod/profile_photo.php:322 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Image size reduction [%s] failed." + +#: mod/profile_photo.php:127 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Shift-reload the page or clear browser cache if the new photo does not display immediately." + +#: mod/profile_photo.php:136 +msgid "Unable to process image" +msgstr "Unable to process image" + +#: mod/profile_photo.php:253 +msgid "Upload File:" +msgstr "Upload File:" + +#: mod/profile_photo.php:254 +msgid "Select a profile:" +msgstr "Select a profile:" + +#: mod/profile_photo.php:256 +msgid "Upload" +msgstr "Upload" + +#: mod/profile_photo.php:259 +msgid "or" +msgstr "or" + +#: mod/profile_photo.php:259 +msgid "skip this step" +msgstr "skip this step" + +#: mod/profile_photo.php:259 +msgid "select a photo from your photo albums" +msgstr "select a photo from your photo albums" + +#: mod/profile_photo.php:273 +msgid "Crop Image" +msgstr "Crop Image" + +#: mod/profile_photo.php:274 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Please adjust the image cropping for optimum viewing." + +#: mod/profile_photo.php:276 +msgid "Done Editing" +msgstr "Done editing" + +#: mod/profile_photo.php:312 +msgid "Image uploaded successfully." +msgstr "Image uploaded successfully." + +#: mod/profiles.php:42 +msgid "Profile deleted." +msgstr "Profile deleted." + +#: mod/profiles.php:58 mod/profiles.php:94 +msgid "Profile-" +msgstr "Profile-" + +#: mod/profiles.php:77 mod/profiles.php:122 +msgid "New profile created." +msgstr "New profile created." + +#: mod/profiles.php:100 +msgid "Profile unavailable to clone." +msgstr "Profile unavailable to clone." + +#: mod/profiles.php:196 +msgid "Profile Name is required." +msgstr "Profile name is required." + +#: mod/profiles.php:336 +msgid "Marital Status" +msgstr "Marital status" + +#: mod/profiles.php:340 +msgid "Romantic Partner" +msgstr "Romantic partner" + +#: mod/profiles.php:352 +msgid "Work/Employment" +msgstr "Work/Employment:" + +#: mod/profiles.php:355 +msgid "Religion" +msgstr "Religion" + +#: mod/profiles.php:359 +msgid "Political Views" +msgstr "Political views" + +#: mod/profiles.php:363 +msgid "Gender" +msgstr "Gender" + +#: mod/profiles.php:367 +msgid "Sexual Preference" +msgstr "Sexual preference" + +#: mod/profiles.php:371 +msgid "XMPP" +msgstr "XMPP" + +#: mod/profiles.php:375 +msgid "Homepage" +msgstr "Homepage" + +#: mod/profiles.php:379 mod/profiles.php:698 +msgid "Interests" +msgstr "Interests" + +#: mod/profiles.php:383 +msgid "Address" +msgstr "Address" + +#: mod/profiles.php:390 mod/profiles.php:694 +msgid "Location" +msgstr "Location" + +#: mod/profiles.php:475 +msgid "Profile updated." +msgstr "Profile updated." + +#: mod/profiles.php:567 +msgid " and " +msgstr " and " + +#: mod/profiles.php:576 +msgid "public profile" +msgstr "public profile" + +#: mod/profiles.php:579 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s changed %2$s to “%3$s”" + +#: mod/profiles.php:580 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr " - Visit %1$s's %2$s" + +#: mod/profiles.php:582 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s has an updated %2$s, changing %3$s." + +#: mod/profiles.php:640 +msgid "Hide contacts and friends:" +msgstr "Hide contacts and friends:" + +#: mod/profiles.php:645 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Hide your contact/friend list from viewers of this profile?" + +#: mod/profiles.php:670 +msgid "Show more profile fields:" +msgstr "Show more profile fields:" + +#: mod/profiles.php:682 +msgid "Profile Actions" +msgstr "Profile actions" + +#: mod/profiles.php:683 +msgid "Edit Profile Details" +msgstr "Edit Profile Details" + +#: mod/profiles.php:685 +msgid "Change Profile Photo" +msgstr "Change profile photo" + +#: mod/profiles.php:686 +msgid "View this profile" +msgstr "View this profile" + +#: mod/profiles.php:688 +msgid "Create a new profile using these settings" +msgstr "Create a new profile using these settings" + +#: mod/profiles.php:689 +msgid "Clone this profile" +msgstr "Clone this profile" + +#: mod/profiles.php:690 +msgid "Delete this profile" +msgstr "Delete this profile" + +#: mod/profiles.php:692 +msgid "Basic information" +msgstr "Basic information" + +#: mod/profiles.php:693 +msgid "Profile picture" +msgstr "Profile picture" + +#: mod/profiles.php:695 +msgid "Preferences" +msgstr "Preferences" + +#: mod/profiles.php:696 +msgid "Status information" +msgstr "Status information" + +#: mod/profiles.php:697 +msgid "Additional information" +msgstr "Additional information" + +#: mod/profiles.php:700 +msgid "Relation" +msgstr "Relation" + +#: mod/profiles.php:704 +msgid "Your Gender:" +msgstr "Gender:" + +#: mod/profiles.php:705 +msgid " Marital Status:" +msgstr " Marital status:" + +#: mod/profiles.php:707 +msgid "Example: fishing photography software" +msgstr "Example: fishing photography software" + +#: mod/profiles.php:712 +msgid "Profile Name:" +msgstr "Profile name:" + +#: mod/profiles.php:714 +msgid "" +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "This is your public profile.
It may be visible to anybody using the internet." + +#: mod/profiles.php:715 +msgid "Your Full Name:" +msgstr "My full name:" + +#: mod/profiles.php:716 +msgid "Title/Description:" +msgstr "Title/Description:" + +#: mod/profiles.php:719 +msgid "Street Address:" +msgstr "Street address:" + +#: mod/profiles.php:720 +msgid "Locality/City:" +msgstr "Locality/City:" + +#: mod/profiles.php:721 +msgid "Region/State:" +msgstr "Region/State:" + +#: mod/profiles.php:722 +msgid "Postal/Zip Code:" +msgstr "Postcode:" + +#: mod/profiles.php:723 +msgid "Country:" +msgstr "Country:" + +#: mod/profiles.php:727 +msgid "Who: (if applicable)" +msgstr "Who: (if applicable)" + +#: mod/profiles.php:727 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Examples: cathy123, Cathy Williams, cathy@example.com" + +#: mod/profiles.php:728 +msgid "Since [date]:" +msgstr "Since when:" + +#: mod/profiles.php:730 +msgid "Tell us about yourself..." +msgstr "About myself:" + +#: mod/profiles.php:731 +msgid "XMPP (Jabber) address:" +msgstr "XMPP (Jabber) address:" + +#: mod/profiles.php:731 +msgid "" +"The XMPP address will be propagated to your contacts so that they can follow" +" you." +msgstr "The XMPP address will be propagated to your contacts so that they can follow you." + +#: mod/profiles.php:732 +msgid "Homepage URL:" +msgstr "Homepage URL:" + +#: mod/profiles.php:735 +msgid "Religious Views:" +msgstr "Religious views:" + +#: mod/profiles.php:736 +msgid "Public Keywords:" +msgstr "Public keywords:" + +#: mod/profiles.php:736 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "Used for suggesting potential friends, can be seen by others." + +#: mod/profiles.php:737 +msgid "Private Keywords:" +msgstr "Private keywords:" + +#: mod/profiles.php:737 +msgid "(Used for searching profiles, never shown to others)" +msgstr "Used for searching profiles, never shown to others." + +#: mod/profiles.php:740 +msgid "Musical interests" +msgstr "Music:" + +#: mod/profiles.php:741 +msgid "Books, literature" +msgstr "Books, literature, poetry:" + +#: mod/profiles.php:742 +msgid "Television" +msgstr "Television:" + +#: mod/profiles.php:743 +msgid "Film/dance/culture/entertainment" +msgstr "Film, dance, culture, entertainment" + +#: mod/profiles.php:744 +msgid "Hobbies/Interests" +msgstr "Hobbies/Interests:" + +#: mod/profiles.php:745 +msgid "Love/romance" +msgstr "Love/Romance:" + +#: mod/profiles.php:746 +msgid "Work/employment" +msgstr "Work/Employment:" + +#: mod/profiles.php:747 +msgid "School/education" +msgstr "School/Education:" + +#: mod/profiles.php:748 +msgid "Contact information and Social Networks" +msgstr "Contact information and other social networks:" + +#: mod/profiles.php:789 +msgid "Edit/Manage Profiles" +msgstr "Edit/Manage Profiles" + +#: mod/settings.php:62 +msgid "Display" +msgstr "Display" + +#: mod/settings.php:69 mod/settings.php:891 +msgid "Social Networks" +msgstr "Social networks" + +#: mod/settings.php:90 +msgid "Connected apps" +msgstr "Connected apps" + +#: mod/settings.php:104 +msgid "Remove account" +msgstr "Remove account" + +#: mod/settings.php:159 +msgid "Missing some important data!" +msgstr "Missing some important data!" + +#: mod/settings.php:273 +msgid "Failed to connect with email account using the settings provided." +msgstr "Failed to connect with email account using the settings provided." + +#: mod/settings.php:278 +msgid "Email settings updated." +msgstr "Email settings updated." + +#: mod/settings.php:293 +msgid "Features updated" +msgstr "Features updated" + +#: mod/settings.php:363 +msgid "Relocate message has been send to your contacts" +msgstr "Relocate message has been send to your contacts" + +#: mod/settings.php:382 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Empty passwords are not allowed. Password unchanged." + +#: mod/settings.php:390 +msgid "Wrong password." +msgstr "Wrong password." + +#: mod/settings.php:401 +msgid "Password changed." +msgstr "Password changed." + +#: mod/settings.php:403 +msgid "Password update failed. Please try again." +msgstr "Password update failed. Please try again." + +#: mod/settings.php:483 +msgid " Please use a shorter name." +msgstr " Please use a shorter name." + +#: mod/settings.php:485 +msgid " Name too short." +msgstr " Name too short." + +#: mod/settings.php:494 +msgid "Wrong Password" +msgstr "Wrong password" + +#: mod/settings.php:499 +msgid " Not valid email." +msgstr "Invalid email." + +#: mod/settings.php:505 +msgid " Cannot change to that email." +msgstr " Cannot change to that email." + +#: mod/settings.php:561 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "Private forum has no privacy permissions. Using default privacy group." + +#: mod/settings.php:565 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "Private forum has no privacy permissions and no default privacy group." + +#: mod/settings.php:605 +msgid "Settings updated." +msgstr "Settings updated." + +#: mod/settings.php:681 mod/settings.php:707 mod/settings.php:743 +msgid "Add application" +msgstr "Add application" + +#: mod/settings.php:685 mod/settings.php:711 +msgid "Consumer Key" +msgstr "Consumer key" + +#: mod/settings.php:686 mod/settings.php:712 +msgid "Consumer Secret" +msgstr "Consumer secret" + +#: mod/settings.php:687 mod/settings.php:713 +msgid "Redirect" +msgstr "Redirect" + +#: mod/settings.php:688 mod/settings.php:714 +msgid "Icon url" +msgstr "Icon URL" + +#: mod/settings.php:699 +msgid "You can't edit this application." +msgstr "You cannot edit this application." + +#: mod/settings.php:742 +msgid "Connected Apps" +msgstr "Connected Apps" + +#: mod/settings.php:746 +msgid "Client key starts with" +msgstr "Client key starts with" + +#: mod/settings.php:747 +msgid "No name" +msgstr "No name" + +#: mod/settings.php:748 +msgid "Remove authorization" +msgstr "Remove authorization" + +#: mod/settings.php:760 +msgid "No Plugin settings configured" +msgstr "No plugin settings configured" + +#: mod/settings.php:769 +msgid "Plugin Settings" +msgstr "Plugin Settings" + +#: mod/settings.php:791 +msgid "Additional Features" +msgstr "Additional Features" + +#: mod/settings.php:801 mod/settings.php:805 +msgid "General Social Media Settings" +msgstr "General Social Media Settings" + +#: mod/settings.php:811 +msgid "Disable intelligent shortening" +msgstr "Disable intelligent shortening" + +#: mod/settings.php:813 +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 "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." + +#: mod/settings.php:819 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "Automatically follow any GNU Social (OStatus) followers/mentioners" + +#: mod/settings.php:821 +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 "Create a new contact for every unknown OStatus user from whom you receive a message." + +#: mod/settings.php:827 +msgid "Default group for OStatus contacts" +msgstr "Default group for OStatus contacts" + +#: mod/settings.php:835 +msgid "Your legacy GNU Social account" +msgstr "Your legacy GNU Social account" + +#: mod/settings.php:837 +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 "Entering your old GNU Social/Statusnet account name here (format: user@domain.tld), will automatically added your contacts. The field will be emptied when done." + +#: mod/settings.php:840 +msgid "Repair OStatus subscriptions" +msgstr "Repair OStatus subscriptions" + +#: mod/settings.php:849 mod/settings.php:850 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Built-in support for %s connectivity is %s" + +#: mod/settings.php:849 mod/settings.php:850 +msgid "enabled" +msgstr "enabled" + +#: mod/settings.php:849 mod/settings.php:850 +msgid "disabled" +msgstr "disabled" + +#: mod/settings.php:850 +msgid "GNU Social (OStatus)" +msgstr "GNU Social (OStatus)" + +#: mod/settings.php:884 +msgid "Email access is disabled on this site." +msgstr "Email access is disabled on this site." + +#: mod/settings.php:896 +msgid "Email/Mailbox Setup" +msgstr "Email/Mailbox setup" + +#: mod/settings.php:897 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Specify how to connect to your mailbox, if you wish to communicate with existing email contacts." + +#: mod/settings.php:898 +msgid "Last successful email check:" +msgstr "Last successful email check:" + +#: mod/settings.php:900 +msgid "IMAP server name:" +msgstr "IMAP server name:" + +#: mod/settings.php:901 +msgid "IMAP port:" +msgstr "IMAP port:" + +#: mod/settings.php:902 +msgid "Security:" +msgstr "Security:" + +#: mod/settings.php:902 mod/settings.php:907 +msgid "None" +msgstr "None" + +#: mod/settings.php:903 +msgid "Email login name:" +msgstr "Email login name:" + +#: mod/settings.php:904 +msgid "Email password:" +msgstr "Email password:" + +#: mod/settings.php:905 +msgid "Reply-to address:" +msgstr "Reply-to address:" + +#: mod/settings.php:906 +msgid "Send public posts to all email contacts:" +msgstr "Send public posts to all email contacts:" + +#: mod/settings.php:907 +msgid "Action after import:" +msgstr "Action after import:" + +#: mod/settings.php:907 +msgid "Move to folder" +msgstr "Move to folder" + +#: mod/settings.php:908 +msgid "Move to folder:" +msgstr "Move to folder:" + +#: mod/settings.php:1004 +msgid "Display Settings" +msgstr "Display Settings" + +#: mod/settings.php:1010 mod/settings.php:1033 +msgid "Display Theme:" +msgstr "Display theme:" + +#: mod/settings.php:1011 +msgid "Mobile Theme:" +msgstr "Mobile theme:" + +#: mod/settings.php:1012 +msgid "Suppress warning of insecure networks" +msgstr "Suppress warning of insecure networks" + +#: mod/settings.php:1012 +msgid "" +"Should the system suppress the warning that the current group contains " +"members of networks that can't receive non public postings." +msgstr "Suppresses warnings if groups contains members whose networks that cannot receive non-public postings." + +#: mod/settings.php:1013 +msgid "Update browser every xx seconds" +msgstr "Update browser every so many seconds:" + +#: mod/settings.php:1013 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "Minimum 10 seconds; to disable -1." + +#: mod/settings.php:1014 +msgid "Number of items to display per page:" +msgstr "Number of items displayed per page:" + +#: mod/settings.php:1014 mod/settings.php:1015 +msgid "Maximum of 100 items" +msgstr "Maximum of 100 items" + +#: mod/settings.php:1015 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "Number of items displayed per page on mobile devices:" + +#: mod/settings.php:1016 +msgid "Don't show emoticons" +msgstr "Don't show emoticons" + +#: mod/settings.php:1017 +msgid "Calendar" +msgstr "Calendar" + +#: mod/settings.php:1018 +msgid "Beginning of week:" +msgstr "Week begins: " + +#: mod/settings.php:1019 +msgid "Don't show notices" +msgstr "Don't show notices" + +#: mod/settings.php:1020 +msgid "Infinite scroll" +msgstr "Infinite scroll" + +#: mod/settings.php:1021 +msgid "Automatic updates only at the top of the network page" +msgstr "Automatically updates only top of the network page" + +#: mod/settings.php:1022 +msgid "Bandwith Saver Mode" +msgstr "Bandwith saving mode" + +#: mod/settings.php:1022 +msgid "" +"When enabled, embedded content is not displayed on automatic updates, they " +"only show on page reload." +msgstr "If enabled, embedded content is not displayed on automatic updates; it is only shown on page reload." + +#: mod/settings.php:1024 +msgid "General Theme Settings" +msgstr "Themes" + +#: mod/settings.php:1025 +msgid "Custom Theme Settings" +msgstr "Theme customisation" + +#: mod/settings.php:1026 +msgid "Content Settings" +msgstr "Content/Layout" + +#: mod/settings.php:1027 view/theme/duepuntozero/config.php:66 +#: view/theme/frio/config.php:69 view/theme/quattro/config.php:72 +#: view/theme/vier/config.php:115 +msgid "Theme settings" +msgstr "Theme settings" + +#: mod/settings.php:1111 +msgid "Account Types" +msgstr "Account types:" + +#: mod/settings.php:1112 +msgid "Personal Page Subtypes" +msgstr "Personal Page subtypes" + +#: mod/settings.php:1113 +msgid "Community Forum Subtypes" +msgstr "Community forum subtypes" + +#: mod/settings.php:1120 +msgid "Personal Page" +msgstr "Personal Page" + +#: mod/settings.php:1121 +msgid "This account is a regular personal profile" +msgstr "Regular personal profile" + +#: mod/settings.php:1124 +msgid "Organisation Page" +msgstr "Organisation Page" + +#: mod/settings.php:1125 +msgid "This account is a profile for an organisation" +msgstr "Profile for an organisation" + +#: mod/settings.php:1128 +msgid "News Page" +msgstr "News Page" + +#: mod/settings.php:1129 +msgid "This account is a news account/reflector" +msgstr "News reflector" + +#: mod/settings.php:1132 +msgid "Community Forum" +msgstr "Community Forum" + +#: mod/settings.php:1133 +msgid "" +"This account is a community forum where people can discuss with each other" +msgstr "Discussion forum for community" + +#: mod/settings.php:1136 +msgid "Normal Account Page" +msgstr "Standard" + +#: mod/settings.php:1137 +msgid "This account is a normal personal profile" +msgstr "Regular personal profile" + +#: mod/settings.php:1140 +msgid "Soapbox Page" +msgstr "Soapbox" + +#: mod/settings.php:1141 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Automatically approves contact requests as followers" + +#: mod/settings.php:1144 +msgid "Public Forum" +msgstr "Public forum" + +#: mod/settings.php:1145 +msgid "Automatically approve all contact requests" +msgstr "Automatically approve all contact requests" + +#: mod/settings.php:1148 +msgid "Automatic Friend Page" +msgstr "Popularity" + +#: mod/settings.php:1149 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Automatically approves contact requests as friends" + +#: mod/settings.php:1152 +msgid "Private Forum [Experimental]" +msgstr "Private forum [Experimental]" + +#: mod/settings.php:1153 +msgid "Private forum - approved members only" +msgstr "Private forum - approved members only" + +#: mod/settings.php:1164 +msgid "OpenID:" +msgstr "OpenID:" + +#: mod/settings.php:1164 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Optional) Allow this OpenID to login to this account." + +#: mod/settings.php:1172 +msgid "Publish your default profile in your local site directory?" +msgstr "Publish default profile in local site directory?" + +#: mod/settings.php:1172 +msgid "Your profile may be visible in public." +msgstr "Your local directory may be publicly visible" + +#: mod/settings.php:1178 +msgid "Publish your default profile in the global social directory?" +msgstr "Publish default profile in global directory?" + +#: mod/settings.php:1185 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Hide my contact list from others?" + +#: mod/settings.php:1189 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "Posting public messages to Diaspora and other networks will not be possible if enabled" + +#: mod/settings.php:1194 +msgid "Allow friends to post to your profile page?" +msgstr "Allow friends to post to my wall?" + +#: mod/settings.php:1199 +msgid "Allow friends to tag your posts?" +msgstr "Allow friends to tag my post?" + +#: mod/settings.php:1204 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Allow us to suggest you as a potential friend to new members?" + +#: mod/settings.php:1209 +msgid "Permit unknown people to send you private mail?" +msgstr "Allow unknown people to send me private messages?" + +#: mod/settings.php:1217 +msgid "Profile is not published." +msgstr "Profile is not published." + +#: mod/settings.php:1225 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "My identity address: '%s' or '%s'" + +#: mod/settings.php:1232 +msgid "Automatically expire posts after this many days:" +msgstr "Automatically expire posts after this many days:" + +#: mod/settings.php:1232 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Posts will not expire if empty; expired posts will be deleted" + +#: mod/settings.php:1233 +msgid "Advanced expiration settings" +msgstr "Advanced expiration settings" + +#: mod/settings.php:1234 +msgid "Advanced Expiration" +msgstr "Advanced expiration" + +#: mod/settings.php:1235 +msgid "Expire posts:" +msgstr "Expire posts:" + +#: mod/settings.php:1236 +msgid "Expire personal notes:" +msgstr "Expire personal notes:" + +#: mod/settings.php:1237 +msgid "Expire starred posts:" +msgstr "Expire starred posts:" + +#: mod/settings.php:1238 +msgid "Expire photos:" +msgstr "Expire photos:" + +#: mod/settings.php:1239 +msgid "Only expire posts by others:" +msgstr "Only expire posts by others:" + +#: mod/settings.php:1270 +msgid "Account Settings" +msgstr "Account Settings" + +#: mod/settings.php:1278 +msgid "Password Settings" +msgstr "Password change" + +#: mod/settings.php:1280 +msgid "Leave password fields blank unless changing" +msgstr "Leave password fields blank unless changing" + +#: mod/settings.php:1281 +msgid "Current Password:" +msgstr "Current password:" + +#: mod/settings.php:1281 mod/settings.php:1282 +msgid "Your current password to confirm the changes" +msgstr "Current password to confirm change" + +#: mod/settings.php:1282 +msgid "Password:" +msgstr "Password:" + +#: mod/settings.php:1286 +msgid "Basic Settings" +msgstr "Basic information" + +#: mod/settings.php:1288 +msgid "Email Address:" +msgstr "Email address:" + +#: mod/settings.php:1289 +msgid "Your Timezone:" +msgstr "Time zone:" + +#: mod/settings.php:1290 +msgid "Your Language:" +msgstr "Language:" + +#: mod/settings.php:1290 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "Set the language of your Friendica interface and emails receiving" + +#: mod/settings.php:1291 +msgid "Default Post Location:" +msgstr "Posting location:" + +#: mod/settings.php:1292 +msgid "Use Browser Location:" +msgstr "Use browser location:" + +#: mod/settings.php:1295 +msgid "Security and Privacy Settings" +msgstr "Security and privacy" + +#: mod/settings.php:1297 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximum friend requests per day:" + +#: mod/settings.php:1297 mod/settings.php:1327 +msgid "(to prevent spam abuse)" +msgstr "May prevent spam or abuse registrations" + +#: mod/settings.php:1298 +msgid "Default Post Permissions" +msgstr "Default post permissions" + +#: mod/settings.php:1299 +msgid "(click to open/close)" +msgstr "(click to open/close)" + +#: mod/settings.php:1310 +msgid "Default Private Post" +msgstr "Default private post" + +#: mod/settings.php:1311 +msgid "Default Public Post" +msgstr "Default public post" + +#: mod/settings.php:1315 +msgid "Default Permissions for New Posts" +msgstr "Default permissions for new posts" + +#: mod/settings.php:1327 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum private messages per day from unknown people:" + +#: mod/settings.php:1330 +msgid "Notification Settings" +msgstr "Notification" + +#: mod/settings.php:1331 +msgid "By default post a status message when:" +msgstr "By default post a status message when:" + +#: mod/settings.php:1332 +msgid "accepting a friend request" +msgstr "accepting friend requests" + +#: mod/settings.php:1333 +msgid "joining a forum/community" +msgstr "joining forums or communities" + +#: mod/settings.php:1334 +msgid "making an interesting profile change" +msgstr "making an interesting profile change" + +#: mod/settings.php:1335 +msgid "Send a notification email when:" +msgstr "Send notification email when:" + +#: mod/settings.php:1336 +msgid "You receive an introduction" +msgstr "Receiving an introduction" + +#: mod/settings.php:1337 +msgid "Your introductions are confirmed" +msgstr "My introductions are confirmed" + +#: mod/settings.php:1338 +msgid "Someone writes on your profile wall" +msgstr "Someone writes on my wall" + +#: mod/settings.php:1339 +msgid "Someone writes a followup comment" +msgstr "A follow up comment is posted" + +#: mod/settings.php:1340 +msgid "You receive a private message" +msgstr "receiving a private message" + +#: mod/settings.php:1341 +msgid "You receive a friend suggestion" +msgstr "Receiving a friend suggestion" + +#: mod/settings.php:1342 +msgid "You are tagged in a post" +msgstr "Tagged in a post" + +#: mod/settings.php:1343 +msgid "You are poked/prodded/etc. in a post" +msgstr "Poked in a post" + +#: mod/settings.php:1345 +msgid "Activate desktop notifications" +msgstr "Activate desktop notifications" + +#: mod/settings.php:1345 +msgid "Show desktop popup on new notifications" +msgstr "Show desktop pop-up on new notifications" + +#: mod/settings.php:1347 +msgid "Text-only notification emails" +msgstr "Text-only notification emails" + +#: mod/settings.php:1349 +msgid "Send text only notification emails, without the html part" +msgstr "Receive text only emails without HTML " + +#: mod/settings.php:1351 +msgid "Advanced Account/Page Type Settings" +msgstr "Advanced account types" + +#: mod/settings.php:1352 +msgid "Change the behaviour of this account for special situations" +msgstr "Change behaviour of this account for special situations" + +#: mod/settings.php:1355 +msgid "Relocate" +msgstr "Recent relocation" + +#: mod/settings.php:1356 +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 "If you have moved this profile from another server and some of your contacts don't receive your updates:" + +#: mod/settings.php:1357 +msgid "Resend relocate message to contacts" +msgstr "Resend relocation message to contacts" + +#: object/Item.php:356 +msgid "via" +msgstr "via" + +#: view/theme/duepuntozero/config.php:47 +msgid "greenzero" +msgstr "greenzero" + +#: view/theme/duepuntozero/config.php:48 +msgid "purplezero" +msgstr "purplezero" + +#: view/theme/duepuntozero/config.php:49 +msgid "easterbunny" +msgstr "easterbunny" + +#: view/theme/duepuntozero/config.php:50 +msgid "darkzero" +msgstr "darkzero" + +#: view/theme/duepuntozero/config.php:51 +msgid "comix" +msgstr "comix" + +#: view/theme/duepuntozero/config.php:52 +msgid "slackr" +msgstr "slackr" + +#: view/theme/duepuntozero/config.php:67 +msgid "Variations" +msgstr "Variations" + +#: view/theme/frio/php/Image.php:23 +msgid "Repeat the image" +msgstr "Repeat the image" + +#: view/theme/frio/php/Image.php:23 +msgid "Will repeat your image to fill the background." +msgstr "Will repeat your image to fill the background." + +#: view/theme/frio/php/Image.php:25 +msgid "Stretch" +msgstr "Stretch" + +#: view/theme/frio/php/Image.php:25 +msgid "Will stretch to width/height of the image." +msgstr "Will stretch to width/height of the image." + +#: view/theme/frio/php/Image.php:27 +msgid "Resize fill and-clip" +msgstr "Resize fill and-clip" + +#: view/theme/frio/php/Image.php:27 +msgid "Resize to fill and retain aspect ratio." +msgstr "Resize to fill and retain aspect ratio." + +#: view/theme/frio/php/Image.php:29 +msgid "Resize best fit" +msgstr "Resize to best fit" + +#: view/theme/frio/php/Image.php:29 +msgid "Resize to best fit and retain aspect ratio." +msgstr "Resize to best fit and retain aspect ratio." + +#: view/theme/frio/config.php:50 +msgid "Default" +msgstr "Default" + +#: view/theme/frio/config.php:62 +msgid "Note: " +msgstr "Note - " + +#: view/theme/frio/config.php:62 +msgid "Check image permissions if all users are allowed to visit the image" +msgstr "Check image permissions if all users are allowed to visit the image" + +#: view/theme/frio/config.php:70 +msgid "Select scheme" +msgstr "Select scheme:" + +#: view/theme/frio/config.php:71 +msgid "Navigation bar background color" +msgstr "Navigation bar background colour:" + +#: view/theme/frio/config.php:72 +msgid "Navigation bar icon color " +msgstr "Navigation bar icon colour:" + +#: view/theme/frio/config.php:73 +msgid "Link color" +msgstr "Link colour:" + +#: view/theme/frio/config.php:74 +msgid "Set the background color" +msgstr "Background colour:" + +#: view/theme/frio/config.php:75 +msgid "Content background transparency" +msgstr "Content background transparency:" + +#: view/theme/frio/config.php:76 +msgid "Set the background image" +msgstr "Background image:" + +#: view/theme/frio/theme.php:228 +msgid "Guest" +msgstr "Guest" + +#: view/theme/frio/theme.php:234 +msgid "Visitor" +msgstr "Visitor" + +#: view/theme/quattro/config.php:73 +msgid "Alignment" +msgstr "Alignment" + +#: view/theme/quattro/config.php:73 +msgid "Left" +msgstr "Left" + +#: view/theme/quattro/config.php:73 +msgid "Center" +msgstr "Centre" + +#: view/theme/quattro/config.php:74 +msgid "Color scheme" +msgstr "Colour scheme" + +#: view/theme/quattro/config.php:75 +msgid "Posts font size" +msgstr "Posts font size" + +#: view/theme/quattro/config.php:76 +msgid "Textareas font size" +msgstr "Textareas font size" + +#: view/theme/vier/config.php:70 +msgid "Comma separated list of helper forums" +msgstr "Comma separated list of helper forums" + +#: view/theme/vier/config.php:116 +msgid "Set style" +msgstr "Set style" + +#: view/theme/vier/config.php:117 +msgid "Community Pages" +msgstr "Community pages" + +#: view/theme/vier/config.php:118 view/theme/vier/theme.php:151 +msgid "Community Profiles" +msgstr "Community profiles" + +#: view/theme/vier/config.php:119 +msgid "Help or @NewHere ?" +msgstr "Help or @NewHere ?" + +#: view/theme/vier/config.php:120 view/theme/vier/theme.php:392 +msgid "Connect Services" +msgstr "Connect services" + +#: view/theme/vier/config.php:121 view/theme/vier/theme.php:199 +msgid "Find Friends" +msgstr "Find friends" + +#: view/theme/vier/config.php:122 view/theme/vier/theme.php:181 +msgid "Last users" +msgstr "Last users" + +#: view/theme/vier/theme.php:200 +msgid "Local Directory" +msgstr "Local directory" + +#: view/theme/vier/theme.php:292 +msgid "Quick Start" +msgstr "Quick start" + +#: src/App.php:505 +msgid "Delete this item?" +msgstr "Delete this item?" + +#: src/App.php:507 +msgid "show fewer" +msgstr "Show fewer." + +#: index.php:436 +msgid "toggle mobile" +msgstr "Toggle mobile" + +#: boot.php:726 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Update %s failed. See error logs." + +#: boot.php:838 +msgid "Create a New Account" +msgstr "Create a new account" + +#: boot.php:866 +msgid "Password: " +msgstr "Password: " + +#: boot.php:867 +msgid "Remember me" +msgstr "Remember me" + +#: boot.php:870 +msgid "Or login using OpenID: " +msgstr "Or login with OpenID: " + +#: boot.php:876 +msgid "Forgot your password?" +msgstr "Forgot your password?" + +#: boot.php:879 +msgid "Website Terms of Service" +msgstr "Website Terms of Service" + +#: boot.php:880 +msgid "terms of service" +msgstr "Terms of service" + +#: boot.php:882 +msgid "Website Privacy Policy" +msgstr "Website Privacy Policy" + +#: boot.php:883 +msgid "privacy policy" +msgstr "Privacy policy" From 098ef3de99ae274d68444ef841e44e40d17afd53 Mon Sep 17 00:00:00 2001 From: Andy H3 Date: Mon, 5 Jun 2017 22:21:31 +0700 Subject: [PATCH 082/125] Create strings.php --- view/lang/en-US/strings.php | 2062 +++++++++++++++++++++++++++++++++++ 1 file changed, 2062 insertions(+) create mode 100644 view/lang/en-US/strings.php diff --git a/view/lang/en-US/strings.php b/view/lang/en-US/strings.php new file mode 100644 index 0000000000..7f1ca30a6f --- /dev/null +++ b/view/lang/en-US/strings.php @@ -0,0 +1,2062 @@ +strings["Unknown | Not categorised"] = "Unknown | Not categorized"; +$a->strings["Block immediately"] = "Block immediately"; +$a->strings["Shady, spammer, self-marketer"] = "Shady, spammer, self-marketer"; +$a->strings["Known to me, but no opinion"] = "Known to me, but no opinion"; +$a->strings["OK, probably harmless"] = "OK, probably harmless"; +$a->strings["Reputable, has my trust"] = "Reputable, has my trust"; +$a->strings["Frequently"] = "Frequently"; +$a->strings["Hourly"] = "Hourly"; +$a->strings["Twice daily"] = "Twice daily"; +$a->strings["Daily"] = "Daily"; +$a->strings["Weekly"] = "Weekly"; +$a->strings["Monthly"] = "Monthly"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Email"] = "Email"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Google+"] = "Google+"; +$a->strings["pump.io"] = "Pump.io"; +$a->strings["Twitter"] = "Twitter"; +$a->strings["Diaspora Connector"] = "Diaspora connector"; +$a->strings["GNU Social Connector"] = "GNU Social connector"; +$a->strings["pnut"] = "Pnut"; +$a->strings["App.net"] = "App.net"; +$a->strings["General Features"] = "General"; +$a->strings["Multiple Profiles"] = "Multiple profiles"; +$a->strings["Ability to create multiple profiles"] = "Ability to create multiple profiles"; +$a->strings["Photo Location"] = "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."] = "Photo metadata is normally removed. This extracts the location (if present) prior to removing metadata and links it to a map."; +$a->strings["Export Public Calendar"] = "Export public calendar"; +$a->strings["Ability for visitors to download the public calendar"] = "Ability for visitors to download the public calendar"; +$a->strings["Post Composition Features"] = "Post composition"; +$a->strings["Post Preview"] = "Post preview"; +$a->strings["Allow previewing posts and comments before publishing them"] = "Allow previewing posts and comments before publishing them"; +$a->strings["Auto-mention Forums"] = "Auto-mention forums"; +$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Add/Remove mention when a forum page is selected or deselected in the ACL window."; +$a->strings["Network Sidebar Widgets"] = "Network sidebars"; +$a->strings["Search by Date"] = "Search by date"; +$a->strings["Ability to select posts by date ranges"] = "Ability to select posts by date ranges"; +$a->strings["List Forums"] = "List forums"; +$a->strings["Enable widget to display the forums your are connected with"] = "Enable widget to display the forums your are connected with"; +$a->strings["Group Filter"] = "Group filter"; +$a->strings["Enable widget to display Network posts only from selected group"] = "Enable widget to display network posts only from selected group"; +$a->strings["Network Filter"] = "Network filter"; +$a->strings["Enable widget to display Network posts only from selected network"] = "Enable widget to display network posts only from selected network"; +$a->strings["Saved Searches"] = "Saved searches"; +$a->strings["Save search terms for re-use"] = "Save search terms for re-use"; +$a->strings["Network Tabs"] = "Network tabs"; +$a->strings["Network Personal Tab"] = "Network personal tab"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Enable tab to display only network posts that you've interacted with"; +$a->strings["Network New Tab"] = "Network new tab"; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Enable tab to display only new network posts (last 12 hours)"; +$a->strings["Network Shared Links Tab"] = "Network shared links tab"; +$a->strings["Enable tab to display only Network posts with links in them"] = "Enable tab to display only network posts with links in them"; +$a->strings["Post/Comment Tools"] = "Post/Comment tools"; +$a->strings["Multiple Deletion"] = "Multiple deletion"; +$a->strings["Select and delete multiple posts/comments at once"] = "Select and delete multiple posts/comments at once"; +$a->strings["Edit Sent Posts"] = "Edit sent posts"; +$a->strings["Edit and correct posts and comments after sending"] = "Ability to editing posts and comments after sending"; +$a->strings["Tagging"] = "Tagging"; +$a->strings["Ability to tag existing posts"] = "Ability to tag existing posts"; +$a->strings["Post Categories"] = "Post categories"; +$a->strings["Add categories to your posts"] = "Add categories to your posts"; +$a->strings["Saved Folders"] = "Saved Folders"; +$a->strings["Ability to file posts under folders"] = "Ability to file posts under folders"; +$a->strings["Dislike Posts"] = "Dislike posts"; +$a->strings["Ability to dislike posts/comments"] = "Ability to dislike posts/comments"; +$a->strings["Star Posts"] = "Star posts"; +$a->strings["Ability to mark special posts with a star indicator"] = "Ability to highlight posts with a star"; +$a->strings["Mute Post Notifications"] = "Mute post notifications"; +$a->strings["Ability to mute notifications for a thread"] = "Ability to mute notifications for a thread"; +$a->strings["Advanced Profile Settings"] = "Advanced profiles"; +$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Show visitors of public community forums at the advanced profile page"; +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "A deleted group with this name has been revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."; +$a->strings["Default privacy group for new contacts"] = "Default privacy group for new contacts"; +$a->strings["Everybody"] = "Everybody"; +$a->strings["edit"] = "edit"; +$a->strings["Groups"] = "Groups"; +$a->strings["Edit groups"] = "Edit groups"; +$a->strings["Edit group"] = "Edit group"; +$a->strings["Create a new group"] = "Create new group"; +$a->strings["Group Name: "] = "Group name: "; +$a->strings["Contacts not in any group"] = "Contacts not in any group"; +$a->strings["add"] = "add"; +$a->strings["Forums"] = "Forums"; +$a->strings["External link to forum"] = "External link to forum"; +$a->strings["show more"] = "Show more..."; +$a->strings["System"] = "System"; +$a->strings["Network"] = "Network"; +$a->strings["Personal"] = "Personal"; +$a->strings["Home"] = "Home"; +$a->strings["Introductions"] = "Introductions"; +$a->strings["%s commented on %s's post"] = "%s commented on %s's post"; +$a->strings["%s created a new post"] = "%s posted something new"; +$a->strings["%s liked %s's post"] = "%s liked %s's post"; +$a->strings["%s disliked %s's post"] = "%s disliked %s's post"; +$a->strings["%s is attending %s's event"] = "%s is going to %s's event"; +$a->strings["%s is not attending %s's event"] = "%s is not going to %s's event"; +$a->strings["%s may attend %s's event"] = "%s may go to %s's event"; +$a->strings["%s is now friends with %s"] = "%s is now friends with %s"; +$a->strings["Friend Suggestion"] = "Friend suggestion"; +$a->strings["Friend/Connect Request"] = "Friend/Contact request"; +$a->strings["New Follower"] = "New follower"; +$a->strings["Post to Email"] = "Post to email"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Connectors are disabled since \"%s\" is enabled."; +$a->strings["Hide your profile details from unknown viewers?"] = "Hide profile details from unknown viewers?"; +$a->strings["Visible to everybody"] = "Visible to everybody"; +$a->strings["show"] = "show"; +$a->strings["don't show"] = "don't show"; +$a->strings["CC: email addresses"] = "CC: email addresses"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Example: bob@example.com, mary@example.com"; +$a->strings["Permissions"] = "Permissions"; +$a->strings["Close"] = "Close"; +$a->strings["Logged out."] = "Logged out."; +$a->strings["Login failed."] = "Login failed."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."; +$a->strings["The error message was:"] = "The error message was:"; +$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +$a->strings["Starts:"] = "Starts:"; +$a->strings["Finishes:"] = "Finishes:"; +$a->strings["Location:"] = "Location:"; +$a->strings["Add New Contact"] = "Add new contact"; +$a->strings["Enter address or web location"] = "Enter address or web location"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Example: jo@example.com, http://example.com/jo"; +$a->strings["Connect"] = "Connect"; +$a->strings["%d invitation available"] = array( + 0 => "%d invitation available", + 1 => "%d invitations available", +); +$a->strings["Find People"] = "Find people"; +$a->strings["Enter name or interest"] = "Enter name or interest"; +$a->strings["Connect/Follow"] = "Connect/Follow"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Examples: Robert Morgenstein, fishing"; +$a->strings["Find"] = "Find"; +$a->strings["Friend Suggestions"] = "Friend suggestions"; +$a->strings["Similar Interests"] = "Similar interests"; +$a->strings["Random Profile"] = "Random profile"; +$a->strings["Invite Friends"] = "Invite friends"; +$a->strings["Networks"] = "Networks"; +$a->strings["All Networks"] = "All networks"; +$a->strings["Everything"] = "Everything"; +$a->strings["Categories"] = "Categories"; +$a->strings["%d contact in common"] = array( + 0 => "%d contact in common", + 1 => "%d contacts in common", +); +$a->strings["event"] = "event"; +$a->strings["status"] = "status"; +$a->strings["photo"] = "photo"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s likes %2\$s's %3\$s"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s doesn't like %2\$s's %3\$s"; +$a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s goes to %2\$s's %3\$s"; +$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s doesn't go %2\$s's %3\$s"; +$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s might go to %2\$s's %3\$s"; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s is now friends with %2\$s"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s poked %2\$s"; +$a->strings["%1\$s is currently %2\$s"] = "%1\$s is currently %2\$s"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s tagged %2\$s's %3\$s with %4\$s"; +$a->strings["post/item"] = "Post/Item"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s marked %2\$s's %3\$s as favorite"; +$a->strings["Likes"] = "Likes"; +$a->strings["Dislikes"] = "Dislikes"; +$a->strings["Attending"] = array( + 0 => "Attending", + 1 => "Attending", +); +$a->strings["Not attending"] = "Not attending"; +$a->strings["Might attend"] = "Might attend"; +$a->strings["Select"] = "Select"; +$a->strings["Delete"] = "Delete"; +$a->strings["View %s's profile @ %s"] = "View %s's profile @ %s"; +$a->strings["Categories:"] = "Categories:"; +$a->strings["Filed under:"] = "Filed under:"; +$a->strings["%s from %s"] = "%s from %s"; +$a->strings["View in context"] = "View in context"; +$a->strings["Please wait"] = "Please wait"; +$a->strings["remove"] = "Remove"; +$a->strings["Delete Selected Items"] = "Delete selected items"; +$a->strings["Follow Thread"] = "Follow thread"; +$a->strings["View Status"] = "View status"; +$a->strings["View Profile"] = "View profile"; +$a->strings["View Photos"] = "View photos"; +$a->strings["Network Posts"] = "Network posts"; +$a->strings["View Contact"] = "View contact"; +$a->strings["Send PM"] = "Send PM"; +$a->strings["Poke"] = "Poke"; +$a->strings["%s likes this."] = "%s likes this."; +$a->strings["%s doesn't like this."] = "%s doesn't like this."; +$a->strings["%s attends."] = "%s attends."; +$a->strings["%s doesn't attend."] = "%s doesn't attend."; +$a->strings["%s attends maybe."] = "%s may attend."; +$a->strings["and"] = "and"; +$a->strings[", and %d other people"] = ", and %d other people"; +$a->strings["%2\$d people like this"] = "%2\$d people like this"; +$a->strings["%s like this."] = "%s like this."; +$a->strings["%2\$d people don't like this"] = "%2\$d people don't like this"; +$a->strings["%s don't like this."] = "%s don't like this."; +$a->strings["%2\$d people attend"] = "%2\$d people attend"; +$a->strings["%s attend."] = "%s attend."; +$a->strings["%2\$d people don't attend"] = "%2\$d people don't attend"; +$a->strings["%s don't attend."] = "%s don't attend."; +$a->strings["%2\$d people attend maybe"] = "%2\$d people attend maybe"; +$a->strings["%s anttend maybe."] = "%s attend maybe."; +$a->strings["Visible to everybody"] = "Visible to everybody"; +$a->strings["Please enter a link URL:"] = "Please enter a link URL:"; +$a->strings["Please enter a video link/URL:"] = "Please enter a video link/URL:"; +$a->strings["Please enter an audio link/URL:"] = "Please enter an audio link/URL:"; +$a->strings["Tag term:"] = "Tag term:"; +$a->strings["Save to Folder:"] = "Save to folder:"; +$a->strings["Where are you right now?"] = "Where are you right now?"; +$a->strings["Delete item(s)?"] = "Delete item(s)?"; +$a->strings["Share"] = "Share"; +$a->strings["Upload photo"] = "Upload photo"; +$a->strings["upload photo"] = "upload photo"; +$a->strings["Attach file"] = "Attach file"; +$a->strings["attach file"] = "attach file"; +$a->strings["Insert web link"] = "Insert web link"; +$a->strings["web link"] = "web link"; +$a->strings["Insert video link"] = "Insert video link"; +$a->strings["video link"] = "video link"; +$a->strings["Insert audio link"] = "Insert audio link"; +$a->strings["audio link"] = "audio link"; +$a->strings["Set your location"] = "Set your location"; +$a->strings["set location"] = "set location"; +$a->strings["Clear browser location"] = "Clear browser location"; +$a->strings["clear location"] = "clear location"; +$a->strings["Set title"] = "Set title"; +$a->strings["Categories (comma-separated list)"] = "Categories (comma-separated list)"; +$a->strings["Permission settings"] = "Permission settings"; +$a->strings["permissions"] = "permissions"; +$a->strings["Public post"] = "Public post"; +$a->strings["Preview"] = "Preview"; +$a->strings["Cancel"] = "Cancel"; +$a->strings["Post to Groups"] = "Post to groups"; +$a->strings["Post to Contacts"] = "Post to contacts"; +$a->strings["Private post"] = "Private post"; +$a->strings["Message"] = "Message"; +$a->strings["Browser"] = "Browser"; +$a->strings["View all"] = "View all"; +$a->strings["Like"] = array( + 0 => "Like", + 1 => "Likes", +); +$a->strings["Dislike"] = array( + 0 => "Dislike", + 1 => "Dislikes", +); +$a->strings["Not Attending"] = array( + 0 => "Not attending", + 1 => "Not attending", +); +$a->strings["Undecided"] = array( + 0 => "Undecided", + 1 => "Undecided", +); +$a->strings["Miscellaneous"] = "Miscellaneous"; +$a->strings["Birthday:"] = "Birthday:"; +$a->strings["Age: "] = "Age: "; +$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD or MM-DD"; +$a->strings["never"] = "never"; +$a->strings["less than a second ago"] = "less than a second ago"; +$a->strings["year"] = "year"; +$a->strings["years"] = "years"; +$a->strings["month"] = "month"; +$a->strings["months"] = "months"; +$a->strings["week"] = "week"; +$a->strings["weeks"] = "weeks"; +$a->strings["day"] = "day"; +$a->strings["days"] = "days"; +$a->strings["hour"] = "hour"; +$a->strings["hours"] = "hours"; +$a->strings["minute"] = "minute"; +$a->strings["minutes"] = "minutes"; +$a->strings["second"] = "second"; +$a->strings["seconds"] = "seconds"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s ago"; +$a->strings["%s's birthday"] = "%s's birthday"; +$a->strings["Happy Birthday %s"] = "Happy Birthday, %s!"; +$a->strings["(no subject)"] = "(no subject)"; +$a->strings["noreply"] = "noreply"; +$a->strings["%s\\'s birthday"] = "%s\\'s birthday"; +$a->strings["all-day"] = "All-day"; +$a->strings["Sun"] = "Sun"; +$a->strings["Mon"] = "Mon"; +$a->strings["Tue"] = "Tue"; +$a->strings["Wed"] = "Wed"; +$a->strings["Thu"] = "Thu"; +$a->strings["Fri"] = "Fri"; +$a->strings["Sat"] = "Sat"; +$a->strings["Sunday"] = "Sunday"; +$a->strings["Monday"] = "Monday"; +$a->strings["Tuesday"] = "Tuesday"; +$a->strings["Wednesday"] = "Wednesday"; +$a->strings["Thursday"] = "Thursday"; +$a->strings["Friday"] = "Friday"; +$a->strings["Saturday"] = "Saturday"; +$a->strings["Jan"] = "Jan"; +$a->strings["Feb"] = "Feb"; +$a->strings["Mar"] = "Mar"; +$a->strings["Apr"] = "Apr"; +$a->strings["May"] = "May"; +$a->strings["Jun"] = "Jun"; +$a->strings["Jul"] = "Jul"; +$a->strings["Aug"] = "Aug"; +$a->strings["Sept"] = "Sep"; +$a->strings["Oct"] = "Oct"; +$a->strings["Nov"] = "Nov"; +$a->strings["Dec"] = "Dec"; +$a->strings["January"] = "January"; +$a->strings["February"] = "February"; +$a->strings["March"] = "March"; +$a->strings["April"] = "April"; +$a->strings["June"] = "June"; +$a->strings["July"] = "July"; +$a->strings["August"] = "August"; +$a->strings["September"] = "September"; +$a->strings["October"] = "October"; +$a->strings["November"] = "November"; +$a->strings["December"] = "December"; +$a->strings["today"] = "today"; +$a->strings["No events to display"] = "No events to display"; +$a->strings["l, F j"] = "l, F j"; +$a->strings["Edit event"] = "Edit event"; +$a->strings["Delete event"] = "Delete event"; +$a->strings["link to source"] = "Link to source"; +$a->strings["Export"] = "Export"; +$a->strings["Export calendar as ical"] = "Export calendar as ical"; +$a->strings["Export calendar as csv"] = "Export calendar as csv"; +$a->strings["Disallowed profile URL."] = "Disallowed profile URL."; +$a->strings["Blocked domain"] = "Blocked domain"; +$a->strings["Connect URL missing."] = "Connect URL missing."; +$a->strings["This site is not configured to allow communications with other networks."] = "This site is not configured to allow communications with other networks."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "No compatible communication protocols or feeds were discovered."; +$a->strings["The profile address specified does not provide adequate information."] = "The profile address specified does not provide adequate information."; +$a->strings["An author or name was not found."] = "An author or name was not found."; +$a->strings["No browser URL could be matched to this address."] = "No browser URL could be matched to this address."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Unable to match @-style identity address with a known protocol or email contact."; +$a->strings["Use mailto: in front of address to force email check."] = "Use mailto: in front of address to force email check."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "The profile address specified belongs to a network which has been disabled on this site."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Limited profile: This person will be unable to receive direct/private messages from you."; +$a->strings["Unable to retrieve contact information."] = "Unable to retrieve contact information."; +$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s is going to %2\$s's %3\$s"; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s is not going to %2\$s's %3\$s"; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s may go to %2\$s's %3\$s"; +$a->strings["Contact Photos"] = "Contact photos"; +$a->strings["Welcome "] = "Welcome "; +$a->strings["Please upload a profile photo."] = "Please upload a profile photo."; +$a->strings["Welcome back "] = "Welcome back "; +$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "The form security token was incorrect. This probably happened because the form has not been submitted within 3 hours."; +$a->strings["newer"] = "Later posts"; +$a->strings["older"] = "Earlier posts"; +$a->strings["first"] = "first"; +$a->strings["prev"] = "prev"; +$a->strings["next"] = "next"; +$a->strings["last"] = "last"; +$a->strings["Loading more entries..."] = "Loading more entries..."; +$a->strings["The end"] = "The end"; +$a->strings["No contacts"] = "No contacts"; +$a->strings["%d Contact"] = array( + 0 => "%d contact", + 1 => "%d contacts", +); +$a->strings["View Contacts"] = "View contacts"; +$a->strings["Search"] = "Search"; +$a->strings["Save"] = "Save"; +$a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, content"; +$a->strings["Full Text"] = "Full text"; +$a->strings["Tags"] = "Tags"; +$a->strings["Contacts"] = "Contacts"; +$a->strings["poke"] = "poke"; +$a->strings["poked"] = "poked"; +$a->strings["ping"] = "ping"; +$a->strings["pinged"] = "pinged"; +$a->strings["prod"] = "prod"; +$a->strings["prodded"] = "prodded"; +$a->strings["slap"] = "slap"; +$a->strings["slapped"] = "slapped"; +$a->strings["finger"] = "finger"; +$a->strings["fingered"] = "fingered"; +$a->strings["rebuff"] = "rebuff"; +$a->strings["rebuffed"] = "rebuffed"; +$a->strings["happy"] = "happy"; +$a->strings["sad"] = "sad"; +$a->strings["mellow"] = "mellow"; +$a->strings["tired"] = "tired"; +$a->strings["perky"] = "perky"; +$a->strings["angry"] = "angry"; +$a->strings["stupified"] = "stupefied"; +$a->strings["puzzled"] = "puzzled"; +$a->strings["interested"] = "interested"; +$a->strings["bitter"] = "bitter"; +$a->strings["cheerful"] = "cheerful"; +$a->strings["alive"] = "alive"; +$a->strings["annoyed"] = "annoyed"; +$a->strings["anxious"] = "anxious"; +$a->strings["cranky"] = "cranky"; +$a->strings["disturbed"] = "disturbed"; +$a->strings["frustrated"] = "frustrated"; +$a->strings["motivated"] = "motivated"; +$a->strings["relaxed"] = "relaxed"; +$a->strings["surprised"] = "surprised"; +$a->strings["View Video"] = "View video"; +$a->strings["bytes"] = "bytes"; +$a->strings["Click to open/close"] = "Click to open/close"; +$a->strings["View on separate page"] = "View on separate page"; +$a->strings["view on separate page"] = "view on separate page"; +$a->strings["activity"] = "activity"; +$a->strings["comment"] = array( + 0 => "comment", + 1 => "comments", +); +$a->strings["post"] = "post"; +$a->strings["Item filed"] = "Item filed"; +$a->strings["Drop Contact"] = "Drop contact"; +$a->strings["Organisation"] = "Organization"; +$a->strings["News"] = "News"; +$a->strings["Forum"] = "Forum"; +$a->strings["Image/photo"] = "Image/Photo"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["$1 wrote:"] = "$1 wrote:"; +$a->strings["Encrypted content"] = "Encrypted content"; +$a->strings["Invalid source protocol"] = "Invalid source protocol"; +$a->strings["Invalid link protocol"] = "Invalid link protocol"; +$a->strings["Friendica Notification"] = "Friendica notification"; +$a->strings["Thank You,"] = "Thank you"; +$a->strings["%s Administrator"] = "%s Administrator"; +$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:Notify] New mail received at %s"; +$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s sent you a new private message at %2\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s sent you %2\$s."; +$a->strings["a private message"] = "a private message"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Please visit %s to view or reply to your private messages."; +$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s commented on [url=%2\$s]a %3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s commented on [url=%2\$s]your %3\$s[/url]"; +$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"; +$a->strings["%s commented on an item/conversation you have been following."] = "%s commented on an item/conversation you have been following."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Please visit %s to view or reply to the conversation."; +$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s posted to your profile wall"; +$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s posted to your profile wall at %2\$s"; +$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s posted to [url=%2\$s]your wall[/url]"; +$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s tagged you"; +$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s tagged you at %2\$s"; +$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]tagged you[/url]."; +$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s shared a new post"; +$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s shared a new post at %2\$s"; +$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]shared a post[/url]."; +$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s poked you"; +$a->strings["%1\$s poked you at %2\$s"] = "%1\$s poked you at %2\$s"; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]poked you[/url]."; +$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notify] %s tagged your post"; +$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s tagged your post at %2\$s"; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s tagged [url=%2\$s]your post[/url]"; +$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notify] Introduction received"; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "You've received an introduction from '%1\$s' at %2\$s"; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "You've received [url=%1\$s]an introduction[/url] from %2\$s."; +$a->strings["You may visit their profile at %s"] = "You may visit their profile at %s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "Please visit %s to approve or reject the introduction."; +$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Notify] A new person is sharing with you"; +$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s is sharing with you at %2\$s"; +$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Notify] You have a new follower"; +$a->strings["You have a new follower at %2\$s : %1\$s"] = "You have a new follower at %2\$s : %1\$s"; +$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notify] Friend suggestion received"; +$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "You've received a friend suggestion from '%1\$s' at %2\$s"; +$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."; +$a->strings["Name:"] = "Name:"; +$a->strings["Photo:"] = "Photo:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Please visit %s to approve or reject the suggestion."; +$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Notify] Connection accepted"; +$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' has accepted your connection request at %2\$s"; +$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s has accepted your [url=%1\$s]connection request[/url]."; +$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "You are now mutual friends and may exchange status updates, photos, and email without restriction."; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Please visit %s if you wish to make any changes to this relationship."; +$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' has chosen to accept you as \"Follower\". This restricts some forms of communication, such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."; +$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Please visit %s if you wish to make any changes to this relationship."; +$a->strings["[Friendica System:Notify] registration request"] = "[Friendica:Notify] registration request"; +$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "You've received a registration request from '%1\$s' at %2\$s."; +$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "You've received a [url=%1\$s]registration request[/url] from %2\$s."; +$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"; +$a->strings["Please visit %s to approve or reject the request."] = "Please visit %s to approve or reject the request."; +$a->strings["[no subject]"] = "[no subject]"; +$a->strings["Wall Photos"] = "Wall photos"; +$a->strings["Nothing new here"] = "Nothing new here"; +$a->strings["Clear notifications"] = "Clear notifications"; +$a->strings["Logout"] = "Logout"; +$a->strings["End this session"] = "End this session"; +$a->strings["Status"] = "Status"; +$a->strings["Your posts and conversations"] = "My posts and conversations"; +$a->strings["Profile"] = "Profile"; +$a->strings["Your profile page"] = "My profile page"; +$a->strings["Photos"] = "Photos"; +$a->strings["Your photos"] = "My photos"; +$a->strings["Videos"] = "Videos"; +$a->strings["Your videos"] = "My videos"; +$a->strings["Events"] = "Events"; +$a->strings["Your events"] = "My events"; +$a->strings["Personal notes"] = "Personal notes"; +$a->strings["Your personal notes"] = "My personal notes"; +$a->strings["Login"] = "Login"; +$a->strings["Sign in"] = "Sign in"; +$a->strings["Home Page"] = "Home page"; +$a->strings["Register"] = "Register"; +$a->strings["Create an account"] = "Create account"; +$a->strings["Help"] = "Help"; +$a->strings["Help and documentation"] = "Help and documentation"; +$a->strings["Apps"] = "Apps"; +$a->strings["Addon applications, utilities, games"] = "Addon applications, utilities, games"; +$a->strings["Search site content"] = "Search site content"; +$a->strings["Community"] = "Community"; +$a->strings["Conversations on this site"] = "Public conversations on this site"; +$a->strings["Conversations on the network"] = "Conversations on the network"; +$a->strings["Events and Calendar"] = "Events and calendar"; +$a->strings["Directory"] = "Directory"; +$a->strings["People directory"] = "People directory"; +$a->strings["Information"] = "Information"; +$a->strings["Information about this friendica instance"] = "Information about this Friendica instance"; +$a->strings["Conversations from your friends"] = "My friends' conversations"; +$a->strings["Network Reset"] = "Network reset"; +$a->strings["Load Network page with no filters"] = "Load network page without filters"; +$a->strings["Friend Requests"] = "Friend requests"; +$a->strings["Notifications"] = "Notifications"; +$a->strings["See all notifications"] = "See all notifications"; +$a->strings["Mark as seen"] = "Mark as seen"; +$a->strings["Mark all system notifications seen"] = "Mark all system notifications seen"; +$a->strings["Messages"] = "Messages"; +$a->strings["Private mail"] = "Private messages"; +$a->strings["Inbox"] = "Inbox"; +$a->strings["Outbox"] = "Outbox"; +$a->strings["New Message"] = "New Message"; +$a->strings["Manage"] = "Manage"; +$a->strings["Manage other pages"] = "Manage other pages"; +$a->strings["Delegations"] = "Delegations"; +$a->strings["Delegate Page Management"] = "Delegate Page Management"; +$a->strings["Settings"] = "Settings"; +$a->strings["Account settings"] = "Account settings"; +$a->strings["Profiles"] = "Profiles"; +$a->strings["Manage/Edit Profiles"] = "Manage/Edit profiles"; +$a->strings["Manage/edit friends and contacts"] = "Manage/Edit friends and contacts"; +$a->strings["Admin"] = "Admin"; +$a->strings["Site setup and configuration"] = "Site setup and configuration"; +$a->strings["Navigation"] = "Navigation"; +$a->strings["Site map"] = "Site map"; +$a->strings["view full size"] = "view full size"; +$a->strings["Embedded content"] = "Embedded content"; +$a->strings["Embedding disabled"] = "Embedding disabled"; +$a->strings["Error decoding account file"] = "Error decoding account file"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Error! No version data in file! Is this a Friendica account file?"; +$a->strings["Error! Cannot check nickname"] = "Error! Cannot check nickname."; +$a->strings["User '%s' already exists on this server!"] = "User '%s' already exists on this server!"; +$a->strings["User creation error"] = "User creation error"; +$a->strings["User profile creation error"] = "User profile creation error"; +$a->strings["%d contact not imported"] = array( + 0 => "%d contact not imported", + 1 => "%d contacts not imported", +); +$a->strings["Done. You can now login with your username and password"] = "Done. You can now login with your username and password"; +$a->strings["Passwords do not match. Password unchanged."] = "Passwords do not match. Password unchanged."; +$a->strings["An invitation is required."] = "An invitation is required."; +$a->strings["Invitation could not be verified."] = "Invitation could not be verified."; +$a->strings["Invalid OpenID url"] = "Invalid OpenID URL"; +$a->strings["Please enter the required information."] = "Please enter the required information."; +$a->strings["Please use a shorter name."] = "Please use a shorter name."; +$a->strings["Name too short."] = "Name too short."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "That doesn't appear to be your full (i.e first and last) name."; +$a->strings["Your email domain is not among those allowed on this site."] = "Your email domain is not allowed on this site."; +$a->strings["Not a valid email address."] = "Not a valid email address."; +$a->strings["Cannot use that email."] = "Cannot use that email."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."; +$a->strings["Nickname is already registered. Please choose another."] = "Nickname is already registered. Please choose another."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Nickname was once registered here and may not be re-used. Please choose another."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "SERIOUS ERROR: Generation of security keys failed."; +$a->strings["An error occurred during registration. Please try again."] = "An error occurred during registration. Please try again."; +$a->strings["default"] = "default"; +$a->strings["An error occurred creating your default profile. Please try again."] = "An error occurred creating your default profile. Please try again."; +$a->strings["Friends"] = "Friends"; +$a->strings["Profile Photos"] = "Profile photos"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending approval by the administrator.\n\t"; +$a->strings["Registration at %s"] = "Registration at %s"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"; +$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\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 for your account \"Settings\" 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 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, these settings may help to\n\t\tmake new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."; +$a->strings["Registration details for %s"] = "Registration details for %s"; +$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Daily posting limit of %d posts reached. This post was rejected."; +$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Weekly posting limit of %d posts reached. This post was rejected."; +$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Monthly posting limit of %d posts reached. This post was rejected."; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Cannot locate DNS info for database server '%s'"; +$a->strings["There are no tables on MyISAM."] = "There are no tables on MyISAM."; +$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\tThe Friendica 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\n might be invalid."; +$a->strings["The error message is\n[pre]%s[/pre]"] = "The error message is\n[pre]%s[/pre]"; +$a->strings["\nError %d occurred during database update:\n%s\n"] = "\nError %d occurred during database update:\n%s\n"; +$a->strings["Errors encountered performing database changes: "] = "Errors encountered performing database changes: "; +$a->strings[": Database update"] = ": Database update"; +$a->strings["%s: updating %s table."] = "%s: updating %s table."; +$a->strings["Sharing notification from Diaspora network"] = "Sharing notification from Diaspora network"; +$a->strings["Attachments:"] = "Attachments:"; +$a->strings["Requested account is not available."] = "Requested account is unavailable."; +$a->strings["Requested profile is not available."] = "Requested profile is unavailable."; +$a->strings["Edit profile"] = "Edit profile"; +$a->strings["Atom feed"] = "Atom feed"; +$a->strings["Manage/edit profiles"] = "Manage/Edit profiles"; +$a->strings["Change profile photo"] = "Change profile photo"; +$a->strings["Create New Profile"] = "Create new profile"; +$a->strings["Profile Image"] = "Profile image"; +$a->strings["visible to everybody"] = "Visible to everybody"; +$a->strings["Edit visibility"] = "Edit visibility"; +$a->strings["Gender:"] = "Gender:"; +$a->strings["Status:"] = "Status:"; +$a->strings["Homepage:"] = "Homepage:"; +$a->strings["About:"] = "About:"; +$a->strings["XMPP:"] = "XMPP:"; +$a->strings["Network:"] = "Network:"; +$a->strings["g A l F d"] = "g A l F d"; +$a->strings["F d"] = "F d"; +$a->strings["[today]"] = "[today]"; +$a->strings["Birthday Reminders"] = "Birthday reminders"; +$a->strings["Birthdays this week:"] = "Birthdays this week:"; +$a->strings["[No description]"] = "[No description]"; +$a->strings["Event Reminders"] = "Event reminders"; +$a->strings["Events this week:"] = "Events this week:"; +$a->strings["Full Name:"] = "Full name:"; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$a->strings["Age:"] = "Age:"; +$a->strings["for %1\$d %2\$s"] = "for %1\$d %2\$s"; +$a->strings["Sexual Preference:"] = "Sexual preference:"; +$a->strings["Hometown:"] = "Home town:"; +$a->strings["Tags:"] = "Tags:"; +$a->strings["Political Views:"] = "Political views:"; +$a->strings["Religion:"] = "Religion:"; +$a->strings["Hobbies/Interests:"] = "Hobbies/Interests:"; +$a->strings["Likes:"] = "Likes:"; +$a->strings["Dislikes:"] = "Dislikes:"; +$a->strings["Contact information and Social Networks:"] = "Contact information and social networks:"; +$a->strings["Musical interests:"] = "Music:"; +$a->strings["Books, literature:"] = "Books/Literature:"; +$a->strings["Television:"] = "Television:"; +$a->strings["Film/dance/culture/entertainment:"] = "Arts, culture, entertainment:"; +$a->strings["Love/Romance:"] = "Love/Romance:"; +$a->strings["Work/employment:"] = "Work/Employment:"; +$a->strings["School/education:"] = "School/Education:"; +$a->strings["Forums:"] = "Forums:"; +$a->strings["Basic"] = "Basic"; +$a->strings["Advanced"] = "Advanced"; +$a->strings["Status Messages and Posts"] = "Status Messages and Posts"; +$a->strings["Profile Details"] = "Profile Details"; +$a->strings["Photo Albums"] = "Photo Albums"; +$a->strings["Personal Notes"] = "Personal notes"; +$a->strings["Only You Can See This"] = "Only you can see this."; +$a->strings["[Name Withheld]"] = "[Name Withheld]"; +$a->strings["Item not found."] = "Item not found."; +$a->strings["Do you really want to delete this item?"] = "Do you really want to delete this item?"; +$a->strings["Yes"] = "Yes"; +$a->strings["Permission denied."] = "Permission denied."; +$a->strings["Archives"] = "Archives"; +$a->strings["%s is now following %s."] = "%s is now following %s."; +$a->strings["following"] = "following"; +$a->strings["%s stopped following %s."] = "%s stopped following %s."; +$a->strings["stopped following"] = "stopped following"; +$a->strings["Click here to upgrade."] = "Click here to upgrade."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "This action exceeds the limits set by your subscription plan."; +$a->strings["This action is not available under your subscription plan."] = "This action is not available under your subscription plan."; +$a->strings["Male"] = "Male"; +$a->strings["Female"] = "Female"; +$a->strings["Currently Male"] = "Currently Male"; +$a->strings["Currently Female"] = "Currently Female"; +$a->strings["Mostly Male"] = "Mostly Male"; +$a->strings["Mostly Female"] = "Mostly Female"; +$a->strings["Transgender"] = "Transgender"; +$a->strings["Intersex"] = "Intersex"; +$a->strings["Transsexual"] = "Transsexual"; +$a->strings["Hermaphrodite"] = "Hermaphrodite"; +$a->strings["Neuter"] = "Neuter"; +$a->strings["Non-specific"] = "Non-specific"; +$a->strings["Other"] = "Other"; +$a->strings["Males"] = "Males"; +$a->strings["Females"] = "Females"; +$a->strings["Gay"] = "Gay"; +$a->strings["Lesbian"] = "Lesbian"; +$a->strings["No Preference"] = "No Preference"; +$a->strings["Bisexual"] = "Bisexual"; +$a->strings["Autosexual"] = "Auto-sexual"; +$a->strings["Abstinent"] = "Abstinent"; +$a->strings["Virgin"] = "Virgin"; +$a->strings["Deviant"] = "Deviant"; +$a->strings["Fetish"] = "Fetish"; +$a->strings["Oodles"] = "Oodles"; +$a->strings["Nonsexual"] = "Asexual"; +$a->strings["Single"] = "Single"; +$a->strings["Lonely"] = "Lonely"; +$a->strings["Available"] = "Available"; +$a->strings["Unavailable"] = "Unavailable"; +$a->strings["Has crush"] = "Having a crush"; +$a->strings["Infatuated"] = "Infatuated"; +$a->strings["Dating"] = "Dating"; +$a->strings["Unfaithful"] = "Unfaithful"; +$a->strings["Sex Addict"] = "Sex addict"; +$a->strings["Friends/Benefits"] = "Friends with benefits"; +$a->strings["Casual"] = "Casual"; +$a->strings["Engaged"] = "Engaged"; +$a->strings["Married"] = "Married"; +$a->strings["Imaginarily married"] = "Imaginarily married"; +$a->strings["Partners"] = "Partners"; +$a->strings["Cohabiting"] = "Cohabiting"; +$a->strings["Common law"] = "Common law spouse"; +$a->strings["Happy"] = "Happy"; +$a->strings["Not looking"] = "Not looking"; +$a->strings["Swinger"] = "Swinger"; +$a->strings["Betrayed"] = "Betrayed"; +$a->strings["Separated"] = "Separated"; +$a->strings["Unstable"] = "Unstable"; +$a->strings["Divorced"] = "Divorced"; +$a->strings["Imaginarily divorced"] = "Imaginarily divorced"; +$a->strings["Widowed"] = "Widowed"; +$a->strings["Uncertain"] = "Uncertain"; +$a->strings["It's complicated"] = "It's complicated"; +$a->strings["Don't care"] = "Don't care"; +$a->strings["Ask me"] = "Ask me"; +$a->strings["No friends to display."] = "No friends to display."; +$a->strings["Authorize application connection"] = "Authorize application connection"; +$a->strings["Return to your app and insert this Securty Code:"] = "Return to your app and insert this security code:"; +$a->strings["Please login to continue."] = "Please login to continue."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Do you want to authorize this application to access your posts and contacts and create new posts for you?"; +$a->strings["No"] = "No"; +$a->strings["You must be logged in to use addons. "] = "You must be logged in to use addons. "; +$a->strings["Applications"] = "Applications"; +$a->strings["No installed applications."] = "No installed applications."; +$a->strings["Item not available."] = "Item not available."; +$a->strings["Item was not found."] = "Item was not found."; +$a->strings["Source (bbcode) text:"] = "Source (bbcode) text:"; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Source (Diaspora) text to convert to BBcode:"; +$a->strings["Source input: "] = "Source input: "; +$a->strings["bb2html (raw HTML): "] = "bb2html (raw HTML): "; +$a->strings["bb2html: "] = "bb2html: "; +$a->strings["bb2html2bb: "] = "bb2html2bb: "; +$a->strings["bb2md: "] = "bb2md: "; +$a->strings["bb2md2html: "] = "bb2md2html: "; +$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; +$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; +$a->strings["Source input (Diaspora format): "] = "Source input (Diaspora format): "; +$a->strings["diaspora2bb: "] = "diaspora2bb: "; +$a->strings["The post was created"] = "The post was created"; +$a->strings["Access to this profile has been restricted."] = "Access to this profile has been restricted."; +$a->strings["View"] = "View"; +$a->strings["Previous"] = "Previous"; +$a->strings["Next"] = "Next"; +$a->strings["list"] = "List"; +$a->strings["User not found"] = "User not found"; +$a->strings["This calendar format is not supported"] = "This calendar format is not supported"; +$a->strings["No exportable data found"] = "No exportable data found"; +$a->strings["calendar"] = "calendar"; +$a->strings["No contacts in common."] = "No contacts in common."; +$a->strings["Common Friends"] = "Common friends"; +$a->strings["Public access denied."] = "Public access denied."; +$a->strings["Not available."] = "Not available."; +$a->strings["No results."] = "No results."; +$a->strings["No such group"] = "No such group"; +$a->strings["Group is empty"] = "Group is empty"; +$a->strings["Group: %s"] = "Group: %s"; +$a->strings["This entry was edited"] = "This entry was edited"; +$a->strings["%d comment"] = array( + 0 => "%d comment", + 1 => "%d comments -", +); +$a->strings["Private Message"] = "Private message"; +$a->strings["I like this (toggle)"] = "I like this (toggle)"; +$a->strings["like"] = "Like"; +$a->strings["I don't like this (toggle)"] = "I don't like this (toggle)"; +$a->strings["dislike"] = "Dislike"; +$a->strings["Share this"] = "Share this"; +$a->strings["share"] = "Share"; +$a->strings["This is you"] = "This is me"; +$a->strings["Comment"] = "Comment"; +$a->strings["Submit"] = "Submit"; +$a->strings["Bold"] = "Bold"; +$a->strings["Italic"] = "Italic"; +$a->strings["Underline"] = "Underline"; +$a->strings["Quote"] = "Quote"; +$a->strings["Code"] = "Code"; +$a->strings["Image"] = "Image"; +$a->strings["Link"] = "Link"; +$a->strings["Video"] = "Video"; +$a->strings["Edit"] = "Edit"; +$a->strings["add star"] = "Add star"; +$a->strings["remove star"] = "Remove star"; +$a->strings["toggle star status"] = "Toggle star status"; +$a->strings["starred"] = "Starred"; +$a->strings["add tag"] = "Add tag"; +$a->strings["ignore thread"] = "Ignore thread"; +$a->strings["unignore thread"] = "Unignore thread"; +$a->strings["toggle ignore status"] = "Toggle ignore status"; +$a->strings["ignored"] = "Ignored"; +$a->strings["save to folder"] = "Save to folder"; +$a->strings["I will attend"] = "I will attend"; +$a->strings["I will not attend"] = "I will not attend"; +$a->strings["I might attend"] = "I might attend"; +$a->strings["to"] = "to"; +$a->strings["Wall-to-Wall"] = "Wall-to-wall"; +$a->strings["via Wall-To-Wall:"] = "via wall-to-wall:"; +$a->strings["Credits"] = "Credits"; +$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica is a community project that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"; +$a->strings["Contact settings applied."] = "Contact settings applied."; +$a->strings["Contact update failed."] = "Contact update failed."; +$a->strings["Contact not found."] = "Contact not found."; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "Warning: These are highly advanced settings. If you enter incorrect information your communications with this contact may not working."; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Please use your browser 'Back' button now if you are uncertain what to do on this page."; +$a->strings["No mirroring"] = "No mirroring"; +$a->strings["Mirror as forwarded posting"] = "Mirror as forwarded posting"; +$a->strings["Mirror as my own posting"] = "Mirror as my own posting"; +$a->strings["Return to contact editor"] = "Return to contact editor"; +$a->strings["Refetch contact data"] = "Re-fetch contact data."; +$a->strings["Remote Self"] = "Remote self"; +$a->strings["Mirror postings from this contact"] = "Mirror postings from this contact:"; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "This will cause Friendica to repost new entries from this contact."; +$a->strings["Name"] = "Name:"; +$a->strings["Account Nickname"] = "Account nickname:"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Tag name - overrides name/nickname:"; +$a->strings["Account URL"] = "Account URL:"; +$a->strings["Friend Request URL"] = "Friend request URL:"; +$a->strings["Friend Confirm URL"] = "Friend confirm URL:"; +$a->strings["Notification Endpoint URL"] = "Notification endpoint URL"; +$a->strings["Poll/Feed URL"] = "Poll/Feed URL:"; +$a->strings["New photo from this URL"] = "New photo from this URL:"; +$a->strings["No potential page delegates located."] = "No potential page delegates found."; +$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."] = "Delegates are able to manage all aspects of this account except for key setting features. Please do not delegate your personal account to anybody that you do not trust completely."; +$a->strings["Existing Page Managers"] = "Existing page managers"; +$a->strings["Existing Page Delegates"] = "Existing page delegates"; +$a->strings["Potential Delegates"] = "Potential delegates"; +$a->strings["Remove"] = "Remove"; +$a->strings["Add"] = "Add"; +$a->strings["No entries."] = "No entries."; +$a->strings["Profile not found."] = "Profile not found."; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "This may occasionally happen if contact was requested by both persons and it has already been approved."; +$a->strings["Response from remote site was not understood."] = "Response from remote site was not understood."; +$a->strings["Unexpected response from remote site: "] = "Unexpected response from remote site: "; +$a->strings["Confirmation completed successfully."] = "Confirmation completed successfully."; +$a->strings["Remote site reported: "] = "Remote site reported: "; +$a->strings["Temporary failure. Please wait and try again."] = "Temporary failure. Please wait and try again."; +$a->strings["Introduction failed or was revoked."] = "Introduction failed or was revoked."; +$a->strings["Unable to set contact photo."] = "Unable to set contact photo."; +$a->strings["No user record found for '%s' "] = "No user record found for '%s' "; +$a->strings["Our site encryption key is apparently messed up."] = "Our site encryption key is apparently messed up."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "An empty URL was provided or the URL could not be decrypted by us."; +$a->strings["Contact record was not found for you on our site."] = "Contact record was not found for you on our site."; +$a->strings["Site public key not available in contact record for URL %s."] = "Site public key not available in contact record for URL %s."; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "The ID provided by your system is a duplicate on our system. It should work if you try again."; +$a->strings["Unable to set your contact credentials on our system."] = "Unable to set your contact credentials on our system."; +$a->strings["Unable to update your contact profile details on our system"] = "Unable to update your contact profile details on our system"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s has joined %2\$s"; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s welcomes %2\$s"; +$a->strings["Global Directory"] = "Global Directory"; +$a->strings["Find on this site"] = "Find on this site"; +$a->strings["Results for:"] = "Results for:"; +$a->strings["Site Directory"] = "Site directory"; +$a->strings["No entries (some entries may be hidden)."] = "No entries (entries may be hidden)."; +$a->strings["People Search - %s"] = "People search - %s"; +$a->strings["Forum Search - %s"] = "Forum search - %s"; +$a->strings["No matches"] = "No matches"; +$a->strings["Item has been removed."] = "Item has been removed."; +$a->strings["Item not found"] = "Item not found"; +$a->strings["Edit post"] = "Edit post"; +$a->strings["Event can not end before it has started."] = "Event cannot end before it has started."; +$a->strings["Event title and start time are required."] = "Event title and starting time are required."; +$a->strings["Create New Event"] = "Create new event"; +$a->strings["Event details"] = "Event details"; +$a->strings["Starting date and Title are required."] = "Starting date and title are required."; +$a->strings["Event Starts:"] = "Event starts:"; +$a->strings["Required"] = "Required"; +$a->strings["Finish date/time is not known or not relevant"] = "Finish date/time is not known or not relevant"; +$a->strings["Event Finishes:"] = "Event finishes:"; +$a->strings["Adjust for viewer timezone"] = "Adjust for viewer's time zone"; +$a->strings["Description:"] = "Description:"; +$a->strings["Title:"] = "Title:"; +$a->strings["Share this event"] = "Share this event"; +$a->strings["Failed to remove event"] = "Failed to remove event"; +$a->strings["Event removed"] = "Event removed"; +$a->strings["Files"] = "Files"; +$a->strings["Not Found"] = "Not found"; +$a->strings["- select -"] = "- select -"; +$a->strings["Submit Request"] = "Submit request"; +$a->strings["You already added this contact."] = "You already added this contact."; +$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora support isn't enabled. Contact can't be added."; +$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus support is disabled. Contact can't be added."; +$a->strings["The network type couldn't be detected. Contact can't be added."] = "The network type couldn't be detected. Contact can't be added."; +$a->strings["Please answer the following:"] = "Please answer the following:"; +$a->strings["Does %s know you?"] = "Does %s know you?"; +$a->strings["Add a personal note:"] = "Add a personal note:"; +$a->strings["Your Identity Address:"] = "My identity address:"; +$a->strings["Profile URL"] = "Profile URL:"; +$a->strings["Contact added"] = "Contact added"; +$a->strings["This is Friendica, version"] = "This is Friendica, version"; +$a->strings["running at web location"] = "running at web location"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Please visit Friendica.com to learn more about the Friendica project."; +$a->strings["Bug reports and issues: please visit"] = "Bug reports and issues: please visit"; +$a->strings["the bugtracker at github"] = "the bugtracker at github"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"; +$a->strings["Installed plugins/addons/apps:"] = "Installed plugins/addons/apps:"; +$a->strings["No installed plugins/addons/apps"] = "No installed plugins/addons/apps"; +$a->strings["On this server the following remote servers are blocked."] = "On this server the following remote servers are blocked."; +$a->strings["Reason for the block"] = "Reason for the block"; +$a->strings["Friend suggestion sent."] = "Friend suggestion sent"; +$a->strings["Suggest Friends"] = "Suggest friends"; +$a->strings["Suggest a friend for %s"] = "Suggest a friend for %s"; +$a->strings["Group created."] = "Group created."; +$a->strings["Could not create group."] = "Could not create group."; +$a->strings["Group not found."] = "Group not found."; +$a->strings["Group name changed."] = "Group name changed."; +$a->strings["Permission denied"] = "Permission denied"; +$a->strings["Save Group"] = "Save group"; +$a->strings["Create a group of contacts/friends."] = "Create a group of contacts/friends."; +$a->strings["Group removed."] = "Group removed."; +$a->strings["Unable to remove group."] = "Unable to remove group."; +$a->strings["Delete Group"] = "Delete group"; +$a->strings["Group Editor"] = "Group Editor"; +$a->strings["Edit Group Name"] = "Edit group name"; +$a->strings["Members"] = "Members"; +$a->strings["All Contacts"] = "All contacts"; +$a->strings["Remove Contact"] = "Remove contact"; +$a->strings["Add Contact"] = "Add contact"; +$a->strings["Click on a contact to add or remove."] = "Click on a contact to add or remove."; +$a->strings["No profile"] = "No profile"; +$a->strings["Help:"] = "Help:"; +$a->strings["Page not found."] = "Page not found"; +$a->strings["Welcome to %s"] = "Welcome to %s"; +$a->strings["Friendica Communications Server - Setup"] = "Friendica Communications Server - Setup"; +$a->strings["Could not connect to database."] = "Could not connect to database."; +$a->strings["Could not create table."] = "Could not create table."; +$a->strings["Your Friendica site database has been installed."] = "Your Friendica site database has been installed."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Please see the file \"INSTALL.txt\"."; +$a->strings["Database already in use."] = "Database already in use."; +$a->strings["System check"] = "System check"; +$a->strings["Check again"] = "Check again"; +$a->strings["Database connection"] = "Database connection"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "In order to install Friendica we need to know how to connect to your database."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Please contact your hosting provider or site administrator if you have questions about these settings."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "The database you specify below should already exist. If it does not, please create it before continuing."; +$a->strings["Database Server Name"] = "Database server name"; +$a->strings["Database Login Name"] = "Database login name"; +$a->strings["Database Login Password"] = "Database login password"; +$a->strings["For security reasons the password must not be empty"] = "For security reasons the password must not be empty"; +$a->strings["Database Name"] = "Database name"; +$a->strings["Site administrator email address"] = "Site administrator email address"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Your account email address must match this in order to use the web admin panel."; +$a->strings["Please select a default timezone for your website"] = "Please select a default time zone for your website"; +$a->strings["Site settings"] = "Site settings"; +$a->strings["System Language:"] = "System language:"; +$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Set the default language for your Friendica installation interface and email communication."; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Could not find a command line version of PHP in the web server PATH."; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run the background processing. See 'Setup the poller'"] = "If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See 'Setup the poller'"; +$a->strings["PHP executable path"] = "PHP executable path"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Enter full path to php executable. You can leave this blank to continue the installation."; +$a->strings["Command line PHP"] = "Command line PHP"; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "PHP executable is not a php cli binary; it could possibly be a cgi-fgci version."; +$a->strings["Found PHP version: "] = "Found 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."] = "The command line version of PHP on your system does not have \"register_argc_argv\" enabled."; +$a->strings["This is required for message delivery to work."] = "This is required for message delivery to work."; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "If running under Windows OS, please see \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Generate encryption keys"; +$a->strings["libCurl PHP module"] = "libCurl PHP module"; +$a->strings["GD graphics PHP module"] = "GD graphics PHP module"; +$a->strings["OpenSSL PHP module"] = "OpenSSL PHP module"; +$a->strings["PDO or MySQLi PHP module"] = "PDO or MySQLi PHP module"; +$a->strings["mb_string PHP module"] = "mb_string PHP module"; +$a->strings["XML PHP module"] = "XML PHP module"; +$a->strings["iconv module"] = "iconv module"; +$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: Apache web server mod-rewrite module is required but not installed."; +$a->strings["Error: libCURL PHP module required but not installed."] = "Error: libCURL PHP module required but not installed."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: GD graphics PHP module with JPEG support required but not installed."; +$a->strings["Error: openssl PHP module required but not installed."] = "Error: openssl PHP module required but not installed."; +$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "Error: PDO or MySQLi PHP module required but not installed."; +$a->strings["Error: The MySQL driver for PDO is not installed."] = "Error: MySQL driver for PDO is not installed."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Error: mb_string PHP module required but not installed."; +$a->strings["Error: iconv PHP module required but not installed."] = "Error: iconv PHP module required but not installed."; +$a->strings["Error, XML PHP module required but not installed."] = "Error, XML PHP module required but not installed."; +$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "The web installer needs to be able to create a file called \".htconfig.php\" in the top-level directory of your web server, but it is unable to do so."; +$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "This is most often a permission setting issue, as the web server may not be able to write files in your directory - even if you can."; +$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top-level directory."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternatively, you may skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php is writable"; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "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 directory."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Please ensure the user (e.g. www-data) that your web server runs as has write access to this directory."; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."; +$a->strings["view/smarty3 is writable"] = "view/smarty3 is writable"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "URL rewrite in .htaccess is not working. Check your server configuration."; +$a->strings["Url rewrite is working"] = "URL rewrite is working"; +$a->strings["ImageMagick PHP extension is not installed"] = "ImageMagick PHP extension is not installed"; +$a->strings["ImageMagick PHP extension is installed"] = "ImageMagick PHP extension is installed"; +$a->strings["ImageMagick supports GIF"] = "ImageMagick supports GIF"; +$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."; +$a->strings["

What next

"] = "

What next

"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: You will need to [manually] setup a scheduled task for the poller."; +$a->strings["Total invitation limit exceeded."] = "Total invitation limit exceeded"; +$a->strings["%s : Not a valid email address."] = "%s : Not a valid email address"; +$a->strings["Please join us on Friendica"] = "Please join us on Friendica."; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Invitation limit is exceeded. Please contact your site administrator."; +$a->strings["%s : Message delivery failed."] = "%s : Message delivery failed"; +$a->strings["%d message sent."] = array( + 0 => "%d message sent.", + 1 => "%d messages sent.", +); +$a->strings["You have no more invitations available"] = "You have no more invitations available."; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "To accept this invitation, please register at %s or any other public Friendica website."; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica sites are all inter-connect to create a large privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Our apologies. This system is not currently configured to connect with other public sites or invite members."; +$a->strings["Send invitations"] = "Send invitations"; +$a->strings["Enter email addresses, one per line:"] = "Enter email addresses, one per line:"; +$a->strings["Your message:"] = "Your message:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "You will need to supply this invitation code: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Once you have registered, please connect with me via my profile page at:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"; +$a->strings["Time Conversion"] = "Time conversion"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica provides this service for sharing events with other networks and friends in unknown time zones."; +$a->strings["UTC time: %s"] = "UTC time: %s"; +$a->strings["Current timezone: %s"] = "Current time zone: %s"; +$a->strings["Converted localtime: %s"] = "Converted local time: %s"; +$a->strings["Please select your timezone:"] = "Please select your time zone:"; +$a->strings["Remote privacy information not available."] = "Remote privacy information not available."; +$a->strings["Visible to:"] = "Visible to:"; +$a->strings["No valid account found."] = "No valid account found."; +$a->strings["Password reset request issued. Check your email."] = "Password reset request issued. Please check your email."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\tDear %1\$s,\n\t\t\tA request was issued 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/delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."; +$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"; +$a->strings["Password reset requested at %s"] = "Password reset requested at %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Request could not be verified. (You may have previously submitted it.) Password reset failed."; +$a->strings["Password Reset"] = "Password reset"; +$a->strings["Your password has been reset as requested."] = "Your password has been reset as requested."; +$a->strings["Your new password is"] = "Your new password is"; +$a->strings["Save or copy your new password - and then"] = "Save or copy your new password - and then"; +$a->strings["click here to login"] = "click here to login"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Your password may be changed from the Settings page after successful login."; +$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records or change your password immediately to\n\t\t\t\tsomething that you will remember.\n\t\t\t"; +$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"; +$a->strings["Your password has been changed at %s"] = "Your password has been changed at %s"; +$a->strings["Forgot your Password?"] = "Reset My Password"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Enter email address or nickname to reset your password. You will receive further instruction via email."; +$a->strings["Nickname or Email: "] = "Nickname or email: "; +$a->strings["Reset"] = "Reset"; +$a->strings["System down for maintenance"] = "Sorry, the system is currently down for maintenance."; +$a->strings["Manage Identities and/or Pages"] = "Manage Identities and Pages"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Accounts that I manage or own."; +$a->strings["Select an identity to manage: "] = "Select identity:"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "No keywords to match. Please add keywords to your default profile."; +$a->strings["is interested in:"] = "is interested in:"; +$a->strings["Profile Match"] = "Profile Match"; +$a->strings["No recipient selected."] = "No recipient selected."; +$a->strings["Unable to locate contact information."] = "Unable to locate contact information."; +$a->strings["Message could not be sent."] = "Message could not be sent."; +$a->strings["Message collection failure."] = "Message collection failure."; +$a->strings["Message sent."] = "Message sent."; +$a->strings["Do you really want to delete this message?"] = "Do you really want to delete this message?"; +$a->strings["Message deleted."] = "Message deleted."; +$a->strings["Conversation removed."] = "Conversation removed."; +$a->strings["Send Private Message"] = "Send private message"; +$a->strings["To:"] = "To:"; +$a->strings["Subject:"] = "Subject:"; +$a->strings["No messages."] = "No messages."; +$a->strings["Message not available."] = "Message not available."; +$a->strings["Delete message"] = "Delete message"; +$a->strings["Delete conversation"] = "Delete conversation"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "No secure communications available. You may be able to respond from the sender's profile page."; +$a->strings["Send Reply"] = "Send reply"; +$a->strings["Unknown sender - %s"] = "Unknown sender - %s"; +$a->strings["You and %s"] = "Me and %s"; +$a->strings["%s and You"] = "%s and me"; +$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["Mood"] = "Mood"; +$a->strings["Set your current mood and tell your friends"] = "Set your current mood and tell your friends"; +$a->strings["Results for: %s"] = "Results for: %s"; +$a->strings["Remove term"] = "Remove term"; +$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array( + 0 => "Warning: This group contains %s member from a network that doesn't allow non public messages.", + 1 => "Warning: This group contains %s members from a network that doesn't allow non public messages.", +); +$a->strings["Messages in this group won't be send to these receivers."] = "Messages in this group won't be send to these receivers."; +$a->strings["Private messages to this person are at risk of public disclosure."] = "Private messages to this person are at risk of public disclosure."; +$a->strings["Invalid contact."] = "Invalid contact."; +$a->strings["Commented Order"] = "Commented last"; +$a->strings["Sort by Comment Date"] = "Sort by comment date"; +$a->strings["Posted Order"] = "Posted last"; +$a->strings["Sort by Post Date"] = "Sort by post date"; +$a->strings["Posts that mention or involve you"] = "Posts mentioning or involving me"; +$a->strings["New"] = "New"; +$a->strings["Activity Stream - by date"] = "Activity Stream - by date"; +$a->strings["Shared Links"] = "Shared links"; +$a->strings["Interesting Links"] = "Interesting links"; +$a->strings["Starred"] = "Starred"; +$a->strings["Favourite Posts"] = "My favorite posts"; +$a->strings["Welcome to Friendica"] = "Welcome to Friendica"; +$a->strings["New Member Checklist"] = "New Member Checklist"; +$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."; +$a->strings["Getting Started"] = "Getting started"; +$a->strings["Friendica Walk-Through"] = "Friendica walk-through"; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."; +$a->strings["Go to Your Settings"] = "Go to your settings"; +$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."; +$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."; +$a->strings["Upload Profile Photo"] = "Upload profile photo"; +$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."; +$a->strings["Edit Your Profile"] = "Edit your profile"; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."; +$a->strings["Profile Keywords"] = "Profile keywords"; +$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."; +$a->strings["Connecting"] = "Connecting"; +$a->strings["Importing Emails"] = "Importing emails"; +$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Enter your email access information on your Connector Settings if you wish to import and interact with friends or mailing lists from your email INBOX"; +$a->strings["Go to Your Contacts Page"] = "Go to your contacts page"; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "Your contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add new contact dialog."; +$a->strings["Go to Your Site's Directory"] = "Go to your site's directory"; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "The directory 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 when requested."; +$a->strings["Finding New People"] = "Finding new people"; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."; +$a->strings["Group Your Contacts"] = "Group your contacts"; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Once you have made some friends, organize them into private conversation groups from the sidebar of your contacts page and then you can interact with each group privately on your network page."; +$a->strings["Why Aren't My Posts Public?"] = "Why aren't my posts public?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."; +$a->strings["Getting Help"] = "Getting help"; +$a->strings["Go to the Help Section"] = "Go to the help section"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Our help pages may be consulted for detail on other program features and resources."; +$a->strings["Visit %s's profile [%s]"] = "Visit %s's profile [%s]"; +$a->strings["Edit contact"] = "Edit contact"; +$a->strings["Contacts who are not members of a group"] = "Contacts who are not members of a group"; +$a->strings["Invalid request identifier."] = "Invalid request identifier."; +$a->strings["Discard"] = "Discard"; +$a->strings["Ignore"] = "Ignore"; +$a->strings["Network Notifications"] = "Network notifications"; +$a->strings["System Notifications"] = "System notifications"; +$a->strings["Personal Notifications"] = "Personal notifications"; +$a->strings["Home Notifications"] = "Home notifications"; +$a->strings["Show Ignored Requests"] = "Show ignored requests."; +$a->strings["Hide Ignored Requests"] = "Hide ignored requests"; +$a->strings["Notification type: "] = "Notification type: "; +$a->strings["suggested by %s"] = "suggested by %s"; +$a->strings["Hide this contact from others"] = "Hide this contact from others"; +$a->strings["Post a new friend activity"] = "Post a new friend activity"; +$a->strings["if applicable"] = "if applicable"; +$a->strings["Approve"] = "Approve"; +$a->strings["Claims to be known to you: "] = "Says they know me:"; +$a->strings["yes"] = "yes"; +$a->strings["no"] = "no"; +$a->strings["Shall your connection be bidirectional or not?"] = "Shall your connection be in both directions or not?"; +$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "Accepting %s as a friend allows %s to subscribe to your posts; you will also receive updates from them in your news feed."; +$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."; +$a->strings["Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."; +$a->strings["Friend"] = "Friend"; +$a->strings["Sharer"] = "Sharer"; +$a->strings["Subscriber"] = "Subscriber"; +$a->strings["No introductions."] = "No introductions."; +$a->strings["Show unread"] = "Show unread"; +$a->strings["Show all"] = "Show all"; +$a->strings["No more %s notifications."] = "No more %s notifications."; +$a->strings["No more system notifications."] = "No more system notifications."; +$a->strings["Post successful."] = "Post successful."; +$a->strings["OpenID protocol error. No ID returned."] = "OpenID protocol error. No ID returned."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Account not found and OpenID registration is not permitted on this site."; +$a->strings["Subscribing to OStatus contacts"] = "Subscribing to OStatus contacts"; +$a->strings["No contact provided."] = "No contact provided."; +$a->strings["Couldn't fetch information for contact."] = "Couldn't fetch information for contact."; +$a->strings["Couldn't fetch friends for contact."] = "Couldn't fetch friends for contact."; +$a->strings["Done"] = "Done"; +$a->strings["success"] = "success"; +$a->strings["failed"] = "failed"; +$a->strings["Keep this window open until done."] = "Keep this window open until done."; +$a->strings["Not Extended"] = "Not extended"; +$a->strings["Recent Photos"] = "Recent photos"; +$a->strings["Upload New Photos"] = "Upload new photos"; +$a->strings["everybody"] = "everybody"; +$a->strings["Contact information unavailable"] = "Contact information unavailable"; +$a->strings["Album not found."] = "Album not found."; +$a->strings["Delete Album"] = "Delete album"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Do you really want to delete this photo album and all its photos?"; +$a->strings["Delete Photo"] = "Delete photo"; +$a->strings["Do you really want to delete this photo?"] = "Do you really want to delete this photo?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s was tagged in %2\$s by %3\$s"; +$a->strings["a photo"] = "a photo"; +$a->strings["Image exceeds size limit of %s"] = "Image exceeds size limit of %s"; +$a->strings["Image file is empty."] = "Image file is empty."; +$a->strings["Unable to process image."] = "Unable to process image."; +$a->strings["Image upload failed."] = "Image upload failed."; +$a->strings["No photos selected"] = "No photos selected"; +$a->strings["Access to this item is restricted."] = "Access to this item is restricted."; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."; +$a->strings["Upload Photos"] = "Upload photos"; +$a->strings["New album name: "] = "New album name: "; +$a->strings["or existing album name: "] = "or existing album name: "; +$a->strings["Do not show a status post for this upload"] = "Do not show a status post for this upload"; +$a->strings["Show to Groups"] = "Show to groups"; +$a->strings["Show to Contacts"] = "Show to contacts"; +$a->strings["Private Photo"] = "Private photo"; +$a->strings["Public Photo"] = "Public photo"; +$a->strings["Edit Album"] = "Edit album"; +$a->strings["Show Newest First"] = "Show newest first"; +$a->strings["Show Oldest First"] = "Show oldest first"; +$a->strings["View Photo"] = "View photo"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Permission denied. Access to this item may be restricted."; +$a->strings["Photo not available"] = "Photo not available"; +$a->strings["View photo"] = "View photo"; +$a->strings["Edit photo"] = "Edit photo"; +$a->strings["Use as profile photo"] = "Use as profile photo"; +$a->strings["View Full Size"] = "View full size"; +$a->strings["Tags: "] = "Tags: "; +$a->strings["[Remove any tag]"] = "[Remove any tag]"; +$a->strings["New album name"] = "New album name"; +$a->strings["Caption"] = "Caption"; +$a->strings["Add a Tag"] = "Add Tag"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Example: @bob, @jojo@example.com, #California, #camping"; +$a->strings["Do not rotate"] = "Do not rotate"; +$a->strings["Rotate CW (right)"] = "Rotate right (CW)"; +$a->strings["Rotate CCW (left)"] = "Rotate left (CCW)"; +$a->strings["Private photo"] = "Private photo"; +$a->strings["Public photo"] = "Public photo"; +$a->strings["Map"] = "Map"; +$a->strings["View Album"] = "View album"; +$a->strings["{0} wants to be your friend"] = "{0} wants to be your friend"; +$a->strings["{0} sent you a message"] = "{0} sent you a message"; +$a->strings["{0} requested registration"] = "{0} requested registration"; +$a->strings["Poke/Prod"] = "Poke/Prod"; +$a->strings["poke, prod or do other things to somebody"] = "Poke, prod or do other things to somebody"; +$a->strings["Recipient"] = "Recipient:"; +$a->strings["Choose what you wish to do to recipient"] = "Choose what you wish to do:"; +$a->strings["Make this post private"] = "Make this post private"; +$a->strings["Tips for New Members"] = "Tips for New Members"; +$a->strings["Invalid profile identifier."] = "Invalid profile identifier."; +$a->strings["Profile Visibility Editor"] = "Profile Visibility Editor"; +$a->strings["Visible To"] = "Visible to"; +$a->strings["All Contacts (with secure profile access)"] = "All contacts with secure profile access"; +$a->strings["Registration successful. Please check your email for further instructions."] = "Registration successful. Please check your email for further instructions."; +$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Failed to send email message. Here your account details:
login: %s
password: %s

You can change your password after login."; +$a->strings["Registration successful."] = "Registration successful."; +$a->strings["Your registration can not be processed."] = "Your registration cannot be processed."; +$a->strings["Your registration is pending approval by the site owner."] = "Your registration is pending approval by the site administrator."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."; +$a->strings["Your OpenID (optional): "] = "Your OpenID (optional): "; +$a->strings["Include your profile in member directory?"] = "Include your profile in member directory?"; +$a->strings["Note for the admin"] = "Note for the admin"; +$a->strings["Leave a message for the admin, why you want to join this node"] = "Leave a message for the admin, why you want to join this node."; +$a->strings["Membership on this site is by invitation only."] = "Membership on this site is by invitation only."; +$a->strings["Your invitation ID: "] = "Your invitation ID: "; +$a->strings["Registration"] = "Registration"; +$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Your full name: "; +$a->strings["Your Email Address: "] = "Your email address: "; +$a->strings["New Password:"] = "New password:"; +$a->strings["Leave empty for an auto generated password."] = "Leave empty for an auto generated password."; +$a->strings["Confirm:"] = "Confirm new 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'."] = "Choose a profile nickname. Your nickname will be part of your identity address; for example: 'nickname@\$sitename'."; +$a->strings["Choose a nickname: "] = "Choose a nickname: "; +$a->strings["Import"] = "Import profile"; +$a->strings["Import your profile to this friendica instance"] = "Import an existing Friendica profile to this node."; +$a->strings["Remove My Account"] = "Remove My Account"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "This will completely remove your account. Once this has been done it is not recoverable."; +$a->strings["Please enter your password for verification:"] = "Please enter your password for verification:"; +$a->strings["Resubscribing to OStatus contacts"] = "Resubscribing to OStatus contacts"; +$a->strings["Error"] = "Error"; +$a->strings["Only logged in users are permitted to perform a search."] = "Only logged in users are permitted to perform a search."; +$a->strings["Too Many Requests"] = "Too many requests"; +$a->strings["Only one search per minute is permitted for not logged in users."] = "Only one search per minute is permitted for not logged in users."; +$a->strings["Items tagged with: %s"] = "Items tagged with: %s"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s is following %2\$s's %3\$s"; +$a->strings["Do you really want to delete this suggestion?"] = "Do you really want to delete this suggestion?"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No suggestions available. If this is a new site, please try again in 24 hours."; +$a->strings["Ignore/Hide"] = "Ignore/Hide"; +$a->strings["Tag removed"] = "Tag removed"; +$a->strings["Remove Item Tag"] = "Remove Item tag"; +$a->strings["Select a tag to remove: "] = "Select a tag to remove: "; +$a->strings["Export account"] = "Export account"; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Export your account info and contacts. Use this to backup your account or to move it to another server."; +$a->strings["Export all"] = "Export all"; +$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Export your account info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"; +$a->strings["Export personal data"] = "Export personal data"; +$a->strings["[Embedded content - reload page to view]"] = "[Embedded content - reload page to view]"; +$a->strings["Do you really want to delete this video?"] = "Do you really want to delete this video?"; +$a->strings["Delete Video"] = "Delete video"; +$a->strings["No videos selected"] = "No videos selected"; +$a->strings["Recent Videos"] = "Recent videos"; +$a->strings["Upload New Videos"] = "Upload new videos"; +$a->strings["No contacts."] = "No contacts."; +$a->strings["Access denied."] = "Access denied."; +$a->strings["Invalid request."] = "Invalid request."; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Sorry, maybe your upload is bigger than the PHP configuration allows"; +$a->strings["Or - did you try to upload an empty file?"] = "Or did you try to upload an empty file?"; +$a->strings["File exceeds size limit of %s"] = "File exceeds size limit of %s"; +$a->strings["File upload failed."] = "File upload failed."; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Number of daily wall messages for %s exceeded. Message failed."; +$a->strings["Unable to check your home location."] = "Unable to check your home location."; +$a->strings["No recipient."] = "No recipient."; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."; +$a->strings["Only logged in users are permitted to perform a probing."] = "Only logged in users are permitted to perform a probing."; +$a->strings["This introduction has already been accepted."] = "This introduction has already been accepted."; +$a->strings["Profile location is not valid or does not contain profile information."] = "Profile location is not valid or does not contain profile information."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Warning: profile location has no identifiable owner name."; +$a->strings["Warning: profile location has no profile photo."] = "Warning: profile location has no profile photo."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d required parameter was not found at the given location", + 1 => "%d required parameters were not found at the given location", +); +$a->strings["Introduction complete."] = "Introduction complete."; +$a->strings["Unrecoverable protocol error."] = "Unrecoverable protocol error."; +$a->strings["Profile unavailable."] = "Profile unavailable."; +$a->strings["%s has received too many connection requests today."] = "%s has received too many connection requests today."; +$a->strings["Spam protection measures have been invoked."] = "Spam protection measures have been invoked."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Friends are advised to please try again in 24 hours."; +$a->strings["Invalid locator"] = "Invalid locator"; +$a->strings["Invalid email address."] = "Invalid email address."; +$a->strings["This account has not been configured for email. Request failed."] = "This account has not been configured for email. Request failed."; +$a->strings["You have already introduced yourself here."] = "You have already introduced yourself here."; +$a->strings["Apparently you are already friends with %s."] = "Apparently you are already friends with %s."; +$a->strings["Invalid profile URL."] = "Invalid profile URL."; +$a->strings["Failed to update contact record."] = "Failed to update contact record."; +$a->strings["Your introduction has been sent."] = "Your introduction has been sent."; +$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Remote subscription can't be done for your network. Please subscribe directly on your system."; +$a->strings["Please login to confirm introduction."] = "Please login to confirm introduction."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Incorrect identity currently logged in. Please login to this profile."; +$a->strings["Confirm"] = "Confirm"; +$a->strings["Hide this contact"] = "Hide this contact"; +$a->strings["Welcome home %s."] = "Welcome home %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Please confirm your introduction/connection request to %s."; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Please enter your 'Identity address' from one of the following supported communications networks:"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."; +$a->strings["Friend/Connection Request"] = "Friend/Connection request"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Examples: jojo@friendica.example.com, http://friendica.example.com/profile/jojo, sam@identi.ca"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated social web"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - please do not use this form. Instead, enter %s into your Diaspora search bar."; +$a->strings["Unable to locate original post."] = "Unable to locate original post."; +$a->strings["Empty post discarded."] = "Empty post discarded."; +$a->strings["System error. Post not saved."] = "System error. Post not saved."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "This message was sent to you by %s, a member of the Friendica social network."; +$a->strings["You may visit them online at %s"] = "You may visit them online at %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Please contact the sender by replying to this post if you do not wish to receive these messages."; +$a->strings["%s posted an update."] = "%s posted an update."; +$a->strings["Account approved."] = "Account approved."; +$a->strings["Registration revoked for %s"] = "Registration revoked for %s"; +$a->strings["Please login."] = "Please login."; +$a->strings["Move account"] = "Move Existing Friendica Account"; +$a->strings["You can import an account from another Friendica server."] = "You can import an existing Friendica profile to this node."; +$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."] = "You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora."; +$a->strings["Account file"] = "Account file:"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "To export your account, go to \"Settings->Export personal data\" and select \"Export account\""; +$a->strings["Theme settings updated."] = "Theme settings updated."; +$a->strings["Site"] = "Site"; +$a->strings["Users"] = "Users"; +$a->strings["Plugins"] = "Plugins"; +$a->strings["Themes"] = "Theme selection"; +$a->strings["Additional features"] = "Additional features"; +$a->strings["DB updates"] = "DB updates"; +$a->strings["Inspect Queue"] = "Inspect queue"; +$a->strings["Server Blocklist"] = "Server blocklist"; +$a->strings["Federation Statistics"] = "Federation statistics"; +$a->strings["Logs"] = "Logs"; +$a->strings["View Logs"] = "View logs"; +$a->strings["probe address"] = "Probe address"; +$a->strings["check webfinger"] = "Check webfinger"; +$a->strings["Plugin Features"] = "Plugin Features"; +$a->strings["diagnostics"] = "Diagnostics"; +$a->strings["User registrations waiting for confirmation"] = "User registrations awaiting confirmation"; +$a->strings["The blocked domain"] = "Blocked domain"; +$a->strings["The reason why you blocked this domain."] = "Reason why you blocked this domain."; +$a->strings["Delete domain"] = "Delete domain"; +$a->strings["Check to delete this entry from the blocklist"] = "Check to delete this entry from the blocklist"; +$a->strings["Administration"] = "Administration"; +$a->strings["This page can be used to define a black list of servers from the federated network that are not allowed to interact with your node. For all entered domains you should also give a reason why you have blocked the remote server."] = "This page can be used to define a black list of servers from the federated network that are not allowed to interact with your node. For all entered domains you should also give a reason why you have blocked the remote server."; +$a->strings["The list of blocked servers will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily."] = "The list of blocked servers will publicly available on the Friendica page so that your users and people investigating communication problems can readily find the reason."; +$a->strings["Add new entry to block list"] = "Add new entry to block list"; +$a->strings["Server Domain"] = "Server domain"; +$a->strings["The domain of the new server to add to the block list. Do not include the protocol."] = "The domain of the new server to add to the block list. Do not include the protocol."; +$a->strings["Block reason"] = "Block reason"; +$a->strings["Add Entry"] = "Add entry"; +$a->strings["Save changes to the blocklist"] = "Save changes to the blocklist"; +$a->strings["Current Entries in the Blocklist"] = "Current entries in the blocklist"; +$a->strings["Delete entry from blocklist"] = "Delete entry from blocklist"; +$a->strings["Delete entry from blocklist?"] = "Delete entry from blocklist?"; +$a->strings["Server added to blocklist."] = "Server added to blocklist."; +$a->strings["Site blocklist updated."] = "Site blocklist updated."; +$a->strings["unknown"] = "unknown"; +$a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = "This page offers you the amount of known part of the federated social network your Friendica node is part of. These numbers are not complete and only reflect the part of the network your node is aware of."; +$a->strings["The Auto Discovered Contact Directory feature is not enabled, it will improve the data displayed here."] = "The Auto Discovered Contact Directory feature is not enabled; enabling it will improve the data displayed here."; +$a->strings["Currently this node is aware of %d nodes from the following platforms:"] = "Currently this node is aware of %d nodes from the following platforms:"; +$a->strings["ID"] = "ID"; +$a->strings["Recipient Name"] = "Recipient name"; +$a->strings["Recipient Profile"] = "Recipient profile"; +$a->strings["Created"] = "Created"; +$a->strings["Last Tried"] = "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."] = "This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."; +$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the command php include/dbstructure.php toinnodb of your Friendica installation for an automatic conversion.
"] = "Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the command php include/dbstructure.php toinnodb of your Friendica installation for an automatic conversion.
"; +$a->strings["The database update failed. Please run \"php include/dbstructure.php update\" from the command line and have a look at the errors that might appear."] = "The database update failed. Please run 'php include/dbstructure.php update' from the command line and have a look at the errors that might appear."; +$a->strings["Normal Account"] = "Standard account"; +$a->strings["Soapbox Account"] = "Soapbox account"; +$a->strings["Community/Celebrity Account"] = "Community/Celebrity account"; +$a->strings["Automatic Friend Account"] = "Automatic friend account"; +$a->strings["Blog Account"] = "Blog account"; +$a->strings["Private Forum"] = "Private forum"; +$a->strings["Message queues"] = "Message queues"; +$a->strings["Summary"] = "Summary"; +$a->strings["Registered users"] = "Registered users"; +$a->strings["Pending registrations"] = "Pending registrations"; +$a->strings["Version"] = "Version"; +$a->strings["Active plugins"] = "Active plugins"; +$a->strings["Can not parse base url. Must have at least ://"] = "Can not parse base URL. Must have at least ://"; +$a->strings["Site settings updated."] = "Site settings updated."; +$a->strings["No special theme for mobile devices"] = "No special theme for mobile devices"; +$a->strings["No community page"] = "No community page"; +$a->strings["Public postings from users of this site"] = "Public postings from users of this site"; +$a->strings["Global community page"] = "Global community page"; +$a->strings["Never"] = "Never"; +$a->strings["At post arrival"] = "At post arrival"; +$a->strings["Disabled"] = "Disabled"; +$a->strings["Users, Global Contacts"] = "Users, Global Contacts"; +$a->strings["Users, Global Contacts/fallback"] = "Users, Global Contacts/fallback"; +$a->strings["One month"] = "One month"; +$a->strings["Three months"] = "Three months"; +$a->strings["Half a year"] = "Half a year"; +$a->strings["One year"] = "One a year"; +$a->strings["Multi user instance"] = "Multi user instance"; +$a->strings["Closed"] = "Closed"; +$a->strings["Requires approval"] = "Requires approval"; +$a->strings["Open"] = "Open"; +$a->strings["No SSL policy, links will track page SSL state"] = "No SSL policy, links will track page SSL state"; +$a->strings["Force all links to use SSL"] = "Force all links to use SSL"; +$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Self-signed certificate, use SSL for local links only (discouraged)"; +$a->strings["Save Settings"] = "Save settings"; +$a->strings["File upload"] = "File upload"; +$a->strings["Policies"] = "Policies"; +$a->strings["Auto Discovered Contact Directory"] = "Auto-discovered contact directory"; +$a->strings["Performance"] = "Performance"; +$a->strings["Worker"] = "Worker"; +$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Relocate - Warning, advanced function: This could make this server unreachable."; +$a->strings["Site name"] = "Site name"; +$a->strings["Host name"] = "Host name"; +$a->strings["Sender Email"] = "Sender email"; +$a->strings["The email address your server shall use to send notification emails from."] = "The email address your server shall use to send notification emails from."; +$a->strings["Banner/Logo"] = "Banner/Logo"; +$a->strings["Shortcut icon"] = "Shortcut icon"; +$a->strings["Link to an icon that will be used for browsers."] = "Link to an icon that will be used for browsers."; +$a->strings["Touch icon"] = "Touch icon"; +$a->strings["Link to an icon that will be used for tablets and mobiles."] = "Link to an icon that will be used for tablets and mobiles."; +$a->strings["Additional Info"] = "Additional Info"; +$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = "For public servers: add additional information here that will be listed at %s/siteinfo."; +$a->strings["System language"] = "System language"; +$a->strings["System theme"] = "System theme"; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Default system theme - may be overridden by user profiles - change theme settings"; +$a->strings["Mobile system theme"] = "Mobile system theme"; +$a->strings["Theme for mobile devices"] = "Theme for mobile devices"; +$a->strings["SSL link policy"] = "SSL link policy"; +$a->strings["Determines whether generated links should be forced to use SSL"] = "Determines whether generated links should be forced to use SSL"; +$a->strings["Force SSL"] = "Force SSL"; +$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."; +$a->strings["Hide help entry from navigation menu"] = "Hide help entry from navigation menu"; +$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Hides the menu entry for the Help pages from the navigation menu. Help pages can still be accessed by calling ../help directly via its URL."; +$a->strings["Single user instance"] = "Single user instance"; +$a->strings["Make this instance multi-user or single-user for the named user"] = "Make this instance multi-user or single-user for the named user"; +$a->strings["Maximum image size"] = "Maximum image size"; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximum size in bytes of uploaded images. Default is 0, which means no limits."; +$a->strings["Maximum image length"] = "Maximum image length"; +$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."; +$a->strings["JPEG image quality"] = "JPEG image quality"; +$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is the original quality level."; +$a->strings["Register policy"] = "Register policy"; +$a->strings["Maximum Daily Registrations"] = "Maximum daily registrations"; +$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."] = "If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."; +$a->strings["Register text"] = "Register text"; +$a->strings["Will be displayed prominently on the registration page."] = "Will be displayed prominently on the registration page."; +$a->strings["Accounts abandoned after x days"] = "Accounts abandoned after so many days"; +$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Will not waste system resources polling external sites for abandoned accounts. Enter 0 for no time limit."; +$a->strings["Allowed friend domains"] = "Allowed friend domains"; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Leave empty to allow any domains"; +$a->strings["Allowed email domains"] = "Allowed email domains"; +$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Leave empty to allow any domains"; +$a->strings["Block public"] = "Block public"; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Block public access to all otherwise public personal pages on this site, except for local users when logged in."; +$a->strings["Force publish"] = "Mandatory directory listing"; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Force all profiles on this site to be listed in the site directory."; +$a->strings["Global directory URL"] = "Global directory URL"; +$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL to the global directory: If this is not set, the global directory is completely unavailable to the application."; +$a->strings["Allow threaded items"] = "Allow threaded items"; +$a->strings["Allow infinite level threading for items on this site."] = "Allow infinite levels of threading for items on this site."; +$a->strings["Private posts by default for new users"] = "Private posts by default for new users"; +$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Set default post permissions for all new members to the default privacy group rather than public."; +$a->strings["Don't include post content in email notifications"] = "Don't include post content in email notifications"; +$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "Don't include the content of a post/comment/private message in the email notifications sent from this site, as a privacy measure."; +$a->strings["Disallow public access to addons listed in the apps menu."] = "Disallow public access to addons listed in the apps menu."; +$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Checking this box will restrict addons listed in the apps menu to members only."; +$a->strings["Don't embed private images in posts"] = "Don't embed private images in posts"; +$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = "Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."; +$a->strings["Allow Users to set remote_self"] = "Allow users to set \"Remote self\""; +$a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = "This allows every user to mark contacts as a \"Remote self\" in the repair contact dialogue. Setting this flag on a contact will mirror every posting of that contact in the users stream."; +$a->strings["Block multiple registrations"] = "Block multiple registrations"; +$a->strings["Disallow users to register additional accounts for use as pages."] = "Disallow users to register additional accounts for use as pages."; +$a->strings["OpenID support"] = "OpenID support"; +$a->strings["OpenID support for registration and logins."] = "OpenID support for registration and logins."; +$a->strings["Fullname check"] = "Full name check"; +$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Force users to register with a space between first name and last name in the full name field; it may reduce spam and abuse registrations."; +$a->strings["Community Page Style"] = "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."] = "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"] = "Posts per user on community page"; +$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "Maximum number of posts per user on the community page (not valid for 'Global Community')."; +$a->strings["Enable OStatus support"] = "Enable OStatus support"; +$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Provide built-in OStatus (StatusNet, GNU Social, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."; +$a->strings["OStatus conversation completion interval"] = "OStatus conversation completion interval"; +$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "How often shall the poller check for new entries in OStatus conversations? This can be rather resources consuming."; +$a->strings["Only import OStatus threads from our contacts"] = "Only import OStatus threads from known contacts"; +$a->strings["Normally we import every content from our OStatus contacts. With this option we only store threads that are started by a contact that is known on our system."] = "Normally we import every content from our OStatus contacts. With this option we only store threads that are started by a contact that is known on our system."; +$a->strings["OStatus support can only be enabled if threading is enabled."] = "OStatus support can only be enabled if threading is enabled."; +$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "Diaspora support can't be enabled because Friendica was installed into a sub directory."; +$a->strings["Enable Diaspora support"] = "Enable Diaspora support"; +$a->strings["Provide built-in Diaspora network compatibility."] = "Provide built-in Diaspora network compatibility."; +$a->strings["Only allow Friendica contacts"] = "Only allow Friendica contacts"; +$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "All contacts must use Friendica protocols. All other built-in communication protocols will be disabled."; +$a->strings["Verify SSL"] = "Verify SSL"; +$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."; +$a->strings["Proxy user"] = "Proxy user"; +$a->strings["Proxy URL"] = "Proxy URL"; +$a->strings["Network timeout"] = "Network timeout"; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Value is in seconds. Set to 0 for unlimited (not recommended)."; +$a->strings["Maximum Load Average"] = "Maximum load average"; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximum system load before delivery and poll processes are deferred (default 50)."; +$a->strings["Maximum Load Average (Frontend)"] = "Maximum load average (frontend)"; +$a->strings["Maximum system load before the frontend quits service - default 50."] = "Maximum system load before the frontend quits service (default 50)."; +$a->strings["Minimal Memory"] = "Minimal memory"; +$a->strings["Minimal free memory in MB for the poller. Needs access to /proc/meminfo - default 0 (deactivated)."] = "Minimal free memory in MB for the poller. Needs access to /proc/meminfo (default 0 - deactivated)."; +$a->strings["Maximum table size for optimization"] = "Maximum table size for optimization"; +$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = "Maximum table size (in MB) for the automatic optimization (default 100 MB; -1 to deactivate)."; +$a->strings["Minimum level of fragmentation"] = "Minimum level of fragmentation"; +$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = "Minimum fragmentation level to start the automatic optimization (default 30%)."; +$a->strings["Periodical check of global contacts"] = "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."] = "This checks global contacts periodically for missing or outdated data and the vitality of the contacts and servers."; +$a->strings["Days between requery"] = "Days between enquiry"; +$a->strings["Number of days after which a server is requeried for his contacts."] = "Number of days after which a server is required check contacts."; +$a->strings["Discover contacts from other servers"] = "Discover contacts from other servers"; +$a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = "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 recommend setting is 'Users, Global Contacts'."; +$a->strings["Timeframe for fetching global contacts"] = "Time-frame 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."] = "If discovery is activated, this value defines the time-frame for the activity of the global contacts that are fetched from other servers."; +$a->strings["Search the local directory"] = "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."] = "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"] = "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."] = "This publishes generic data about the server and its usage. 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["Suppress Tags"] = "Suppress tags"; +$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "Suppress listed hashtags at the end of posts."; +$a->strings["Path to item cache"] = "Path to item cache"; +$a->strings["The item caches buffers generated bbcode and external images."] = "The item caches buffers generated bbcode and external images."; +$a->strings["Cache duration in seconds"] = "Cache duration in seconds"; +$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "How long should cache files be held? (Default 86400 seconds - one day; -1 disables item cache)"; +$a->strings["Maximum numbers of comments per post"] = "Maximum numbers of comments per post"; +$a->strings["How much comments should be shown for each post? Default value is 100."] = "How many comments should be shown for each post? (Default 100)"; +$a->strings["Temp path"] = "Temp path"; +$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "Enter a different tmp path, if your system restricts the webserver's access to the system temp path."; +$a->strings["Base path to installation"] = "Base path to installation"; +$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."; +$a->strings["Disable picture proxy"] = "Disable picture proxy"; +$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."; +$a->strings["Only search in tags"] = "Only search in tags"; +$a->strings["On large systems the text search can slow down the system extremely."] = "On large systems the text search can slow down the system significantly."; +$a->strings["New base url"] = "New base URL"; +$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = "Change base URL for this server. Sends relocate message to all DFRN contacts of all users."; +$a->strings["RINO Encryption"] = "RINO Encryption"; +$a->strings["Encryption layer between nodes."] = "Encryption layer between nodes."; +$a->strings["Maximum number of parallel workers"] = "Maximum number of parallel workers"; +$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = "On shared hosts set this to 2. On larger systems, values of 10 are great. Default value is 4."; +$a->strings["Don't use 'proc_open' with the worker"] = "Don't use 'proc_open' with the worker"; +$a->strings["Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosters. If this is enabled you should increase the frequency of poller calls in your crontab."] = "Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosts. If this is enabled you should increase the frequency of poller calls in your crontab."; +$a->strings["Enable fastlane"] = "Enable fast-lane"; +$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = "The fast-lane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."; +$a->strings["Enable frontend worker"] = "Enable frontend worker"; +$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = "If enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."; +$a->strings["Update has been marked successful"] = "Update has been marked successful"; +$a->strings["Database structure update %s was successfully applied."] = "Database structure update %s was successfully applied."; +$a->strings["Executing of database structure update %s failed with error: %s"] = "Executing of database structure update %s failed with error: %s"; +$a->strings["Executing %s failed with error: %s"] = "Executing %s failed with error: %s"; +$a->strings["Update %s was successfully applied."] = "Update %s was successfully applied."; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s did not return a status. Unknown if it succeeded."; +$a->strings["There was no additional update function %s that needed to be called."] = "There was no additional update function %s that needed to be called."; +$a->strings["No failed updates."] = "No failed updates."; +$a->strings["Check database structure"] = "Check database structure"; +$a->strings["Failed Updates"] = "Failed updates"; +$a->strings["This does not include updates prior to 1139, which did not return a status."] = "This does not include updates prior to 1139, which did not return a status."; +$a->strings["Mark success (if update was manually applied)"] = "Mark success (if update was manually applied)"; +$a->strings["Attempt to execute this update step automatically"] = "Attempt to execute this update step automatically"; +$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "\n\t\t\tDear %1\$s,\n\t\t\t\tThe administrator of %2\$s has set up an account for you."; +$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = "\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, this may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."; +$a->strings["%s user blocked/unblocked"] = array( + 0 => "%s user blocked/unblocked", + 1 => "%s users blocked/unblocked", +); +$a->strings["%s user deleted"] = array( + 0 => "%s user deleted", + 1 => "%s users deleted", +); +$a->strings["User '%s' deleted"] = "User '%s' deleted"; +$a->strings["User '%s' unblocked"] = "User '%s' unblocked"; +$a->strings["User '%s' blocked"] = "User '%s' blocked"; +$a->strings["Register date"] = "Register date"; +$a->strings["Last login"] = "Last login"; +$a->strings["Last item"] = "Last item"; +$a->strings["Account"] = "Account"; +$a->strings["Add User"] = "Add user"; +$a->strings["select all"] = "select all"; +$a->strings["User registrations waiting for confirm"] = "User registrations awaiting confirmation"; +$a->strings["User waiting for permanent deletion"] = "User awaiting permanent deletion"; +$a->strings["Request date"] = "Request date"; +$a->strings["No registrations."] = "No registrations."; +$a->strings["Note from the user"] = "Note from the user"; +$a->strings["Deny"] = "Deny"; +$a->strings["Block"] = "Block"; +$a->strings["Unblock"] = "Unblock"; +$a->strings["Site admin"] = "Site admin"; +$a->strings["Account expired"] = "Account expired"; +$a->strings["New User"] = "New user"; +$a->strings["Deleted since"] = "Deleted since"; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Selected users will be deleted!\\n\\nEverything these users has posted on this site will be permanently deleted!\\n\\nAre you sure?"; +$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"; +$a->strings["Name of the new user."] = "Name of the new user."; +$a->strings["Nickname"] = "Nickname"; +$a->strings["Nickname of the new user."] = "Nickname of the new user."; +$a->strings["Email address of the new user."] = "Email address of the new user."; +$a->strings["Plugin %s disabled."] = "Plugin %s disabled."; +$a->strings["Plugin %s enabled."] = "Plugin %s enabled."; +$a->strings["Disable"] = "Disable"; +$a->strings["Enable"] = "Enable"; +$a->strings["Toggle"] = "Toggle"; +$a->strings["Author: "] = "Author: "; +$a->strings["Maintainer: "] = "Maintainer: "; +$a->strings["Reload active plugins"] = "Reload active plugins"; +$a->strings["There are currently no plugins available on your node. You can find the official plugin repository at %1\$s and might find other interesting plugins in the open plugin registry at %2\$s"] = "There are currently no plugins available on your node. You can find the official plugin repository at %1\$s and might find other interesting plugins in the open plugin registry at %2\$s"; +$a->strings["No themes found."] = "No themes found."; +$a->strings["Screenshot"] = "Screenshot"; +$a->strings["Reload active themes"] = "Reload active themes"; +$a->strings["No themes found on the system. They should be paced in %1\$s"] = "No themes found on the system. They should be paced in %1\$s"; +$a->strings["[Experimental]"] = "[Experimental]"; +$a->strings["[Unsupported]"] = "[Unsupported]"; +$a->strings["Log settings updated."] = "Log settings updated."; +$a->strings["PHP log currently enabled."] = "PHP log currently enabled."; +$a->strings["PHP log currently disabled."] = "PHP log currently disabled."; +$a->strings["Clear"] = "Clear"; +$a->strings["Enable Debugging"] = "Enable debugging"; +$a->strings["Log file"] = "Log file"; +$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Must be writable by web server and relative to your Friendica top-level directory."; +$a->strings["Log level"] = "Log level"; +$a->strings["PHP logging"] = "PHP logging"; +$a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = "To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The file name set in the 'error_log' line is relative to the Friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."; +$a->strings["Off"] = "Off"; +$a->strings["On"] = "On"; +$a->strings["Lock feature %s"] = "Lock feature %s"; +$a->strings["Manage Additional Features"] = "Manage additional features"; +$a->strings["%d contact edited."] = array( + 0 => "%d contact edited.", + 1 => "%d contacts edited.", +); +$a->strings["Could not access contact record."] = "Could not access contact record."; +$a->strings["Could not locate selected profile."] = "Could not locate selected profile."; +$a->strings["Contact updated."] = "Contact updated."; +$a->strings["Contact has been blocked"] = "Contact has been blocked"; +$a->strings["Contact has been unblocked"] = "Contact has been unblocked"; +$a->strings["Contact has been ignored"] = "Contact has been ignored"; +$a->strings["Contact has been unignored"] = "Contact has been unignored"; +$a->strings["Contact has been archived"] = "Contact has been archived"; +$a->strings["Contact has been unarchived"] = "Contact has been unarchived"; +$a->strings["Drop contact"] = "Drop contact"; +$a->strings["Do you really want to delete this contact?"] = "Do you really want to delete this contact?"; +$a->strings["Contact has been removed."] = "Contact has been removed."; +$a->strings["You are mutual friends with %s"] = "You are mutual friends with %s"; +$a->strings["You are sharing with %s"] = "You are sharing with %s"; +$a->strings["%s is sharing with you"] = "%s is sharing with you"; +$a->strings["Private communications are not available for this contact."] = "Private communications are not available for this contact."; +$a->strings["(Update was successful)"] = "(Update was successful)"; +$a->strings["(Update was not successful)"] = "(Update was not successful)"; +$a->strings["Suggest friends"] = "Suggest friends"; +$a->strings["Network type: %s"] = "Network type: %s"; +$a->strings["Communications lost with this contact!"] = "Communications lost with this contact!"; +$a->strings["Fetch further information for feeds"] = "Fetch further information for feeds"; +$a->strings["Fetch information"] = "Fetch information"; +$a->strings["Fetch information and keywords"] = "Fetch information and keywords"; +$a->strings["Contact"] = "Contact"; +$a->strings["Profile Visibility"] = "Profile visibility"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Please choose the profile you would like to display to %s when viewing your profile securely."; +$a->strings["Contact Information / Notes"] = "Personal note"; +$a->strings["Edit contact notes"] = "Edit contact notes"; +$a->strings["Block/Unblock contact"] = "Block/Unblock contact"; +$a->strings["Ignore contact"] = "Ignore contact"; +$a->strings["Repair URL settings"] = "Repair URL settings"; +$a->strings["View conversations"] = "View conversations"; +$a->strings["Last update:"] = "Last update:"; +$a->strings["Update public posts"] = "Update public posts"; +$a->strings["Update now"] = "Update now"; +$a->strings["Unignore"] = "Unignore"; +$a->strings["Currently blocked"] = "Currently blocked"; +$a->strings["Currently ignored"] = "Currently ignored"; +$a->strings["Currently archived"] = "Currently archived"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Replies/Likes to your public posts may still be visible"; +$a->strings["Notification for new posts"] = "Notification for new posts"; +$a->strings["Send a notification of every new post of this contact"] = "Send notification for every new post from this contact"; +$a->strings["Blacklisted keywords"] = "Blacklisted keywords"; +$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"; +$a->strings["Actions"] = "Actions"; +$a->strings["Contact Settings"] = "Notification and privacy "; +$a->strings["Suggestions"] = "Suggestions"; +$a->strings["Suggest potential friends"] = "Suggest potential friends"; +$a->strings["Show all contacts"] = "Show all contacts"; +$a->strings["Unblocked"] = "Unblocked"; +$a->strings["Only show unblocked contacts"] = "Only show unblocked contacts"; +$a->strings["Blocked"] = "Blocked"; +$a->strings["Only show blocked contacts"] = "Only show blocked contacts"; +$a->strings["Ignored"] = "Ignored"; +$a->strings["Only show ignored contacts"] = "Only show ignored contacts"; +$a->strings["Archived"] = "Archived"; +$a->strings["Only show archived contacts"] = "Only show archived contacts"; +$a->strings["Hidden"] = "Hidden"; +$a->strings["Only show hidden contacts"] = "Only show hidden contacts"; +$a->strings["Search your contacts"] = "Search your contacts"; +$a->strings["Update"] = "Update"; +$a->strings["Archive"] = "Archive"; +$a->strings["Unarchive"] = "Unarchive"; +$a->strings["Batch Actions"] = "Batch actions"; +$a->strings["View all contacts"] = "View all contacts"; +$a->strings["View all common friends"] = "View all common friends"; +$a->strings["Advanced Contact Settings"] = "Advanced contact settings"; +$a->strings["Mutual Friendship"] = "Mutual friendship"; +$a->strings["is a fan of yours"] = "is a fan of yours"; +$a->strings["you are a fan of"] = "I follow them"; +$a->strings["Toggle Blocked status"] = "Toggle blocked status"; +$a->strings["Toggle Ignored status"] = "Toggle ignored status"; +$a->strings["Toggle Archive status"] = "Toggle archive status"; +$a->strings["Delete contact"] = "Delete contact"; +$a->strings["Image uploaded but image cropping failed."] = "Image uploaded but image cropping failed."; +$a->strings["Image size reduction [%s] failed."] = "Image size reduction [%s] failed."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-reload the page or clear browser cache if the new photo does not display immediately."; +$a->strings["Unable to process image"] = "Unable to process image"; +$a->strings["Upload File:"] = "Upload File:"; +$a->strings["Select a profile:"] = "Select a profile:"; +$a->strings["Upload"] = "Upload"; +$a->strings["or"] = "or"; +$a->strings["skip this step"] = "skip this step"; +$a->strings["select a photo from your photo albums"] = "select a photo from your photo albums"; +$a->strings["Crop Image"] = "Crop Image"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Please adjust the image cropping for optimum viewing."; +$a->strings["Done Editing"] = "Done editing"; +$a->strings["Image uploaded successfully."] = "Image uploaded successfully."; +$a->strings["Profile deleted."] = "Profile deleted."; +$a->strings["Profile-"] = "Profile-"; +$a->strings["New profile created."] = "New profile created."; +$a->strings["Profile unavailable to clone."] = "Profile unavailable to clone."; +$a->strings["Profile Name is required."] = "Profile name is required."; +$a->strings["Marital Status"] = "Marital status"; +$a->strings["Romantic Partner"] = "Romantic partner"; +$a->strings["Work/Employment"] = "Work/Employment:"; +$a->strings["Religion"] = "Religion"; +$a->strings["Political Views"] = "Political views"; +$a->strings["Gender"] = "Gender"; +$a->strings["Sexual Preference"] = "Sexual preference"; +$a->strings["XMPP"] = "XMPP"; +$a->strings["Homepage"] = "Homepage"; +$a->strings["Interests"] = "Interests"; +$a->strings["Address"] = "Address"; +$a->strings["Location"] = "Location"; +$a->strings["Profile updated."] = "Profile updated."; +$a->strings[" and "] = " and "; +$a->strings["public profile"] = "public profile"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s changed %2\$s to “%3\$s”"; +$a->strings[" - Visit %1\$s's %2\$s"] = " - Visit %1\$s's %2\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s has an updated %2\$s, changing %3\$s."; +$a->strings["Hide contacts and friends:"] = "Hide contacts and friends:"; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Hide your contact/friend list from viewers of this profile?"; +$a->strings["Show more profile fields:"] = "Show more profile fields:"; +$a->strings["Profile Actions"] = "Profile actions"; +$a->strings["Edit Profile Details"] = "Edit Profile Details"; +$a->strings["Change Profile Photo"] = "Change profile photo"; +$a->strings["View this profile"] = "View this profile"; +$a->strings["Create a new profile using these settings"] = "Create a new profile using these settings"; +$a->strings["Clone this profile"] = "Clone this profile"; +$a->strings["Delete this profile"] = "Delete this profile"; +$a->strings["Basic information"] = "Basic information"; +$a->strings["Profile picture"] = "Profile picture"; +$a->strings["Preferences"] = "Preferences"; +$a->strings["Status information"] = "Status information"; +$a->strings["Additional information"] = "Additional information"; +$a->strings["Relation"] = "Relation"; +$a->strings["Your Gender:"] = "Gender:"; +$a->strings[" Marital Status:"] = " Marital status:"; +$a->strings["Example: fishing photography software"] = "Example: fishing photography software"; +$a->strings["Profile Name:"] = "Profile name:"; +$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "This is your public profile.
It may be visible to anybody using the internet."; +$a->strings["Your Full Name:"] = "My full name:"; +$a->strings["Title/Description:"] = "Title/Description:"; +$a->strings["Street Address:"] = "Street address:"; +$a->strings["Locality/City:"] = "Locality/City:"; +$a->strings["Region/State:"] = "Region/State:"; +$a->strings["Postal/Zip Code:"] = "Postcode:"; +$a->strings["Country:"] = "Country:"; +$a->strings["Who: (if applicable)"] = "Who: (if applicable)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Examples: cathy123, Cathy Williams, cathy@example.com"; +$a->strings["Since [date]:"] = "Since when:"; +$a->strings["Tell us about yourself..."] = "About myself:"; +$a->strings["XMPP (Jabber) address:"] = "XMPP (Jabber) address:"; +$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "The XMPP address will be propagated to your contacts so that they can follow you."; +$a->strings["Homepage URL:"] = "Homepage URL:"; +$a->strings["Religious Views:"] = "Religious views:"; +$a->strings["Public Keywords:"] = "Public keywords:"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "Used for suggesting potential friends, can be seen by others."; +$a->strings["Private Keywords:"] = "Private keywords:"; +$a->strings["(Used for searching profiles, never shown to others)"] = "Used for searching profiles, never shown to others."; +$a->strings["Musical interests"] = "Music:"; +$a->strings["Books, literature"] = "Books, literature, poetry:"; +$a->strings["Television"] = "Television:"; +$a->strings["Film/dance/culture/entertainment"] = "Film, dance, culture, entertainment"; +$a->strings["Hobbies/Interests"] = "Hobbies/Interests:"; +$a->strings["Love/romance"] = "Love/Romance:"; +$a->strings["Work/employment"] = "Work/Employment:"; +$a->strings["School/education"] = "School/Education:"; +$a->strings["Contact information and Social Networks"] = "Contact information and other social networks:"; +$a->strings["Edit/Manage Profiles"] = "Edit/Manage Profiles"; +$a->strings["Display"] = "Display"; +$a->strings["Social Networks"] = "Social networks"; +$a->strings["Connected apps"] = "Connected apps"; +$a->strings["Remove account"] = "Remove account"; +$a->strings["Missing some important data!"] = "Missing some important data!"; +$a->strings["Failed to connect with email account using the settings provided."] = "Failed to connect with email account using the settings provided."; +$a->strings["Email settings updated."] = "Email settings updated."; +$a->strings["Features updated"] = "Features updated"; +$a->strings["Relocate message has been send to your contacts"] = "Relocate message has been send to your contacts"; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Empty passwords are not allowed. Password unchanged."; +$a->strings["Wrong password."] = "Wrong password."; +$a->strings["Password changed."] = "Password changed."; +$a->strings["Password update failed. Please try again."] = "Password update failed. Please try again."; +$a->strings[" Please use a shorter name."] = " Please use a shorter name."; +$a->strings[" Name too short."] = " Name too short."; +$a->strings["Wrong Password"] = "Wrong password"; +$a->strings[" Not valid email."] = "Invalid email."; +$a->strings[" Cannot change to that email."] = " Cannot change to that email."; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Private forum has no privacy permissions. Using default privacy group."; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Private forum has no privacy permissions and no default privacy group."; +$a->strings["Settings updated."] = "Settings updated."; +$a->strings["Add application"] = "Add application"; +$a->strings["Consumer Key"] = "Consumer key"; +$a->strings["Consumer Secret"] = "Consumer secret"; +$a->strings["Redirect"] = "Redirect"; +$a->strings["Icon url"] = "Icon URL"; +$a->strings["You can't edit this application."] = "You cannot edit this application."; +$a->strings["Connected Apps"] = "Connected Apps"; +$a->strings["Client key starts with"] = "Client key starts with"; +$a->strings["No name"] = "No name"; +$a->strings["Remove authorization"] = "Remove authorization"; +$a->strings["No Plugin settings configured"] = "No plugin settings configured"; +$a->strings["Plugin Settings"] = "Plugin Settings"; +$a->strings["Additional Features"] = "Additional Features"; +$a->strings["General Social Media Settings"] = "General Social Media Settings"; +$a->strings["Disable intelligent shortening"] = "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."] = "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"] = "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."] = "Create a new contact for every unknown OStatus user from whom you receive a message."; +$a->strings["Default group for OStatus contacts"] = "Default group for OStatus contacts"; +$a->strings["Your legacy GNU Social account"] = "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."] = "Entering your old GNU Social/Statusnet account name here (format: user@domain.tld), will automatically added your contacts. The field will be emptied when done."; +$a->strings["Repair OStatus subscriptions"] = "Repair OStatus subscriptions"; +$a->strings["Built-in support for %s connectivity is %s"] = "Built-in support for %s connectivity is %s"; +$a->strings["enabled"] = "enabled"; +$a->strings["disabled"] = "disabled"; +$a->strings["GNU Social (OStatus)"] = "GNU Social (OStatus)"; +$a->strings["Email access is disabled on this site."] = "Email access is disabled on this site."; +$a->strings["Email/Mailbox Setup"] = "Email/Mailbox setup"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Specify how to connect to your mailbox, if you wish to communicate with existing email contacts."; +$a->strings["Last successful email check:"] = "Last successful email check:"; +$a->strings["IMAP server name:"] = "IMAP server name:"; +$a->strings["IMAP port:"] = "IMAP port:"; +$a->strings["Security:"] = "Security:"; +$a->strings["None"] = "None"; +$a->strings["Email login name:"] = "Email login name:"; +$a->strings["Email password:"] = "Email password:"; +$a->strings["Reply-to address:"] = "Reply-to address:"; +$a->strings["Send public posts to all email contacts:"] = "Send public posts to all email contacts:"; +$a->strings["Action after import:"] = "Action after import:"; +$a->strings["Move to folder"] = "Move to folder"; +$a->strings["Move to folder:"] = "Move to folder:"; +$a->strings["Display Settings"] = "Display Settings"; +$a->strings["Display Theme:"] = "Display theme:"; +$a->strings["Mobile Theme:"] = "Mobile theme:"; +$a->strings["Suppress warning of insecure networks"] = "Suppress warning of insecure networks"; +$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = "Suppresses warnings if groups contains members whose networks that cannot receive non-public postings."; +$a->strings["Update browser every xx seconds"] = "Update browser every so many seconds:"; +$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimum 10 seconds; to disable -1."; +$a->strings["Number of items to display per page:"] = "Number of items displayed per page:"; +$a->strings["Maximum of 100 items"] = "Maximum of 100 items"; +$a->strings["Number of items to display per page when viewed from mobile device:"] = "Number of items displayed per page on mobile devices:"; +$a->strings["Don't show emoticons"] = "Don't show emoticons"; +$a->strings["Calendar"] = "Calendar"; +$a->strings["Beginning of week:"] = "Week begins: "; +$a->strings["Don't show notices"] = "Don't show notices"; +$a->strings["Infinite scroll"] = "Infinite scroll"; +$a->strings["Automatic updates only at the top of the network page"] = "Automatically updates only top of the network page"; +$a->strings["Bandwith Saver Mode"] = "Bandwith saving mode"; +$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "If enabled, embedded content is not displayed on automatic updates; it is only shown on page reload."; +$a->strings["General Theme Settings"] = "Themes"; +$a->strings["Custom Theme Settings"] = "Theme customization"; +$a->strings["Content Settings"] = "Content/Layout"; +$a->strings["Theme settings"] = "Theme settings"; +$a->strings["Account Types"] = "Account types:"; +$a->strings["Personal Page Subtypes"] = "Personal Page subtypes"; +$a->strings["Community Forum Subtypes"] = "Community forum subtypes"; +$a->strings["Personal Page"] = "Personal Page"; +$a->strings["This account is a regular personal profile"] = "Regular personal profile"; +$a->strings["Organisation Page"] = "Organization Page"; +$a->strings["This account is a profile for an organisation"] = "Profile for an organization"; +$a->strings["News Page"] = "News Page"; +$a->strings["This account is a news account/reflector"] = "News reflector"; +$a->strings["Community Forum"] = "Community Forum"; +$a->strings["This account is a community forum where people can discuss with each other"] = "Discussion forum for community"; +$a->strings["Normal Account Page"] = "Standard"; +$a->strings["This account is a normal personal profile"] = "Regular personal profile"; +$a->strings["Soapbox Page"] = "Soapbox"; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Automatically approves contact requests as followers"; +$a->strings["Public Forum"] = "Public forum"; +$a->strings["Automatically approve all contact requests"] = "Automatically approve all contact requests"; +$a->strings["Automatic Friend Page"] = "Popularity"; +$a->strings["Automatically approve all connection/friend requests as friends"] = "Automatically approves contact requests as friends"; +$a->strings["Private Forum [Experimental]"] = "Private forum [Experimental]"; +$a->strings["Private forum - approved members only"] = "Private forum - approved members only"; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optional) Allow this OpenID to login to this account."; +$a->strings["Publish your default profile in your local site directory?"] = "Publish default profile in local site directory?"; +$a->strings["Your profile may be visible in public."] = "Your local directory may be publicly visible"; +$a->strings["Publish your default profile in the global social directory?"] = "Publish default profile in global directory?"; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Hide my contact list from others?"; +$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Posting public messages to Diaspora and other networks will not be possible if enabled"; +$a->strings["Allow friends to post to your profile page?"] = "Allow friends to post to my wall?"; +$a->strings["Allow friends to tag your posts?"] = "Allow friends to tag my post?"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Allow us to suggest you as a potential friend to new members?"; +$a->strings["Permit unknown people to send you private mail?"] = "Allow unknown people to send me private messages?"; +$a->strings["Profile is not published."] = "Profile is not published."; +$a->strings["Your Identity Address is '%s' or '%s'."] = "My identity address: '%s' or '%s'"; +$a->strings["Automatically expire posts after this many days:"] = "Automatically expire posts after this many days:"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Posts will not expire if empty; expired posts will be deleted"; +$a->strings["Advanced expiration settings"] = "Advanced expiration settings"; +$a->strings["Advanced Expiration"] = "Advanced expiration"; +$a->strings["Expire posts:"] = "Expire posts:"; +$a->strings["Expire personal notes:"] = "Expire personal notes:"; +$a->strings["Expire starred posts:"] = "Expire starred posts:"; +$a->strings["Expire photos:"] = "Expire photos:"; +$a->strings["Only expire posts by others:"] = "Only expire posts by others:"; +$a->strings["Account Settings"] = "Account Settings"; +$a->strings["Password Settings"] = "Password change"; +$a->strings["Leave password fields blank unless changing"] = "Leave password fields blank unless changing"; +$a->strings["Current Password:"] = "Current password:"; +$a->strings["Your current password to confirm the changes"] = "Current password to confirm change"; +$a->strings["Password:"] = "Password:"; +$a->strings["Basic Settings"] = "Basic information"; +$a->strings["Email Address:"] = "Email address:"; +$a->strings["Your Timezone:"] = "Time zone:"; +$a->strings["Your Language:"] = "Language:"; +$a->strings["Set the language we use to show you friendica interface and to send you emails"] = "Set the language of your Friendica interface and emails receiving"; +$a->strings["Default Post Location:"] = "Posting location:"; +$a->strings["Use Browser Location:"] = "Use browser location:"; +$a->strings["Security and Privacy Settings"] = "Security and privacy"; +$a->strings["Maximum Friend Requests/Day:"] = "Maximum friend requests per day:"; +$a->strings["(to prevent spam abuse)"] = "May prevent spam or abuse registrations"; +$a->strings["Default Post Permissions"] = "Default post permissions"; +$a->strings["(click to open/close)"] = "(click to open/close)"; +$a->strings["Default Private Post"] = "Default private post"; +$a->strings["Default Public Post"] = "Default public post"; +$a->strings["Default Permissions for New Posts"] = "Default permissions for new posts"; +$a->strings["Maximum private messages per day from unknown people:"] = "Maximum private messages per day from unknown people:"; +$a->strings["Notification Settings"] = "Notification"; +$a->strings["By default post a status message when:"] = "By default post a status message when:"; +$a->strings["accepting a friend request"] = "accepting friend requests"; +$a->strings["joining a forum/community"] = "joining forums or communities"; +$a->strings["making an interesting profile change"] = "making an interesting profile change"; +$a->strings["Send a notification email when:"] = "Send notification email when:"; +$a->strings["You receive an introduction"] = "Receiving an introduction"; +$a->strings["Your introductions are confirmed"] = "My introductions are confirmed"; +$a->strings["Someone writes on your profile wall"] = "Someone writes on my wall"; +$a->strings["Someone writes a followup comment"] = "A follow up comment is posted"; +$a->strings["You receive a private message"] = "receiving a private message"; +$a->strings["You receive a friend suggestion"] = "Receiving a friend suggestion"; +$a->strings["You are tagged in a post"] = "Tagged in a post"; +$a->strings["You are poked/prodded/etc. in a post"] = "Poked in a post"; +$a->strings["Activate desktop notifications"] = "Activate desktop notifications"; +$a->strings["Show desktop popup on new notifications"] = "Show desktop pop-up on new notifications"; +$a->strings["Text-only notification emails"] = "Text-only notification emails"; +$a->strings["Send text only notification emails, without the html part"] = "Receive text only emails without HTML "; +$a->strings["Advanced Account/Page Type Settings"] = "Advanced account types"; +$a->strings["Change the behaviour of this account for special situations"] = "Change behaviour of this account for special situations"; +$a->strings["Relocate"] = "Recent relocation"; +$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."] = "If you have moved this profile from another server and some of your contacts don't receive your updates:"; +$a->strings["Resend relocate message to contacts"] = "Resend relocation message to contacts"; +$a->strings["via"] = "via"; +$a->strings["greenzero"] = "greenzero"; +$a->strings["purplezero"] = "purplezero"; +$a->strings["easterbunny"] = "easterbunny"; +$a->strings["darkzero"] = "darkzero"; +$a->strings["comix"] = "comix"; +$a->strings["slackr"] = "slackr"; +$a->strings["Variations"] = "Variations"; +$a->strings["Repeat the image"] = "Repeat the image"; +$a->strings["Will repeat your image to fill the background."] = "Will repeat your image to fill the background."; +$a->strings["Stretch"] = "Stretch"; +$a->strings["Will stretch to width/height of the image."] = "Will stretch to width/height of the image."; +$a->strings["Resize fill and-clip"] = "Resize fill and-clip"; +$a->strings["Resize to fill and retain aspect ratio."] = "Resize to fill and retain aspect ratio."; +$a->strings["Resize best fit"] = "Resize to best fit"; +$a->strings["Resize to best fit and retain aspect ratio."] = "Resize to best fit and retain aspect ratio."; +$a->strings["Default"] = "Default"; +$a->strings["Note: "] = "Note - "; +$a->strings["Check image permissions if all users are allowed to visit the image"] = "Check image permissions if all users are allowed to visit the image"; +$a->strings["Select scheme"] = "Select scheme:"; +$a->strings["Navigation bar background color"] = "Navigation bar background color:"; +$a->strings["Navigation bar icon color "] = "Navigation bar icon color:"; +$a->strings["Link color"] = "Link color:"; +$a->strings["Set the background color"] = "Background color:"; +$a->strings["Content background transparency"] = "Content background transparency:"; +$a->strings["Set the background image"] = "Background image:"; +$a->strings["Guest"] = "Guest"; +$a->strings["Visitor"] = "Visitor"; +$a->strings["Alignment"] = "Alignment"; +$a->strings["Left"] = "Left"; +$a->strings["Center"] = "Center"; +$a->strings["Color scheme"] = "Color scheme"; +$a->strings["Posts font size"] = "Posts font size"; +$a->strings["Textareas font size"] = "Text areas font size"; +$a->strings["Comma separated list of helper forums"] = "Comma separated list of helper forums"; +$a->strings["Set style"] = "Set style"; +$a->strings["Community Pages"] = "Community pages"; +$a->strings["Community Profiles"] = "Community profiles"; +$a->strings["Help or @NewHere ?"] = "Help or @NewHere ?"; +$a->strings["Connect Services"] = "Connect services"; +$a->strings["Find Friends"] = "Find friends"; +$a->strings["Last users"] = "Last users"; +$a->strings["Local Directory"] = "Local directory"; +$a->strings["Quick Start"] = "Quick start"; +$a->strings["Delete this item?"] = "Delete this item?"; +$a->strings["show fewer"] = "Show fewer."; +$a->strings["toggle mobile"] = "Toggle mobile"; +$a->strings["Update %s failed. See error logs."] = "Update %s failed. See error logs."; +$a->strings["Create a New Account"] = "Create a new account"; +$a->strings["Password: "] = "Password: "; +$a->strings["Remember me"] = "Remember me"; +$a->strings["Or login using OpenID: "] = "Or login with OpenID: "; +$a->strings["Forgot your password?"] = "Forgot your password?"; +$a->strings["Website Terms of Service"] = "Website Terms of Service"; +$a->strings["terms of service"] = "Terms of service"; +$a->strings["Website Privacy Policy"] = "Website Privacy Policy"; +$a->strings["privacy policy"] = "Privacy policy"; From 379a01a1c534a1d618e579956cba7b9e589c8c34 Mon Sep 17 00:00:00 2001 From: Andy H3 Date: Mon, 5 Jun 2017 22:22:16 +0700 Subject: [PATCH 083/125] Update messages.po --- view/lang/en-US/messages.po | 43 ++++++++++++++++++------------------- 1 file changed, 21 insertions(+), 22 deletions(-) diff --git a/view/lang/en-US/messages.po b/view/lang/en-US/messages.po index 706d90a7d2..8c1b1ddd57 100644 --- a/view/lang/en-US/messages.po +++ b/view/lang/en-US/messages.po @@ -3,24 +3,23 @@ # This file is distributed under the same license as the Friendica package. # # Translators: -# Andy H3 , 2017 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-05-28 11:09+0200\n" -"PO-Revision-Date: 2017-06-05 14:16+0000\n" +"PO-Revision-Date: 2017-06-05 15:09+0000\n" "Last-Translator: Andy H3 \n" -"Language-Team: English (United Kingdom) (http://www.transifex.com/Friendica/friendica/language/en_GB/)\n" +"Language-Team: English (United States) (http://www.transifex.com/Friendica/friendica/language/en_US/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" +"Language: en_US\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: include/contact_selectors.php:32 msgid "Unknown | Not categorised" -msgstr "Unknown | Not categorised" +msgstr "Unknown | Not categorized" #: include/contact_selectors.php:33 msgid "Block immediately" @@ -709,7 +708,7 @@ msgstr "Post/Item" #: include/conversation.php:336 #, php-format msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s marked %2$s's %3$s as favourite" +msgstr "%1$s marked %2$s's %3$s as favorite" #: include/conversation.php:615 mod/content.php:373 mod/photos.php:1664 #: mod/profiles.php:344 @@ -1632,7 +1631,7 @@ msgstr "angry" #: include/text.php:1170 msgid "stupified" -msgstr "stupified" +msgstr "stupefied" #: include/text.php:1171 msgid "puzzled" @@ -1731,7 +1730,7 @@ msgstr "Drop contact" #: include/Contact.php:819 msgid "Organisation" -msgstr "Organisation" +msgstr "Organization" #: include/Contact.php:822 msgid "News" @@ -4248,7 +4247,7 @@ msgstr "Alternatively, you may skip this procedure and perform a manual installa #: mod/install.php:458 msgid ".htconfig.php is writable" -msgstr ".htconfig.php is writeable" +msgstr ".htconfig.php is writable" #: mod/install.php:468 msgid "" @@ -4277,7 +4276,7 @@ msgstr "Note: as a security measure, you should give the web server write access #: mod/install.php:474 msgid "view/smarty3 is writable" -msgstr "view/smarty3 is writeable" +msgstr "view/smarty3 is writable" #: mod/install.php:490 msgid "" @@ -4785,7 +4784,7 @@ msgstr "Starred" #: mod/network.php:871 msgid "Favourite Posts" -msgstr "My favourite posts" +msgstr "My favorite posts" #: mod/newmember.php:7 msgid "Welcome to Friendica" @@ -6928,7 +6927,7 @@ msgstr "Maximum number of parallel workers" msgid "" "On shared hosters set this to 2. On larger systems, values of 10 are great. " "Default value is 4." -msgstr "On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4." +msgstr "On shared hosts set this to 2. On larger systems, values of 10 are great. Default value is 4." #: mod/admin.php:1150 msgid "Don't use 'proc_open' with the worker" @@ -8342,7 +8341,7 @@ msgstr "Themes" #: mod/settings.php:1025 msgid "Custom Theme Settings" -msgstr "Theme customisation" +msgstr "Theme customization" #: mod/settings.php:1026 msgid "Content Settings" @@ -8376,11 +8375,11 @@ msgstr "Regular personal profile" #: mod/settings.php:1124 msgid "Organisation Page" -msgstr "Organisation Page" +msgstr "Organization Page" #: mod/settings.php:1125 msgid "This account is a profile for an organisation" -msgstr "Profile for an organisation" +msgstr "Profile for an organization" #: mod/settings.php:1128 msgid "News Page" @@ -8796,19 +8795,19 @@ msgstr "Select scheme:" #: view/theme/frio/config.php:71 msgid "Navigation bar background color" -msgstr "Navigation bar background colour:" +msgstr "Navigation bar background color:" #: view/theme/frio/config.php:72 msgid "Navigation bar icon color " -msgstr "Navigation bar icon colour:" +msgstr "Navigation bar icon color:" #: view/theme/frio/config.php:73 msgid "Link color" -msgstr "Link colour:" +msgstr "Link color:" #: view/theme/frio/config.php:74 msgid "Set the background color" -msgstr "Background colour:" +msgstr "Background color:" #: view/theme/frio/config.php:75 msgid "Content background transparency" @@ -8836,11 +8835,11 @@ msgstr "Left" #: view/theme/quattro/config.php:73 msgid "Center" -msgstr "Centre" +msgstr "Center" #: view/theme/quattro/config.php:74 msgid "Color scheme" -msgstr "Colour scheme" +msgstr "Color scheme" #: view/theme/quattro/config.php:75 msgid "Posts font size" @@ -8848,7 +8847,7 @@ msgstr "Posts font size" #: view/theme/quattro/config.php:76 msgid "Textareas font size" -msgstr "Textareas font size" +msgstr "Text areas font size" #: view/theme/vier/config.php:70 msgid "Comma separated list of helper forums" From 2bff8e302af5d26a7decd78d6e4ab6a181e232e3 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 5 Jun 2017 16:56:21 +0000 Subject: [PATCH 084/125] Removing the lock after the process was removed is better --- include/poller.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/poller.php b/include/poller.php index 1de9126d2d..2cf1a15f6b 100644 --- a/include/poller.php +++ b/include/poller.php @@ -752,11 +752,11 @@ function poller_run_cron() { if (array_search(__file__,get_included_files())===0){ poller_run($_SERVER["argv"],$_SERVER["argc"]); - Lock::remove('poller_worker'); - poller_unclaim_process(); get_app()->end_process(); + Lock::remove('poller_worker'); + killme(); } From 2b04865cdbb7c7516b188f786af739d1011b4cbb Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 5 Jun 2017 22:41:33 +0000 Subject: [PATCH 085/125] We found the handbrake ... --- include/poller.php | 21 ++++++++------------- src/Util/Lock.php | 2 +- 2 files changed, 9 insertions(+), 14 deletions(-) diff --git a/include/poller.php b/include/poller.php index 2cf1a15f6b..4bd1ee9e4a 100644 --- a/include/poller.php +++ b/include/poller.php @@ -89,21 +89,16 @@ function poller_run($argv, $argc){ continue; } - // To avoid the quitting of multiple pollers we serialize the next check - if (!Lock::set('poller_worker')) { - logger('Cannot get a lock, retrying.', LOGGER_DEBUG); - poller_unclaim_process(); - continue; + // To avoid the quitting of multiple pollers only one poller at a time will execute the check + if (Lock::set('poller_worker', 0)) { + // Count active workers and compare them with a maximum value that depends on the load + if (poller_too_much_workers()) { + logger('Active worker limit reached, quitting.', LOGGER_DEBUG); + return; + } + Lock::remove('poller_worker'); } - // Count active workers and compare them with a maximum value that depends on the load - if (poller_too_much_workers()) { - logger('Active worker limit reached, quitting.', LOGGER_DEBUG); - return; - } - - Lock::remove('poller_worker'); - // Check free memory if ($a->min_memory_reached()) { logger('Memory limit reached, quitting.', LOGGER_DEBUG); diff --git a/src/Util/Lock.php b/src/Util/Lock.php index 7cc3472e69..63f9b5f973 100644 --- a/src/Util/Lock.php +++ b/src/Util/Lock.php @@ -79,7 +79,7 @@ class Lock { if (!$got_lock) { usleep($wait_sec * 1000000); } - } while (!$got_lock AND ((time(true) - $start) < $timeout)); + } while (!$got_lock AND ((time() - $start) < $timeout)); return $got_lock; } From ba7b4fddea9cf346916a23455f2273c97cf9e7c9 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 6 Jun 2017 04:00:24 +0000 Subject: [PATCH 086/125] memory check is now also only done once in a while --- include/poller.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/poller.php b/include/poller.php index 4bd1ee9e4a..68c5acbcbe 100644 --- a/include/poller.php +++ b/include/poller.php @@ -96,13 +96,13 @@ function poller_run($argv, $argc){ logger('Active worker limit reached, quitting.', LOGGER_DEBUG); return; } - Lock::remove('poller_worker'); - } - // Check free memory - if ($a->min_memory_reached()) { - logger('Memory limit reached, quitting.', LOGGER_DEBUG); - return; + // Check free memory + if ($a->min_memory_reached()) { + logger('Memory limit reached, quitting.', LOGGER_DEBUG); + return; + } + Lock::remove('poller_worker'); } // finally the work will be done From 5dfa513b62d37395039ddf60aecc867028b8f91f Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 6 Jun 2017 04:22:18 +0000 Subject: [PATCH 087/125] Only wait when you have a timout value at all --- src/Util/Lock.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Util/Lock.php b/src/Util/Lock.php index 63f9b5f973..af15e106d5 100644 --- a/src/Util/Lock.php +++ b/src/Util/Lock.php @@ -76,7 +76,7 @@ class Lock { $memcache->set($cachekey, getmypid(), MEMCACHE_COMPRESSED, 300); $got_lock = true; } - if (!$got_lock) { + if (!$got_lock AND ($timeout > 0)) { usleep($wait_sec * 1000000); } } while (!$got_lock AND ((time() - $start) < $timeout)); @@ -112,7 +112,7 @@ class Lock { dba::unlock(); - if (!$got_lock) { + if (!$got_lock AND ($timeout > 0)) { sleep($wait_sec); } } while (!$got_lock AND ((time() - $start) < $timeout)); From 2b7f9b4d2dd42f25cd1f56cd28557a1efad6e2f7 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 6 Jun 2017 06:57:46 +0200 Subject: [PATCH 088/125] added EN-US to the translation list --- CHANGELOG | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index b798efa243..dd76452e47 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,6 @@ -Version 3.5.2 (2017-06-XX) +Version 3.5.2 (2017-06-06) Friendica Core: - Updates to the translations (DE, EN-GB, ES, IT, PT-BR, RU) [translation teams] + Updates to the translations (DE, EN-GB, EN-US, ES, IT, PT-BR, RU) [translation teams] Updates to the documentation [annando, beardyunixer, rabuzarus, tobiasd] Updated the nginx example configuration [beardyunixer] Code revision and refactoring [annando, hypolite, Quix0r, rebeka-catalina] From cdc0eab49d57fd1ae8b871bdf9fe89811a85f587 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 6 Jun 2017 07:11:27 +0200 Subject: [PATCH 089/125] ES translation THX Albert --- view/lang/es/messages.po | 11796 +++++++++++++++++++------------------ view/lang/es/strings.php | 1813 +++--- 2 files changed, 6868 insertions(+), 6741 deletions(-) diff --git a/view/lang/es/messages.po b/view/lang/es/messages.po index 3091790cb4..fcf6a139ef 100644 --- a/view/lang/es/messages.po +++ b/view/lang/es/messages.po @@ -35,9 +35,9 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-03-20 08:24+0100\n" -"PO-Revision-Date: 2017-03-26 15:18+0000\n" -"Last-Translator: Albert\n" +"POT-Creation-Date: 2017-05-28 11:09+0200\n" +"PO-Revision-Date: 2017-05-29 00:41+0000\n" +"Last-Translator: fabrixxm \n" "Language-Team: Spanish (http://www.transifex.com/Friendica/friendica/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -45,344 +45,6 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: boot.php:976 -msgid "Delete this item?" -msgstr "¿Eliminar este elemento?" - -#: boot.php:977 include/ForumManager.php:119 include/contact_widgets.php:253 -#: include/items.php:2254 mod/content.php:624 object/Item.php:420 -#: view/theme/vier/theme.php:255 -msgid "show more" -msgstr "ver más" - -#: boot.php:978 -msgid "show fewer" -msgstr "ver menos" - -#: boot.php:1667 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Falló la actualización de %s. Mira los registros de errores." - -#: boot.php:1779 -msgid "Create a New Account" -msgstr "Crear una nueva cuenta" - -#: boot.php:1780 include/nav.php:109 mod/register.php:289 -msgid "Register" -msgstr "Registrarse" - -#: boot.php:1804 include/nav.php:78 view/theme/frio/theme.php:243 -msgid "Logout" -msgstr "Salir" - -#: boot.php:1805 include/nav.php:95 mod/bookmarklet.php:12 -msgid "Login" -msgstr "Acceder" - -#: boot.php:1807 mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "Apodo o Correo electrónico: " - -#: boot.php:1808 -msgid "Password: " -msgstr "Contraseña: " - -#: boot.php:1809 -msgid "Remember me" -msgstr "Recordarme" - -#: boot.php:1812 -msgid "Or login using OpenID: " -msgstr "O inicia sesión usando OpenID: " - -#: boot.php:1818 -msgid "Forgot your password?" -msgstr "¿Olvidaste la contraseña?" - -#: boot.php:1819 mod/lostpass.php:110 -msgid "Password Reset" -msgstr "Restablecer la contraseña" - -#: boot.php:1821 -msgid "Website Terms of Service" -msgstr "Términos de uso del sitio" - -#: boot.php:1822 -msgid "terms of service" -msgstr "Términos de uso" - -#: boot.php:1824 -msgid "Website Privacy Policy" -msgstr "Política de privacidad del sitio" - -#: boot.php:1825 -msgid "privacy policy" -msgstr "Política de privacidad" - -#: include/Contact.php:387 include/Contact.php:400 include/Contact.php:445 -#: include/conversation.php:970 include/conversation.php:986 -#: mod/allfriends.php:68 mod/directory.php:157 mod/dirfind.php:209 -#: mod/match.php:73 mod/suggest.php:82 -msgid "View Profile" -msgstr "Ver perfil" - -#: include/Contact.php:401 include/contact_widgets.php:32 -#: include/conversation.php:983 mod/allfriends.php:69 mod/contacts.php:610 -#: mod/dirfind.php:210 mod/follow.php:106 mod/match.php:74 mod/suggest.php:83 -msgid "Connect/Follow" -msgstr "Conectar/Seguir" - -#: include/Contact.php:444 include/conversation.php:969 -msgid "View Status" -msgstr "Ver estado" - -#: include/Contact.php:446 include/conversation.php:971 -msgid "View Photos" -msgstr "Ver fotos" - -#: include/Contact.php:447 include/conversation.php:972 -msgid "Network Posts" -msgstr "Publicaciones en la red" - -#: include/Contact.php:448 include/conversation.php:973 -msgid "View Contact" -msgstr "Ver contacto" - -#: include/Contact.php:449 -msgid "Drop Contact" -msgstr "Eliminar contacto" - -#: include/Contact.php:450 include/conversation.php:974 -msgid "Send PM" -msgstr "Enviar mensaje privado" - -#: include/Contact.php:451 include/conversation.php:978 -msgid "Poke" -msgstr "Toque" - -#: include/Contact.php:828 -msgid "Organisation" -msgstr "Organización" - -#: include/Contact.php:831 -msgid "News" -msgstr "Noticias" - -#: include/Contact.php:834 -msgid "Forum" -msgstr "Foro" - -#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1027 -#: view/theme/vier/theme.php:250 -msgid "Forums" -msgstr "Foros" - -#: include/ForumManager.php:116 view/theme/vier/theme.php:252 -msgid "External link to forum" -msgstr "Enlace externo al foro" - -#: include/NotificationsManager.php:153 -msgid "System" -msgstr "Sistema" - -#: include/NotificationsManager.php:160 include/nav.php:158 mod/admin.php:421 -#: view/theme/frio/theme.php:253 -msgid "Network" -msgstr "Red" - -#: include/NotificationsManager.php:167 mod/network.php:829 -#: mod/profiles.php:695 -msgid "Personal" -msgstr "Personal" - -#: include/NotificationsManager.php:174 include/nav.php:105 -#: include/nav.php:161 -msgid "Home" -msgstr "Inicio" - -#: include/NotificationsManager.php:181 include/nav.php:166 -msgid "Introductions" -msgstr "Presentaciones" - -#: include/NotificationsManager.php:239 include/NotificationsManager.php:251 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s comentó la publicación de %s" - -#: include/NotificationsManager.php:250 -#, php-format -msgid "%s created a new post" -msgstr "%s creó una nueva publicación" - -#: include/NotificationsManager.php:265 -#, php-format -msgid "%s liked %s's post" -msgstr "A %s le gusta la publicación de %s" - -#: include/NotificationsManager.php:278 -#, php-format -msgid "%s disliked %s's post" -msgstr "A %s no le gusta la publicación de %s" - -#: include/NotificationsManager.php:291 -#, php-format -msgid "%s is attending %s's event" -msgstr "%s está asistiendo al evento %s's" - -#: include/NotificationsManager.php:304 -#, php-format -msgid "%s is not attending %s's event" -msgstr "%s no está asistiendo al evento %s's" - -#: include/NotificationsManager.php:317 -#, php-format -msgid "%s may attend %s's event" -msgstr "%s podría asistir al evento %s's" - -#: include/NotificationsManager.php:334 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s es ahora es amigo de %s" - -#: include/NotificationsManager.php:770 -msgid "Friend Suggestion" -msgstr "Propuestas de amistad" - -#: include/NotificationsManager.php:803 -msgid "Friend/Connect Request" -msgstr "Solicitud de Amistad/Conexión" - -#: include/NotificationsManager.php:803 -msgid "New Follower" -msgstr "Nuevo seguidor" - -#: include/Photo.php:1038 include/Photo.php:1054 include/Photo.php:1062 -#: include/Photo.php:1087 include/message.php:146 mod/item.php:462 -#: mod/wall_upload.php:216 mod/wall_upload.php:230 mod/wall_upload.php:237 -msgid "Wall Photos" -msgstr "Foto del Muro" - -#: include/acl_selectors.php:341 -msgid "Post to Email" -msgstr "Publicar mediante correo electrónico" - -#: include/acl_selectors.php:346 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "Conectores deshabilitados, ya que \"%s\" es habilitado." - -#: include/acl_selectors.php:347 mod/settings.php:1188 -msgid "Hide your profile details from unknown viewers?" -msgstr "¿Quieres que los detalles de tu perfil permanezcan ocultos a los desconocidos?" - -#: include/acl_selectors.php:352 -msgid "Visible to everybody" -msgstr "Visible para cualquiera" - -#: include/acl_selectors.php:353 view/theme/vier/config.php:108 -msgid "show" -msgstr "mostrar" - -#: include/acl_selectors.php:354 view/theme/vier/config.php:108 -msgid "don't show" -msgstr "no mostrar" - -#: include/acl_selectors.php:360 mod/editpost.php:123 -msgid "CC: email addresses" -msgstr "CC: dirección de correo electrónico" - -#: include/acl_selectors.php:361 mod/editpost.php:130 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Ejemplo: juan@ejemplo.com, sofia@ejemplo.com" - -#: include/acl_selectors.php:363 mod/events.php:516 mod/photos.php:1176 -#: mod/photos.php:1558 -msgid "Permissions" -msgstr "Permisos" - -#: include/acl_selectors.php:364 -msgid "Close" -msgstr "Cerrado" - -#: include/api.php:1021 -#, php-format -msgid "Daily posting limit of %d posts reached. The post was rejected." -msgstr "Limite diario de publicaciones %d alcanzado. La publicación fue rechazada." - -#: include/api.php:1041 -#, php-format -msgid "Weekly posting limit of %d posts reached. The post was rejected." -msgstr "Limite semanal de publicaciones %d alcanzado. La publicación fue rechazada." - -#: include/api.php:1062 -#, php-format -msgid "Monthly posting limit of %d posts reached. The post was rejected." -msgstr "Limite mensual de publicaciones %d alcanzado. La publicación fue rechazada." - -#: include/auth.php:45 -msgid "Logged out." -msgstr "Sesión finalizada" - -#: include/auth.php:116 include/auth.php:178 mod/openid.php:110 -msgid "Login failed." -msgstr "Accesso fallido." - -#: include/auth.php:132 include/user.php:75 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Se ha encontrado un problema para acceder con el OpenID que has escrito. Verifica que lo hayas escrito correctamente." - -#: include/auth.php:132 include/user.php:75 -msgid "The error message was:" -msgstr "El mensaje del error fue:" - -#: include/bb2diaspora.php:199 include/event.php:16 mod/localtime.php:12 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" - -#: include/bb2diaspora.php:205 include/event.php:33 include/event.php:51 -#: include/event.php:488 -msgid "Starts:" -msgstr "Inicio:" - -#: include/bb2diaspora.php:213 include/event.php:36 include/event.php:57 -#: include/event.php:489 -msgid "Finishes:" -msgstr "Final:" - -#: include/bb2diaspora.php:221 include/event.php:39 include/event.php:63 -#: include/event.php:490 include/identity.php:331 mod/contacts.php:636 -#: mod/directory.php:139 mod/events.php:501 mod/notifications.php:238 -msgid "Location:" -msgstr "Localización:" - -#: include/bbcode.php:350 include/bbcode.php:1055 include/bbcode.php:1056 -msgid "Image/photo" -msgstr "Imagen/Foto" - -#: include/bbcode.php:467 -#, php-format -msgid "%2$s %3$s" -msgstr "%2$s %3$s" - -#: include/bbcode.php:1015 include/bbcode.php:1035 -msgid "$1 wrote:" -msgstr "$1 escribió:" - -#: include/bbcode.php:1064 include/bbcode.php:1065 -msgid "Encrypted content" -msgstr "Contenido cifrado" - -#: include/bbcode.php:1169 -msgid "Invalid source protocol" -msgstr "Protocolo de fuente inválido" - -#: include/bbcode.php:1179 -msgid "Invalid link protocol" -msgstr "Protocolo de enlace inválido" - #: include/contact_selectors.php:32 msgid "Unknown | Not categorised" msgstr "Desconocido | No clasificado" @@ -407,19 +69,19 @@ msgstr "OK, probablemente inofensivo" msgid "Reputable, has my trust" msgstr "Buena reputación, tiene mi confianza" -#: include/contact_selectors.php:56 mod/admin.php:893 +#: include/contact_selectors.php:56 mod/admin.php:986 msgid "Frequently" msgstr "Frequentemente" -#: include/contact_selectors.php:57 mod/admin.php:894 +#: include/contact_selectors.php:57 mod/admin.php:987 msgid "Hourly" msgstr "Cada hora" -#: include/contact_selectors.php:58 mod/admin.php:895 +#: include/contact_selectors.php:58 mod/admin.php:988 msgid "Twice daily" msgstr "Dos veces al día" -#: include/contact_selectors.php:59 mod/admin.php:896 +#: include/contact_selectors.php:59 mod/admin.php:989 msgid "Daily" msgstr "Diariamente" @@ -431,7 +93,7 @@ msgstr "Semanalmente" msgid "Monthly" msgstr "Mensualmente" -#: include/contact_selectors.php:76 mod/dfrn_request.php:881 +#: include/contact_selectors.php:76 mod/dfrn_request.php:886 msgid "Friendica" msgstr "Friendica" @@ -444,12 +106,12 @@ msgid "RSS/Atom" msgstr "RSS/Atom" #: include/contact_selectors.php:79 include/contact_selectors.php:86 -#: mod/admin.php:1405 mod/admin.php:1418 mod/admin.php:1431 mod/admin.php:1449 +#: mod/admin.php:1496 mod/admin.php:1509 mod/admin.php:1522 mod/admin.php:1540 msgid "Email" msgstr "Correo electrónico" -#: include/contact_selectors.php:80 mod/dfrn_request.php:883 -#: mod/settings.php:848 +#: include/contact_selectors.php:80 mod/dfrn_request.php:888 +#: mod/settings.php:849 msgid "Diaspora" msgstr "Diaspora*" @@ -490,8 +152,8 @@ msgid "Diaspora Connector" msgstr "Conector Diaspora" #: include/contact_selectors.php:91 -msgid "GNU Social" -msgstr "GNUsocial (OStatus)" +msgid "GNU Social Connector" +msgstr "" #: include/contact_selectors.php:92 msgid "pnut" @@ -501,1139 +163,6 @@ msgstr "pnut" msgid "App.net" msgstr "App.net" -#: include/contact_selectors.php:104 -msgid "Hubzilla/Redmatrix" -msgstr "Hubzilla/Redmatrix" - -#: include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Añadir nuevo contacto" - -#: include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Escribe la dirección o página web" - -#: include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Ejemplo: miguel@ejemplo.com, http://ejemplo.com/miguel" - -#: include/contact_widgets.php:10 include/identity.php:219 -#: mod/allfriends.php:85 mod/dirfind.php:207 mod/match.php:89 -#: mod/suggest.php:101 -msgid "Connect" -msgstr "Conectar" - -#: include/contact_widgets.php:24 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invitación disponible" -msgstr[1] "%d invitaviones disponibles" - -#: include/contact_widgets.php:30 -msgid "Find People" -msgstr "Buscar personas" - -#: include/contact_widgets.php:31 -msgid "Enter name or interest" -msgstr "Introduzce nombre o intereses" - -#: include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Ejemplos: Robert Morgenstein, Pesca" - -#: include/contact_widgets.php:34 mod/contacts.php:806 mod/directory.php:206 -msgid "Find" -msgstr "Buscar" - -#: include/contact_widgets.php:35 mod/suggest.php:114 -#: view/theme/vier/theme.php:198 -msgid "Friend Suggestions" -msgstr "Sugerencias de amigos" - -#: include/contact_widgets.php:36 view/theme/vier/theme.php:197 -msgid "Similar Interests" -msgstr "Intereses similares" - -#: include/contact_widgets.php:37 -msgid "Random Profile" -msgstr "Perfil aleatorio" - -#: include/contact_widgets.php:38 view/theme/vier/theme.php:199 -msgid "Invite Friends" -msgstr "Invitar amigos" - -#: include/contact_widgets.php:115 -msgid "Networks" -msgstr "Redes" - -#: include/contact_widgets.php:118 -msgid "All Networks" -msgstr "Todas las redes" - -#: include/contact_widgets.php:150 include/features.php:104 -msgid "Saved Folders" -msgstr "Directorios guardados" - -#: include/contact_widgets.php:153 include/contact_widgets.php:187 -msgid "Everything" -msgstr "Todo" - -#: include/contact_widgets.php:184 -msgid "Categories" -msgstr "Categorías" - -#: include/contact_widgets.php:248 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d contacto en común" -msgstr[1] "%d contactos en común" - -#: include/conversation.php:122 include/conversation.php:258 -#: include/like.php:180 include/text.php:1804 -msgid "event" -msgstr "evento" - -#: include/conversation.php:125 include/conversation.php:134 -#: include/conversation.php:261 include/conversation.php:270 -#: include/diaspora.php:1530 include/like.php:178 mod/subthread.php:88 -#: mod/tagger.php:62 -msgid "status" -msgstr "estado" - -#: include/conversation.php:130 include/conversation.php:266 -#: include/like.php:178 include/text.php:1806 mod/subthread.php:88 -#: mod/tagger.php:62 -msgid "photo" -msgstr "foto" - -#: include/conversation.php:141 include/diaspora.php:1526 include/like.php:27 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "A %1$s le gusta %3$s de %2$s" - -#: include/conversation.php:144 include/like.php:31 include/like.php:36 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "A %1$s no le gusta %3$s de %2$s" - -#: include/conversation.php:147 -#, php-format -msgid "%1$s attends %2$s's %3$s" -msgstr "%1$s atenderá %2$s's %3$s" - -#: include/conversation.php:150 -#, php-format -msgid "%1$s doesn't attend %2$s's %3$s" -msgstr "%1$s no atenderá %2$s's %3$s" - -#: include/conversation.php:153 -#, php-format -msgid "%1$s attends maybe %2$s's %3$s" -msgstr "%1$s atenderá quizás %2$s's %3$s" - -#: include/conversation.php:185 mod/dfrn_confirm.php:478 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s ahora es amigo de %2$s" - -#: include/conversation.php:219 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s le dio un toque a %2$s" - -#: include/conversation.php:239 mod/mood.php:63 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s está actualmente %2$s" - -#: include/conversation.php:278 mod/tagger.php:95 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s ha etiquetado el %3$s de %2$s con %4$s" - -#: include/conversation.php:303 -msgid "post/item" -msgstr "publicación/tema" - -#: include/conversation.php:304 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s ha marcado %3$s de %2$s como Favorito" - -#: include/conversation.php:587 mod/content.php:372 mod/photos.php:1629 -#: mod/profiles.php:346 -msgid "Likes" -msgstr "Me gusta" - -#: include/conversation.php:587 mod/content.php:372 mod/photos.php:1629 -#: mod/profiles.php:350 -msgid "Dislikes" -msgstr "No me gusta" - -#: include/conversation.php:588 include/conversation.php:1473 -#: mod/content.php:373 mod/photos.php:1630 -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Atendiendo" -msgstr[1] "Atendiendo" - -#: include/conversation.php:588 mod/content.php:373 mod/photos.php:1630 -msgid "Not attending" -msgstr "No atendiendo" - -#: include/conversation.php:588 mod/content.php:373 mod/photos.php:1630 -msgid "Might attend" -msgstr "Puede que atienda" - -#: include/conversation.php:710 mod/content.php:453 mod/content.php:759 -#: mod/photos.php:1703 object/Item.php:137 -msgid "Select" -msgstr "Seleccionar" - -#: include/conversation.php:711 mod/admin.php:1423 mod/contacts.php:816 -#: mod/contacts.php:1015 mod/content.php:454 mod/content.php:760 -#: mod/group.php:181 mod/photos.php:1704 mod/settings.php:744 -#: object/Item.php:138 -msgid "Delete" -msgstr "Eliminar" - -#: include/conversation.php:755 mod/content.php:487 mod/content.php:915 -#: mod/content.php:916 object/Item.php:356 object/Item.php:357 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Ver perfil de %s @ %s" - -#: include/conversation.php:767 object/Item.php:344 -msgid "Categories:" -msgstr "Categorías:" - -#: include/conversation.php:768 object/Item.php:345 -msgid "Filed under:" -msgstr "Archivado en:" - -#: include/conversation.php:775 mod/content.php:497 mod/content.php:928 -#: object/Item.php:370 -#, php-format -msgid "%s from %s" -msgstr "%s de %s" - -#: include/conversation.php:791 mod/content.php:513 -msgid "View in context" -msgstr "Verlo en contexto" - -#: include/conversation.php:793 include/conversation.php:1256 -#: mod/content.php:515 mod/content.php:953 mod/editpost.php:114 -#: mod/message.php:337 mod/message.php:522 mod/photos.php:1592 -#: mod/wallmessage.php:140 object/Item.php:395 -msgid "Please wait" -msgstr "Por favor, espera" - -#: include/conversation.php:872 -msgid "remove" -msgstr "eliminar" - -#: include/conversation.php:876 -msgid "Delete Selected Items" -msgstr "Eliminar el elemento seleccionado" - -#: include/conversation.php:968 -msgid "Follow Thread" -msgstr "Seguir publicacion" - -#: include/conversation.php:1100 -#, php-format -msgid "%s likes this." -msgstr "A %s le gusta esto." - -#: include/conversation.php:1103 -#, php-format -msgid "%s doesn't like this." -msgstr "A %s no le gusta esto." - -#: include/conversation.php:1106 -#, php-format -msgid "%s attends." -msgstr "%s atiende." - -#: include/conversation.php:1109 -#, php-format -msgid "%s doesn't attend." -msgstr "%s no atenderá." - -#: include/conversation.php:1112 -#, php-format -msgid "%s attends maybe." -msgstr "%s quizás atenderá" - -#: include/conversation.php:1122 -msgid "and" -msgstr "y" - -#: include/conversation.php:1128 -#, php-format -msgid ", and %d other people" -msgstr " y a otras %d personas" - -#: include/conversation.php:1137 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d personas les gusta esto" - -#: include/conversation.php:1138 -#, php-format -msgid "%s like this." -msgstr "A %s le gusta esto." - -#: include/conversation.php:1141 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d personas no les gusta esto" - -#: include/conversation.php:1142 -#, php-format -msgid "%s don't like this." -msgstr "A %s no le gusta esto." - -#: include/conversation.php:1145 -#, php-format -msgid "%2$d people attend" -msgstr "%2$d personas atienden" - -#: include/conversation.php:1146 -#, php-format -msgid "%s attend." -msgstr "%s atiende." - -#: include/conversation.php:1149 -#, php-format -msgid "%2$d people don't attend" -msgstr "%2$d personasno atienden" - -#: include/conversation.php:1150 -#, php-format -msgid "%s don't attend." -msgstr "%s no atiende." - -#: include/conversation.php:1153 -#, php-format -msgid "%2$d people attend maybe" -msgstr "%2$d people quizá asistan" - -#: include/conversation.php:1154 -#, php-format -msgid "%s anttend maybe." -msgstr "%s atiende quizás." - -#: include/conversation.php:1184 include/conversation.php:1200 -msgid "Visible to everybody" -msgstr "Visible para cualquiera" - -#: include/conversation.php:1185 include/conversation.php:1201 -#: mod/message.php:271 mod/message.php:278 mod/message.php:418 -#: mod/message.php:425 mod/wallmessage.php:114 mod/wallmessage.php:121 -msgid "Please enter a link URL:" -msgstr "Introduce la dirección del enlace:" - -#: include/conversation.php:1186 include/conversation.php:1202 -msgid "Please enter a video link/URL:" -msgstr "Por favor, introduce la URL/enlace del vídeo:" - -#: include/conversation.php:1187 include/conversation.php:1203 -msgid "Please enter an audio link/URL:" -msgstr "Por favor, introduce la URL/enlace del audio:" - -#: include/conversation.php:1188 include/conversation.php:1204 -msgid "Tag term:" -msgstr "Etiquetar:" - -#: include/conversation.php:1189 include/conversation.php:1205 -#: mod/filer.php:30 -msgid "Save to Folder:" -msgstr "Guardar en directorio:" - -#: include/conversation.php:1190 include/conversation.php:1206 -msgid "Where are you right now?" -msgstr "¿Dónde estás ahora?" - -#: include/conversation.php:1191 -msgid "Delete item(s)?" -msgstr "¿Borrar objeto(s)?" - -#: include/conversation.php:1237 -msgid "Share" -msgstr "Compartir" - -#: include/conversation.php:1238 mod/editpost.php:100 mod/message.php:335 -#: mod/message.php:519 mod/wallmessage.php:138 -msgid "Upload photo" -msgstr "Subir foto" - -#: include/conversation.php:1239 mod/editpost.php:101 -msgid "upload photo" -msgstr "subir imagen" - -#: include/conversation.php:1240 mod/editpost.php:102 -msgid "Attach file" -msgstr "Adjuntar archivo" - -#: include/conversation.php:1241 mod/editpost.php:103 -msgid "attach file" -msgstr "adjuntar archivo" - -#: include/conversation.php:1242 mod/editpost.php:104 mod/message.php:336 -#: mod/message.php:520 mod/wallmessage.php:139 -msgid "Insert web link" -msgstr "Insertar enlace" - -#: include/conversation.php:1243 mod/editpost.php:105 -msgid "web link" -msgstr "enlace web" - -#: include/conversation.php:1244 mod/editpost.php:106 -msgid "Insert video link" -msgstr "Insertar enlace del vídeo" - -#: include/conversation.php:1245 mod/editpost.php:107 -msgid "video link" -msgstr "enlace de video" - -#: include/conversation.php:1246 mod/editpost.php:108 -msgid "Insert audio link" -msgstr "Insertar vínculo del audio" - -#: include/conversation.php:1247 mod/editpost.php:109 -msgid "audio link" -msgstr "enlace de audio" - -#: include/conversation.php:1248 mod/editpost.php:110 -msgid "Set your location" -msgstr "Configurar tu localización" - -#: include/conversation.php:1249 mod/editpost.php:111 -msgid "set location" -msgstr "establecer tu ubicación" - -#: include/conversation.php:1250 mod/editpost.php:112 -msgid "Clear browser location" -msgstr "Borrar la localización del navegador" - -#: include/conversation.php:1251 mod/editpost.php:113 -msgid "clear location" -msgstr "limpiar la localización" - -#: include/conversation.php:1253 mod/editpost.php:127 -msgid "Set title" -msgstr "Establecer el título" - -#: include/conversation.php:1255 mod/editpost.php:129 -msgid "Categories (comma-separated list)" -msgstr "Categorías (lista separada por comas)" - -#: include/conversation.php:1257 mod/editpost.php:115 -msgid "Permission settings" -msgstr "Configuración de permisos" - -#: include/conversation.php:1258 mod/editpost.php:144 -msgid "permissions" -msgstr "permisos" - -#: include/conversation.php:1266 mod/editpost.php:124 -msgid "Public post" -msgstr "Publicación pública" - -#: include/conversation.php:1271 mod/content.php:737 mod/editpost.php:135 -#: mod/events.php:511 mod/photos.php:1613 mod/photos.php:1661 -#: mod/photos.php:1747 object/Item.php:714 -msgid "Preview" -msgstr "Vista previa" - -#: include/conversation.php:1275 include/items.php:1983 mod/contacts.php:455 -#: mod/dfrn_request.php:889 mod/editpost.php:138 mod/fbrowser.php:100 -#: mod/fbrowser.php:135 mod/follow.php:124 mod/message.php:209 -#: mod/photos.php:240 mod/photos.php:331 mod/settings.php:682 -#: mod/settings.php:708 mod/suggest.php:32 mod/tagrm.php:11 mod/tagrm.php:96 -#: mod/videos.php:132 -msgid "Cancel" -msgstr "Cancelar" - -#: include/conversation.php:1281 -msgid "Post to Groups" -msgstr "Publicar hacia grupos" - -#: include/conversation.php:1282 -msgid "Post to Contacts" -msgstr "Publicar hacia contactos" - -#: include/conversation.php:1283 -msgid "Private post" -msgstr "Publicación privada" - -#: include/conversation.php:1288 include/identity.php:259 mod/editpost.php:142 -msgid "Message" -msgstr "Mensaje" - -#: include/conversation.php:1289 mod/editpost.php:143 -msgid "Browser" -msgstr "Navegador" - -#: include/conversation.php:1445 -msgid "View all" -msgstr "Ver todos los contactos" - -#: include/conversation.php:1467 -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Me gusta" -msgstr[1] "Me gusta" - -#: include/conversation.php:1470 -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "No me gusta" -msgstr[1] "No me gusta" - -#: include/conversation.php:1476 -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "No atendiendo" -msgstr[1] "No atendiendo" - -#: include/conversation.php:1479 include/profile_selectors.php:6 -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "Indeciso" -msgstr[1] "Indeciso" - -#: include/datetime.php:58 include/datetime.php:60 mod/profiles.php:697 -msgid "Miscellaneous" -msgstr "Varios" - -#: include/datetime.php:184 include/identity.php:641 -msgid "Birthday:" -msgstr "Fecha de nacimiento:" - -#: include/datetime.php:186 mod/profiles.php:720 -msgid "Age: " -msgstr "Edad: " - -#: include/datetime.php:188 -msgid "YYYY-MM-DD or MM-DD" -msgstr "YYYY-MM-DD o MM-DD" - -#: include/datetime.php:343 -msgid "never" -msgstr "nunca" - -#: include/datetime.php:349 -msgid "less than a second ago" -msgstr "hace menos de un segundo" - -#: include/datetime.php:352 -msgid "year" -msgstr "año" - -#: include/datetime.php:352 -msgid "years" -msgstr "años" - -#: include/datetime.php:353 include/event.php:481 mod/cal.php:279 -#: mod/events.php:396 -msgid "month" -msgstr "mes" - -#: include/datetime.php:353 -msgid "months" -msgstr "meses" - -#: include/datetime.php:354 include/event.php:482 mod/cal.php:280 -#: mod/events.php:397 -msgid "week" -msgstr "semana" - -#: include/datetime.php:354 -msgid "weeks" -msgstr "semanas" - -#: include/datetime.php:355 include/event.php:483 mod/cal.php:281 -#: mod/events.php:398 -msgid "day" -msgstr "día" - -#: include/datetime.php:355 -msgid "days" -msgstr "días" - -#: include/datetime.php:356 -msgid "hour" -msgstr "hora" - -#: include/datetime.php:356 -msgid "hours" -msgstr "horas" - -#: include/datetime.php:357 -msgid "minute" -msgstr "minuto" - -#: include/datetime.php:357 -msgid "minutes" -msgstr "minutos" - -#: include/datetime.php:358 -msgid "second" -msgstr "segundo" - -#: include/datetime.php:358 -msgid "seconds" -msgstr "segundos" - -#: include/datetime.php:367 -#, php-format -msgid "%1$d %2$s ago" -msgstr "hace %1$d %2$s" - -#: include/datetime.php:585 -#, php-format -msgid "%s's birthday" -msgstr "Cumpleaños de %s" - -#: include/datetime.php:586 include/dfrn.php:1131 -#, php-format -msgid "Happy Birthday %s" -msgstr "Feliz cumpleaños %s" - -#: include/dba.php:43 include/dba_pdo.php:72 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "No se puede encontrar información DNS para la base de datos del servidor '%s'" - -#: include/dbstructure.php:36 -#, php-format -msgid "" -"\n" -"\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." -msgstr "\n\t\t\tLos desarolladores de friendica publicaron una actualización %s recientemente\n\t\t\tpero cuando intento de instalarla,algo salio terriblemente mal.\n\t\t\tEsto necesita ser arreglado pronto y no puedo hacerlo solo. Por favor contacta\n\t\t\tlos desarolladores de friendica si no me podes ayudar por ti solo. Mi base de datos puede estar invalido." - -#: include/dbstructure.php:41 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "El mensaje de error es\n[pre]%s[/pre]" - -#: include/dbstructure.php:199 -msgid "Errors encountered creating database tables." -msgstr "Se han encontrados errores creando las tablas de la base de datos." - -#: include/dbstructure.php:333 include/dbstructure.php:341 -#: include/dbstructure.php:349 include/dbstructure.php:354 -#: include/dbstructure.php:359 -msgid "Errors encountered performing database changes." -msgstr "Errores encontrados al ejecutar cambios en la base de datos." - -#: include/delivery.php:427 -msgid "(no subject)" -msgstr "(sin asunto)" - -#: include/delivery.php:439 include/enotify.php:43 -msgid "noreply" -msgstr "no responder" - -#: include/dfrn.php:1130 -#, php-format -msgid "%s\\'s birthday" -msgstr "%s\\'s cumpleaños" - -#: include/diaspora.php:2087 -msgid "Sharing notification from Diaspora network" -msgstr "Compartir notificaciones con la red Diaspora*" - -#: include/diaspora.php:3096 -msgid "Attachments:" -msgstr "Archivos adjuntos:" - -#: include/enotify.php:24 -msgid "Friendica Notification" -msgstr "Notificación de Friendica" - -#: include/enotify.php:27 -msgid "Thank You," -msgstr "Gracias," - -#: include/enotify.php:30 -#, php-format -msgid "%s Administrator" -msgstr "%s Administrador" - -#: include/enotify.php:32 -#, php-format -msgid "%1$s, %2$s Administrator" -msgstr "%1$s, %2$s Administrador" - -#: include/enotify.php:70 -#, php-format -msgid "%s " -msgstr "%s " - -#: include/enotify.php:83 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica:Notificación] Nuevo correo recibido de %s" - -#: include/enotify.php:85 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s te ha enviado un mensaje privado desde %2$s." - -#: include/enotify.php:86 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s te ha enviado %2$s." - -#: include/enotify.php:86 -msgid "a private message" -msgstr "un mensaje privado" - -#: include/enotify.php:88 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Por favor, visita %s para ver y/o responder a tus mensajes privados." - -#: include/enotify.php:134 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "%1$s comentó en [url=%2$s]a %3$s[/url]" - -#: include/enotify.php:141 -#, php-format -msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" -msgstr "%1$s comentó en [url=%2$s] %4$s de %3$s[/url]" - -#: include/enotify.php:149 -#, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "%1$s comentó en [url=%2$s] tu %3$s[/url]" - -#: include/enotify.php:159 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Friendica:Notificación] Comentario en la conversación de #%1$d por %2$s" - -#: include/enotify.php:161 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s ha comentado en una conversación/elemento que sigues." - -#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192 -#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Por favor, visita %s para ver y/o responder a la conversación." - -#: include/enotify.php:171 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica:Notificación] %s publicó en tu muro" - -#: include/enotify.php:173 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s publicó en tu perfil de %2$s" - -#: include/enotify.php:174 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "%1$s publicó en [url=%2$s]tu muro[/url]" - -#: include/enotify.php:185 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Notificación] %s te ha nombrado" - -#: include/enotify.php:187 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s te ha nombrado en %2$s" - -#: include/enotify.php:188 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [url=%2$s]te nombró[/url]." - -#: include/enotify.php:199 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" -msgstr "[Notificacion Friendica] %s compartio una nueva publicacion" - -#: include/enotify.php:201 -#, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "%1$s compartió un nuevo tema en %2$s" - -#: include/enotify.php:202 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "%1$s [url=%2$s]compartió una publicación[/url]." - -#: include/enotify.php:213 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica:Notify] %1$s te dio un toque" - -#: include/enotify.php:215 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s te dio un toque en %2$s" - -#: include/enotify.php:216 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "%1$s [url=%2$s]te dio un toque[/url]." - -#: include/enotify.php:231 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica:Notificación] %s ha etiquetado tu publicación" - -#: include/enotify.php:233 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s ha etiquetado tu publicación en %2$s" - -#: include/enotify.php:234 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s ha etiquetado [url=%2$s]tu publicación[/url]" - -#: include/enotify.php:245 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Notificación] Presentación recibida" - -#: include/enotify.php:247 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "Has recibido una presentación de '%1$s' en %2$s" - -#: include/enotify.php:248 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "Has recibido [url=%1$s]una presentación[/url] de %2$s." - -#: include/enotify.php:252 include/enotify.php:295 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Puedes visitar su perfil en %s" - -#: include/enotify.php:254 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Visita %s para aceptar o rechazar la presentación por favor." - -#: include/enotify.php:262 -msgid "[Friendica:Notify] A new person is sharing with you" -msgstr "[Notificación:Friendica] Un nuevo contacto comparte contigo" - -#: include/enotify.php:264 include/enotify.php:265 -#, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "%1$s comparte con tigo en %2$s" - -#: include/enotify.php:271 -msgid "[Friendica:Notify] You have a new follower" -msgstr "[Notificación:Friendica] Tienes un nuevo seguidor" - -#: include/enotify.php:273 include/enotify.php:274 -#, php-format -msgid "You have a new follower at %2$s : %1$s" -msgstr "Tienes un nuevo seguidor en %2$s : %1$s" - -#: include/enotify.php:285 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "[Friendica:Notificación] Sugerencia de amigo recibida" - -#: include/enotify.php:287 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Has recibido una sugerencia de amigo de '%1$s' en %2$s" - -#: include/enotify.php:288 -#, php-format -msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "Has recibido [url=%1$s]una sugerencia de amigo[/url] en %2$s de %3$s." - -#: include/enotify.php:293 -msgid "Name:" -msgstr "Nombre: " - -#: include/enotify.php:294 -msgid "Photo:" -msgstr "Foto: " - -#: include/enotify.php:297 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Visita %s para aceptar o rechazar la sugerencia por favor." - -#: include/enotify.php:305 include/enotify.php:319 -msgid "[Friendica:Notify] Connection accepted" -msgstr "[Notificación:Friendica] Conexión aceptada" - -#: include/enotify.php:307 include/enotify.php:321 -#, php-format -msgid "'%1$s' has accepted your connection request at %2$s" -msgstr "'%1$s' acepto tu consulta de conexión %2$s" - -#: include/enotify.php:308 include/enotify.php:322 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." -msgstr "%2$s hacepto tu [url=%1$s]consulta de conexión[/url]." - -#: include/enotify.php:312 -msgid "" -"You are now mutual friends and may exchange status updates, photos, and " -"email without restriction." -msgstr "Ahora tiene amigos en común y puede intercambiar actualizaciones de estado, fotos y email sin restricción." - -#: include/enotify.php:314 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "Por favor visite %s si desea hacer algún cambio a su relación." - -#: include/enotify.php:326 -#, php-format -msgid "" -"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " -"communication - such as private messaging and some profile interactions. If " -"this is a celebrity or community page, these settings were applied " -"automatically." -msgstr "'%1$s' eligió de aceptarte como fan/hincha lo que restringe algunas formas de comunicación - tales como mensajes privados y algunas interacciones de los perfiles. Si esto es una pagina de celebridad o comunidad, estas configuraciones se adoptaron automáticamente." - -#: include/enotify.php:328 -#, php-format -msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future." -msgstr "'%1$s' puede elegir extender esto en una relación más permisiva o ambidireccional en el futuro." - -#: include/enotify.php:330 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "Por favor visita %s si es preciso de hacer algún cambio a la relación con este contacto." - -#: include/enotify.php:340 -msgid "[Friendica System:Notify] registration request" -msgstr "[Notificacion:Friendica] consulta de registro" - -#: include/enotify.php:342 -#, php-format -msgid "You've received a registration request from '%1$s' at %2$s" -msgstr "Recibiste una consulta de registro de '%1$s' en %2$s" - -#: include/enotify.php:343 -#, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." -msgstr "Recibiste una [url=%1$s]consulta de registro[/url] from %2$s." - -#: include/enotify.php:347 -#, php-format -msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" -msgstr "Nombre completo:\t%1$s\\nUbicación del sitio:\t%2$s\\nLogin Nombre:\t%3$s (%4$s)" - -#: include/enotify.php:350 -#, php-format -msgid "Please visit %s to approve or reject the request." -msgstr "Por favor visita %s para aprobar o negar la solicitud." - -#: include/event.php:442 -msgid "Sun" -msgstr "Dom" - -#: include/event.php:443 -msgid "Mon" -msgstr "Lun" - -#: include/event.php:444 -msgid "Tue" -msgstr "Mar" - -#: include/event.php:445 -msgid "Wed" -msgstr "Mie" - -#: include/event.php:446 -msgid "Thu" -msgstr "Jue" - -#: include/event.php:447 -msgid "Fri" -msgstr "Vie" - -#: include/event.php:448 -msgid "Sat" -msgstr "Sab" - -#: include/event.php:449 include/text.php:1132 mod/settings.php:981 -msgid "Sunday" -msgstr "Domingo" - -#: include/event.php:450 include/text.php:1132 mod/settings.php:981 -msgid "Monday" -msgstr "Lunes" - -#: include/event.php:451 include/text.php:1132 -msgid "Tuesday" -msgstr "Martes" - -#: include/event.php:452 include/text.php:1132 -msgid "Wednesday" -msgstr "Miércoles" - -#: include/event.php:453 include/text.php:1132 -msgid "Thursday" -msgstr "Jueves" - -#: include/event.php:454 include/text.php:1132 -msgid "Friday" -msgstr "Viernes" - -#: include/event.php:455 include/text.php:1132 -msgid "Saturday" -msgstr "Sábado" - -#: include/event.php:456 -msgid "Jan" -msgstr "Ene" - -#: include/event.php:457 -msgid "Feb" -msgstr "Feb" - -#: include/event.php:458 -msgid "Mar" -msgstr "Mar" - -#: include/event.php:459 -msgid "Apr" -msgstr "Abr" - -#: include/event.php:460 include/event.php:472 include/text.php:1136 -msgid "May" -msgstr "Mayo" - -#: include/event.php:461 -msgid "Jun" -msgstr "Jun" - -#: include/event.php:462 -msgid "Jul" -msgstr "Jul" - -#: include/event.php:463 -msgid "Aug" -msgstr "Ago" - -#: include/event.php:464 -msgid "Sept" -msgstr "Sept" - -#: include/event.php:465 -msgid "Oct" -msgstr "Oct" - -#: include/event.php:466 -msgid "Nov" -msgstr "Nov" - -#: include/event.php:467 -msgid "Dec" -msgstr "Dec" - -#: include/event.php:468 include/text.php:1136 -msgid "January" -msgstr "Enero" - -#: include/event.php:469 include/text.php:1136 -msgid "February" -msgstr "Febrero" - -#: include/event.php:470 include/text.php:1136 -msgid "March" -msgstr "Marzo" - -#: include/event.php:471 include/text.php:1136 -msgid "April" -msgstr "Abril" - -#: include/event.php:473 include/text.php:1136 -msgid "June" -msgstr "Junio" - -#: include/event.php:474 include/text.php:1136 -msgid "July" -msgstr "Julio" - -#: include/event.php:475 include/text.php:1136 -msgid "August" -msgstr "Agosto" - -#: include/event.php:476 include/text.php:1136 -msgid "September" -msgstr "Septiembre" - -#: include/event.php:477 include/text.php:1136 -msgid "October" -msgstr "Octubre" - -#: include/event.php:478 include/text.php:1136 -msgid "November" -msgstr "Noviembre" - -#: include/event.php:479 include/text.php:1136 -msgid "December" -msgstr "Diciembre" - -#: include/event.php:480 mod/cal.php:278 mod/events.php:395 -msgid "today" -msgstr "hoy" - -#: include/event.php:484 -msgid "all-day" -msgstr "todo el día" - -#: include/event.php:486 -msgid "No events to display" -msgstr "No hay eventos a mostrar" - -#: include/event.php:596 -msgid "l, F j" -msgstr "l, F j" - -#: include/event.php:615 -msgid "Edit event" -msgstr "Editar evento" - -#: include/event.php:637 include/text.php:1534 include/text.php:1541 -msgid "link to source" -msgstr "Enlace al original" - -#: include/event.php:872 -msgid "Export" -msgstr "Exportar" - -#: include/event.php:873 -msgid "Export calendar as ical" -msgstr "Exportar calendario como ical" - -#: include/event.php:874 -msgid "Export calendar as csv" -msgstr "Exportar calendario como csv" - #: include/features.php:65 msgid "General Features" msgstr "Opciones generales" @@ -1721,7 +250,7 @@ msgstr "Filtro de red" msgid "Enable widget to display Network posts only from selected network" msgstr "Habilitar accesorios para visualizar publicaciones solo de las redes seleccionadas." -#: include/features.php:86 mod/network.php:199 mod/search.php:34 +#: include/features.php:86 mod/network.php:209 mod/search.php:37 msgid "Saved Searches" msgstr "Búsquedas guardadas" @@ -1793,6 +322,10 @@ msgstr "Categorías de publicaciones" msgid "Add categories to your posts" msgstr "Agregue categorías a sus publicaciones. Las mismas serán visualizadas en su pagina de inicio." +#: include/features.php:104 include/contact_widgets.php:162 +msgid "Saved Folders" +msgstr "Directorios guardados" + #: include/features.php:104 msgid "Ability to file posts under folders" msgstr "Archivar publicaciones en carpetas" @@ -1829,61 +362,6 @@ msgstr "Ajustes avanzados del perfil" msgid "Show visitors public community forums at the Advanced Profile Page" msgstr "Mostrar a los visitantes foros públicos en las que se esta participando en el pagina avanzada de perfiles." -#: include/follow.php:81 mod/dfrn_request.php:512 -msgid "Disallowed profile URL." -msgstr "Dirección de perfil no permitida." - -#: include/follow.php:86 -msgid "Connect URL missing." -msgstr "Falta el conector URL." - -#: include/follow.php:114 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Este sitio no está configurado para permitir la comunicación con otras redes." - -#: include/follow.php:115 include/follow.php:129 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "No se ha descubierto protocolos de comunicación o fuentes compatibles." - -#: include/follow.php:127 -msgid "The profile address specified does not provide adequate information." -msgstr "La dirección del perfil especificado no proporciona información adecuada." - -#: include/follow.php:132 -msgid "An author or name was not found." -msgstr "No se ha encontrado un autor o nombre." - -#: include/follow.php:135 -msgid "No browser URL could be matched to this address." -msgstr "Ninguna dirección concuerda con la suministrada." - -#: include/follow.php:138 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Imposible identificar la dirección @ con algún protocolo conocido o dirección de contacto." - -#: include/follow.php:139 -msgid "Use mailto: in front of address to force email check." -msgstr "Escribe mailto: al principio de la dirección para forzar el envío." - -#: include/follow.php:145 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "La dirección del perfil especificada pertenece a una red que ha sido deshabilitada en este sitio." - -#: include/follow.php:150 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Perfil limitado. Esta persona no podrá recibir notificaciones directas/personales tuyas." - -#: include/follow.php:251 -msgid "Unable to retrieve contact information." -msgstr "No ha sido posible recibir la información del contacto." - #: include/group.php:25 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -1903,7 +381,7 @@ msgstr "Todo el mundo" msgid "edit" msgstr "editar" -#: include/group.php:287 mod/newmember.php:61 +#: include/group.php:287 mod/newmember.php:39 msgid "Groups" msgstr "Grupos" @@ -1919,7 +397,7 @@ msgstr "Editar grupo" msgid "Create a new group" msgstr "Crear un nuevo grupo" -#: include/group.php:293 mod/group.php:98 mod/group.php:188 +#: include/group.php:293 mod/group.php:100 mod/group.php:197 msgid "Group Name: " msgstr "Nombre del grupo: " @@ -1927,601 +405,2503 @@ msgstr "Nombre del grupo: " msgid "Contacts not in any group" msgstr "Contactos sin grupo" -#: include/group.php:297 mod/network.php:200 +#: include/group.php:297 mod/network.php:210 msgid "add" msgstr "añadir" -#: include/identity.php:43 -msgid "Requested account is not available." -msgstr "La cuenta solicitada no está disponible." +#: include/ForumManager.php:116 include/text.php:1094 include/nav.php:133 +#: view/theme/vier/theme.php:256 +msgid "Forums" +msgstr "Foros" -#: include/identity.php:52 mod/profile.php:21 -msgid "Requested profile is not available." -msgstr "El perfil solicitado no está disponible." +#: include/ForumManager.php:118 view/theme/vier/theme.php:258 +msgid "External link to forum" +msgstr "Enlace externo al foro" -#: include/identity.php:96 include/identity.php:314 include/identity.php:737 -msgid "Edit profile" -msgstr "Editar perfil" +#: include/ForumManager.php:121 include/contact_widgets.php:271 +#: include/items.php:2432 mod/content.php:625 object/Item.php:417 +#: view/theme/vier/theme.php:261 src/App.php:506 +msgid "show more" +msgstr "ver más" -#: include/identity.php:254 -msgid "Atom feed" -msgstr "Atom feed" +#: include/NotificationsManager.php:153 +msgid "System" +msgstr "Sistema" -#: include/identity.php:285 include/nav.php:189 -msgid "Profiles" -msgstr "Perfiles" +#: include/NotificationsManager.php:160 include/nav.php:160 mod/admin.php:518 +#: view/theme/frio/theme.php:255 +msgid "Network" +msgstr "Red" -#: include/identity.php:285 -msgid "Manage/edit profiles" -msgstr "Administrar/editar perfiles" +#: include/NotificationsManager.php:167 mod/network.php:835 +#: mod/profiles.php:699 +msgid "Personal" +msgstr "Personal" -#: include/identity.php:290 include/identity.php:316 mod/profiles.php:789 -msgid "Change profile photo" -msgstr "Cambiar foto del perfil" +#: include/NotificationsManager.php:174 include/nav.php:107 +#: include/nav.php:163 +msgid "Home" +msgstr "Inicio" -#: include/identity.php:291 mod/profiles.php:790 -msgid "Create New Profile" -msgstr "Crear nuevo perfil" +#: include/NotificationsManager.php:181 include/nav.php:168 +msgid "Introductions" +msgstr "Presentaciones" -#: include/identity.php:301 mod/profiles.php:779 -msgid "Profile Image" -msgstr "Imagen del Perfil" - -#: include/identity.php:304 mod/profiles.php:781 -msgid "visible to everybody" -msgstr "Visible para todos" - -#: include/identity.php:305 mod/profiles.php:683 mod/profiles.php:782 -msgid "Edit visibility" -msgstr "Editar visibilidad" - -#: include/identity.php:333 include/identity.php:628 mod/directory.php:141 -#: mod/notifications.php:244 -msgid "Gender:" -msgstr "Género:" - -#: include/identity.php:336 include/identity.php:648 mod/directory.php:143 -msgid "Status:" -msgstr "Estado:" - -#: include/identity.php:338 include/identity.php:664 mod/directory.php:145 -msgid "Homepage:" -msgstr "Página de inicio:" - -#: include/identity.php:340 include/identity.php:684 mod/contacts.php:640 -#: mod/directory.php:147 mod/notifications.php:240 -msgid "About:" -msgstr "Acerca de:" - -#: include/identity.php:342 mod/contacts.php:638 -msgid "XMPP:" -msgstr "XMPP:" - -#: include/identity.php:428 mod/contacts.php:55 mod/notifications.php:252 -msgid "Network:" -msgstr "Red:" - -#: include/identity.php:457 include/identity.php:547 -msgid "g A l F d" -msgstr "g A l F d" - -#: include/identity.php:458 include/identity.php:548 -msgid "F d" -msgstr "F d" - -#: include/identity.php:509 include/identity.php:594 -msgid "[today]" -msgstr "[hoy]" - -#: include/identity.php:521 -msgid "Birthday Reminders" -msgstr "Recordatorios de cumpleaños" - -#: include/identity.php:522 -msgid "Birthdays this week:" -msgstr "Cumpleaños esta semana:" - -#: include/identity.php:581 -msgid "[No description]" -msgstr "[Sin descripción]" - -#: include/identity.php:605 -msgid "Event Reminders" -msgstr "Recordatorios de eventos" - -#: include/identity.php:606 -msgid "Events this week:" -msgstr "Eventos de esta semana:" - -#: include/identity.php:617 include/identity.php:741 include/identity.php:774 -#: include/nav.php:82 mod/contacts.php:647 mod/contacts.php:849 -#: mod/newmember.php:32 mod/profperm.php:105 view/theme/frio/theme.php:247 -msgid "Profile" -msgstr "Perfil" - -#: include/identity.php:626 mod/settings.php:1286 -msgid "Full Name:" -msgstr "Nombre completo:" - -#: include/identity.php:633 -msgid "j F, Y" -msgstr "j F, Y" - -#: include/identity.php:634 -msgid "j F" -msgstr "j F" - -#: include/identity.php:645 -msgid "Age:" -msgstr "Edad:" - -#: include/identity.php:656 +#: include/NotificationsManager.php:239 include/NotificationsManager.php:251 #, php-format -msgid "for %1$d %2$s" -msgstr "por %1$d %2$s" +msgid "%s commented on %s's post" +msgstr "%s comentó la publicación de %s" -#: include/identity.php:660 mod/profiles.php:702 -msgid "Sexual Preference:" -msgstr "Preferencia sexual:" +#: include/NotificationsManager.php:250 +#, php-format +msgid "%s created a new post" +msgstr "%s creó una nueva publicación" -#: include/identity.php:668 mod/profiles.php:729 -msgid "Hometown:" -msgstr "Ciudad de origen:" +#: include/NotificationsManager.php:265 +#, php-format +msgid "%s liked %s's post" +msgstr "A %s le gusta la publicación de %s" -#: include/identity.php:672 mod/contacts.php:642 mod/follow.php:137 -#: mod/notifications.php:242 -msgid "Tags:" -msgstr "Etiquetas:" +#: include/NotificationsManager.php:278 +#, php-format +msgid "%s disliked %s's post" +msgstr "A %s no le gusta la publicación de %s" -#: include/identity.php:676 mod/profiles.php:730 -msgid "Political Views:" -msgstr "Ideas políticas:" +#: include/NotificationsManager.php:291 +#, php-format +msgid "%s is attending %s's event" +msgstr "%s está asistiendo al evento %s's" -#: include/identity.php:680 -msgid "Religion:" -msgstr "Religión:" +#: include/NotificationsManager.php:304 +#, php-format +msgid "%s is not attending %s's event" +msgstr "%s no está asistiendo al evento %s's" -#: include/identity.php:688 -msgid "Hobbies/Interests:" -msgstr "Aficiones/Intereses:" +#: include/NotificationsManager.php:317 +#, php-format +msgid "%s may attend %s's event" +msgstr "%s podría asistir al evento %s's" -#: include/identity.php:692 mod/profiles.php:734 -msgid "Likes:" -msgstr "Me gusta:" +#: include/NotificationsManager.php:334 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s es ahora es amigo de %s" -#: include/identity.php:696 mod/profiles.php:735 -msgid "Dislikes:" -msgstr "No me gusta:" +#: include/NotificationsManager.php:770 +msgid "Friend Suggestion" +msgstr "Propuestas de amistad" -#: include/identity.php:700 -msgid "Contact information and Social Networks:" -msgstr "Información de contacto y Redes sociales:" +#: include/NotificationsManager.php:803 +msgid "Friend/Connect Request" +msgstr "Solicitud de Amistad/Conexión" -#: include/identity.php:704 -msgid "Musical interests:" -msgstr "Intereses musicales:" +#: include/NotificationsManager.php:803 +msgid "New Follower" +msgstr "Nuevo seguidor" -#: include/identity.php:708 -msgid "Books, literature:" -msgstr "Libros, literatura:" +#: include/acl_selectors.php:355 +msgid "Post to Email" +msgstr "Publicar mediante correo electrónico" -#: include/identity.php:712 -msgid "Television:" -msgstr "Televisión:" +#: include/acl_selectors.php:360 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Conectores deshabilitados, ya que \"%s\" es habilitado." -#: include/identity.php:716 -msgid "Film/dance/culture/entertainment:" -msgstr "Películas/baile/cultura/entretenimiento:" +#: include/acl_selectors.php:361 mod/settings.php:1189 +msgid "Hide your profile details from unknown viewers?" +msgstr "¿Quieres que los detalles de tu perfil permanezcan ocultos a los desconocidos?" -#: include/identity.php:720 -msgid "Love/Romance:" -msgstr "Amor/Romance:" +#: include/acl_selectors.php:367 +msgid "Visible to everybody" +msgstr "Visible para cualquiera" -#: include/identity.php:724 -msgid "Work/employment:" -msgstr "Trabajo/ocupación:" +#: include/acl_selectors.php:368 view/theme/vier/config.php:109 +msgid "show" +msgstr "mostrar" -#: include/identity.php:728 -msgid "School/education:" -msgstr "Escuela/estudios:" +#: include/acl_selectors.php:369 view/theme/vier/config.php:109 +msgid "don't show" +msgstr "no mostrar" -#: include/identity.php:733 -msgid "Forums:" -msgstr "Foros:" +#: include/acl_selectors.php:375 mod/editpost.php:125 +msgid "CC: email addresses" +msgstr "CC: dirección de correo electrónico" -#: include/identity.php:742 mod/events.php:514 -msgid "Basic" -msgstr "Basic" +#: include/acl_selectors.php:376 mod/editpost.php:132 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Ejemplo: juan@ejemplo.com, sofia@ejemplo.com" -#: include/identity.php:743 mod/admin.php:972 mod/contacts.php:878 -#: mod/events.php:515 -msgid "Advanced" -msgstr "Avanzado" +#: include/acl_selectors.php:378 mod/events.php:511 mod/photos.php:1198 +#: mod/photos.php:1595 +msgid "Permissions" +msgstr "Permisos" -#: include/identity.php:766 include/nav.php:81 mod/contacts.php:645 -#: mod/contacts.php:841 view/theme/frio/theme.php:246 -msgid "Status" -msgstr "Estado" +#: include/acl_selectors.php:379 +msgid "Close" +msgstr "Cerrado" -#: include/identity.php:769 mod/contacts.php:844 mod/follow.php:145 -msgid "Status Messages and Posts" -msgstr "Mensajes de Estado y Publicaciones" +#: include/auth.php:52 +msgid "Logged out." +msgstr "Sesión finalizada" -#: include/identity.php:777 mod/contacts.php:852 -msgid "Profile Details" -msgstr "Detalles del Perfil" +#: include/auth.php:123 include/auth.php:185 mod/openid.php:110 +msgid "Login failed." +msgstr "Accesso fallido." -#: include/identity.php:782 include/nav.php:83 mod/fbrowser.php:31 -#: view/theme/frio/theme.php:248 -msgid "Photos" -msgstr "Fotografías" +#: include/auth.php:139 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 "Se ha encontrado un problema para acceder con el OpenID que has escrito. Verifica que lo hayas escrito correctamente." -#: include/identity.php:785 mod/photos.php:89 -msgid "Photo Albums" -msgstr "Álbum de Fotos" +#: include/auth.php:139 include/user.php:75 +msgid "The error message was:" +msgstr "El mensaje del error fue:" -#: include/identity.php:790 include/identity.php:793 include/nav.php:84 -#: view/theme/frio/theme.php:249 -msgid "Videos" -msgstr "Videos" +#: include/bb2diaspora.php:233 include/event.php:19 mod/localtime.php:13 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" -#: include/identity.php:802 include/identity.php:813 include/nav.php:85 -#: include/nav.php:149 mod/cal.php:270 mod/events.php:386 -#: view/theme/frio/theme.php:250 view/theme/frio/theme.php:254 -msgid "Events" -msgstr "Eventos" +#: include/bb2diaspora.php:239 include/event.php:36 include/event.php:56 +#: include/event.php:459 +msgid "Starts:" +msgstr "Inicio:" -#: include/identity.php:805 include/identity.php:816 include/nav.php:149 -#: view/theme/frio/theme.php:254 -msgid "Events and Calendar" -msgstr "Eventos y Calendario" +#: include/bb2diaspora.php:247 include/event.php:39 include/event.php:62 +#: include/event.php:460 +msgid "Finishes:" +msgstr "Final:" -#: include/identity.php:824 mod/notes.php:47 -msgid "Personal Notes" -msgstr "Notas personales" +#: include/bb2diaspora.php:256 include/event.php:43 include/event.php:69 +#: include/event.php:461 include/identity.php:342 mod/directory.php:135 +#: mod/events.php:496 mod/notifications.php:246 mod/contacts.php:639 +msgid "Location:" +msgstr "Localización:" -#: include/identity.php:827 -msgid "Only You Can See This" -msgstr "Únicamente tú puedes ver esto" +#: include/contact_widgets.php:8 +msgid "Add New Contact" +msgstr "Añadir nuevo contacto" -#: include/identity.php:835 include/identity.php:838 include/nav.php:128 -#: include/nav.php:192 include/text.php:1024 mod/contacts.php:800 -#: mod/contacts.php:861 mod/viewcontacts.php:121 view/theme/frio/theme.php:257 -msgid "Contacts" -msgstr "Contactos" +#: include/contact_widgets.php:9 +msgid "Enter address or web location" +msgstr "Escribe la dirección o página web" -#: include/items.php:1584 mod/dfrn_confirm.php:735 mod/dfrn_request.php:754 -msgid "[Name Withheld]" -msgstr "[Nombre oculto]" +#: include/contact_widgets.php:10 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Ejemplo: miguel@ejemplo.com, http://ejemplo.com/miguel" -#: include/items.php:1939 mod/admin.php:240 mod/admin.php:1480 -#: mod/admin.php:1731 mod/display.php:103 mod/display.php:279 -#: mod/display.php:484 mod/notice.php:15 mod/viewsrc.php:15 -msgid "Item not found." -msgstr "Elemento no encontrado." +#: include/contact_widgets.php:12 include/identity.php:230 +#: mod/allfriends.php:87 mod/dirfind.php:209 mod/match.php:92 +#: mod/suggest.php:103 +msgid "Connect" +msgstr "Conectar" -#: include/items.php:1978 -msgid "Do you really want to delete this item?" -msgstr "¿Realmente quieres borrar este objeto?" +#: include/contact_widgets.php:26 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invitación disponible" +msgstr[1] "%d invitaviones disponibles" -#: include/items.php:1980 mod/api.php:105 mod/contacts.php:452 -#: mod/dfrn_request.php:875 mod/follow.php:113 mod/message.php:206 -#: mod/profiles.php:640 mod/profiles.php:643 mod/profiles.php:669 -#: mod/register.php:245 mod/settings.php:1171 mod/settings.php:1177 -#: mod/settings.php:1184 mod/settings.php:1188 mod/settings.php:1193 -#: mod/settings.php:1198 mod/settings.php:1203 mod/settings.php:1208 -#: mod/settings.php:1234 mod/settings.php:1235 mod/settings.php:1236 -#: mod/settings.php:1237 mod/settings.php:1238 mod/suggest.php:29 -msgid "Yes" -msgstr "Sí" +#: include/contact_widgets.php:32 +msgid "Find People" +msgstr "Buscar personas" -#: include/items.php:2143 index.php:407 mod/allfriends.php:12 mod/api.php:26 -#: mod/api.php:31 mod/attach.php:33 mod/cal.php:299 mod/common.php:18 -#: mod/contacts.php:360 mod/crepair.php:102 mod/delegate.php:12 -#: mod/dfrn_confirm.php:61 mod/dirfind.php:11 mod/display.php:481 -#: mod/editpost.php:10 mod/events.php:195 mod/follow.php:11 mod/follow.php:74 -#: mod/follow.php:158 mod/fsuggest.php:79 mod/group.php:19 mod/invite.php:15 -#: mod/invite.php:103 mod/item.php:193 mod/item.php:205 mod/manage.php:98 -#: mod/message.php:46 mod/message.php:171 mod/mood.php:115 mod/network.php:4 -#: mod/nogroup.php:27 mod/notes.php:23 mod/notifications.php:71 -#: mod/ostatus_subscribe.php:9 mod/photos.php:161 mod/photos.php:1092 -#: mod/poke.php:154 mod/profile_photo.php:19 mod/profile_photo.php:180 -#: mod/profile_photo.php:191 mod/profile_photo.php:204 mod/profiles.php:166 -#: mod/profiles.php:607 mod/register.php:42 mod/regmod.php:113 -#: mod/repair_ostatus.php:9 mod/settings.php:22 mod/settings.php:130 -#: mod/settings.php:668 mod/suggest.php:58 mod/uimport.php:24 -#: mod/viewcontacts.php:46 mod/wall_attach.php:67 mod/wall_attach.php:70 -#: mod/wall_upload.php:77 mod/wall_upload.php:80 mod/wallmessage.php:9 -#: mod/wallmessage.php:33 mod/wallmessage.php:73 mod/wallmessage.php:97 -msgid "Permission denied." -msgstr "Permiso denegado." +#: include/contact_widgets.php:33 +msgid "Enter name or interest" +msgstr "Introduzce nombre o intereses" -#: include/items.php:2248 -msgid "Archives" -msgstr "Archivos" +#: include/contact_widgets.php:34 include/conversation.php:1018 +#: include/Contact.php:389 mod/allfriends.php:71 mod/dirfind.php:212 +#: mod/follow.php:108 mod/match.php:77 mod/suggest.php:85 mod/contacts.php:613 +msgid "Connect/Follow" +msgstr "Conectar/Seguir" -#: include/like.php:41 +#: include/contact_widgets.php:35 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Ejemplos: Robert Morgenstein, Pesca" + +#: include/contact_widgets.php:36 mod/directory.php:202 mod/contacts.php:809 +msgid "Find" +msgstr "Buscar" + +#: include/contact_widgets.php:37 mod/suggest.php:116 +#: view/theme/vier/theme.php:203 +msgid "Friend Suggestions" +msgstr "Sugerencias de amigos" + +#: include/contact_widgets.php:38 view/theme/vier/theme.php:202 +msgid "Similar Interests" +msgstr "Intereses similares" + +#: include/contact_widgets.php:39 +msgid "Random Profile" +msgstr "Perfil aleatorio" + +#: include/contact_widgets.php:40 view/theme/vier/theme.php:204 +msgid "Invite Friends" +msgstr "Invitar amigos" + +#: include/contact_widgets.php:127 +msgid "Networks" +msgstr "Redes" + +#: include/contact_widgets.php:130 +msgid "All Networks" +msgstr "Todas las redes" + +#: include/contact_widgets.php:165 include/contact_widgets.php:200 +msgid "Everything" +msgstr "Todo" + +#: include/contact_widgets.php:197 +msgid "Categories" +msgstr "Categorías" + +#: include/contact_widgets.php:266 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d contacto en común" +msgstr[1] "%d contactos en común" + +#: include/conversation.php:134 include/conversation.php:286 +#: include/like.php:183 include/text.php:1871 +msgid "event" +msgstr "evento" + +#: include/conversation.php:137 include/conversation.php:147 +#: include/conversation.php:289 include/conversation.php:298 +#: include/like.php:181 include/diaspora.php:1653 mod/subthread.php:89 +#: mod/tagger.php:63 +msgid "status" +msgstr "estado" + +#: include/conversation.php:142 include/conversation.php:294 +#: include/like.php:181 include/text.php:1873 mod/subthread.php:89 +#: mod/tagger.php:63 +msgid "photo" +msgstr "foto" + +#: include/conversation.php:154 include/like.php:30 include/diaspora.php:1649 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "A %1$s le gusta %3$s de %2$s" + +#: include/conversation.php:157 include/like.php:34 include/like.php:39 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "A %1$s no le gusta %3$s de %2$s" + +#: include/conversation.php:160 +#, php-format +msgid "%1$s attends %2$s's %3$s" +msgstr "%1$s atenderá %2$s's %3$s" + +#: include/conversation.php:163 +#, php-format +msgid "%1$s doesn't attend %2$s's %3$s" +msgstr "%1$s no atenderá %2$s's %3$s" + +#: include/conversation.php:166 +#, php-format +msgid "%1$s attends maybe %2$s's %3$s" +msgstr "%1$s atenderá quizás %2$s's %3$s" + +#: include/conversation.php:199 mod/dfrn_confirm.php:480 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s ahora es amigo de %2$s" + +#: include/conversation.php:240 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s le dio un toque a %2$s" + +#: include/conversation.php:261 mod/mood.php:64 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s está actualmente %2$s" + +#: include/conversation.php:308 mod/tagger.php:96 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s ha etiquetado el %3$s de %2$s con %4$s" + +#: include/conversation.php:335 +msgid "post/item" +msgstr "publicación/tema" + +#: include/conversation.php:336 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s ha marcado %3$s de %2$s como Favorito" + +#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1664 +#: mod/profiles.php:344 +msgid "Likes" +msgstr "Me gusta" + +#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1664 +#: mod/profiles.php:348 +msgid "Dislikes" +msgstr "No me gusta" + +#: include/conversation.php:616 include/conversation.php:1542 +#: mod/content.php:374 mod/photos.php:1665 +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Atendiendo" +msgstr[1] "Atendiendo" + +#: include/conversation.php:616 mod/content.php:374 mod/photos.php:1665 +msgid "Not attending" +msgstr "No atendiendo" + +#: include/conversation.php:616 mod/content.php:374 mod/photos.php:1665 +msgid "Might attend" +msgstr "Puede que atienda" + +#: include/conversation.php:748 mod/content.php:454 mod/content.php:760 +#: mod/photos.php:1730 object/Item.php:137 +msgid "Select" +msgstr "Seleccionar" + +#: include/conversation.php:749 mod/content.php:455 mod/content.php:761 +#: mod/photos.php:1731 mod/admin.php:1514 mod/contacts.php:819 +#: mod/contacts.php:1018 mod/settings.php:745 object/Item.php:138 +msgid "Delete" +msgstr "Eliminar" + +#: include/conversation.php:792 mod/content.php:488 mod/content.php:916 +#: mod/content.php:917 object/Item.php:353 object/Item.php:354 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Ver perfil de %s @ %s" + +#: include/conversation.php:804 object/Item.php:341 +msgid "Categories:" +msgstr "Categorías:" + +#: include/conversation.php:805 object/Item.php:342 +msgid "Filed under:" +msgstr "Archivado en:" + +#: include/conversation.php:812 mod/content.php:498 mod/content.php:929 +#: object/Item.php:367 +#, php-format +msgid "%s from %s" +msgstr "%s de %s" + +#: include/conversation.php:828 mod/content.php:514 +msgid "View in context" +msgstr "Verlo en contexto" + +#: include/conversation.php:830 include/conversation.php:1299 +#: mod/content.php:516 mod/content.php:954 mod/editpost.php:116 +#: mod/message.php:339 mod/message.php:524 mod/photos.php:1629 +#: mod/wallmessage.php:142 object/Item.php:392 +msgid "Please wait" +msgstr "Por favor, espera" + +#: include/conversation.php:907 +msgid "remove" +msgstr "eliminar" + +#: include/conversation.php:911 +msgid "Delete Selected Items" +msgstr "Eliminar el elemento seleccionado" + +#: include/conversation.php:1003 +msgid "Follow Thread" +msgstr "Seguir publicacion" + +#: include/conversation.php:1004 include/Contact.php:432 +msgid "View Status" +msgstr "Ver estado" + +#: include/conversation.php:1005 include/conversation.php:1021 +#: include/Contact.php:375 include/Contact.php:388 include/Contact.php:433 +#: mod/allfriends.php:70 mod/directory.php:153 mod/dirfind.php:211 +#: mod/match.php:76 mod/suggest.php:84 +msgid "View Profile" +msgstr "Ver perfil" + +#: include/conversation.php:1006 include/Contact.php:434 +msgid "View Photos" +msgstr "Ver fotos" + +#: include/conversation.php:1007 include/Contact.php:435 +msgid "Network Posts" +msgstr "Publicaciones en la red" + +#: include/conversation.php:1008 include/Contact.php:436 +msgid "View Contact" +msgstr "Ver contacto" + +#: include/conversation.php:1009 include/Contact.php:438 +msgid "Send PM" +msgstr "Enviar mensaje privado" + +#: include/conversation.php:1013 include/Contact.php:439 +msgid "Poke" +msgstr "Toque" + +#: include/conversation.php:1140 +#, php-format +msgid "%s likes this." +msgstr "A %s le gusta esto." + +#: include/conversation.php:1143 +#, php-format +msgid "%s doesn't like this." +msgstr "A %s no le gusta esto." + +#: include/conversation.php:1146 +#, php-format +msgid "%s attends." +msgstr "%s atiende." + +#: include/conversation.php:1149 +#, php-format +msgid "%s doesn't attend." +msgstr "%s no atenderá." + +#: include/conversation.php:1152 +#, php-format +msgid "%s attends maybe." +msgstr "%s quizás atenderá" + +#: include/conversation.php:1163 +msgid "and" +msgstr "y" + +#: include/conversation.php:1169 +#, php-format +msgid ", and %d other people" +msgstr " y a otras %d personas" + +#: include/conversation.php:1178 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d personas les gusta esto" + +#: include/conversation.php:1179 +#, php-format +msgid "%s like this." +msgstr "A %s le gusta esto." + +#: include/conversation.php:1182 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d personas no les gusta esto" + +#: include/conversation.php:1183 +#, php-format +msgid "%s don't like this." +msgstr "A %s no le gusta esto." + +#: include/conversation.php:1186 +#, php-format +msgid "%2$d people attend" +msgstr "%2$d personas atienden" + +#: include/conversation.php:1187 +#, php-format +msgid "%s attend." +msgstr "%s atiende." + +#: include/conversation.php:1190 +#, php-format +msgid "%2$d people don't attend" +msgstr "%2$d personasno atienden" + +#: include/conversation.php:1191 +#, php-format +msgid "%s don't attend." +msgstr "%s no atiende." + +#: include/conversation.php:1194 +#, php-format +msgid "%2$d people attend maybe" +msgstr "%2$d people quizá asistan" + +#: include/conversation.php:1195 +#, php-format +msgid "%s anttend maybe." +msgstr "%s atiende quizás." + +#: include/conversation.php:1224 include/conversation.php:1240 +msgid "Visible to everybody" +msgstr "Visible para cualquiera" + +#: include/conversation.php:1225 include/conversation.php:1241 +#: mod/message.php:273 mod/message.php:280 mod/message.php:420 +#: mod/message.php:427 mod/wallmessage.php:116 mod/wallmessage.php:123 +msgid "Please enter a link URL:" +msgstr "Introduce la dirección del enlace:" + +#: include/conversation.php:1226 include/conversation.php:1242 +msgid "Please enter a video link/URL:" +msgstr "Por favor, introduce la URL/enlace del vídeo:" + +#: include/conversation.php:1227 include/conversation.php:1243 +msgid "Please enter an audio link/URL:" +msgstr "Por favor, introduce la URL/enlace del audio:" + +#: include/conversation.php:1228 include/conversation.php:1244 +msgid "Tag term:" +msgstr "Etiquetar:" + +#: include/conversation.php:1229 include/conversation.php:1245 +#: mod/filer.php:31 +msgid "Save to Folder:" +msgstr "Guardar en directorio:" + +#: include/conversation.php:1230 include/conversation.php:1246 +msgid "Where are you right now?" +msgstr "¿Dónde estás ahora?" + +#: include/conversation.php:1231 +msgid "Delete item(s)?" +msgstr "¿Borrar objeto(s)?" + +#: include/conversation.php:1280 +msgid "Share" +msgstr "Compartir" + +#: include/conversation.php:1281 mod/editpost.php:102 mod/message.php:337 +#: mod/message.php:521 mod/wallmessage.php:140 +msgid "Upload photo" +msgstr "Subir foto" + +#: include/conversation.php:1282 mod/editpost.php:103 +msgid "upload photo" +msgstr "subir imagen" + +#: include/conversation.php:1283 mod/editpost.php:104 +msgid "Attach file" +msgstr "Adjuntar archivo" + +#: include/conversation.php:1284 mod/editpost.php:105 +msgid "attach file" +msgstr "adjuntar archivo" + +#: include/conversation.php:1285 mod/editpost.php:106 mod/message.php:338 +#: mod/message.php:522 mod/wallmessage.php:141 +msgid "Insert web link" +msgstr "Insertar enlace" + +#: include/conversation.php:1286 mod/editpost.php:107 +msgid "web link" +msgstr "enlace web" + +#: include/conversation.php:1287 mod/editpost.php:108 +msgid "Insert video link" +msgstr "Insertar enlace del vídeo" + +#: include/conversation.php:1288 mod/editpost.php:109 +msgid "video link" +msgstr "enlace de video" + +#: include/conversation.php:1289 mod/editpost.php:110 +msgid "Insert audio link" +msgstr "Insertar vínculo del audio" + +#: include/conversation.php:1290 mod/editpost.php:111 +msgid "audio link" +msgstr "enlace de audio" + +#: include/conversation.php:1291 mod/editpost.php:112 +msgid "Set your location" +msgstr "Configurar tu localización" + +#: include/conversation.php:1292 mod/editpost.php:113 +msgid "set location" +msgstr "establecer tu ubicación" + +#: include/conversation.php:1293 mod/editpost.php:114 +msgid "Clear browser location" +msgstr "Borrar la localización del navegador" + +#: include/conversation.php:1294 mod/editpost.php:115 +msgid "clear location" +msgstr "limpiar la localización" + +#: include/conversation.php:1296 mod/editpost.php:129 +msgid "Set title" +msgstr "Establecer el título" + +#: include/conversation.php:1298 mod/editpost.php:131 +msgid "Categories (comma-separated list)" +msgstr "Categorías (lista separada por comas)" + +#: include/conversation.php:1300 mod/editpost.php:117 +msgid "Permission settings" +msgstr "Configuración de permisos" + +#: include/conversation.php:1301 mod/editpost.php:146 +msgid "permissions" +msgstr "permisos" + +#: include/conversation.php:1309 mod/editpost.php:126 +msgid "Public post" +msgstr "Publicación pública" + +#: include/conversation.php:1314 mod/content.php:738 mod/editpost.php:137 +#: mod/events.php:506 mod/photos.php:1649 mod/photos.php:1691 +#: mod/photos.php:1771 object/Item.php:711 +msgid "Preview" +msgstr "Vista previa" + +#: include/conversation.php:1318 include/items.php:2165 mod/editpost.php:140 +#: mod/fbrowser.php:102 mod/fbrowser.php:137 mod/follow.php:126 +#: mod/message.php:211 mod/photos.php:247 mod/photos.php:339 +#: mod/suggest.php:34 mod/tagrm.php:13 mod/tagrm.php:98 mod/videos.php:134 +#: mod/dfrn_request.php:894 mod/contacts.php:458 mod/settings.php:683 +#: mod/settings.php:709 +msgid "Cancel" +msgstr "Cancelar" + +#: include/conversation.php:1324 +msgid "Post to Groups" +msgstr "Publicar hacia grupos" + +#: include/conversation.php:1325 +msgid "Post to Contacts" +msgstr "Publicar hacia contactos" + +#: include/conversation.php:1326 +msgid "Private post" +msgstr "Publicación privada" + +#: include/conversation.php:1331 include/identity.php:270 mod/editpost.php:144 +msgid "Message" +msgstr "Mensaje" + +#: include/conversation.php:1332 mod/editpost.php:145 +msgid "Browser" +msgstr "Navegador" + +#: include/conversation.php:1514 +msgid "View all" +msgstr "Ver todos los contactos" + +#: include/conversation.php:1536 +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Me gusta" +msgstr[1] "Me gusta" + +#: include/conversation.php:1539 +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "No me gusta" +msgstr[1] "No me gusta" + +#: include/conversation.php:1545 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "No atendiendo" +msgstr[1] "No atendiendo" + +#: include/conversation.php:1548 include/profile_selectors.php:6 +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "Indeciso" +msgstr[1] "Indeciso" + +#: include/datetime.php:66 include/datetime.php:68 mod/profiles.php:701 +msgid "Miscellaneous" +msgstr "Varios" + +#: include/datetime.php:196 include/identity.php:656 +msgid "Birthday:" +msgstr "Fecha de nacimiento:" + +#: include/datetime.php:198 mod/profiles.php:724 +msgid "Age: " +msgstr "Edad: " + +#: include/datetime.php:200 +msgid "YYYY-MM-DD or MM-DD" +msgstr "YYYY-MM-DD o MM-DD" + +#: include/datetime.php:370 +msgid "never" +msgstr "nunca" + +#: include/datetime.php:376 +msgid "less than a second ago" +msgstr "hace menos de un segundo" + +#: include/datetime.php:379 +msgid "year" +msgstr "año" + +#: include/datetime.php:379 +msgid "years" +msgstr "años" + +#: include/datetime.php:380 include/event.php:453 mod/cal.php:281 +#: mod/events.php:387 +msgid "month" +msgstr "mes" + +#: include/datetime.php:380 +msgid "months" +msgstr "meses" + +#: include/datetime.php:381 include/event.php:454 mod/cal.php:282 +#: mod/events.php:388 +msgid "week" +msgstr "semana" + +#: include/datetime.php:381 +msgid "weeks" +msgstr "semanas" + +#: include/datetime.php:382 include/event.php:455 mod/cal.php:283 +#: mod/events.php:389 +msgid "day" +msgstr "día" + +#: include/datetime.php:382 +msgid "days" +msgstr "días" + +#: include/datetime.php:383 +msgid "hour" +msgstr "hora" + +#: include/datetime.php:383 +msgid "hours" +msgstr "horas" + +#: include/datetime.php:384 +msgid "minute" +msgstr "minuto" + +#: include/datetime.php:384 +msgid "minutes" +msgstr "minutos" + +#: include/datetime.php:385 +msgid "second" +msgstr "segundo" + +#: include/datetime.php:385 +msgid "seconds" +msgstr "segundos" + +#: include/datetime.php:394 +#, php-format +msgid "%1$d %2$s ago" +msgstr "hace %1$d %2$s" + +#: include/datetime.php:620 +#, php-format +msgid "%s's birthday" +msgstr "Cumpleaños de %s" + +#: include/datetime.php:621 include/dfrn.php:1254 +#, php-format +msgid "Happy Birthday %s" +msgstr "Feliz cumpleaños %s" + +#: include/delivery.php:428 +msgid "(no subject)" +msgstr "(sin asunto)" + +#: include/delivery.php:440 include/enotify.php:46 +msgid "noreply" +msgstr "no responder" + +#: include/dfrn.php:1253 +#, php-format +msgid "%s\\'s birthday" +msgstr "%s\\'s cumpleaños" + +#: include/event.php:408 +msgid "all-day" +msgstr "todo el día" + +#: include/event.php:410 +msgid "Sun" +msgstr "Dom" + +#: include/event.php:411 +msgid "Mon" +msgstr "Lun" + +#: include/event.php:412 +msgid "Tue" +msgstr "Mar" + +#: include/event.php:413 +msgid "Wed" +msgstr "Mie" + +#: include/event.php:414 +msgid "Thu" +msgstr "Jue" + +#: include/event.php:415 +msgid "Fri" +msgstr "Vie" + +#: include/event.php:416 +msgid "Sat" +msgstr "Sab" + +#: include/event.php:418 include/text.php:1199 mod/settings.php:982 +msgid "Sunday" +msgstr "Domingo" + +#: include/event.php:419 include/text.php:1199 mod/settings.php:982 +msgid "Monday" +msgstr "Lunes" + +#: include/event.php:420 include/text.php:1199 +msgid "Tuesday" +msgstr "Martes" + +#: include/event.php:421 include/text.php:1199 +msgid "Wednesday" +msgstr "Miércoles" + +#: include/event.php:422 include/text.php:1199 +msgid "Thursday" +msgstr "Jueves" + +#: include/event.php:423 include/text.php:1199 +msgid "Friday" +msgstr "Viernes" + +#: include/event.php:424 include/text.php:1199 +msgid "Saturday" +msgstr "Sábado" + +#: include/event.php:426 +msgid "Jan" +msgstr "Ene" + +#: include/event.php:427 +msgid "Feb" +msgstr "Feb" + +#: include/event.php:428 +msgid "Mar" +msgstr "Mar" + +#: include/event.php:429 +msgid "Apr" +msgstr "Abr" + +#: include/event.php:430 include/event.php:443 include/text.php:1203 +msgid "May" +msgstr "Mayo" + +#: include/event.php:431 +msgid "Jun" +msgstr "Jun" + +#: include/event.php:432 +msgid "Jul" +msgstr "Jul" + +#: include/event.php:433 +msgid "Aug" +msgstr "Ago" + +#: include/event.php:434 +msgid "Sept" +msgstr "Sept" + +#: include/event.php:435 +msgid "Oct" +msgstr "Oct" + +#: include/event.php:436 +msgid "Nov" +msgstr "Nov" + +#: include/event.php:437 +msgid "Dec" +msgstr "Dec" + +#: include/event.php:439 include/text.php:1203 +msgid "January" +msgstr "Enero" + +#: include/event.php:440 include/text.php:1203 +msgid "February" +msgstr "Febrero" + +#: include/event.php:441 include/text.php:1203 +msgid "March" +msgstr "Marzo" + +#: include/event.php:442 include/text.php:1203 +msgid "April" +msgstr "Abril" + +#: include/event.php:444 include/text.php:1203 +msgid "June" +msgstr "Junio" + +#: include/event.php:445 include/text.php:1203 +msgid "July" +msgstr "Julio" + +#: include/event.php:446 include/text.php:1203 +msgid "August" +msgstr "Agosto" + +#: include/event.php:447 include/text.php:1203 +msgid "September" +msgstr "Septiembre" + +#: include/event.php:448 include/text.php:1203 +msgid "October" +msgstr "Octubre" + +#: include/event.php:449 include/text.php:1203 +msgid "November" +msgstr "Noviembre" + +#: include/event.php:450 include/text.php:1203 +msgid "December" +msgstr "Diciembre" + +#: include/event.php:452 mod/cal.php:280 mod/events.php:386 +msgid "today" +msgstr "hoy" + +#: include/event.php:457 +msgid "No events to display" +msgstr "No hay eventos a mostrar" + +#: include/event.php:570 +msgid "l, F j" +msgstr "l, F j" + +#: include/event.php:592 +msgid "Edit event" +msgstr "Editar evento" + +#: include/event.php:593 +msgid "Delete event" +msgstr "" + +#: include/event.php:619 include/text.php:1601 include/text.php:1608 +msgid "link to source" +msgstr "Enlace al original" + +#: include/event.php:873 +msgid "Export" +msgstr "Exportar" + +#: include/event.php:874 +msgid "Export calendar as ical" +msgstr "Exportar calendario como ical" + +#: include/event.php:875 +msgid "Export calendar as csv" +msgstr "Exportar calendario como csv" + +#: include/follow.php:84 mod/dfrn_request.php:514 +msgid "Disallowed profile URL." +msgstr "Dirección de perfil no permitida." + +#: include/follow.php:89 mod/friendica.php:115 mod/dfrn_request.php:520 +#: mod/admin.php:280 mod/admin.php:298 +msgid "Blocked domain" +msgstr "" + +#: include/follow.php:94 +msgid "Connect URL missing." +msgstr "Falta el conector URL." + +#: include/follow.php:122 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Este sitio no está configurado para permitir la comunicación con otras redes." + +#: include/follow.php:123 include/follow.php:137 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "No se ha descubierto protocolos de comunicación o fuentes compatibles." + +#: include/follow.php:135 +msgid "The profile address specified does not provide adequate information." +msgstr "La dirección del perfil especificado no proporciona información adecuada." + +#: include/follow.php:140 +msgid "An author or name was not found." +msgstr "No se ha encontrado un autor o nombre." + +#: include/follow.php:143 +msgid "No browser URL could be matched to this address." +msgstr "Ninguna dirección concuerda con la suministrada." + +#: include/follow.php:146 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Imposible identificar la dirección @ con algún protocolo conocido o dirección de contacto." + +#: include/follow.php:147 +msgid "Use mailto: in front of address to force email check." +msgstr "Escribe mailto: al principio de la dirección para forzar el envío." + +#: include/follow.php:153 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "La dirección del perfil especificada pertenece a una red que ha sido deshabilitada en este sitio." + +#: include/follow.php:158 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Perfil limitado. Esta persona no podrá recibir notificaciones directas/personales tuyas." + +#: include/follow.php:259 +msgid "Unable to retrieve contact information." +msgstr "No ha sido posible recibir la información del contacto." + +#: include/like.php:44 #, php-format msgid "%1$s is attending %2$s's %3$s" msgstr "%1$s atenderá %2$s's %3$s" -#: include/like.php:46 +#: include/like.php:49 #, php-format msgid "%1$s is not attending %2$s's %3$s" msgstr "%1$s no atenderá %2$s's %3$s" -#: include/like.php:51 +#: include/like.php:54 #, php-format msgid "%1$s may attend %2$s's %3$s" msgstr "%1$s puede que atienda %2$s's %3$s" -#: include/message.php:15 include/message.php:169 -msgid "[no subject]" -msgstr "[sin asunto]" +#: include/photos.php:57 include/photos.php:66 mod/fbrowser.php:42 +#: mod/fbrowser.php:63 mod/photos.php:189 mod/photos.php:1125 +#: mod/photos.php:1258 mod/photos.php:1279 mod/photos.php:1841 +#: mod/photos.php:1855 +msgid "Contact Photos" +msgstr "Foto del contacto" -#: include/nav.php:35 mod/navigation.php:19 -msgid "Nothing new here" -msgstr "Nada nuevo por aquí" +#: include/security.php:63 +msgid "Welcome " +msgstr "Bienvenido " -#: include/nav.php:39 mod/navigation.php:23 -msgid "Clear notifications" -msgstr "Limpiar notificaciones" +#: include/security.php:64 +msgid "Please upload a profile photo." +msgstr "Por favor sube una foto para tu perfil." -#: include/nav.php:40 include/text.php:1017 -msgid "@name, !forum, #tags, content" -msgstr "@name, !forum, #tags, contenido" +#: include/security.php:67 +msgid "Welcome back " +msgstr "Bienvenido de nuevo " -#: include/nav.php:78 view/theme/frio/theme.php:243 -msgid "End this session" -msgstr "Cerrar la sesión" +#: include/security.php:431 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "La ficha de seguridad no es correcta. Seguramente haya ocurrido por haber dejado el formulario abierto demasiado tiempo (>3 horas) antes de enviarlo." -#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:246 -msgid "Your posts and conversations" -msgstr "Tus publicaciones y conversaciones" +#: include/text.php:308 +msgid "newer" +msgstr "más nuevo" -#: include/nav.php:82 view/theme/frio/theme.php:247 -msgid "Your profile page" -msgstr "Tu página de perfil" +#: include/text.php:309 +msgid "older" +msgstr "más antiguo" -#: include/nav.php:83 view/theme/frio/theme.php:248 -msgid "Your photos" -msgstr "Tus fotos" +#: include/text.php:314 +msgid "first" +msgstr "primera" -#: include/nav.php:84 view/theme/frio/theme.php:249 -msgid "Your videos" -msgstr "Tus videos" +#: include/text.php:315 +msgid "prev" +msgstr "ant." -#: include/nav.php:85 view/theme/frio/theme.php:250 -msgid "Your events" -msgstr "Tus eventos" +#: include/text.php:349 +msgid "next" +msgstr "sig." -#: include/nav.php:86 -msgid "Personal notes" -msgstr "Notas personales" +#: include/text.php:350 +msgid "last" +msgstr "última" -#: include/nav.php:86 -msgid "Your personal notes" -msgstr "Tus notas personales" +#: include/text.php:404 +msgid "Loading more entries..." +msgstr "Cargar mas entradas .." -#: include/nav.php:95 -msgid "Sign in" -msgstr "Date de alta" +#: include/text.php:405 +msgid "The end" +msgstr "El fin" -#: include/nav.php:105 -msgid "Home Page" -msgstr "Página de inicio" +#: include/text.php:956 +msgid "No contacts" +msgstr "Sin contactos" -#: include/nav.php:109 -msgid "Create an account" -msgstr "Crea una cuenta" +#: include/text.php:981 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d Contacto" +msgstr[1] "%d Contactos" -#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:293 -msgid "Help" -msgstr "Ayuda" +#: include/text.php:994 +msgid "View Contacts" +msgstr "Ver contactos" -#: include/nav.php:115 -msgid "Help and documentation" -msgstr "Ayuda y documentación" - -#: include/nav.php:119 -msgid "Apps" -msgstr "Aplicaciones" - -#: include/nav.php:119 -msgid "Addon applications, utilities, games" -msgstr "Aplicaciones, utilidades, juegos" - -#: include/nav.php:123 include/text.php:1014 mod/search.php:149 +#: include/text.php:1081 include/nav.php:125 mod/search.php:152 msgid "Search" msgstr "Buscar" -#: include/nav.php:123 -msgid "Search site content" -msgstr " Busca contenido en la página" +#: include/text.php:1082 mod/editpost.php:101 mod/filer.php:32 +#: mod/notes.php:64 +msgid "Save" +msgstr "Guardar" -#: include/nav.php:126 include/text.php:1022 +#: include/text.php:1084 include/nav.php:42 +msgid "@name, !forum, #tags, content" +msgstr "@name, !forum, #tags, contenido" + +#: include/text.php:1089 include/nav.php:128 msgid "Full Text" msgstr "Texto completo" -#: include/nav.php:127 include/text.php:1023 +#: include/text.php:1090 include/nav.php:129 msgid "Tags" msgstr "Tags" -#: include/nav.php:143 include/nav.php:145 mod/community.php:36 +#: include/text.php:1091 include/nav.php:130 include/nav.php:194 +#: include/identity.php:853 include/identity.php:856 mod/viewcontacts.php:124 +#: mod/contacts.php:803 mod/contacts.php:864 view/theme/frio/theme.php:259 +msgid "Contacts" +msgstr "Contactos" + +#: include/text.php:1145 +msgid "poke" +msgstr "tocar" + +#: include/text.php:1145 +msgid "poked" +msgstr "tocó a" + +#: include/text.php:1146 +msgid "ping" +msgstr "hacer \"ping\"" + +#: include/text.php:1146 +msgid "pinged" +msgstr "hizo \"ping\" a" + +#: include/text.php:1147 +msgid "prod" +msgstr "empujar" + +#: include/text.php:1147 +msgid "prodded" +msgstr "empujó a" + +#: include/text.php:1148 +msgid "slap" +msgstr "abofetear" + +#: include/text.php:1148 +msgid "slapped" +msgstr "abofeteó a" + +#: include/text.php:1149 +msgid "finger" +msgstr "meter dedo" + +#: include/text.php:1149 +msgid "fingered" +msgstr "le metió un dedo a" + +#: include/text.php:1150 +msgid "rebuff" +msgstr "desairar" + +#: include/text.php:1150 +msgid "rebuffed" +msgstr "desairó a" + +#: include/text.php:1164 +msgid "happy" +msgstr "feliz" + +#: include/text.php:1165 +msgid "sad" +msgstr "triste" + +#: include/text.php:1166 +msgid "mellow" +msgstr "sentimental" + +#: include/text.php:1167 +msgid "tired" +msgstr "cansado" + +#: include/text.php:1168 +msgid "perky" +msgstr "alegre" + +#: include/text.php:1169 +msgid "angry" +msgstr "furioso" + +#: include/text.php:1170 +msgid "stupified" +msgstr "estupefacto" + +#: include/text.php:1171 +msgid "puzzled" +msgstr "extrañado" + +#: include/text.php:1172 +msgid "interested" +msgstr "interesado" + +#: include/text.php:1173 +msgid "bitter" +msgstr "rencoroso" + +#: include/text.php:1174 +msgid "cheerful" +msgstr "jovial" + +#: include/text.php:1175 +msgid "alive" +msgstr "vivo" + +#: include/text.php:1176 +msgid "annoyed" +msgstr "enojado" + +#: include/text.php:1177 +msgid "anxious" +msgstr "ansioso" + +#: include/text.php:1178 +msgid "cranky" +msgstr "irritable" + +#: include/text.php:1179 +msgid "disturbed" +msgstr "perturbado" + +#: include/text.php:1180 +msgid "frustrated" +msgstr "frustrado" + +#: include/text.php:1181 +msgid "motivated" +msgstr "motivado" + +#: include/text.php:1182 +msgid "relaxed" +msgstr "relajado" + +#: include/text.php:1183 +msgid "surprised" +msgstr "sorprendido" + +#: include/text.php:1393 mod/videos.php:388 +msgid "View Video" +msgstr "Ver vídeo" + +#: include/text.php:1425 +msgid "bytes" +msgstr "bytes" + +#: include/text.php:1457 include/text.php:1469 +msgid "Click to open/close" +msgstr "Pulsa para abrir/cerrar" + +#: include/text.php:1595 +msgid "View on separate page" +msgstr "Ver en pagina aparte" + +#: include/text.php:1596 +msgid "view on separate page" +msgstr "ver en pagina aparte" + +#: include/text.php:1875 +msgid "activity" +msgstr "Actividad" + +#: include/text.php:1877 mod/content.php:624 object/Item.php:416 +#: object/Item.php:428 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "Comentario" + +#: include/text.php:1878 +msgid "post" +msgstr "Publicación" + +#: include/text.php:2046 +msgid "Item filed" +msgstr "Elemento archivado" + +#: include/Contact.php:437 +msgid "Drop Contact" +msgstr "Eliminar contacto" + +#: include/Contact.php:819 +msgid "Organisation" +msgstr "Organización" + +#: include/Contact.php:822 +msgid "News" +msgstr "Noticias" + +#: include/Contact.php:825 +msgid "Forum" +msgstr "Foro" + +#: include/bbcode.php:419 include/bbcode.php:1178 include/bbcode.php:1179 +msgid "Image/photo" +msgstr "Imagen/Foto" + +#: include/bbcode.php:536 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" + +#: include/bbcode.php:1135 include/bbcode.php:1157 +msgid "$1 wrote:" +msgstr "$1 escribió:" + +#: include/bbcode.php:1187 include/bbcode.php:1188 +msgid "Encrypted content" +msgstr "Contenido cifrado" + +#: include/bbcode.php:1303 +msgid "Invalid source protocol" +msgstr "Protocolo de fuente inválido" + +#: include/bbcode.php:1313 +msgid "Invalid link protocol" +msgstr "Protocolo de enlace inválido" + +#: include/enotify.php:27 +msgid "Friendica Notification" +msgstr "Notificación de Friendica" + +#: include/enotify.php:30 +msgid "Thank You," +msgstr "Gracias," + +#: include/enotify.php:33 +#, php-format +msgid "%s Administrator" +msgstr "%s Administrador" + +#: include/enotify.php:35 +#, php-format +msgid "%1$s, %2$s Administrator" +msgstr "%1$s, %2$s Administrador" + +#: include/enotify.php:73 +#, php-format +msgid "%s " +msgstr "%s " + +#: include/enotify.php:86 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica:Notificación] Nuevo correo recibido de %s" + +#: include/enotify.php:88 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s te ha enviado un mensaje privado desde %2$s." + +#: include/enotify.php:89 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s te ha enviado %2$s." + +#: include/enotify.php:89 +msgid "a private message" +msgstr "un mensaje privado" + +#: include/enotify.php:91 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Por favor, visita %s para ver y/o responder a tus mensajes privados." + +#: include/enotify.php:137 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "%1$s comentó en [url=%2$s]a %3$s[/url]" + +#: include/enotify.php:144 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "%1$s comentó en [url=%2$s] %4$s de %3$s[/url]" + +#: include/enotify.php:152 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +msgstr "%1$s comentó en [url=%2$s] tu %3$s[/url]" + +#: include/enotify.php:162 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Friendica:Notificación] Comentario en la conversación de #%1$d por %2$s" + +#: include/enotify.php:164 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s ha comentado en una conversación/elemento que sigues." + +#: include/enotify.php:167 include/enotify.php:181 include/enotify.php:195 +#: include/enotify.php:209 include/enotify.php:227 include/enotify.php:241 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Por favor, visita %s para ver y/o responder a la conversación." + +#: include/enotify.php:174 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "[Friendica:Notificación] %s publicó en tu muro" + +#: include/enotify.php:176 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s publicó en tu perfil de %2$s" + +#: include/enotify.php:177 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "%1$s publicó en [url=%2$s]tu muro[/url]" + +#: include/enotify.php:188 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica:Notificación] %s te ha nombrado" + +#: include/enotify.php:190 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s te ha nombrado en %2$s" + +#: include/enotify.php:191 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "%1$s [url=%2$s]te nombró[/url]." + +#: include/enotify.php:202 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "[Notificacion Friendica] %s compartio una nueva publicacion" + +#: include/enotify.php:204 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "%1$s compartió un nuevo tema en %2$s" + +#: include/enotify.php:205 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "%1$s [url=%2$s]compartió una publicación[/url]." + +#: include/enotify.php:216 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "[Friendica:Notify] %1$s te dio un toque" + +#: include/enotify.php:218 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s te dio un toque en %2$s" + +#: include/enotify.php:219 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "%1$s [url=%2$s]te dio un toque[/url]." + +#: include/enotify.php:234 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica:Notificación] %s ha etiquetado tu publicación" + +#: include/enotify.php:236 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s ha etiquetado tu publicación en %2$s" + +#: include/enotify.php:237 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "%1$s ha etiquetado [url=%2$s]tu publicación[/url]" + +#: include/enotify.php:248 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica:Notificación] Presentación recibida" + +#: include/enotify.php:250 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Has recibido una presentación de '%1$s' en %2$s" + +#: include/enotify.php:251 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "Has recibido [url=%1$s]una presentación[/url] de %2$s." + +#: include/enotify.php:255 include/enotify.php:298 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Puedes visitar su perfil en %s" + +#: include/enotify.php:257 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Visita %s para aceptar o rechazar la presentación por favor." + +#: include/enotify.php:265 +msgid "[Friendica:Notify] A new person is sharing with you" +msgstr "[Notificación:Friendica] Un nuevo contacto comparte contigo" + +#: include/enotify.php:267 include/enotify.php:268 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "%1$s comparte con tigo en %2$s" + +#: include/enotify.php:274 +msgid "[Friendica:Notify] You have a new follower" +msgstr "[Notificación:Friendica] Tienes un nuevo seguidor" + +#: include/enotify.php:276 include/enotify.php:277 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "Tienes un nuevo seguidor en %2$s : %1$s" + +#: include/enotify.php:288 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "[Friendica:Notificación] Sugerencia de amigo recibida" + +#: include/enotify.php:290 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Has recibido una sugerencia de amigo de '%1$s' en %2$s" + +#: include/enotify.php:291 +#, php-format +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "Has recibido [url=%1$s]una sugerencia de amigo[/url] en %2$s de %3$s." + +#: include/enotify.php:296 +msgid "Name:" +msgstr "Nombre: " + +#: include/enotify.php:297 +msgid "Photo:" +msgstr "Foto: " + +#: include/enotify.php:300 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Visita %s para aceptar o rechazar la sugerencia por favor." + +#: include/enotify.php:308 include/enotify.php:322 +msgid "[Friendica:Notify] Connection accepted" +msgstr "[Notificación:Friendica] Conexión aceptada" + +#: include/enotify.php:310 include/enotify.php:324 +#, php-format +msgid "'%1$s' has accepted your connection request at %2$s" +msgstr "'%1$s' acepto tu consulta de conexión %2$s" + +#: include/enotify.php:311 include/enotify.php:325 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "%2$s hacepto tu [url=%1$s]consulta de conexión[/url]." + +#: include/enotify.php:315 +msgid "" +"You are now mutual friends and may exchange status updates, photos, and " +"email without restriction." +msgstr "Ahora tiene amigos en común y puede intercambiar actualizaciones de estado, fotos y email sin restricción." + +#: include/enotify.php:317 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "Por favor visite %s si desea hacer algún cambio a su relación." + +#: include/enotify.php:329 +#, 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' eligió de aceptarte como fan/hincha lo que restringe algunas formas de comunicación - tales como mensajes privados y algunas interacciones de los perfiles. Si esto es una pagina de celebridad o comunidad, estas configuraciones se adoptaron automáticamente." + +#: include/enotify.php:331 +#, php-format +msgid "" +"'%1$s' may choose to extend this into a two-way or more permissive " +"relationship in the future." +msgstr "'%1$s' puede elegir extender esto en una relación más permisiva o ambidireccional en el futuro." + +#: include/enotify.php:333 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "Por favor visita %s si es preciso de hacer algún cambio a la relación con este contacto." + +#: include/enotify.php:343 +msgid "[Friendica System:Notify] registration request" +msgstr "[Notificacion:Friendica] consulta de registro" + +#: include/enotify.php:345 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "Recibiste una consulta de registro de '%1$s' en %2$s" + +#: include/enotify.php:346 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "Recibiste una [url=%1$s]consulta de registro[/url] from %2$s." + +#: include/enotify.php:350 +#, php-format +msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" +msgstr "Nombre completo:\t%1$s\\nUbicación del sitio:\t%2$s\\nLogin Nombre:\t%3$s (%4$s)" + +#: include/enotify.php:353 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "Por favor visita %s para aprobar o negar la solicitud." + +#: include/message.php:14 include/message.php:168 +msgid "[no subject]" +msgstr "[sin asunto]" + +#: include/message.php:145 include/Photo.php:1075 include/Photo.php:1091 +#: include/Photo.php:1099 include/Photo.php:1124 mod/wall_upload.php:249 +#: mod/item.php:468 +msgid "Wall Photos" +msgstr "Foto del Muro" + +#: include/nav.php:37 mod/navigation.php:21 +msgid "Nothing new here" +msgstr "Nada nuevo por aquí" + +#: include/nav.php:41 mod/navigation.php:25 +msgid "Clear notifications" +msgstr "Limpiar notificaciones" + +#: include/nav.php:80 view/theme/frio/theme.php:245 boot.php:862 +msgid "Logout" +msgstr "Salir" + +#: include/nav.php:80 view/theme/frio/theme.php:245 +msgid "End this session" +msgstr "Cerrar la sesión" + +#: include/nav.php:83 include/identity.php:784 mod/contacts.php:648 +#: mod/contacts.php:844 view/theme/frio/theme.php:248 +msgid "Status" +msgstr "Estado" + +#: include/nav.php:83 include/nav.php:163 view/theme/frio/theme.php:248 +msgid "Your posts and conversations" +msgstr "Tus publicaciones y conversaciones" + +#: include/nav.php:84 include/identity.php:632 include/identity.php:759 +#: include/identity.php:792 mod/newmember.php:20 mod/profperm.php:107 +#: mod/contacts.php:650 mod/contacts.php:852 view/theme/frio/theme.php:249 +msgid "Profile" +msgstr "Perfil" + +#: include/nav.php:84 view/theme/frio/theme.php:249 +msgid "Your profile page" +msgstr "Tu página de perfil" + +#: include/nav.php:85 include/identity.php:800 mod/fbrowser.php:33 +#: view/theme/frio/theme.php:250 +msgid "Photos" +msgstr "Fotografías" + +#: include/nav.php:85 view/theme/frio/theme.php:250 +msgid "Your photos" +msgstr "Tus fotos" + +#: include/nav.php:86 include/identity.php:808 include/identity.php:811 +#: view/theme/frio/theme.php:251 +msgid "Videos" +msgstr "Videos" + +#: include/nav.php:86 view/theme/frio/theme.php:251 +msgid "Your videos" +msgstr "Tus videos" + +#: include/nav.php:87 include/nav.php:151 include/identity.php:820 +#: include/identity.php:831 mod/cal.php:272 mod/events.php:377 +#: view/theme/frio/theme.php:252 view/theme/frio/theme.php:256 +msgid "Events" +msgstr "Eventos" + +#: include/nav.php:87 view/theme/frio/theme.php:252 +msgid "Your events" +msgstr "Tus eventos" + +#: include/nav.php:88 +msgid "Personal notes" +msgstr "Notas personales" + +#: include/nav.php:88 +msgid "Your personal notes" +msgstr "Tus notas personales" + +#: include/nav.php:97 mod/bookmarklet.php:14 boot.php:863 +msgid "Login" +msgstr "Acceder" + +#: include/nav.php:97 +msgid "Sign in" +msgstr "Date de alta" + +#: include/nav.php:107 +msgid "Home Page" +msgstr "Página de inicio" + +#: include/nav.php:111 mod/register.php:291 boot.php:839 +msgid "Register" +msgstr "Registrarse" + +#: include/nav.php:111 +msgid "Create an account" +msgstr "Crea una cuenta" + +#: include/nav.php:117 mod/help.php:50 view/theme/vier/theme.php:299 +msgid "Help" +msgstr "Ayuda" + +#: include/nav.php:117 +msgid "Help and documentation" +msgstr "Ayuda y documentación" + +#: include/nav.php:121 +msgid "Apps" +msgstr "Aplicaciones" + +#: include/nav.php:121 +msgid "Addon applications, utilities, games" +msgstr "Aplicaciones, utilidades, juegos" + +#: include/nav.php:125 +msgid "Search site content" +msgstr " Busca contenido en la página" + +#: include/nav.php:145 include/nav.php:147 mod/community.php:32 msgid "Community" msgstr "Comunidad" -#: include/nav.php:143 +#: include/nav.php:145 msgid "Conversations on this site" msgstr "Conversaciones en este sitio" -#: include/nav.php:145 +#: include/nav.php:147 msgid "Conversations on the network" msgstr "Conversaciones en la red" -#: include/nav.php:152 +#: include/nav.php:151 include/identity.php:823 include/identity.php:834 +#: view/theme/frio/theme.php:256 +msgid "Events and Calendar" +msgstr "Eventos y Calendario" + +#: include/nav.php:154 msgid "Directory" msgstr "Directorio" -#: include/nav.php:152 +#: include/nav.php:154 msgid "People directory" msgstr "Directorio de usuarios" -#: include/nav.php:154 +#: include/nav.php:156 msgid "Information" msgstr "Información" -#: include/nav.php:154 +#: include/nav.php:156 msgid "Information about this friendica instance" msgstr "Información sobre esta instancia de friendica" -#: include/nav.php:158 view/theme/frio/theme.php:253 +#: include/nav.php:160 view/theme/frio/theme.php:255 msgid "Conversations from your friends" msgstr "Conversaciones de tus amigos" -#: include/nav.php:159 +#: include/nav.php:161 msgid "Network Reset" msgstr "Reseteo de la red" -#: include/nav.php:159 +#: include/nav.php:161 msgid "Load Network page with no filters" msgstr "Cargar pagina de redes sin filtros" -#: include/nav.php:166 +#: include/nav.php:168 msgid "Friend Requests" msgstr "Solicitudes de amistad" -#: include/nav.php:169 mod/notifications.php:96 +#: include/nav.php:171 mod/notifications.php:98 msgid "Notifications" msgstr "Notificaciones" -#: include/nav.php:170 +#: include/nav.php:172 msgid "See all notifications" msgstr "Ver todas las notificaciones" -#: include/nav.php:171 mod/settings.php:906 +#: include/nav.php:173 mod/settings.php:907 msgid "Mark as seen" msgstr "Marcar como leído" -#: include/nav.php:171 +#: include/nav.php:173 msgid "Mark all system notifications seen" msgstr "Marcar todas las notificaciones del sistema como leídas" -#: include/nav.php:175 mod/message.php:179 view/theme/frio/theme.php:255 +#: include/nav.php:177 mod/message.php:181 view/theme/frio/theme.php:257 msgid "Messages" msgstr "Mensajes" -#: include/nav.php:175 view/theme/frio/theme.php:255 +#: include/nav.php:177 view/theme/frio/theme.php:257 msgid "Private mail" msgstr "Correo privado" -#: include/nav.php:176 +#: include/nav.php:178 msgid "Inbox" msgstr "Entrada" -#: include/nav.php:177 +#: include/nav.php:179 msgid "Outbox" msgstr "Enviados" -#: include/nav.php:178 mod/message.php:16 +#: include/nav.php:180 mod/message.php:18 msgid "New Message" msgstr "Nuevo mensaje" -#: include/nav.php:181 +#: include/nav.php:183 msgid "Manage" msgstr "Administrar" -#: include/nav.php:181 +#: include/nav.php:183 msgid "Manage other pages" msgstr "Administrar otras páginas" -#: include/nav.php:184 mod/settings.php:81 +#: include/nav.php:186 mod/settings.php:83 msgid "Delegations" msgstr "Delegaciones" -#: include/nav.php:184 mod/delegate.php:130 +#: include/nav.php:186 mod/delegate.php:132 msgid "Delegate Page Management" msgstr "Delegar la administración de la página" -#: include/nav.php:186 mod/admin.php:1533 mod/admin.php:1809 -#: mod/newmember.php:22 mod/settings.php:111 view/theme/frio/theme.php:256 +#: include/nav.php:188 mod/newmember.php:15 mod/admin.php:1624 +#: mod/admin.php:1900 mod/settings.php:113 view/theme/frio/theme.php:258 msgid "Settings" msgstr "Configuración" -#: include/nav.php:186 view/theme/frio/theme.php:256 +#: include/nav.php:188 view/theme/frio/theme.php:258 msgid "Account settings" msgstr "Configuración de tu cuenta" -#: include/nav.php:189 +#: include/nav.php:191 include/identity.php:296 +msgid "Profiles" +msgstr "Perfiles" + +#: include/nav.php:191 msgid "Manage/Edit Profiles" msgstr "Manejar/editar Perfiles" -#: include/nav.php:192 view/theme/frio/theme.php:257 +#: include/nav.php:194 view/theme/frio/theme.php:259 msgid "Manage/edit friends and contacts" msgstr "Administrar/editar amigos y contactos" -#: include/nav.php:197 mod/admin.php:192 +#: include/nav.php:199 mod/admin.php:197 msgid "Admin" msgstr "Admin" -#: include/nav.php:197 +#: include/nav.php:199 msgid "Site setup and configuration" msgstr "Opciones y configuración del sitio" -#: include/nav.php:200 +#: include/nav.php:202 msgid "Navigation" msgstr "Navegación" -#: include/nav.php:200 +#: include/nav.php:202 msgid "Site map" msgstr "Mapa del sitio" -#: include/network.php:622 +#: include/network.php:687 msgid "view full size" msgstr "Ver a tamaño completo" -#: include/oembed.php:266 +#: include/oembed.php:256 msgid "Embedded content" msgstr "Contenido integrado" -#: include/oembed.php:274 +#: include/oembed.php:264 msgid "Embedding disabled" msgstr "Contenido incrustrado desabilitado" -#: include/ostatus.php:1832 +#: include/uimport.php:85 +msgid "Error decoding account file" +msgstr "Error decodificando el archivo de cuenta" + +#: include/uimport.php:91 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Error! No hay datos de versión en el archivo! ¿Es esto de una cuenta friendica? " + +#: include/uimport.php:108 include/uimport.php:119 +msgid "Error! Cannot check nickname" +msgstr "Error! No puedo consultar el apodo" + +#: include/uimport.php:112 include/uimport.php:123 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "La cuenta '%s' ya existe en este servidor!" + +#: include/uimport.php:145 +msgid "User creation error" +msgstr "Error al crear la cuenta" + +#: include/uimport.php:166 +msgid "User profile creation error" +msgstr "Error de creación del perfil de la cuenta" + +#: include/uimport.php:215 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d contactos no encontrado" +msgstr[1] "%d contactos no importado" + +#: include/uimport.php:281 +msgid "Done. You can now login with your username and password" +msgstr "Hecho. Ahora podes ingresar con tu nombre de cuenta y la contraseña." + +#: include/user.php:39 mod/settings.php:377 +msgid "Passwords do not match. Password unchanged." +msgstr "Las contraseñas no coinciden. La contraseña no ha sido modificada." + +#: include/user.php:48 +msgid "An invitation is required." +msgstr "Se necesita invitación." + +#: include/user.php:53 +msgid "Invitation could not be verified." +msgstr "No se puede verificar la invitación." + +#: include/user.php:61 +msgid "Invalid OpenID url" +msgstr "Dirección OpenID no válida" + +#: include/user.php:82 +msgid "Please enter the required information." +msgstr "Por favor, introduce la información necesaria." + +#: include/user.php:96 +msgid "Please use a shorter name." +msgstr "Por favor, usa un nombre más corto." + +#: include/user.php:98 +msgid "Name too short." +msgstr "El nombre es demasiado corto." + +#: include/user.php:106 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "No parece que ese sea tu nombre completo." + +#: include/user.php:111 +msgid "Your email domain is not among those allowed on this site." +msgstr "Tu dominio de correo no se encuentra entre los permitidos en este sitio." + +#: include/user.php:114 +msgid "Not a valid email address." +msgstr "No es una dirección de correo electrónico válida." + +#: include/user.php:127 +msgid "Cannot use that email." +msgstr "No se puede utilizar este correo electrónico." + +#: include/user.php:133 +msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." +msgstr "El apodo solo puede contener \"a-z\", \"0-9\" y \"_\"." + +#: include/user.php:140 include/user.php:228 +msgid "Nickname is already registered. Please choose another." +msgstr "Apodo ya registrado. Por favor, elije otro." + +#: include/user.php:150 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "El apodo ya ha sido registrado alguna vez y no puede volver a usarse. Por favor, utiliza otro." + +#: include/user.php:166 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "ERROR GRAVE: La generación de claves de seguridad ha fallado." + +#: include/user.php:214 +msgid "An error occurred during registration. Please try again." +msgstr "Se produjo un error durante el registro. Por favor, inténtalo de nuevo." + +#: include/user.php:237 view/theme/duepuntozero/config.php:46 +msgid "default" +msgstr "predeterminado" + +#: include/user.php:247 +msgid "An error occurred creating your default profile. Please try again." +msgstr "Error al crear tu perfil predeterminado. Por favor, inténtalo de nuevo." + +#: include/user.php:260 include/user.php:264 include/profile_selectors.php:42 +msgid "Friends" +msgstr "Amigos" + +#: include/user.php:306 include/user.php:314 include/user.php:322 +#: include/api.php:3697 mod/photos.php:73 mod/photos.php:189 +#: mod/photos.php:776 mod/photos.php:1258 mod/photos.php:1279 +#: mod/photos.php:1865 mod/profile_photo.php:74 mod/profile_photo.php:82 +#: mod/profile_photo.php:90 mod/profile_photo.php:214 +#: mod/profile_photo.php:309 mod/profile_photo.php:319 +msgid "Profile Photos" +msgstr "Foto del perfil" + +#: include/user.php:397 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" +"\t" +msgstr "\n\t\tEstimado %1$s,\n\t\t\tGracias por registrarse en %2$s. Su cuenta está pendiente de aprobación por el administrador.\n\t" + +#: include/user.php:407 +#, php-format +msgid "Registration at %s" +msgstr "Registro en %s" + +#: include/user.php:417 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t" +msgstr "\n\t\tEstimado %1$s,\n\t\t\tGracias por registrar en %2$s. Su cuenta ha sido creada.\n\t" + +#: include/user.php:421 +#, php-format +msgid "" +"\n" +"\t\tThe login details are as follows:\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t%1$s\n" +"\t\t\tPassword:\t%5$s\n" +"\n" +"\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\tin.\n" +"\n" +"\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\tthan that.\n" +"\n" +"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\tIf you are new and do not know anybody here, they may help\n" +"\t\tyou to make some new and interesting friends.\n" +"\n" +"\n" +"\t\tThank you and welcome to %2$s." +msgstr "\n\t\t\tLos detalles de acceso son las siguientes:\n\n\t\t\tDirección del sitio:\t%3$s\n\t\t\tNombre de la cuenta:\t\t%1$s\n\t\t\tContraseña:\t\t%5$s\n\n\t\t\tPodrá cambiar la contraseña desde la pagina de configuración de su cuenta después de acceder a la misma\n\t\t\ten.\n\n\t\t\tPor favor tome unos minutos para revisar las opciones demás de la cuenta en dicha pagina de configuración.\n\n\t\t\tTambién podrá agregar informaciones adicionales a su pagina de perfil predeterminado. \n\t\t\t(en la pagina \"Perfiles\") para que otras personas pueden encontrarlo fácilmente.\n\n\t\t\tRecomendamos que elija un nombre apropiado, agregando una imagen de perfil,\n\t\t\tagregando algunas palabras claves de la cuenta (muy útil para hacer nuevos amigos) - y \n\t\t\tquizás el país en donde vive; si no quiere ser mas especifico\n\t\t\tque eso.\n\n\t\t\tRespetamos absolutamente su derecho a la privacidad y ninguno de estos detalles es necesario.\n\t\t\tSi eres nuevo aquí y no conoces a nadie, estos detalles pueden ayudarte\n\t\t\tpara hacer nuevas e interesantes amistades.\n\n\t\t\tGracias y bienvenido a %2$s." + +#: include/user.php:453 mod/admin.php:1314 +#, php-format +msgid "Registration details for %s" +msgstr "Detalles de registro para %s" + +#: include/api.php:1102 +#, php-format +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "Limite diario de publicaciones %d alcanzado. La publicación fue rechazada." + +#: include/api.php:1123 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." +msgstr "Limite semanal de publicaciones %d alcanzado. La publicación fue rechazada." + +#: include/api.php:1144 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "Limite mensual de publicaciones %d alcanzado. La publicación fue rechazada." + +#: include/dba.php:57 include/dba_pdo.php:75 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "No se puede encontrar información DNS para la base de datos del servidor '%s'" + +#: include/dbstructure.php:25 +msgid "There are no tables on MyISAM." +msgstr "" + +#: include/dbstructure.php:66 +#, php-format +msgid "" +"\n" +"\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." +msgstr "\n\t\t\tLos desarolladores de friendica publicaron una actualización %s recientemente\n\t\t\tpero cuando intento de instalarla,algo salio terriblemente mal.\n\t\t\tEsto necesita ser arreglado pronto y no puedo hacerlo solo. Por favor contacta\n\t\t\tlos desarolladores de friendica si no me podes ayudar por ti solo. Mi base de datos puede estar invalido." + +#: include/dbstructure.php:71 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "El mensaje de error es\n[pre]%s[/pre]" + +#: include/dbstructure.php:195 +#, php-format +msgid "" +"\n" +"Error %d occurred during database update:\n" +"%s\n" +msgstr "" + +#: include/dbstructure.php:198 +msgid "Errors encountered performing database changes: " +msgstr "" + +#: include/dbstructure.php:206 +msgid ": Database update" +msgstr "" + +#: include/dbstructure.php:438 +#, php-format +msgid "%s: updating %s table." +msgstr "" + +#: include/diaspora.php:2214 +msgid "Sharing notification from Diaspora network" +msgstr "Compartir notificaciones con la red Diaspora*" + +#: include/diaspora.php:3234 +msgid "Attachments:" +msgstr "Archivos adjuntos:" + +#: include/identity.php:45 +msgid "Requested account is not available." +msgstr "La cuenta solicitada no está disponible." + +#: include/identity.php:54 mod/profile.php:22 +msgid "Requested profile is not available." +msgstr "El perfil solicitado no está disponible." + +#: include/identity.php:98 include/identity.php:325 include/identity.php:755 +msgid "Edit profile" +msgstr "Editar perfil" + +#: include/identity.php:265 +msgid "Atom feed" +msgstr "Atom feed" + +#: include/identity.php:296 +msgid "Manage/edit profiles" +msgstr "Administrar/editar perfiles" + +#: include/identity.php:301 include/identity.php:327 mod/profiles.php:790 +msgid "Change profile photo" +msgstr "Cambiar foto del perfil" + +#: include/identity.php:302 mod/profiles.php:791 +msgid "Create New Profile" +msgstr "Crear nuevo perfil" + +#: include/identity.php:312 mod/profiles.php:780 +msgid "Profile Image" +msgstr "Imagen del Perfil" + +#: include/identity.php:315 mod/profiles.php:782 +msgid "visible to everybody" +msgstr "Visible para todos" + +#: include/identity.php:316 mod/profiles.php:687 mod/profiles.php:783 +msgid "Edit visibility" +msgstr "Editar visibilidad" + +#: include/identity.php:344 include/identity.php:644 mod/directory.php:137 +#: mod/notifications.php:252 +msgid "Gender:" +msgstr "Género:" + +#: include/identity.php:347 include/identity.php:665 mod/directory.php:139 +msgid "Status:" +msgstr "Estado:" + +#: include/identity.php:349 include/identity.php:682 mod/directory.php:141 +msgid "Homepage:" +msgstr "Página de inicio:" + +#: include/identity.php:351 include/identity.php:702 mod/directory.php:143 +#: mod/notifications.php:248 mod/contacts.php:643 +msgid "About:" +msgstr "Acerca de:" + +#: include/identity.php:353 mod/contacts.php:641 +msgid "XMPP:" +msgstr "XMPP:" + +#: include/identity.php:439 mod/notifications.php:260 mod/contacts.php:58 +msgid "Network:" +msgstr "Red:" + +#: include/identity.php:468 include/identity.php:558 +msgid "g A l F d" +msgstr "g A l F d" + +#: include/identity.php:469 include/identity.php:559 +msgid "F d" +msgstr "F d" + +#: include/identity.php:520 include/identity.php:609 +msgid "[today]" +msgstr "[hoy]" + +#: include/identity.php:532 +msgid "Birthday Reminders" +msgstr "Recordatorios de cumpleaños" + +#: include/identity.php:533 +msgid "Birthdays this week:" +msgstr "Cumpleaños esta semana:" + +#: include/identity.php:595 +msgid "[No description]" +msgstr "[Sin descripción]" + +#: include/identity.php:620 +msgid "Event Reminders" +msgstr "Recordatorios de eventos" + +#: include/identity.php:621 +msgid "Events this week:" +msgstr "Eventos de esta semana:" + +#: include/identity.php:641 mod/settings.php:1287 +msgid "Full Name:" +msgstr "Nombre completo:" + +#: include/identity.php:648 +msgid "j F, Y" +msgstr "j F, Y" + +#: include/identity.php:649 +msgid "j F" +msgstr "j F" + +#: include/identity.php:661 +msgid "Age:" +msgstr "Edad:" + +#: include/identity.php:674 +#, php-format +msgid "for %1$d %2$s" +msgstr "por %1$d %2$s" + +#: include/identity.php:678 mod/profiles.php:706 +msgid "Sexual Preference:" +msgstr "Preferencia sexual:" + +#: include/identity.php:686 mod/profiles.php:733 +msgid "Hometown:" +msgstr "Ciudad de origen:" + +#: include/identity.php:690 mod/follow.php:139 mod/notifications.php:250 +#: mod/contacts.php:645 +msgid "Tags:" +msgstr "Etiquetas:" + +#: include/identity.php:694 mod/profiles.php:734 +msgid "Political Views:" +msgstr "Ideas políticas:" + +#: include/identity.php:698 +msgid "Religion:" +msgstr "Religión:" + +#: include/identity.php:706 +msgid "Hobbies/Interests:" +msgstr "Aficiones/Intereses:" + +#: include/identity.php:710 mod/profiles.php:738 +msgid "Likes:" +msgstr "Me gusta:" + +#: include/identity.php:714 mod/profiles.php:739 +msgid "Dislikes:" +msgstr "No me gusta:" + +#: include/identity.php:718 +msgid "Contact information and Social Networks:" +msgstr "Información de contacto y Redes sociales:" + +#: include/identity.php:722 +msgid "Musical interests:" +msgstr "Intereses musicales:" + +#: include/identity.php:726 +msgid "Books, literature:" +msgstr "Libros, literatura:" + +#: include/identity.php:730 +msgid "Television:" +msgstr "Televisión:" + +#: include/identity.php:734 +msgid "Film/dance/culture/entertainment:" +msgstr "Películas/baile/cultura/entretenimiento:" + +#: include/identity.php:738 +msgid "Love/Romance:" +msgstr "Amor/Romance:" + +#: include/identity.php:742 +msgid "Work/employment:" +msgstr "Trabajo/ocupación:" + +#: include/identity.php:746 +msgid "School/education:" +msgstr "Escuela/estudios:" + +#: include/identity.php:751 +msgid "Forums:" +msgstr "Foros:" + +#: include/identity.php:760 mod/events.php:509 +msgid "Basic" +msgstr "Basic" + +#: include/identity.php:761 mod/events.php:510 mod/admin.php:1065 +#: mod/contacts.php:881 +msgid "Advanced" +msgstr "Avanzado" + +#: include/identity.php:787 mod/follow.php:147 mod/contacts.php:847 +msgid "Status Messages and Posts" +msgstr "Mensajes de Estado y Publicaciones" + +#: include/identity.php:795 mod/contacts.php:855 +msgid "Profile Details" +msgstr "Detalles del Perfil" + +#: include/identity.php:803 mod/photos.php:95 +msgid "Photo Albums" +msgstr "Álbum de Fotos" + +#: include/identity.php:842 mod/notes.php:49 +msgid "Personal Notes" +msgstr "Notas personales" + +#: include/identity.php:845 +msgid "Only You Can See This" +msgstr "Únicamente tú puedes ver esto" + +#: include/items.php:1736 mod/dfrn_confirm.php:738 mod/dfrn_request.php:759 +msgid "[Name Withheld]" +msgstr "[Nombre oculto]" + +#: include/items.php:2121 mod/display.php:105 mod/display.php:280 +#: mod/display.php:485 mod/notice.php:17 mod/viewsrc.php:16 mod/admin.php:248 +#: mod/admin.php:1571 mod/admin.php:1822 +msgid "Item not found." +msgstr "Elemento no encontrado." + +#: include/items.php:2160 +msgid "Do you really want to delete this item?" +msgstr "¿Realmente quieres borrar este objeto?" + +#: include/items.php:2162 mod/api.php:107 mod/follow.php:115 +#: mod/message.php:208 mod/register.php:247 mod/suggest.php:31 +#: mod/dfrn_request.php:880 mod/contacts.php:455 mod/profiles.php:643 +#: mod/profiles.php:646 mod/profiles.php:673 mod/settings.php:1172 +#: mod/settings.php:1178 mod/settings.php:1185 mod/settings.php:1189 +#: mod/settings.php:1194 mod/settings.php:1199 mod/settings.php:1204 +#: mod/settings.php:1209 mod/settings.php:1235 mod/settings.php:1236 +#: mod/settings.php:1237 mod/settings.php:1238 mod/settings.php:1239 +msgid "Yes" +msgstr "Sí" + +#: include/items.php:2309 mod/allfriends.php:14 mod/api.php:28 mod/api.php:33 +#: mod/attach.php:35 mod/cal.php:301 mod/common.php:20 mod/crepair.php:105 +#: mod/delegate.php:14 mod/dfrn_confirm.php:63 mod/dirfind.php:15 +#: mod/display.php:482 mod/editpost.php:12 mod/events.php:188 +#: mod/follow.php:13 mod/follow.php:76 mod/follow.php:160 mod/fsuggest.php:80 +#: mod/group.php:20 mod/invite.php:17 mod/invite.php:105 mod/manage.php:103 +#: mod/message.php:48 mod/message.php:173 mod/mood.php:116 mod/network.php:7 +#: mod/nogroup.php:29 mod/notes.php:25 mod/notifications.php:73 +#: mod/ostatus_subscribe.php:11 mod/photos.php:168 mod/photos.php:1111 +#: mod/poke.php:155 mod/register.php:44 mod/repair_ostatus.php:11 +#: mod/suggest.php:60 mod/viewcontacts.php:49 mod/wall_attach.php:69 +#: mod/wall_attach.php:72 mod/wall_upload.php:101 mod/wall_upload.php:104 +#: mod/wallmessage.php:11 mod/wallmessage.php:35 mod/wallmessage.php:75 +#: mod/wallmessage.php:99 mod/item.php:197 mod/item.php:209 mod/regmod.php:106 +#: mod/uimport.php:26 mod/contacts.php:363 mod/profile_photo.php:19 +#: mod/profile_photo.php:179 mod/profile_photo.php:190 +#: mod/profile_photo.php:203 mod/profiles.php:172 mod/profiles.php:610 +#: mod/settings.php:24 mod/settings.php:132 mod/settings.php:669 index.php:410 +msgid "Permission denied." +msgstr "Permiso denegado." + +#: include/items.php:2426 +msgid "Archives" +msgstr "Archivos" + +#: include/ostatus.php:1962 #, php-format msgid "%s is now following %s." msgstr "%s sigue ahora a %s." -#: include/ostatus.php:1833 +#: include/ostatus.php:1963 msgid "following" msgstr "siguiendo" -#: include/ostatus.php:1836 +#: include/ostatus.php:1966 #, php-format msgid "%s stopped following %s." msgstr "%s dejó de seguir a %s." -#: include/ostatus.php:1837 +#: include/ostatus.php:1967 msgid "stopped following" msgstr "dejó de seguir" -#: include/photos.php:57 include/photos.php:67 mod/fbrowser.php:40 -#: mod/fbrowser.php:61 mod/photos.php:182 mod/photos.php:1106 -#: mod/photos.php:1231 mod/photos.php:1252 mod/photos.php:1817 -#: mod/photos.php:1829 -msgid "Contact Photos" -msgstr "Foto del contacto" - -#: include/plugin.php:530 include/plugin.php:532 +#: include/plugin.php:531 include/plugin.php:533 msgid "Click here to upgrade." msgstr "Pulsa aquí para actualizar." -#: include/plugin.php:538 +#: include/plugin.php:539 msgid "This action exceeds the limits set by your subscription plan." msgstr "Esta acción excede los límites permitidos por tu subscripción." -#: include/plugin.php:543 +#: include/plugin.php:544 msgid "This action is not available under your subscription plan." msgstr "Esta acción no está permitida para tu subscripción." @@ -2665,10 +3045,6 @@ msgstr "Infiel" msgid "Sex Addict" msgstr "Adicto al sexo" -#: include/profile_selectors.php:42 include/user.php:280 include/user.php:284 -msgid "Friends" -msgstr "Amigos" - #: include/profile_selectors.php:42 msgid "Friends/Benefits" msgstr "Amigos con beneficios" @@ -2753,1013 +3129,3470 @@ msgstr "No te importa" msgid "Ask me" msgstr "Pregúntame" -#: include/security.php:61 -msgid "Welcome " -msgstr "Bienvenido " +#: mod/allfriends.php:48 +msgid "No friends to display." +msgstr "No hay amigos para mostrar." -#: include/security.php:62 -msgid "Please upload a profile photo." -msgstr "Por favor sube una foto para tu perfil." +#: mod/api.php:78 mod/api.php:104 +msgid "Authorize application connection" +msgstr "Autorizar la conexión de la aplicación" -#: include/security.php:65 -msgid "Welcome back " -msgstr "Bienvenido de nuevo " +#: mod/api.php:79 +msgid "Return to your app and insert this Securty Code:" +msgstr "Regresa a tu aplicación e introduce este código de seguridad:" -#: include/security.php:429 +#: mod/api.php:91 +msgid "Please login to continue." +msgstr "Inicia sesión para continuar." + +#: mod/api.php:106 msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "La ficha de seguridad no es correcta. Seguramente haya ocurrido por haber dejado el formulario abierto demasiado tiempo (>3 horas) antes de enviarlo." - -#: include/text.php:307 -msgid "newer" -msgstr "más nuevo" - -#: include/text.php:308 -msgid "older" -msgstr "más antiguo" - -#: include/text.php:313 -msgid "first" -msgstr "primera" - -#: include/text.php:314 -msgid "prev" -msgstr "ant." - -#: include/text.php:348 -msgid "next" -msgstr "sig." - -#: include/text.php:349 -msgid "last" -msgstr "última" - -#: include/text.php:403 -msgid "Loading more entries..." -msgstr "Cargar mas entradas .." - -#: include/text.php:404 -msgid "The end" -msgstr "El fin" - -#: include/text.php:889 -msgid "No contacts" -msgstr "Sin contactos" - -#: include/text.php:914 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d Contacto" -msgstr[1] "%d Contactos" - -#: include/text.php:927 -msgid "View Contacts" -msgstr "Ver contactos" - -#: include/text.php:1015 mod/editpost.php:99 mod/filer.php:31 mod/notes.php:62 -msgid "Save" -msgstr "Guardar" - -#: include/text.php:1078 -msgid "poke" -msgstr "tocar" - -#: include/text.php:1078 -msgid "poked" -msgstr "tocó a" - -#: include/text.php:1079 -msgid "ping" -msgstr "hacer \"ping\"" - -#: include/text.php:1079 -msgid "pinged" -msgstr "hizo \"ping\" a" - -#: include/text.php:1080 -msgid "prod" -msgstr "empujar" - -#: include/text.php:1080 -msgid "prodded" -msgstr "empujó a" - -#: include/text.php:1081 -msgid "slap" -msgstr "abofetear" - -#: include/text.php:1081 -msgid "slapped" -msgstr "abofeteó a" - -#: include/text.php:1082 -msgid "finger" -msgstr "meter dedo" - -#: include/text.php:1082 -msgid "fingered" -msgstr "le metió un dedo a" - -#: include/text.php:1083 -msgid "rebuff" -msgstr "desairar" - -#: include/text.php:1083 -msgid "rebuffed" -msgstr "desairó a" - -#: include/text.php:1097 -msgid "happy" -msgstr "feliz" - -#: include/text.php:1098 -msgid "sad" -msgstr "triste" - -#: include/text.php:1099 -msgid "mellow" -msgstr "sentimental" - -#: include/text.php:1100 -msgid "tired" -msgstr "cansado" - -#: include/text.php:1101 -msgid "perky" -msgstr "alegre" - -#: include/text.php:1102 -msgid "angry" -msgstr "furioso" - -#: include/text.php:1103 -msgid "stupified" -msgstr "estupefacto" - -#: include/text.php:1104 -msgid "puzzled" -msgstr "extrañado" - -#: include/text.php:1105 -msgid "interested" -msgstr "interesado" - -#: include/text.php:1106 -msgid "bitter" -msgstr "rencoroso" - -#: include/text.php:1107 -msgid "cheerful" -msgstr "jovial" - -#: include/text.php:1108 -msgid "alive" -msgstr "vivo" - -#: include/text.php:1109 -msgid "annoyed" -msgstr "enojado" - -#: include/text.php:1110 -msgid "anxious" -msgstr "ansioso" - -#: include/text.php:1111 -msgid "cranky" -msgstr "irritable" - -#: include/text.php:1112 -msgid "disturbed" -msgstr "perturbado" - -#: include/text.php:1113 -msgid "frustrated" -msgstr "frustrado" - -#: include/text.php:1114 -msgid "motivated" -msgstr "motivado" - -#: include/text.php:1115 -msgid "relaxed" -msgstr "relajado" - -#: include/text.php:1116 -msgid "surprised" -msgstr "sorprendido" - -#: include/text.php:1326 mod/videos.php:384 -msgid "View Video" -msgstr "Ver vídeo" - -#: include/text.php:1358 -msgid "bytes" -msgstr "bytes" - -#: include/text.php:1390 include/text.php:1402 -msgid "Click to open/close" -msgstr "Pulsa para abrir/cerrar" - -#: include/text.php:1528 -msgid "View on separate page" -msgstr "Ver en pagina aparte" - -#: include/text.php:1529 -msgid "view on separate page" -msgstr "ver en pagina aparte" - -#: include/text.php:1808 -msgid "activity" -msgstr "Actividad" - -#: include/text.php:1810 mod/content.php:623 object/Item.php:419 -#: object/Item.php:431 -msgid "comment" -msgid_plural "comments" -msgstr[0] "" -msgstr[1] "Comentario" - -#: include/text.php:1811 -msgid "post" -msgstr "Publicación" - -#: include/text.php:1979 -msgid "Item filed" -msgstr "Elemento archivado" - -#: include/uimport.php:91 -msgid "Error decoding account file" -msgstr "Error decodificando el archivo de cuenta" - -#: include/uimport.php:97 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Error! No hay datos de versión en el archivo! ¿Es esto de una cuenta friendica? " - -#: include/uimport.php:113 include/uimport.php:124 -msgid "Error! Cannot check nickname" -msgstr "Error! No puedo consultar el apodo" - -#: include/uimport.php:117 include/uimport.php:128 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "La cuenta '%s' ya existe en este servidor!" - -#: include/uimport.php:150 -msgid "User creation error" -msgstr "Error al crear la cuenta" - -#: include/uimport.php:170 -msgid "User profile creation error" -msgstr "Error de creación del perfil de la cuenta" - -#: include/uimport.php:219 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d contactos no encontrado" -msgstr[1] "%d contactos no importado" - -#: include/uimport.php:289 -msgid "Done. You can now login with your username and password" -msgstr "Hecho. Ahora podes ingresar con tu nombre de cuenta y la contraseña." - -#: include/user.php:39 mod/settings.php:375 -msgid "Passwords do not match. Password unchanged." -msgstr "Las contraseñas no coinciden. La contraseña no ha sido modificada." - -#: include/user.php:48 -msgid "An invitation is required." -msgstr "Se necesita invitación." - -#: include/user.php:53 -msgid "Invitation could not be verified." -msgstr "No se puede verificar la invitación." - -#: include/user.php:61 -msgid "Invalid OpenID url" -msgstr "Dirección OpenID no válida" - -#: include/user.php:82 -msgid "Please enter the required information." -msgstr "Por favor, introduce la información necesaria." - -#: include/user.php:96 -msgid "Please use a shorter name." -msgstr "Por favor, usa un nombre más corto." - -#: include/user.php:98 -msgid "Name too short." -msgstr "El nombre es demasiado corto." - -#: include/user.php:113 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "No parece que ese sea tu nombre completo." - -#: include/user.php:118 -msgid "Your email domain is not among those allowed on this site." -msgstr "Tu dominio de correo no se encuentra entre los permitidos en este sitio." - -#: include/user.php:121 -msgid "Not a valid email address." -msgstr "No es una dirección de correo electrónico válida." - -#: include/user.php:134 -msgid "Cannot use that email." -msgstr "No se puede utilizar este correo electrónico." - -#: include/user.php:140 -msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." -msgstr "El apodo solo puede contener \"a-z\", \"0-9\" y \"_\"." - -#: include/user.php:147 include/user.php:245 -msgid "Nickname is already registered. Please choose another." -msgstr "Apodo ya registrado. Por favor, elije otro." - -#: include/user.php:157 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "El apodo ya ha sido registrado alguna vez y no puede volver a usarse. Por favor, utiliza otro." - -#: include/user.php:173 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "ERROR GRAVE: La generación de claves de seguridad ha fallado." - -#: include/user.php:231 -msgid "An error occurred during registration. Please try again." -msgstr "Se produjo un error durante el registro. Por favor, inténtalo de nuevo." - -#: include/user.php:256 view/theme/duepuntozero/config.php:43 -msgid "default" -msgstr "predeterminado" - -#: include/user.php:266 -msgid "An error occurred creating your default profile. Please try again." -msgstr "Error al crear tu perfil predeterminado. Por favor, inténtalo de nuevo." - -#: include/user.php:326 include/user.php:334 include/user.php:342 -#: mod/photos.php:68 mod/photos.php:182 mod/photos.php:768 mod/photos.php:1231 -#: mod/photos.php:1252 mod/photos.php:1839 mod/profile_photo.php:74 -#: mod/profile_photo.php:82 mod/profile_photo.php:90 mod/profile_photo.php:215 -#: mod/profile_photo.php:310 mod/profile_photo.php:320 -msgid "Profile Photos" -msgstr "Foto del perfil" - -#: include/user.php:417 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" -"\t" -msgstr "\n\t\tEstimado %1$s,\n\t\t\tGracias por registrarse en %2$s. Su cuenta está pendiente de aprobación por el administrador.\n\t" - -#: include/user.php:427 -#, php-format -msgid "Registration at %s" -msgstr "Registro en %s" - -#: include/user.php:437 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t" -msgstr "\n\t\tEstimado %1$s,\n\t\t\tGracias por registrar en %2$s. Su cuenta ha sido creada.\n\t" - -#: include/user.php:441 -#, php-format -msgid "" -"\n" -"\t\tThe login details are as follows:\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t%1$s\n" -"\t\t\tPassword:\t%5$s\n" -"\n" -"\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\tin.\n" -"\n" -"\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\tthan that.\n" -"\n" -"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\tIf you are new and do not know anybody here, they may help\n" -"\t\tyou to make some new and interesting friends.\n" -"\n" -"\n" -"\t\tThank you and welcome to %2$s." -msgstr "\n\t\t\tLos detalles de acceso son las siguientes:\n\n\t\t\tDirección del sitio:\t%3$s\n\t\t\tNombre de la cuenta:\t\t%1$s\n\t\t\tContraseña:\t\t%5$s\n\n\t\t\tPodrá cambiar la contraseña desde la pagina de configuración de su cuenta después de acceder a la misma\n\t\t\ten.\n\n\t\t\tPor favor tome unos minutos para revisar las opciones demás de la cuenta en dicha pagina de configuración.\n\n\t\t\tTambién podrá agregar informaciones adicionales a su pagina de perfil predeterminado. \n\t\t\t(en la pagina \"Perfiles\") para que otras personas pueden encontrarlo fácilmente.\n\n\t\t\tRecomendamos que elija un nombre apropiado, agregando una imagen de perfil,\n\t\t\tagregando algunas palabras claves de la cuenta (muy útil para hacer nuevos amigos) - y \n\t\t\tquizás el país en donde vive; si no quiere ser mas especifico\n\t\t\tque eso.\n\n\t\t\tRespetamos absolutamente su derecho a la privacidad y ninguno de estos detalles es necesario.\n\t\t\tSi eres nuevo aquí y no conoces a nadie, estos detalles pueden ayudarte\n\t\t\tpara hacer nuevas e interesantes amistades.\n\n\t\t\tGracias y bienvenido a %2$s." - -#: include/user.php:473 mod/admin.php:1223 -#, php-format -msgid "Registration details for %s" -msgstr "Detalles de registro para %s" - -#: index.php:248 mod/apps.php:7 +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "¿Quieres autorizar a esta aplicación el acceso a tus mensajes y contactos, y/o crear nuevas publicaciones para ti?" + +#: mod/api.php:108 mod/follow.php:115 mod/register.php:248 +#: mod/dfrn_request.php:880 mod/profiles.php:643 mod/profiles.php:647 +#: mod/profiles.php:673 mod/settings.php:1172 mod/settings.php:1178 +#: mod/settings.php:1185 mod/settings.php:1189 mod/settings.php:1194 +#: mod/settings.php:1199 mod/settings.php:1204 mod/settings.php:1209 +#: mod/settings.php:1235 mod/settings.php:1236 mod/settings.php:1237 +#: mod/settings.php:1238 mod/settings.php:1239 +msgid "No" +msgstr "No" + +#: mod/apps.php:9 index.php:257 msgid "You must be logged in to use addons. " msgstr "Tienes que estar registrado para tener acceso a los accesorios." -#: index.php:292 mod/fetch.php:12 mod/fetch.php:39 mod/fetch.php:48 -#: mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52 +#: mod/apps.php:14 +msgid "Applications" +msgstr "Aplicaciones" + +#: mod/apps.php:17 +msgid "No installed applications." +msgstr "Sin aplicaciones" + +#: mod/attach.php:10 +msgid "Item not available." +msgstr "Elemento no disponible." + +#: mod/attach.php:22 +msgid "Item was not found." +msgstr "Elemento no encontrado." + +#: mod/babel.php:18 +msgid "Source (bbcode) text:" +msgstr "Texto fuente (bbcode):" + +#: mod/babel.php:25 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Fuente (Diaspora) para pasar a BBcode:" + +#: mod/babel.php:33 +msgid "Source input: " +msgstr "Entrada: " + +#: mod/babel.php:37 +msgid "bb2html (raw HTML): " +msgstr "bb2html (raw HTML): " + +#: mod/babel.php:41 +msgid "bb2html: " +msgstr "bb2html: " + +#: mod/babel.php:45 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " + +#: mod/babel.php:49 +msgid "bb2md: " +msgstr "bb2md: " + +#: mod/babel.php:53 +msgid "bb2md2html: " +msgstr "bb2md2html: " + +#: mod/babel.php:57 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " + +#: mod/babel.php:61 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " + +#: mod/babel.php:67 +msgid "Source input (Diaspora format): " +msgstr "Fuente (formato Diaspora): " + +#: mod/babel.php:71 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: mod/bookmarklet.php:43 +msgid "The post was created" +msgstr "La publicación fue creada" + +#: mod/cal.php:145 mod/display.php:329 mod/profile.php:156 +msgid "Access to this profile has been restricted." +msgstr "El acceso a este perfil ha sido restringido." + +#: mod/cal.php:273 mod/events.php:378 +msgid "View" +msgstr "Vista" + +#: mod/cal.php:274 mod/events.php:380 +msgid "Previous" +msgstr "Previo" + +#: mod/cal.php:275 mod/events.php:381 mod/install.php:203 +msgid "Next" +msgstr "Siguiente" + +#: mod/cal.php:284 mod/events.php:390 +msgid "list" +msgstr "lista" + +#: mod/cal.php:294 +msgid "User not found" +msgstr "Usuario no encontrado" + +#: mod/cal.php:310 +msgid "This calendar format is not supported" +msgstr "Este formato de calendario no se soporta" + +#: mod/cal.php:312 +msgid "No exportable data found" +msgstr "No se ha encontrado información exportable" + +#: mod/cal.php:327 +msgid "calendar" +msgstr "calendario" + +#: mod/common.php:93 +msgid "No contacts in common." +msgstr "Sin contactos en común." + +#: mod/common.php:143 mod/contacts.php:874 +msgid "Common Friends" +msgstr "Amigos comunes" + +#: mod/community.php:18 mod/directory.php:33 mod/display.php:201 +#: mod/photos.php:981 mod/search.php:96 mod/search.php:102 mod/videos.php:200 +#: mod/viewcontacts.php:39 mod/webfinger.php:10 mod/dfrn_request.php:804 +#: mod/probe.php:9 +msgid "Public access denied." +msgstr "Acceso público denegado." + +#: mod/community.php:23 +msgid "Not available." +msgstr "No disponible" + +#: mod/community.php:50 mod/search.php:222 +msgid "No results." +msgstr "Sin resultados." + +#: mod/content.php:120 mod/network.php:478 +msgid "No such group" +msgstr "Ningún grupo" + +#: mod/content.php:131 mod/group.php:214 mod/network.php:505 +msgid "Group is empty" +msgstr "El grupo está vacío" + +#: mod/content.php:136 mod/network.php:509 +#, php-format +msgid "Group: %s" +msgstr "Grupo: %s" + +#: mod/content.php:326 object/Item.php:96 +msgid "This entry was edited" +msgstr "Esta entrada fue editada" + +#: mod/content.php:622 object/Item.php:414 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d comentario" +msgstr[1] "%d comentarios" + +#: mod/content.php:639 mod/photos.php:1431 object/Item.php:117 +msgid "Private Message" +msgstr "Mensaje privado" + +#: mod/content.php:703 mod/photos.php:1627 object/Item.php:271 +msgid "I like this (toggle)" +msgstr "Me gusta esto (cambiar)" + +#: mod/content.php:703 object/Item.php:271 +msgid "like" +msgstr "me gusta" + +#: mod/content.php:704 mod/photos.php:1628 object/Item.php:272 +msgid "I don't like this (toggle)" +msgstr "No me gusta esto (cambiar)" + +#: mod/content.php:704 object/Item.php:272 +msgid "dislike" +msgstr "no me gusta" + +#: mod/content.php:706 object/Item.php:275 +msgid "Share this" +msgstr "Compartir esto" + +#: mod/content.php:706 object/Item.php:275 +msgid "share" +msgstr "compartir" + +#: mod/content.php:726 mod/photos.php:1645 mod/photos.php:1687 +#: mod/photos.php:1767 object/Item.php:699 +msgid "This is you" +msgstr "Este eres tú" + +#: mod/content.php:728 mod/content.php:951 mod/photos.php:1647 +#: mod/photos.php:1689 mod/photos.php:1769 object/Item.php:389 +#: object/Item.php:701 +msgid "Comment" +msgstr "Comentar" + +#: mod/content.php:729 mod/crepair.php:159 mod/events.php:508 +#: mod/fsuggest.php:109 mod/install.php:244 mod/install.php:284 +#: mod/invite.php:144 mod/localtime.php:46 mod/manage.php:156 +#: mod/message.php:340 mod/message.php:523 mod/mood.php:139 +#: mod/photos.php:1143 mod/photos.php:1273 mod/photos.php:1599 +#: mod/photos.php:1648 mod/photos.php:1690 mod/photos.php:1770 +#: mod/poke.php:204 mod/contacts.php:588 mod/profiles.php:684 +#: object/Item.php:702 view/theme/duepuntozero/config.php:64 +#: view/theme/frio/config.php:67 view/theme/quattro/config.php:70 +#: view/theme/vier/config.php:113 +msgid "Submit" +msgstr "Envíar" + +#: mod/content.php:730 object/Item.php:703 +msgid "Bold" +msgstr "Negrita" + +#: mod/content.php:731 object/Item.php:704 +msgid "Italic" +msgstr "Cursiva" + +#: mod/content.php:732 object/Item.php:705 +msgid "Underline" +msgstr "Subrayado" + +#: mod/content.php:733 object/Item.php:706 +msgid "Quote" +msgstr "Cita" + +#: mod/content.php:734 object/Item.php:707 +msgid "Code" +msgstr "Código" + +#: mod/content.php:735 object/Item.php:708 +msgid "Image" +msgstr "Imagen" + +#: mod/content.php:736 object/Item.php:709 +msgid "Link" +msgstr "Enlace" + +#: mod/content.php:737 object/Item.php:710 +msgid "Video" +msgstr "Vídeo" + +#: mod/content.php:747 mod/settings.php:744 object/Item.php:122 +#: object/Item.php:124 +msgid "Edit" +msgstr "Editar" + +#: mod/content.php:773 object/Item.php:238 +msgid "add star" +msgstr "Añadir estrella" + +#: mod/content.php:774 object/Item.php:239 +msgid "remove star" +msgstr "Quitar estrella" + +#: mod/content.php:775 object/Item.php:240 +msgid "toggle star status" +msgstr "Añadir a destacados" + +#: mod/content.php:778 object/Item.php:243 +msgid "starred" +msgstr "marcados con estrellas" + +#: mod/content.php:779 mod/content.php:801 object/Item.php:260 +msgid "add tag" +msgstr "añadir etiqueta" + +#: mod/content.php:790 object/Item.php:248 +msgid "ignore thread" +msgstr "ignorar publicación" + +#: mod/content.php:791 object/Item.php:249 +msgid "unignore thread" +msgstr "revertir ignorar publicacion" + +#: mod/content.php:792 object/Item.php:250 +msgid "toggle ignore status" +msgstr "cambiar estatus de observación" + +#: mod/content.php:795 mod/ostatus_subscribe.php:75 object/Item.php:253 +msgid "ignored" +msgstr "ignorado" + +#: mod/content.php:806 object/Item.php:141 +msgid "save to folder" +msgstr "grabado en directorio" + +#: mod/content.php:854 object/Item.php:212 +msgid "I will attend" +msgstr "Voy a estar presente" + +#: mod/content.php:854 object/Item.php:212 +msgid "I will not attend" +msgstr "No voy a estar presente" + +#: mod/content.php:854 object/Item.php:212 +msgid "I might attend" +msgstr "Puede que voy a estar presente" + +#: mod/content.php:918 object/Item.php:355 +msgid "to" +msgstr "a" + +#: mod/content.php:919 object/Item.php:357 +msgid "Wall-to-Wall" +msgstr "Muro-A-Muro" + +#: mod/content.php:920 object/Item.php:358 +msgid "via Wall-To-Wall:" +msgstr "via Muro-A-Muro:" + +#: mod/credits.php:19 +msgid "Credits" +msgstr "Creditos" + +#: mod/credits.php:20 +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 es un proyecto comunitario, que no seria posible sin la ayuda de mucha gente. Aquí una lista de de aquellos que aportaron al código o la traducción de friendica.\nGracias a todos! " + +#: mod/crepair.php:92 +msgid "Contact settings applied." +msgstr "Contacto configurado con éxito." + +#: mod/crepair.php:94 +msgid "Contact update failed." +msgstr "Error al actualizar el Contacto." + +#: mod/crepair.php:119 mod/dfrn_confirm.php:128 mod/fsuggest.php:22 +#: mod/fsuggest.php:94 +msgid "Contact not found." +msgstr "Contacto no encontrado." + +#: mod/crepair.php:125 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "ADVERTENCIA: Esto es muy avanzado y si se introduce información incorrecta tu conexión con este contacto puede dejar de funcionar." + +#: mod/crepair.php:126 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Por favor usa el botón 'Atás' de tu navegador ahora si no tienes claro qué hacer en esta página." + +#: mod/crepair.php:139 mod/crepair.php:141 +msgid "No mirroring" +msgstr "No espejar" + +#: mod/crepair.php:139 +msgid "Mirror as forwarded posting" +msgstr "Espejar como reenvio" + +#: mod/crepair.php:139 mod/crepair.php:141 +msgid "Mirror as my own posting" +msgstr "Espejar como publicación propia" + +#: mod/crepair.php:155 +msgid "Return to contact editor" +msgstr "Volver al editor de contactos" + +#: mod/crepair.php:157 +msgid "Refetch contact data" +msgstr "Volver a solicitar datos del contacto." + +#: mod/crepair.php:161 +msgid "Remote Self" +msgstr "Perfil remoto" + +#: mod/crepair.php:164 +msgid "Mirror postings from this contact" +msgstr "Espejar publicaciones de este contacto" + +#: mod/crepair.php:166 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "Marcar este contacto como perfil_remoto, esto generara que friendica reenvía nuevas publicaciones desde esta cuenta." + +#: mod/crepair.php:170 mod/admin.php:1496 mod/admin.php:1509 +#: mod/admin.php:1522 mod/admin.php:1538 mod/settings.php:684 +#: mod/settings.php:710 +msgid "Name" +msgstr "Nombre" + +#: mod/crepair.php:171 +msgid "Account Nickname" +msgstr "Apodo de la cuenta" + +#: mod/crepair.php:172 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Etiqueta - Sobrescribe el Nombre/Apodo" + +#: mod/crepair.php:173 +msgid "Account URL" +msgstr "Dirección de la cuenta" + +#: mod/crepair.php:174 +msgid "Friend Request URL" +msgstr "Dirección de la solicitud de amistad" + +#: mod/crepair.php:175 +msgid "Friend Confirm URL" +msgstr "Dirección de confirmación de tu amigo " + +#: mod/crepair.php:176 +msgid "Notification Endpoint URL" +msgstr "Dirección URL de la notificación" + +#: mod/crepair.php:177 +msgid "Poll/Feed URL" +msgstr "Dirección del Sondeo/Fuentes" + +#: mod/crepair.php:178 +msgid "New photo from this URL" +msgstr "Nueva foto de esta dirección" + +#: mod/delegate.php:103 +msgid "No potential page delegates located." +msgstr "No se han localizado delegados potenciales de la página." + +#: mod/delegate.php:134 +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 "Los delegados tienen la capacidad de gestionar todos los aspectos de esta cuenta/página, excepto los ajustes básicos de la cuenta. Por favor, no delegues tu cuenta personal a nadie en quien no confíes completamente." + +#: mod/delegate.php:135 +msgid "Existing Page Managers" +msgstr "Administradores actuales de la página" + +#: mod/delegate.php:137 +msgid "Existing Page Delegates" +msgstr "Delegados actuales de la página" + +#: mod/delegate.php:139 +msgid "Potential Delegates" +msgstr "Delegados potenciales" + +#: mod/delegate.php:141 mod/tagrm.php:97 +msgid "Remove" +msgstr "Eliminar" + +#: mod/delegate.php:142 +msgid "Add" +msgstr "Añadir" + +#: mod/delegate.php:143 +msgid "No entries." +msgstr "Sin entradas." + +#: mod/dfrn_confirm.php:72 mod/profiles.php:23 mod/profiles.php:139 +#: mod/profiles.php:186 mod/profiles.php:622 +msgid "Profile not found." +msgstr "Perfil no encontrado." + +#: mod/dfrn_confirm.php:129 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Esto puede ocurrir a veces si la conexión fue solicitada por ambas personas y ya hubiera sido aprobada." + +#: mod/dfrn_confirm.php:246 +msgid "Response from remote site was not understood." +msgstr "La respuesta desde el sitio remoto no ha sido entendida." + +#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260 +msgid "Unexpected response from remote site: " +msgstr "Respuesta inesperada desde el sitio remoto: " + +#: mod/dfrn_confirm.php:269 +msgid "Confirmation completed successfully." +msgstr "Confirmación completada con éxito." + +#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292 +msgid "Remote site reported: " +msgstr "El sito remoto informó: " + +#: mod/dfrn_confirm.php:283 +msgid "Temporary failure. Please wait and try again." +msgstr "Error temporal. Por favor, espere y vuelva a intentarlo." + +#: mod/dfrn_confirm.php:290 +msgid "Introduction failed or was revoked." +msgstr "La presentación ha fallado o ha sido anulada." + +#: mod/dfrn_confirm.php:420 +msgid "Unable to set contact photo." +msgstr "Imposible establecer la foto del contacto." + +#: mod/dfrn_confirm.php:561 +#, php-format +msgid "No user record found for '%s' " +msgstr "No se ha encontrado a ningún '%s' " + +#: mod/dfrn_confirm.php:571 +msgid "Our site encryption key is apparently messed up." +msgstr "Nuestra clave de cifrado del sitio es aparentemente un lío." + +#: mod/dfrn_confirm.php:582 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "Se ha proporcionado una dirección vacía o no hemos podido descifrarla." + +#: mod/dfrn_confirm.php:604 +msgid "Contact record was not found for you on our site." +msgstr "El contacto no se ha encontrado en nuestra base de datos." + +#: mod/dfrn_confirm.php:618 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "La clave pública del sitio no está disponible en los datos del contacto para %s." + +#: mod/dfrn_confirm.php:638 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "La identificación proporcionada por el sistema es un duplicado de nuestro sistema. Debería funcionar si lo intentas de nuevo." + +#: mod/dfrn_confirm.php:649 +msgid "Unable to set your contact credentials on our system." +msgstr "No se puede establecer las credenciales de tu contacto en nuestro sistema." + +#: mod/dfrn_confirm.php:711 +msgid "Unable to update your contact profile details on our system" +msgstr "No se puede actualizar los datos de tu perfil de contacto en nuestro sistema" + +#: mod/dfrn_confirm.php:783 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s se ha unido a %2$s" + +#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:539 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "%1$s te da la bienvenida a %2$s" + +#: mod/directory.php:195 view/theme/vier/theme.php:201 +msgid "Global Directory" +msgstr "Directorio global" + +#: mod/directory.php:197 +msgid "Find on this site" +msgstr "Buscar en este sitio" + +#: mod/directory.php:199 +msgid "Results for:" +msgstr "Resultados para:" + +#: mod/directory.php:201 +msgid "Site Directory" +msgstr "Directorio del sitio" + +#: mod/directory.php:208 +msgid "No entries (some entries may be hidden)." +msgstr "Sin entradas (algunas pueden que estén ocultas)." + +#: mod/dirfind.php:39 +#, php-format +msgid "People Search - %s" +msgstr "Buscar perfiles - %s" + +#: mod/dirfind.php:50 +#, php-format +msgid "Forum Search - %s" +msgstr "Búsqueda de foro - %s" + +#: mod/dirfind.php:247 mod/match.php:112 +msgid "No matches" +msgstr "Sin conincidencias" + +#: mod/display.php:480 +msgid "Item has been removed." +msgstr "El elemento ha sido eliminado." + +#: mod/editpost.php:19 mod/editpost.php:29 +msgid "Item not found" +msgstr "Elemento no encontrado" + +#: mod/editpost.php:34 +msgid "Edit post" +msgstr "Editar publicación" + +#: mod/events.php:96 mod/events.php:98 +msgid "Event can not end before it has started." +msgstr "Un evento no puede terminar antes de su comienzo." + +#: mod/events.php:105 mod/events.php:107 +msgid "Event title and start time are required." +msgstr "Título del evento y hora de inicio requeridas." + +#: mod/events.php:379 +msgid "Create New Event" +msgstr "Crea un evento nuevo" + +#: mod/events.php:484 +msgid "Event details" +msgstr "Detalles del evento" + +#: mod/events.php:485 +msgid "Starting date and Title are required." +msgstr "Se requiere fecha de comienzo y titulo" + +#: mod/events.php:486 mod/events.php:487 +msgid "Event Starts:" +msgstr "Inicio del evento:" + +#: mod/events.php:486 mod/events.php:498 mod/profiles.php:712 +msgid "Required" +msgstr "Obligatorio" + +#: mod/events.php:488 mod/events.php:504 +msgid "Finish date/time is not known or not relevant" +msgstr "La fecha/hora de finalización no es conocida o es irrelevante." + +#: mod/events.php:490 mod/events.php:491 +msgid "Event Finishes:" +msgstr "Finalización del evento:" + +#: mod/events.php:492 mod/events.php:505 +msgid "Adjust for viewer timezone" +msgstr "Ajuste de zona horaria" + +#: mod/events.php:494 +msgid "Description:" +msgstr "Descripción:" + +#: mod/events.php:498 mod/events.php:500 +msgid "Title:" +msgstr "Título:" + +#: mod/events.php:501 mod/events.php:502 +msgid "Share this event" +msgstr "Comparte este evento" + +#: mod/events.php:531 +msgid "Failed to remove event" +msgstr "" + +#: mod/events.php:533 +msgid "Event removed" +msgstr "" + +#: mod/fbrowser.php:134 +msgid "Files" +msgstr "Archivos" + +#: mod/fetch.php:15 mod/fetch.php:42 mod/fetch.php:51 mod/help.php:56 +#: mod/p.php:19 mod/p.php:46 mod/p.php:55 index.php:301 msgid "Not Found" msgstr "No se ha encontrado" -#: index.php:295 mod/help.php:56 -msgid "Page not found." -msgstr "Página no encontrada." +#: mod/filer.php:31 +msgid "- select -" +msgstr "- seleccionar -" -#: index.php:406 mod/group.php:76 mod/profperm.php:20 +#: mod/follow.php:21 mod/dfrn_request.php:893 +msgid "Submit Request" +msgstr "Enviar solicitud" + +#: mod/follow.php:32 +msgid "You already added this contact." +msgstr "Ya has añadido este contacto." + +#: mod/follow.php:41 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "El soporte de Diaspora* no esta habilitado, el contacto no puede ser agregado." + +#: mod/follow.php:48 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "El soporte de OStatus no esta habilitado, el contacto no puede ser agregado." + +#: mod/follow.php:55 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "No se pudo detectar el tipo de red. Contacto no puede ser agregado." + +#: mod/follow.php:114 mod/dfrn_request.php:879 +msgid "Please answer the following:" +msgstr "Por favor responde lo siguiente:" + +#: mod/follow.php:115 mod/dfrn_request.php:880 +#, php-format +msgid "Does %s know you?" +msgstr "¿%s te conoce?" + +#: mod/follow.php:116 mod/dfrn_request.php:884 +msgid "Add a personal note:" +msgstr "Añade una nota personal:" + +#: mod/follow.php:122 mod/dfrn_request.php:890 +msgid "Your Identity Address:" +msgstr "Dirección de tu perfil:" + +#: mod/follow.php:131 mod/notifications.php:257 mod/contacts.php:635 +msgid "Profile URL" +msgstr "URL Perfil" + +#: mod/follow.php:188 +msgid "Contact added" +msgstr "Contacto añadido" + +#: mod/friendica.php:69 +msgid "This is Friendica, version" +msgstr "Esto es Friendica, versión" + +#: mod/friendica.php:70 +msgid "running at web location" +msgstr "ejecutándose en la dirección web" + +#: mod/friendica.php:74 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Por favor, visita Friendica.com para saber más sobre el proyecto Friendica." + +#: mod/friendica.php:78 +msgid "Bug reports and issues: please visit" +msgstr "Reporte de fallos y problemas: por favor visita" + +#: mod/friendica.php:78 +msgid "the bugtracker at github" +msgstr "aviso de fallas (bugs) en github" + +#: mod/friendica.php:81 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Sugerencias, elogios, donaciones, etc. por favor manda un correo a Info arroba Friendica punto com" + +#: mod/friendica.php:95 +msgid "Installed plugins/addons/apps:" +msgstr "Módulos/extensiones/aplicaciones instalados:" + +#: mod/friendica.php:109 +msgid "No installed plugins/addons/apps" +msgstr "Módulos/extensiones/aplicaciones no instalados" + +#: mod/friendica.php:114 +msgid "On this server the following remote servers are blocked." +msgstr "" + +#: mod/friendica.php:115 mod/admin.php:281 mod/admin.php:299 +msgid "Reason for the block" +msgstr "" + +#: mod/fsuggest.php:65 +msgid "Friend suggestion sent." +msgstr "Solicitud de amistad enviada." + +#: mod/fsuggest.php:99 +msgid "Suggest Friends" +msgstr "Sugerencias de amistad" + +#: mod/fsuggest.php:101 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Recomienda un amigo a %s" + +#: mod/group.php:30 +msgid "Group created." +msgstr "Grupo creado." + +#: mod/group.php:36 +msgid "Could not create group." +msgstr "Imposible crear el grupo." + +#: mod/group.php:50 mod/group.php:155 +msgid "Group not found." +msgstr "Grupo no encontrado." + +#: mod/group.php:64 +msgid "Group name changed." +msgstr "El nombre del grupo ha cambiado." + +#: mod/group.php:77 mod/profperm.php:22 index.php:409 msgid "Permission denied" msgstr "Permiso denegado" -#: index.php:457 -msgid "toggle mobile" -msgstr "Cambiar a versión móvil" +#: mod/group.php:94 +msgid "Save Group" +msgstr "Guardar grupo" -#: mod/admin.php:96 +#: mod/group.php:99 +msgid "Create a group of contacts/friends." +msgstr "Crea un grupo de contactos/amigos." + +#: mod/group.php:124 +msgid "Group removed." +msgstr "Grupo eliminado." + +#: mod/group.php:126 +msgid "Unable to remove group." +msgstr "No se puede eliminar el grupo." + +#: mod/group.php:190 +msgid "Delete Group" +msgstr "" + +#: mod/group.php:196 +msgid "Group Editor" +msgstr "Editor de grupos" + +#: mod/group.php:201 +msgid "Edit Group Name" +msgstr "" + +#: mod/group.php:211 +msgid "Members" +msgstr "Miembros" + +#: mod/group.php:213 mod/contacts.php:703 +msgid "All Contacts" +msgstr "Todos los contactos" + +#: mod/group.php:227 +msgid "Remove Contact" +msgstr "" + +#: mod/group.php:251 +msgid "Add Contact" +msgstr "" + +#: mod/group.php:263 mod/profperm.php:109 +msgid "Click on a contact to add or remove." +msgstr "Pulsa en un contacto para añadirlo o eliminarlo." + +#: mod/hcard.php:13 +msgid "No profile" +msgstr "Nigún perfil" + +#: mod/help.php:44 +msgid "Help:" +msgstr "Ayuda:" + +#: mod/help.php:59 index.php:304 +msgid "Page not found." +msgstr "Página no encontrada." + +#: mod/home.php:41 +#, php-format +msgid "Welcome to %s" +msgstr "Bienvenido a %s" + +#: mod/install.php:108 +msgid "Friendica Communications Server - Setup" +msgstr "Servidor de comunicación Friendica - Configuración" + +#: mod/install.php:114 +msgid "Could not connect to database." +msgstr "No es posible la conexión con la base de datos." + +#: mod/install.php:118 +msgid "Could not create table." +msgstr "No se puede crear la tabla." + +#: mod/install.php:124 +msgid "Your Friendica site database has been installed." +msgstr "La base de datos de su sitio web de Friendica ha sido instalada." + +#: mod/install.php:129 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Puede que tengas que importar el archivo \"Database.sql\" manualmente usando phpmyadmin o mysql." + +#: mod/install.php:130 mod/install.php:202 mod/install.php:549 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Por favor, consulta el archivo \"INSTALL.txt\"." + +#: mod/install.php:142 +msgid "Database already in use." +msgstr "Base de datos ya se encuentra en uso" + +#: mod/install.php:199 +msgid "System check" +msgstr "Verificación del sistema" + +#: mod/install.php:204 +msgid "Check again" +msgstr "Compruebalo de nuevo" + +#: mod/install.php:223 +msgid "Database connection" +msgstr "Conexión con la base de datos" + +#: mod/install.php:224 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Con el fin de poder instalar Friendica, necesitamos saber cómo conectar con tu base de datos." + +#: mod/install.php:225 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Por favor, contacta con tu proveedor de servicios o con el administrador de la página si tienes alguna pregunta sobre estas configuraciones." + +#: mod/install.php:226 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "La base de datos que especifiques a continuación debería existir ya. Si no es el caso, debes crearla antes de continuar." + +#: mod/install.php:230 +msgid "Database Server Name" +msgstr "Nombre del servidor de la base de datos" + +#: mod/install.php:231 +msgid "Database Login Name" +msgstr "Usuario de la base de datos" + +#: mod/install.php:232 +msgid "Database Login Password" +msgstr "Contraseña de la base de datos" + +#: mod/install.php:232 +msgid "For security reasons the password must not be empty" +msgstr "Por razones de seguridad la contraseña no debe estar vacía" + +#: mod/install.php:233 +msgid "Database Name" +msgstr "Nombre de la base de datos" + +#: mod/install.php:234 mod/install.php:275 +msgid "Site administrator email address" +msgstr "Dirección de correo del administrador de la web" + +#: mod/install.php:234 mod/install.php:275 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "La dirección de correo de tu cuenta debe coincidir con esta para poder usar el panel de administración de la web." + +#: mod/install.php:238 mod/install.php:278 +msgid "Please select a default timezone for your website" +msgstr "Por favor, selecciona la zona horaria predeterminada para tu web" + +#: mod/install.php:265 +msgid "Site settings" +msgstr "Configuración de la página web" + +#: mod/install.php:279 +msgid "System Language:" +msgstr "Sistema de idioma:" + +#: mod/install.php:279 +msgid "" +"Set the default language for your Friendica installation interface and to " +"send emails." +msgstr "Seleccione el idioma por defecto para su interfaz de instalación de Friendica y para enviar emails." + +#: mod/install.php:319 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "No se pudo encontrar una versión de la línea de comandos de PHP en la ruta del servidor web." + +#: mod/install.php:320 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run the background processing. See 'Setup the poller'" +msgstr "" + +#: mod/install.php:324 +msgid "PHP executable path" +msgstr "Dirección al ejecutable PHP" + +#: mod/install.php:324 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Introduce la ruta completa al ejecutable php. Puedes dejarlo en blanco y seguir con la instalación." + +#: mod/install.php:329 +msgid "Command line PHP" +msgstr "Línea de comandos PHP" + +#: mod/install.php:338 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "El ejecutable PHP no es e lphp cli binary (podria ser versión cgi-fgci)" + +#: mod/install.php:339 +msgid "Found PHP version: " +msgstr "Versión PHP encontrada:" + +#: mod/install.php:341 +msgid "PHP cli binary" +msgstr "PHP cli binario" + +#: mod/install.php:352 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "La versión en línea de comandos de PHP en tu sistema no tiene \"register_argc_argv\" habilitado." + +#: mod/install.php:353 +msgid "This is required for message delivery to work." +msgstr "Esto es necesario para que funcione la entrega de mensajes." + +#: mod/install.php:355 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: mod/install.php:378 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de generar claves de cifrado" + +#: mod/install.php:379 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Si se ejecuta en Windows, por favor consulta la sección \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: mod/install.php:381 +msgid "Generate encryption keys" +msgstr "Generar claves de encriptación" + +#: mod/install.php:388 +msgid "libCurl PHP module" +msgstr "Módulo PHP libCurl" + +#: mod/install.php:389 +msgid "GD graphics PHP module" +msgstr "Módulo PHP gráficos GD" + +#: mod/install.php:390 +msgid "OpenSSL PHP module" +msgstr "Módulo PHP OpenSSL" + +#: mod/install.php:391 +msgid "PDO or MySQLi PHP module" +msgstr "" + +#: mod/install.php:392 +msgid "mb_string PHP module" +msgstr "Módulo PHP mb_string" + +#: mod/install.php:393 +msgid "XML PHP module" +msgstr "Módulo XML PHP" + +#: mod/install.php:394 +msgid "iconv module" +msgstr "Módulo iconv" + +#: mod/install.php:398 mod/install.php:400 +msgid "Apache mod_rewrite module" +msgstr "Módulo mod_rewrite de Apache" + +#: mod/install.php:398 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Error: El módulo de Apache mod-rewrite es necesario pero no está instalado." + +#: mod/install.php:406 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Error: El módulo de PHP libcurl es necesario, pero no está instalado." + +#: mod/install.php:410 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Error: El módulo de de PHP gráficos GD con soporte JPEG es necesario, pero no está instalado." + +#: mod/install.php:414 +msgid "Error: openssl PHP module required but not installed." +msgstr "Error: El módulo de PHP openssl es necesario, pero no está instalado." + +#: mod/install.php:418 +msgid "Error: PDO or MySQLi PHP module required but not installed." +msgstr "" + +#: mod/install.php:422 +msgid "Error: The MySQL driver for PDO is not installed." +msgstr "" + +#: mod/install.php:426 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Error: El módulo de PHP mb_string es necesario, pero no está instalado." + +#: mod/install.php:430 +msgid "Error: iconv PHP module required but not installed." +msgstr "Error: módulo iconv PHP requerido pero no instalado." + +#: mod/install.php:440 +msgid "Error, XML PHP module required but not installed." +msgstr "Error, módulo XML PHP requerido pero no instalado." + +#: mod/install.php:452 +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 "El programa de instalación web necesita ser capaz de crear un archivo llamado \".htconfig.php\" en la carpeta principal de tu servidor web y es incapaz de hacerlo." + +#: mod/install.php:453 +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 "Se trata a menudo de una configuración de permisos, pues el servidor web puede que no sea capaz de escribir archivos en la carpeta, aunque tú sí puedas." + +#: mod/install.php:454 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "Al final obtendremos un texto que debes guardar en un archivo llamado .htconfig.php en la carpeta de Friendica." + +#: mod/install.php:455 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "Como alternativa, puedes saltarte estos pasos y realizar una instalación manual. Por favor, consulta el archivo \"INSTALL.txt\" para las instrucciones." + +#: mod/install.php:458 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php tiene permiso de escritura" + +#: mod/install.php:468 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Friendica usa el motor de templates Smarty3 para renderizar su visualisacion web. Smarty3 compila templates hacia PHP para acelerar la velocidad del renderizar." + +#: mod/install.php:469 +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 "Para poder guardar estos templates compilados, el servidor web necesita acceso de escritura en el directorio /view/smarty3/ en el árbol de raíz de la instalación friendica." + +#: mod/install.php:470 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Por favor asegure que el usuario que utiliza el servidor web (ejemplo: www-data) tiene permisos de escritura en esta carpeta." + +#: mod/install.php:471 +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: como medida de seguridad deberia dar acceso de escritura solo a /view/smarty3 / → no al los archivos template (.tpl) que contiene." + +#: mod/install.php:474 +msgid "view/smarty3 is writable" +msgstr "Se puede escribir en /view/smarty3" + +#: mod/install.php:490 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "La reescritura de la dirección en .htaccess no funcionó. Revisa la configuración." + +#: mod/install.php:492 +msgid "Url rewrite is working" +msgstr "Reescribiendo la dirección..." + +#: mod/install.php:511 +msgid "ImageMagick PHP extension is not installed" +msgstr "No está instalada la extensión ImageMagick PHP" + +#: mod/install.php:513 +msgid "ImageMagick PHP extension is installed" +msgstr "ImageMagick PHP extension is installed" + +#: mod/install.php:515 +msgid "ImageMagick supports GIF" +msgstr "ImageMagick supporta GIF" + +#: mod/install.php:522 +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 "El archivo de configuración de base de datos \".htconfig.php\" no se pudo escribir. Por favor, utiliza el texto adjunto para crear un archivo de configuración en la raíz de tu servidor web." + +#: mod/install.php:547 +msgid "

What next

" +msgstr "

¿Ahora qué?

" + +#: mod/install.php:548 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANTE: Tendrás que configurar [manualmente] una tarea programada para el sondeo" + +#: mod/invite.php:30 +msgid "Total invitation limit exceeded." +msgstr "Límite total de invitaciones excedido." + +#: mod/invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : No es una dirección de correo válida." + +#: mod/invite.php:78 +msgid "Please join us on Friendica" +msgstr "Únete a nosotros en Friendica" + +#: mod/invite.php:89 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Límite de invitaciones sobrepasado. Contacta con el administrador del sitio." + +#: mod/invite.php:93 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Ha fallado la entrega del mensaje." + +#: mod/invite.php:97 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d mensaje enviado." +msgstr[1] "%d mensajes enviados." + +#: mod/invite.php:116 +msgid "You have no more invitations available" +msgstr "No tienes más invitaciones disponibles" + +#: mod/invite.php:124 +#, 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 para ver una lista de servidores públicos donde puedes darte de alta. Los miembros de otros servidores de Friendica pueden conectarse entre ellos, así como con miembros de otras redes sociales diferentes." + +#: mod/invite.php:126 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Para aceptar la invitación visita y regístrate en %s o en cualquier otro servidor público de Friendica." + +#: mod/invite.php:127 +#, 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 "Los servidores de Friendica están interconectados para crear una enorme red social centrada en la privacidad y controlada por sus miembros. También se puede conectar con muchas redes sociales tradicionales. Mira en %s para poder ver un listado de servidores alternativos de Friendica donde puedes darte de alta." + +#: mod/invite.php:130 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Discúlpanos. Este sistema no está configurado actualmente para conectar con otros servidores públicos o invitar nuevos miembros." + +#: mod/invite.php:136 +msgid "Send invitations" +msgstr "Enviar invitaciones" + +#: mod/invite.php:137 +msgid "Enter email addresses, one per line:" +msgstr "Introduce las direcciones de correo, una por línea:" + +#: mod/invite.php:138 mod/message.php:334 mod/message.php:517 +#: mod/wallmessage.php:137 +msgid "Your message:" +msgstr "Tu mensaje:" + +#: mod/invite.php:139 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "Estás cordialmente invitado a unirte a mi y a otros amigos en Friendica, creemos juntos una red social mejor." + +#: mod/invite.php:141 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Tienes que proporcionar el siguiente código: $invite_code" + +#: mod/invite.php:141 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Una vez registrado, por favor contacta conmigo a través de mi página de perfil en:" + +#: mod/invite.php:143 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" +msgstr "Para más información sobre el Proyecto Friendica y sobre por qué pensamos que es algo importante, visita http://friendica.com" + +#: mod/localtime.php:25 +msgid "Time Conversion" +msgstr "Conversión horária" + +#: mod/localtime.php:27 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica ofrece este servicio para compartir eventos con otros servidores de la red friendica y amigos en zonas de horarios desconocidos." + +#: mod/localtime.php:31 +#, php-format +msgid "UTC time: %s" +msgstr "Tiempo UTC: %s" + +#: mod/localtime.php:34 +#, php-format +msgid "Current timezone: %s" +msgstr "Zona horaria actual: %s" + +#: mod/localtime.php:37 +#, php-format +msgid "Converted localtime: %s" +msgstr "Zona horaria local convertida: %s" + +#: mod/localtime.php:42 +msgid "Please select your timezone:" +msgstr "Por favor, selecciona tu zona horaria:" + +#: mod/lockview.php:33 mod/lockview.php:41 +msgid "Remote privacy information not available." +msgstr "Privacidad de la información remota no disponible." + +#: mod/lockview.php:50 +msgid "Visible to:" +msgstr "Visible para:" + +#: mod/lostpass.php:21 +msgid "No valid account found." +msgstr "No se ha encontrado ninguna cuenta válida" + +#: mod/lostpass.php:37 +msgid "Password reset request issued. Check your email." +msgstr "Solicitud de restablecimiento de contraseña enviada. Revisa tu correo." + +#: mod/lostpass.php:43 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" +"\t\tpassword. In order to confirm this request, please select the verification link\n" +"\t\tbelow or paste it into your web browser address bar.\n" +"\n" +"\t\tIf you did NOT request this change, please DO NOT follow the link\n" +"\t\tprovided and ignore and/or delete this email.\n" +"\n" +"\t\tYour password will not be changed unless we can verify that you\n" +"\t\tissued this request." +msgstr "\n\t\tEstimado %1$s,\n\t\t\tUna consulta llego recientemente a \"%2$s\" para renovar su\n\t\tcontraseña. Para confirmar esta solicitud por favor seleccione el enlace de verificación mas \n\t\tabajo o copie a pegue el mismo en la barra de dirección de su navegador.\n\n\t\tSi NO ha solicitado este cambio por favor NO SIGA este enlace\n\t\tproporcionado y ignore o borre este mail.\n\n\t\tSu contraseña no sera cambiada hasta que podamos verificar que usted haza\n\t\tsolicitado este cambio.." + +#: mod/lostpass.php:54 +#, php-format +msgid "" +"\n" +"\t\tFollow this link to verify your identity:\n" +"\n" +"\t\t%1$s\n" +"\n" +"\t\tYou will then receive a follow-up message containing the new password.\n" +"\t\tYou may change that password from your account settings page after logging in.\n" +"\n" +"\t\tThe login details are as follows:\n" +"\n" +"\t\tSite Location:\t%2$s\n" +"\t\tLogin Name:\t%3$s" +msgstr "\n\t\tSiga este enlace para verificar su identidad:\n\n\t\t%1$s\n\n\t\tA continuación recibirá un mensaje consecutivo conteniendo la nueva contraseña.\n\t\tPodrá cambiar la contraseña después de haber accedido a la cuenta.\n\n\t\tLos detalles del acceso son las siguientes:\n\n\t\tDirección del sitio:\t%2$s\n\t\tNombre de la cuenta:\t%3$s" + +#: mod/lostpass.php:73 +#, php-format +msgid "Password reset requested at %s" +msgstr "Contraseña restablecida enviada a %s" + +#: mod/lostpass.php:93 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "La solicitud no puede ser verificada (deberías haberla proporcionado antes). Falló el restablecimiento de la contraseña." + +#: mod/lostpass.php:112 boot.php:877 +msgid "Password Reset" +msgstr "Restablecer la contraseña" + +#: mod/lostpass.php:113 +msgid "Your password has been reset as requested." +msgstr "Tu contraseña ha sido restablecida como solicitaste." + +#: mod/lostpass.php:114 +msgid "Your new password is" +msgstr "Tu nueva contraseña es" + +#: mod/lostpass.php:115 +msgid "Save or copy your new password - and then" +msgstr "Guarda o copia tu nueva contraseña y luego" + +#: mod/lostpass.php:116 +msgid "click here to login" +msgstr "pulsa aquí para acceder" + +#: mod/lostpass.php:117 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Puedes cambiar tu contraseña desde la página de Configuración después de acceder con éxito." + +#: mod/lostpass.php:127 +#, php-format +msgid "" +"\n" +"\t\t\t\tDear %1$s,\n" +"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" +"\t\t\t\tinformation for your records (or change your password immediately to\n" +"\t\t\t\tsomething that you will remember).\n" +"\t\t\t" +msgstr "\n\t\t\t\tEstimado %1$s,\n\t\t\t\t\tSu contraseña ha cambiado como solicitado. Por favor guarde esta\n\t\t\t\tinformación para sus documentación (o cambie su contraseña inmediatamente a\n\t\t\t\talgo que pueda recordar).\n\t\t" + +#: mod/lostpass.php:133 +#, php-format +msgid "" +"\n" +"\t\t\t\tYour login details are as follows:\n" +"\n" +"\t\t\t\tSite Location:\t%1$s\n" +"\t\t\t\tLogin Name:\t%2$s\n" +"\t\t\t\tPassword:\t%3$s\n" +"\n" +"\t\t\t\tYou may change that password from your account settings page after logging in.\n" +"\t\t\t" +msgstr "\n\t\t\t\tSus datos de acceso son las siguientes:\n\n\t\t\t\tDirección del sitio:\t%1$s\n\t\t\t\tNombre de cuenta:\t%2$s\n\t\t\t\tContraseña:\t%3$s\n\n\t\t\t\tPodrá cambiar esta contraseña después de ingresar al sitio en su pagina de configuración.\n\t\t\t" + +#: mod/lostpass.php:149 +#, php-format +msgid "Your password has been changed at %s" +msgstr "Tu contraseña se ha cambiado por %s" + +#: mod/lostpass.php:161 +msgid "Forgot your Password?" +msgstr "¿Olvidaste tu contraseña?" + +#: mod/lostpass.php:162 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Introduce tu correo para restablecer tu contraseña. Luego comprueba tu correo para las instrucciones adicionales." + +#: mod/lostpass.php:163 boot.php:865 +msgid "Nickname or Email: " +msgstr "Apodo o Correo electrónico: " + +#: mod/lostpass.php:164 +msgid "Reset" +msgstr "Restablecer" + +#: mod/maintenance.php:21 +msgid "System down for maintenance" +msgstr "Servicio suspendido por mantenimiento" + +#: mod/manage.php:152 +msgid "Manage Identities and/or Pages" +msgstr "Administrar identidades y/o páginas" + +#: mod/manage.php:153 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Cambia entre diferentes identidades o páginas de Comunidad/Grupos que comparten los detalles de tu cuenta o sobre los que tienes permisos para administrar" + +#: mod/manage.php:154 +msgid "Select an identity to manage: " +msgstr "Selecciona una identidad a gestionar:" + +#: mod/match.php:38 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "No hay palabras clave que coincidan. Por favor, agrega algunas palabras claves en tu perfil predeterminado." + +#: mod/match.php:91 +msgid "is interested in:" +msgstr "estás interesado en:" + +#: mod/match.php:105 +msgid "Profile Match" +msgstr "Coincidencias de Perfil" + +#: mod/message.php:62 mod/wallmessage.php:52 +msgid "No recipient selected." +msgstr "Ningún destinatario seleccionado" + +#: mod/message.php:66 +msgid "Unable to locate contact information." +msgstr "No se puede encontrar información del contacto." + +#: mod/message.php:69 mod/wallmessage.php:58 +msgid "Message could not be sent." +msgstr "El mensaje no ha podido ser enviado." + +#: mod/message.php:72 mod/wallmessage.php:61 +msgid "Message collection failure." +msgstr "Fallo en la recolección de mensajes." + +#: mod/message.php:75 mod/wallmessage.php:64 +msgid "Message sent." +msgstr "Mensaje enviado." + +#: mod/message.php:206 +msgid "Do you really want to delete this message?" +msgstr "¿Estás seguro de que quieres borrar este mensaje?" + +#: mod/message.php:226 +msgid "Message deleted." +msgstr "Mensaje eliminado." + +#: mod/message.php:257 +msgid "Conversation removed." +msgstr "Conversación eliminada." + +#: mod/message.php:324 mod/wallmessage.php:128 +msgid "Send Private Message" +msgstr "Enviar mensaje privado" + +#: mod/message.php:325 mod/message.php:512 mod/wallmessage.php:130 +msgid "To:" +msgstr "Para:" + +#: mod/message.php:330 mod/message.php:514 mod/wallmessage.php:131 +msgid "Subject:" +msgstr "Asunto:" + +#: mod/message.php:366 +msgid "No messages." +msgstr "No hay mensajes." + +#: mod/message.php:405 +msgid "Message not available." +msgstr "Mensaje no disponibile." + +#: mod/message.php:479 +msgid "Delete message" +msgstr "Borrar mensaje" + +#: mod/message.php:505 mod/message.php:593 +msgid "Delete conversation" +msgstr "Eliminar conversación" + +#: mod/message.php:507 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "No hay comunicaciones seguras disponibles. Podrías responder desde la página de perfil del remitente. " + +#: mod/message.php:511 +msgid "Send Reply" +msgstr "Enviar respuesta" + +#: mod/message.php:563 +#, php-format +msgid "Unknown sender - %s" +msgstr "Remitente desconocido - %s" + +#: mod/message.php:565 +#, php-format +msgid "You and %s" +msgstr "Tú y %s" + +#: mod/message.php:567 +#, php-format +msgid "%s and You" +msgstr "%s y Tú" + +#: mod/message.php:596 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" + +#: mod/message.php:599 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d mensaje" +msgstr[1] "%d mensajes" + +#: mod/mood.php:135 +msgid "Mood" +msgstr "Ánimo" + +#: mod/mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Coloca tu ánimo actual y cuéntaselo a tus amigos" + +#: mod/network.php:154 mod/search.php:230 mod/contacts.php:808 +#, php-format +msgid "Results for: %s" +msgstr "Resultados para: %s" + +#: mod/network.php:200 mod/search.php:28 +msgid "Remove term" +msgstr "Eliminar término" + +#: mod/network.php:407 +#, php-format +msgid "" +"Warning: This group contains %s member from a network that doesn't allow non" +" public messages." +msgid_plural "" +"Warning: This group contains %s members from a network that doesn't allow " +"non public messages." +msgstr[0] "Aviso: Este grupo contiene %s miembro de una red que no permite mensajes públicos." +msgstr[1] "Aviso: Este grupo contiene %s miembros de una red que no permite mensajes públicos." + +#: mod/network.php:410 +msgid "Messages in this group won't be send to these receivers." +msgstr "Los mensajes de este grupo no se enviarán a estos receptores." + +#: mod/network.php:538 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Los mensajes privados a esta persona corren el riesgo de ser mostrados públicamente." + +#: mod/network.php:543 +msgid "Invalid contact." +msgstr "Contacto erróneo." + +#: mod/network.php:816 +msgid "Commented Order" +msgstr "Orden de comentarios" + +#: mod/network.php:819 +msgid "Sort by Comment Date" +msgstr "Ordenar por fecha de comentarios" + +#: mod/network.php:824 +msgid "Posted Order" +msgstr "Orden de publicación" + +#: mod/network.php:827 +msgid "Sort by Post Date" +msgstr "Ordenar por fecha de publicación" + +#: mod/network.php:838 +msgid "Posts that mention or involve you" +msgstr "Publicaciones que te mencionan o involucran" + +#: mod/network.php:846 +msgid "New" +msgstr "Nuevo" + +#: mod/network.php:849 +msgid "Activity Stream - by date" +msgstr "Corriente de actividad por fecha" + +#: mod/network.php:857 +msgid "Shared Links" +msgstr "Enlaces compartidos" + +#: mod/network.php:860 +msgid "Interesting Links" +msgstr "Enlaces interesantes" + +#: mod/network.php:868 +msgid "Starred" +msgstr "Favoritos" + +#: mod/network.php:871 +msgid "Favourite Posts" +msgstr "Publicaciones favoritas" + +#: mod/newmember.php:7 +msgid "Welcome to Friendica" +msgstr "Bienvenido a Friendica " + +#: mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Listado de nuevos miembros" + +#: mod/newmember.php:10 +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 "Nos gustaría ofrecerte algunos consejos y enlaces para ayudar a hacer tu experiencia más amena. Pulsa en cualquier elemento para visitar la página correspondiente. Un enlace a esta página será visible desde tu página de inicio durante las dos semanas siguientes a tu inscripción y luego desaparecerá." + +#: mod/newmember.php:11 +msgid "Getting Started" +msgstr "Empezando" + +#: mod/newmember.php:13 +msgid "Friendica Walk-Through" +msgstr "Visita guiada a Friendica" + +#: mod/newmember.php:13 +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 "En tu página de Inicio Rápido - busca una introducción breve para tus pestañas de perfil y red, haz algunas conexiones nuevas, y busca algunos grupos a los que unirte." + +#: mod/newmember.php:17 +msgid "Go to Your Settings" +msgstr "Ir a tus ajustes" + +#: mod/newmember.php:17 +msgid "" +"On your Settings page - change your initial password. Also make a " +"note of your Identity Address. This looks just like an email address - and " +"will be useful in making friends on the free social web." +msgstr "En la página de Configuración puedes cambiar tu contraseña inicial. También aparece tu ID (Identity Address). Es parecida a una dirección de correo y te servirá para conectar con gente de redes sociales libres." + +#: mod/newmember.php:18 +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 "Revisa las otras configuraciones, especialmente la configuración de privacidad. Un listado de directorio sin publicar es como tener un número de teléfono sin publicar. Normalmente querrás publicar tu listado, a menos que tus amigos y amigos potenciales sepan cómo ponerse en contacto contigo." + +#: mod/newmember.php:22 mod/profile_photo.php:255 mod/profiles.php:703 +msgid "Upload Profile Photo" +msgstr "Subir foto del Perfil" + +#: mod/newmember.php:22 +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 "Sube una foto para tu perfil si no lo has hecho aún. Los estudios han demostrado que la gente que usa fotos suyas reales tienen diez veces más éxito a la hora de entablar amistad que las que no." + +#: mod/newmember.php:23 +msgid "Edit Your Profile" +msgstr "Editar tu perfil" + +#: mod/newmember.php:23 +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 "Edita tu perfil predeterminado como quieras. Revisa la configuración para ocultar tu lista de amigos o tu perfil a los visitantes desconocidos." + +#: mod/newmember.php:24 +msgid "Profile Keywords" +msgstr "Palabras clave del perfil" + +#: mod/newmember.php:24 +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 "Define en tu perfil público algunas palabras que describan tus intereses. Así podremos buscar otras personas con los mismos gustos y sugerirte posibles amigos." + +#: mod/newmember.php:26 +msgid "Connecting" +msgstr "Conectando" + +#: mod/newmember.php:32 +msgid "Importing Emails" +msgstr "Importando correos electrónicos" + +#: mod/newmember.php:32 +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 "Introduce la información para acceder a tu correo en la página de Configuración del conector si quieres importar e interactuar con amigos o listas de correos del buzón de entrada de tu correo electrónico." + +#: mod/newmember.php:35 +msgid "Go to Your Contacts Page" +msgstr "Ir a tu página de contactos" + +#: mod/newmember.php:35 +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 "Tu página de Contactos es el portal desde donde podrás manejar tus amistades y conectarte con amigos de otras redes. Normalmente introduces su dirección o la dirección de su sitio web en el recuadro \"Añadir contacto nuevo\"." + +#: mod/newmember.php:36 +msgid "Go to Your Site's Directory" +msgstr "Ir al directorio de tu sitio" + +#: mod/newmember.php:36 +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 "El Directorio te permite encontrar otras personas en esta red o en cualquier otro sitio federado. Busca algún enlace de Conectar o Seguir en su perfil. Proporciona tu direción personal si es necesario." + +#: mod/newmember.php:37 +msgid "Finding New People" +msgstr "Encontrando nueva gente" + +#: mod/newmember.php:37 +msgid "" +"On the side panel of the Contacts page are several tools to find new " +"friends. We can match people by interest, look up people by name or " +"interest, and provide suggestions based on network relationships. On a brand" +" new site, friend suggestions will usually begin to be populated within 24 " +"hours." +msgstr "En el panel lateral de la página de Contactos existen varias herramientas para encontrar nuevos amigos. Podemos filtrar personas por sus intereses, buscar personas por nombre o por sus intereses, y ofrecerte sugerencias basadas en sus relaciones de la red. En un sitio nuevo, las sugerencias de amigos por lo general comienzan pasadas las 24 horas." + +#: mod/newmember.php:41 +msgid "Group Your Contacts" +msgstr "Agrupa tus contactos" + +#: mod/newmember.php:41 +msgid "" +"Once you have made some friends, organize them into private conversation " +"groups from the sidebar of your Contacts page and then you can interact with" +" each group privately on your Network page." +msgstr "Una vez que tengas algunos amigos, puedes organizarlos en grupos privados de conversación mediante el memnú en tu página de Contactos y luego puedes interactuar con cada grupo por separado desde tu página de Red." + +#: mod/newmember.php:44 +msgid "Why Aren't My Posts Public?" +msgstr "¿Por qué mis publicaciones no son públicas?" + +#: mod/newmember.php:44 +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 respeta tu privacidad. Por defecto, tus publicaciones solo se mostrarán a personas que hayas añadido como amistades. Para más información, mira la sección de ayuda en el enlace de más arriba." + +#: mod/newmember.php:48 +msgid "Getting Help" +msgstr "Consiguiendo ayuda" + +#: mod/newmember.php:50 +msgid "Go to the Help Section" +msgstr "Ir a la sección de ayuda" + +#: mod/newmember.php:50 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Puedes consultar nuestra página de Ayuda para más información y recursos de ayuda." + +#: mod/nogroup.php:45 mod/viewcontacts.php:105 mod/contacts.php:597 +#: mod/contacts.php:941 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Ver el perfil de %s [%s]" + +#: mod/nogroup.php:46 mod/contacts.php:942 +msgid "Edit contact" +msgstr "Modificar contacto" + +#: mod/nogroup.php:67 +msgid "Contacts who are not members of a group" +msgstr "Contactos sin grupo" + +#: mod/notifications.php:37 +msgid "Invalid request identifier." +msgstr "Solicitud de identificación no válida." + +#: mod/notifications.php:46 mod/notifications.php:182 +#: mod/notifications.php:229 +msgid "Discard" +msgstr "Descartar" + +#: mod/notifications.php:62 mod/notifications.php:181 +#: mod/notifications.php:265 mod/contacts.php:617 mod/contacts.php:817 +#: mod/contacts.php:1002 +msgid "Ignore" +msgstr "Ignorar" + +#: mod/notifications.php:107 +msgid "Network Notifications" +msgstr "Notificaciones de Red" + +#: mod/notifications.php:113 mod/notify.php:72 +msgid "System Notifications" +msgstr "Notificaciones del sistema" + +#: mod/notifications.php:119 +msgid "Personal Notifications" +msgstr "Notificaciones personales" + +#: mod/notifications.php:125 +msgid "Home Notifications" +msgstr "Notificaciones de Inicio" + +#: mod/notifications.php:154 +msgid "Show Ignored Requests" +msgstr "Mostrar peticiones ignoradas" + +#: mod/notifications.php:154 +msgid "Hide Ignored Requests" +msgstr "Ocultar peticiones ignoradas" + +#: mod/notifications.php:166 mod/notifications.php:236 +msgid "Notification type: " +msgstr "Tipo de notificación: " + +#: mod/notifications.php:169 +#, php-format +msgid "suggested by %s" +msgstr "sugerido por %s" + +#: mod/notifications.php:174 mod/notifications.php:253 mod/contacts.php:624 +msgid "Hide this contact from others" +msgstr "Ocultar este contacto a los demás." + +#: mod/notifications.php:175 mod/notifications.php:254 +msgid "Post a new friend activity" +msgstr "Publica tu nueva amistad" + +#: mod/notifications.php:175 mod/notifications.php:254 +msgid "if applicable" +msgstr "Si corresponde" + +#: mod/notifications.php:178 mod/notifications.php:263 mod/admin.php:1512 +msgid "Approve" +msgstr "Aprobar" + +#: mod/notifications.php:197 +msgid "Claims to be known to you: " +msgstr "Dice conocerte: " + +#: mod/notifications.php:198 +msgid "yes" +msgstr "sí" + +#: mod/notifications.php:198 +msgid "no" +msgstr "no" + +#: mod/notifications.php:199 mod/notifications.php:204 +msgid "Shall your connection be bidirectional or not?" +msgstr "¿Su conexión debe ser bidireccional o no?" + +#: mod/notifications.php:200 mod/notifications.php:205 +#, php-format +msgid "" +"Accepting %s as a friend allows %s to subscribe to your posts, and you will " +"also receive updates from them in your news feed." +msgstr "Aceptar a %s como amigo le permite a %s suscribirse a sus publicaciones, y usted también recibirá actualizaciones de ellos en sus noticias." + +#: mod/notifications.php:201 +#, php-format +msgid "" +"Accepting %s as a subscriber allows them to subscribe to your posts, but you" +" will not receive updates from them in your news feed." +msgstr "Aceptar a %s como suscriptor les permite suscribirse a sus publicaciones, pero usted no recibirá actualizaciones de ellos en sus noticias." + +#: mod/notifications.php:206 +#, php-format +msgid "" +"Accepting %s as a sharer allows them to subscribe to your posts, but you " +"will not receive updates from them in your news feed." +msgstr "Aceptar a %s como participante les permite suscribirse a sus publicaciones, pero usted no recibirá actualizaciones de ellos en sus noticias." + +#: mod/notifications.php:217 +msgid "Friend" +msgstr "Amigo" + +#: mod/notifications.php:218 +msgid "Sharer" +msgstr "Lector" + +#: mod/notifications.php:218 +msgid "Subscriber" +msgstr "Suscriptor" + +#: mod/notifications.php:274 +msgid "No introductions." +msgstr "Sin presentaciones." + +#: mod/notifications.php:315 +msgid "Show unread" +msgstr "Mostrar no leído" + +#: mod/notifications.php:315 +msgid "Show all" +msgstr "Mostrar todo" + +#: mod/notifications.php:321 +#, php-format +msgid "No more %s notifications." +msgstr "No más notificaciones de %s." + +#: mod/notify.php:68 +msgid "No more system notifications." +msgstr "No hay más notificaciones del sistema." + +#: mod/oexchange.php:24 +msgid "Post successful." +msgstr "¡Publicado!" + +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Error de protocolo OpenID. ID no devuelta." + +#: mod/openid.php:60 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "Cuenta no encontrada y el registro OpenID no está permitido en ese sitio." + +#: mod/ostatus_subscribe.php:16 +msgid "Subscribing to OStatus contacts" +msgstr "Subscribir a los contactos de OStatus" + +#: mod/ostatus_subscribe.php:27 +msgid "No contact provided." +msgstr "Sin suministro de datos de contacto." + +#: mod/ostatus_subscribe.php:33 +msgid "Couldn't fetch information for contact." +msgstr "No se ha podido conseguir la información del contacto." + +#: mod/ostatus_subscribe.php:42 +msgid "Couldn't fetch friends for contact." +msgstr "No se ha podido conseguir datos de amigos para contactar." + +#: mod/ostatus_subscribe.php:56 mod/repair_ostatus.php:46 +msgid "Done" +msgstr "hecho!" + +#: mod/ostatus_subscribe.php:70 +msgid "success" +msgstr "exito!" + +#: mod/ostatus_subscribe.php:72 +msgid "failed" +msgstr "fallido!" + +#: mod/ostatus_subscribe.php:80 mod/repair_ostatus.php:52 +msgid "Keep this window open until done." +msgstr "Mantén esta ventana abierta hasta que el proceso ha terminado." + +#: mod/p.php:12 +msgid "Not Extended" +msgstr "No extendido" + +#: mod/photos.php:96 mod/photos.php:1902 +msgid "Recent Photos" +msgstr "Fotos recientes" + +#: mod/photos.php:99 mod/photos.php:1330 mod/photos.php:1904 +msgid "Upload New Photos" +msgstr "Subir nuevas fotos" + +#: mod/photos.php:114 mod/settings.php:38 +msgid "everybody" +msgstr "todos" + +#: mod/photos.php:178 +msgid "Contact information unavailable" +msgstr "Información del contacto no disponible" + +#: mod/photos.php:199 +msgid "Album not found." +msgstr "Álbum no encontrado." + +#: mod/photos.php:232 mod/photos.php:244 mod/photos.php:1274 +msgid "Delete Album" +msgstr "Eliminar álbum" + +#: mod/photos.php:242 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "¿Estás seguro de quieres borrar este álbum y todas sus fotos?" + +#: mod/photos.php:325 mod/photos.php:336 mod/photos.php:1600 +msgid "Delete Photo" +msgstr "Eliminar foto" + +#: mod/photos.php:334 +msgid "Do you really want to delete this photo?" +msgstr "¿Estás seguro de que quieres borrar esta foto?" + +#: mod/photos.php:715 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s fue etiquetado en %2$s por %3$s" + +#: mod/photos.php:715 +msgid "a photo" +msgstr "una foto" + +#: mod/photos.php:815 mod/wall_upload.php:181 mod/profile_photo.php:155 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "La imagen excede el limite de %s" + +#: mod/photos.php:823 +msgid "Image file is empty." +msgstr "El archivo de imagen está vacío." + +#: mod/photos.php:856 mod/wall_upload.php:218 mod/profile_photo.php:164 +msgid "Unable to process image." +msgstr "Imposible procesar la imagen." + +#: mod/photos.php:885 mod/wall_upload.php:257 mod/profile_photo.php:314 +msgid "Image upload failed." +msgstr "Error al subir la imagen." + +#: mod/photos.php:990 +msgid "No photos selected" +msgstr "Ninguna foto seleccionada" + +#: mod/photos.php:1093 mod/videos.php:311 +msgid "Access to this item is restricted." +msgstr "El acceso a este elemento está restringido." + +#: mod/photos.php:1153 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Has usado %1$.2f MB de %2$.2f MB de tu álbum de fotos." + +#: mod/photos.php:1190 +msgid "Upload Photos" +msgstr "Subir fotos" + +#: mod/photos.php:1194 mod/photos.php:1269 +msgid "New album name: " +msgstr "Nombre del nuevo álbum: " + +#: mod/photos.php:1195 +msgid "or existing album name: " +msgstr "o nombre de un álbum existente: " + +#: mod/photos.php:1196 +msgid "Do not show a status post for this upload" +msgstr "No actualizar tu estado con este envío" + +#: mod/photos.php:1207 mod/photos.php:1604 mod/settings.php:1308 +msgid "Show to Groups" +msgstr "Mostrar a los Grupos" + +#: mod/photos.php:1208 mod/photos.php:1605 mod/settings.php:1309 +msgid "Show to Contacts" +msgstr "Mostrar a los Contactos" + +#: mod/photos.php:1209 +msgid "Private Photo" +msgstr "Foto Privada" + +#: mod/photos.php:1210 +msgid "Public Photo" +msgstr "Foto Pública" + +#: mod/photos.php:1280 +msgid "Edit Album" +msgstr "Modificar álbum" + +#: mod/photos.php:1285 +msgid "Show Newest First" +msgstr "Mostrar más nuevos primero" + +#: mod/photos.php:1287 +msgid "Show Oldest First" +msgstr "Mostrar más antiguos primero" + +#: mod/photos.php:1316 mod/photos.php:1887 +msgid "View Photo" +msgstr "Ver foto" + +#: mod/photos.php:1361 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permiso denegado. El acceso a este elemento puede estar restringido." + +#: mod/photos.php:1363 +msgid "Photo not available" +msgstr "Foto no disponible" + +#: mod/photos.php:1424 +msgid "View photo" +msgstr "Ver foto" + +#: mod/photos.php:1424 +msgid "Edit photo" +msgstr "Modificar foto" + +#: mod/photos.php:1425 +msgid "Use as profile photo" +msgstr "Usar como foto del perfil" + +#: mod/photos.php:1450 +msgid "View Full Size" +msgstr "Ver a tamaño completo" + +#: mod/photos.php:1540 +msgid "Tags: " +msgstr "Etiquetas: " + +#: mod/photos.php:1543 +msgid "[Remove any tag]" +msgstr "[Borrar todas las etiquetas]" + +#: mod/photos.php:1586 +msgid "New album name" +msgstr "Nuevo nombre del álbum" + +#: mod/photos.php:1587 +msgid "Caption" +msgstr "Título" + +#: mod/photos.php:1588 +msgid "Add a Tag" +msgstr "Añadir una etiqueta" + +#: mod/photos.php:1588 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Ejemplo: @juan, @Barbara_Ruiz, @julia@example.com, #California, #camping" + +#: mod/photos.php:1589 +msgid "Do not rotate" +msgstr "No rotar" + +#: mod/photos.php:1590 +msgid "Rotate CW (right)" +msgstr "Girar a la derecha" + +#: mod/photos.php:1591 +msgid "Rotate CCW (left)" +msgstr "Girar a la izquierda" + +#: mod/photos.php:1606 +msgid "Private photo" +msgstr "Foto privada" + +#: mod/photos.php:1607 +msgid "Public photo" +msgstr "Foto pública" + +#: mod/photos.php:1816 +msgid "Map" +msgstr "Mapa" + +#: mod/photos.php:1893 mod/videos.php:395 +msgid "View Album" +msgstr "Ver Álbum" + +#: mod/ping.php:273 +msgid "{0} wants to be your friend" +msgstr "{0} quiere ser tu amigo" + +#: mod/ping.php:288 +msgid "{0} sent you a message" +msgstr "{0} te ha enviado un mensaje" + +#: mod/ping.php:303 +msgid "{0} requested registration" +msgstr "{0} solicitudes de registro" + +#: mod/poke.php:197 +msgid "Poke/Prod" +msgstr "Toque/Empujón" + +#: mod/poke.php:198 +msgid "poke, prod or do other things to somebody" +msgstr "da un toque, empujón o similar a alguien" + +#: mod/poke.php:199 +msgid "Recipient" +msgstr "Receptor" + +#: mod/poke.php:200 +msgid "Choose what you wish to do to recipient" +msgstr "Elige qué desea hacer con el receptor" + +#: mod/poke.php:203 +msgid "Make this post private" +msgstr "Hacer esta publicación privada" + +#: mod/profile.php:176 +msgid "Tips for New Members" +msgstr "Consejos para nuevos miembros" + +#: mod/profperm.php:28 mod/profperm.php:59 +msgid "Invalid profile identifier." +msgstr "Identificador de perfil no válido." + +#: mod/profperm.php:105 +msgid "Profile Visibility Editor" +msgstr "Editor de visibilidad del perfil" + +#: mod/profperm.php:118 +msgid "Visible To" +msgstr "Visible para" + +#: mod/profperm.php:134 +msgid "All Contacts (with secure profile access)" +msgstr "Todos los contactos (con perfil de acceso seguro)" + +#: mod/register.php:95 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Te has registrado con éxito. Por favor, consulta tu correo para más información." + +#: mod/register.php:100 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
login: %s
" +"password: %s

You can change your password after login." +msgstr "Error al intentar de enviar mensaje de correo. Aquí los detalles de su cuenta:
login: %s
contraseña: %s

Puede cambiar su contraseña después de ingresar al sitio." + +#: mod/register.php:107 +msgid "Registration successful." +msgstr "Registro exitoso." + +#: mod/register.php:113 +msgid "Your registration can not be processed." +msgstr "Tu registro no se puede procesar." + +#: mod/register.php:162 +msgid "Your registration is pending approval by the site owner." +msgstr "Tu registro está pendiente de aprobación por el propietario del sitio." + +#: mod/register.php:200 mod/uimport.php:53 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Este sitio ha excedido el número de registros diarios permitidos. Inténtalo de nuevo mañana por favor." + +#: mod/register.php:228 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Puedes (opcionalmente) rellenar este formulario a través de OpenID escribiendo tu OpenID y pulsando en \"Registrar\"." + +#: mod/register.php:229 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Si no estás familiarizado con OpenID, por favor deja ese campo en blanco y rellena el resto de los elementos." + +#: mod/register.php:230 +msgid "Your OpenID (optional): " +msgstr "Tu OpenID (opcional):" + +#: mod/register.php:244 +msgid "Include your profile in member directory?" +msgstr "¿Incluir tu perfil en el directorio de miembros?" + +#: mod/register.php:269 +msgid "Note for the admin" +msgstr "Nota para el administrador" + +#: mod/register.php:269 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "Deje un mensaje para el administrador sobre por qué quiere unirse a este nodo" + +#: mod/register.php:270 +msgid "Membership on this site is by invitation only." +msgstr "Sitio solo accesible mediante invitación." + +#: mod/register.php:271 +msgid "Your invitation ID: " +msgstr "ID de tu invitación: " + +#: mod/register.php:274 mod/admin.php:1062 +msgid "Registration" +msgstr "Registro" + +#: mod/register.php:282 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "Nombre completo (ej. Joe Smith, real o real aparente):" + +#: mod/register.php:283 +msgid "Your Email Address: " +msgstr "Tu dirección de correo: " + +#: mod/register.php:285 mod/settings.php:1279 +msgid "New Password:" +msgstr "Contraseña nueva:" + +#: mod/register.php:285 +msgid "Leave empty for an auto generated password." +msgstr "Dejar vacío para autogenerar una contraseña" + +#: mod/register.php:286 mod/settings.php:1280 +msgid "Confirm:" +msgstr "Confirmar:" + +#: mod/register.php:287 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Elije un apodo. Debe comenzar con una letra. Tu dirección de perfil en este sitio va a ser \"apodo@$nombredelsitio\"." + +#: mod/register.php:288 +msgid "Choose a nickname: " +msgstr "Escoge un apodo: " + +#: mod/register.php:297 mod/uimport.php:68 +msgid "Import" +msgstr "Importar" + +#: mod/register.php:298 +msgid "Import your profile to this friendica instance" +msgstr "Importar tu perfil a esta instancia de friendica" + +#: mod/removeme.php:54 mod/removeme.php:57 +msgid "Remove My Account" +msgstr "Eliminar mi cuenta" + +#: mod/removeme.php:55 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Esto eliminará por completo tu cuenta. Una vez hecho no se puede deshacer." + +#: mod/removeme.php:56 +msgid "Please enter your password for verification:" +msgstr "Por favor, introduce tu contraseña para la verificación:" + +#: mod/repair_ostatus.php:16 +msgid "Resubscribing to OStatus contacts" +msgstr "Resubscribir a contactos de OStatus" + +#: mod/repair_ostatus.php:32 +msgid "Error" +msgstr "error" + +#: mod/search.php:103 +msgid "Only logged in users are permitted to perform a search." +msgstr "Solo usuarios activos tienen permiso para ejecutar búsquedas." + +#: mod/search.php:127 +msgid "Too Many Requests" +msgstr "Demasiadas consultas" + +#: mod/search.php:128 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "Se permite solo una búsqueda por minuto para usuarios no identificados." + +#: mod/search.php:228 +#, php-format +msgid "Items tagged with: %s" +msgstr "Objetos taggeado con: %s" + +#: mod/subthread.php:105 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s está siguiendo las %3$s de %2$s" + +#: mod/suggest.php:29 +msgid "Do you really want to delete this suggestion?" +msgstr "¿Estás seguro de que quieres borrar esta sugerencia?" + +#: mod/suggest.php:73 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "No hay sugerencias disponibles. Si el sitio web es nuevo inténtalo de nuevo dentro de 24 horas." + +#: mod/suggest.php:86 mod/suggest.php:106 +msgid "Ignore/Hide" +msgstr "Ignorar/Ocultar" + +#: mod/tagrm.php:45 +msgid "Tag removed" +msgstr "Etiqueta eliminada" + +#: mod/tagrm.php:84 +msgid "Remove Item Tag" +msgstr "Eliminar etiqueta" + +#: mod/tagrm.php:86 +msgid "Select a tag to remove: " +msgstr "Selecciona una etiqueta para eliminar: " + +#: mod/uexport.php:38 +msgid "Export account" +msgstr "Exportar cuenta" + +#: mod/uexport.php:38 +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 "Exporta la información de tu cuenta y tus contactos. Úsalo para guardar una copia de seguridad de tu cuenta y/o moverla a otro servidor." + +#: mod/uexport.php:39 +msgid "Export all" +msgstr "Exportar todo" + +#: mod/uexport.php:39 +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 "Exporta la información de tu cuenta, contactos y lo demás en JSON. Puede ser un archivo bastante grande, por lo que llevará tiempo. Úsalo para hacer una copia de seguridad completa de tu cuenta (las fotos no se exportarán)" + +#: mod/uexport.php:46 mod/settings.php:97 +msgid "Export personal data" +msgstr "Exportación de datos personales" + +#: mod/update_community.php:21 mod/update_display.php:25 +#: mod/update_network.php:29 mod/update_notes.php:38 mod/update_profile.php:37 +msgid "[Embedded content - reload page to view]" +msgstr "[Contenido incrustado - recarga la página para verlo]" + +#: mod/videos.php:126 +msgid "Do you really want to delete this video?" +msgstr "Realmente quieres eliminar este vídeo?" + +#: mod/videos.php:131 +msgid "Delete Video" +msgstr "Borrar vídeo" + +#: mod/videos.php:210 +msgid "No videos selected" +msgstr "Ningún vídeo seleccionado" + +#: mod/videos.php:404 +msgid "Recent Videos" +msgstr "Vídeos recientes" + +#: mod/videos.php:406 +msgid "Upload New Videos" +msgstr "Subir nuevos vídeos" + +#: mod/viewcontacts.php:78 +msgid "No contacts." +msgstr "Ningún contacto." + +#: mod/viewsrc.php:8 +msgid "Access denied." +msgstr "Acceso denegado." + +#: mod/wall_attach.php:19 mod/wall_attach.php:27 mod/wall_attach.php:78 +#: mod/wall_upload.php:36 mod/wall_upload.php:52 mod/wall_upload.php:110 +#: mod/wall_upload.php:150 mod/wall_upload.php:153 +msgid "Invalid request." +msgstr "Consulta invalida" + +#: mod/wall_attach.php:96 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Disculpa, posiblemente el archivo subido es mas grande que la PHP configuración permite." + +#: mod/wall_attach.php:96 +msgid "Or - did you try to upload an empty file?" +msgstr "Si no - intento de subir un archivo vacío?" + +#: mod/wall_attach.php:107 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "El archivo excede el limite de tamaño de %s" + +#: mod/wall_attach.php:160 mod/wall_attach.php:176 +msgid "File upload failed." +msgstr "Ha fallado la subida del archivo." + +#: mod/wallmessage.php:44 mod/wallmessage.php:108 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Excedido el número máximo de mensajes para %s. El mensaje no se ha enviado." + +#: mod/wallmessage.php:55 +msgid "Unable to check your home location." +msgstr "Imposible comprobar tu servidor de inicio." + +#: mod/wallmessage.php:82 mod/wallmessage.php:91 +msgid "No recipient." +msgstr "Sin receptor." + +#: mod/wallmessage.php:129 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "Si quieres que %s te responda, asegúrate de que la configuración de privacidad permite enviar correo privado a desconocidos." + +#: mod/webfinger.php:11 mod/probe.php:10 +msgid "Only logged in users are permitted to perform a probing." +msgstr "" + +#: mod/dfrn_request.php:103 +msgid "This introduction has already been accepted." +msgstr "Esta presentación ya ha sido aceptada." + +#: mod/dfrn_request.php:126 mod/dfrn_request.php:528 +msgid "Profile location is not valid or does not contain profile information." +msgstr "La dirección del perfil no es válida o no contiene información del perfil." + +#: mod/dfrn_request.php:131 mod/dfrn_request.php:533 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Aviso: La dirección del perfil no tiene un nombre de propietario identificable." + +#: mod/dfrn_request.php:134 mod/dfrn_request.php:536 +msgid "Warning: profile location has no profile photo." +msgstr "Aviso: la dirección del perfil no tiene foto de perfil." + +#: mod/dfrn_request.php:138 mod/dfrn_request.php:540 +#, 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] "no se encontró %d parámetro requerido en el lugar determinado" +msgstr[1] "no se encontraron %d parámetros requeridos en el lugar determinado" + +#: mod/dfrn_request.php:182 +msgid "Introduction complete." +msgstr "Presentación completa." + +#: mod/dfrn_request.php:227 +msgid "Unrecoverable protocol error." +msgstr "Error de protocolo irrecuperable." + +#: mod/dfrn_request.php:255 +msgid "Profile unavailable." +msgstr "Perfil no disponible." + +#: mod/dfrn_request.php:282 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s ha recibido demasiadas solicitudes de conexión hoy." + +#: mod/dfrn_request.php:283 +msgid "Spam protection measures have been invoked." +msgstr "Han sido activadas las medidas de protección contra spam." + +#: mod/dfrn_request.php:284 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Tus amigos serán avisados para que lo intenten de nuevo pasadas 24 horas." + +#: mod/dfrn_request.php:346 +msgid "Invalid locator" +msgstr "Localizador no válido" + +#: mod/dfrn_request.php:355 +msgid "Invalid email address." +msgstr "Dirección de correo incorrecta" + +#: mod/dfrn_request.php:380 +msgid "This account has not been configured for email. Request failed." +msgstr "Esta cuenta no ha sido configurada para el correo. Fallo de solicitud." + +#: mod/dfrn_request.php:483 +msgid "You have already introduced yourself here." +msgstr "Ya te has presentado aquí." + +#: mod/dfrn_request.php:487 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Al parecer, ya eres amigo de %s." + +#: mod/dfrn_request.php:508 +msgid "Invalid profile URL." +msgstr "Dirección de perfil no válida." + +#: mod/dfrn_request.php:593 mod/contacts.php:221 +msgid "Failed to update contact record." +msgstr "Error al actualizar el contacto." + +#: mod/dfrn_request.php:614 +msgid "Your introduction has been sent." +msgstr "Tu presentación ha sido enviada." + +#: mod/dfrn_request.php:656 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "La subscripción remota no se podrá hacer para tu red. Por favor contacta directamente desde tu sistema." + +#: mod/dfrn_request.php:677 +msgid "Please login to confirm introduction." +msgstr "Inicia sesión para confirmar la presentación." + +#: mod/dfrn_request.php:687 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Sesión iniciada con la identificación incorrecta. Entra en este perfil." + +#: mod/dfrn_request.php:701 mod/dfrn_request.php:718 +msgid "Confirm" +msgstr "Confirmar" + +#: mod/dfrn_request.php:713 +msgid "Hide this contact" +msgstr "Ocultar este contacto" + +#: mod/dfrn_request.php:716 +#, php-format +msgid "Welcome home %s." +msgstr "Bienvenido a casa %s" + +#: mod/dfrn_request.php:717 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Por favor, confirma tu solicitud de presentación/conexión con %s." + +#: mod/dfrn_request.php:848 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Por favor introduce tu dirección ID de una de las siguientes redes sociales soportadas:" + +#: mod/dfrn_request.php:872 +#, php-format +msgid "" +"If you are not yet a member of the free social web, follow this link to find a public Friendica site and " +"join us today." +msgstr "Si aun no eres miembro de la red social libre seguí este enlace para encontrara un sitio disponible de friendica y acompañanos hoy mismo" + +#: mod/dfrn_request.php:877 +msgid "Friend/Connection Request" +msgstr "Solicitud de Amistad/Conexión" + +#: mod/dfrn_request.php:878 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Ejemplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" + +#: mod/dfrn_request.php:887 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Web Social Federada" + +#: mod/dfrn_request.php:889 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr "(En vez de usar este formulario, introduce %s en la barra de búsqueda de Diaspora." + +#: mod/item.php:118 +msgid "Unable to locate original post." +msgstr "No se puede encontrar la publicación original." + +#: mod/item.php:345 +msgid "Empty post discarded." +msgstr "Publicación vacía descartada." + +#: mod/item.php:904 +msgid "System error. Post not saved." +msgstr "Error del sistema. Mensaje no guardado." + +#: mod/item.php:995 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Este mensaje te lo ha enviado %s, miembro de la red social Friendica." + +#: mod/item.php:997 +#, php-format +msgid "You may visit them online at %s" +msgstr "Los puedes visitar en línea en %s" + +#: mod/item.php:998 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Por favor contacta con el remitente respondiendo a este mensaje si no deseas recibir estos mensajes." + +#: mod/item.php:1002 +#, php-format +msgid "%s posted an update." +msgstr "%s ha publicado una actualización." + +#: mod/regmod.php:60 +msgid "Account approved." +msgstr "Cuenta aprobada." + +#: mod/regmod.php:88 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registro anulado para %s" + +#: mod/regmod.php:100 +msgid "Please login." +msgstr "Por favor accede." + +#: mod/uimport.php:70 +msgid "Move account" +msgstr "Mover cuenta" + +#: mod/uimport.php:71 +msgid "You can import an account from another Friendica server." +msgstr "Puedes importar una cuenta desde otro servidor de Friendica." + +#: mod/uimport.php:72 +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 "Necesitas exportar tu cuenta del antiguo servidor y subirla aquí. Volveremos a crear tu antigua cuenta con todos tus contactos aquí. También intentaremos de informar a tus amigos de que te has mudado." + +#: mod/uimport.php:73 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "Esta característica es experimental. No podemos importar contactos desde la red OStatus (statusnet/identi.ca) o desde Diaspora*" + +#: mod/uimport.php:74 +msgid "Account file" +msgstr "Archivo de la cuenta" + +#: mod/uimport.php:74 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "Para exportar el perfil vaya a \"Configuracion -> Exportar sus datos personales\" y seleccione \"Exportar cuenta\"" + +#: mod/admin.php:97 msgid "Theme settings updated." msgstr "Configuración de la apariencia actualizada." -#: mod/admin.php:162 mod/admin.php:967 +#: mod/admin.php:166 mod/admin.php:1060 msgid "Site" msgstr "Sitio" -#: mod/admin.php:163 mod/admin.php:901 mod/admin.php:1413 mod/admin.php:1429 +#: mod/admin.php:167 mod/admin.php:994 mod/admin.php:1504 mod/admin.php:1520 msgid "Users" msgstr "Usuarios" -#: mod/admin.php:164 mod/admin.php:1531 mod/admin.php:1594 mod/settings.php:74 +#: mod/admin.php:168 mod/admin.php:1622 mod/admin.php:1685 mod/settings.php:76 msgid "Plugins" msgstr "Módulos" -#: mod/admin.php:165 mod/admin.php:1807 mod/admin.php:1857 +#: mod/admin.php:169 mod/admin.php:1898 mod/admin.php:1948 msgid "Themes" msgstr "Temas" -#: mod/admin.php:166 mod/settings.php:52 +#: mod/admin.php:170 mod/settings.php:54 msgid "Additional features" msgstr "Características adicionales" -#: mod/admin.php:167 +#: mod/admin.php:171 msgid "DB updates" msgstr "Actualizaciones de la Base de Datos" -#: mod/admin.php:168 mod/admin.php:416 +#: mod/admin.php:172 mod/admin.php:513 msgid "Inspect Queue" msgstr "Inspeccionar cola" -#: mod/admin.php:169 mod/admin.php:382 +#: mod/admin.php:173 mod/admin.php:289 +msgid "Server Blocklist" +msgstr "" + +#: mod/admin.php:174 mod/admin.php:479 msgid "Federation Statistics" msgstr "Estadísticas de federación" -#: mod/admin.php:183 mod/admin.php:194 mod/admin.php:1931 +#: mod/admin.php:188 mod/admin.php:199 mod/admin.php:2022 msgid "Logs" msgstr "Registros" -#: mod/admin.php:184 mod/admin.php:1999 +#: mod/admin.php:189 mod/admin.php:2090 msgid "View Logs" msgstr "Ver registro de depuración" -#: mod/admin.php:185 +#: mod/admin.php:190 msgid "probe address" msgstr "probar direccion" -#: mod/admin.php:186 +#: mod/admin.php:191 msgid "check webfinger" msgstr "Verificar webfinger" -#: mod/admin.php:193 +#: mod/admin.php:198 msgid "Plugin Features" msgstr "Características del módulo" -#: mod/admin.php:195 +#: mod/admin.php:200 msgid "diagnostics" msgstr "diagnosticos" -#: mod/admin.php:196 +#: mod/admin.php:201 msgid "User registrations waiting for confirmation" msgstr "Registro de usuarios esperando la confirmación" -#: mod/admin.php:312 +#: mod/admin.php:280 +msgid "The blocked domain" +msgstr "" + +#: mod/admin.php:281 mod/admin.php:294 +msgid "The reason why you blocked this domain." +msgstr "" + +#: mod/admin.php:282 +msgid "Delete domain" +msgstr "" + +#: mod/admin.php:282 +msgid "Check to delete this entry from the blocklist" +msgstr "" + +#: mod/admin.php:288 mod/admin.php:478 mod/admin.php:512 mod/admin.php:592 +#: mod/admin.php:1059 mod/admin.php:1503 mod/admin.php:1621 mod/admin.php:1684 +#: mod/admin.php:1897 mod/admin.php:1947 mod/admin.php:2021 mod/admin.php:2089 +msgid "Administration" +msgstr "Administración" + +#: mod/admin.php:290 +msgid "" +"This page can be used to define a black list of servers from the federated " +"network that are not allowed to interact with your node. For all entered " +"domains you should also give a reason why you have blocked the remote " +"server." +msgstr "" + +#: mod/admin.php:291 +msgid "" +"The list of blocked servers will be made publically available on the " +"/friendica page so that your users and people investigating communication " +"problems can find the reason easily." +msgstr "" + +#: mod/admin.php:292 +msgid "Add new entry to block list" +msgstr "" + +#: mod/admin.php:293 +msgid "Server Domain" +msgstr "" + +#: mod/admin.php:293 +msgid "" +"The domain of the new server to add to the block list. Do not include the " +"protocol." +msgstr "" + +#: mod/admin.php:294 +msgid "Block reason" +msgstr "" + +#: mod/admin.php:295 +msgid "Add Entry" +msgstr "" + +#: mod/admin.php:296 +msgid "Save changes to the blocklist" +msgstr "" + +#: mod/admin.php:297 +msgid "Current Entries in the Blocklist" +msgstr "" + +#: mod/admin.php:300 +msgid "Delete entry from blocklist" +msgstr "" + +#: mod/admin.php:303 +msgid "Delete entry from blocklist?" +msgstr "" + +#: mod/admin.php:328 +msgid "Server added to blocklist." +msgstr "" + +#: mod/admin.php:344 +msgid "Site blocklist updated." +msgstr "" + +#: mod/admin.php:409 msgid "unknown" msgstr "desconocido" -#: mod/admin.php:375 +#: mod/admin.php:472 msgid "" "This page offers you some numbers to the known part of the federated social " "network your Friendica node is part of. These numbers are not complete but " "only reflect the part of the network your node is aware of." msgstr "Esta pagina ofrece algunos datos sobre la red conocida a la que tu nodo friendica esta conectado. Estos nummeros no son completos respecto a las redes federadas, si no refleja los nodos esta instancia conoce. " -#: mod/admin.php:376 +#: mod/admin.php:473 msgid "" "The Auto Discovered Contact Directory feature is not enabled, it " "will improve the data displayed here." msgstr "El modulo directorio de contactos encontrados no esta habilitado, habilitado aumentara la cantidad de datos detallados aquí." -#: mod/admin.php:381 mod/admin.php:415 mod/admin.php:493 mod/admin.php:966 -#: mod/admin.php:1412 mod/admin.php:1530 mod/admin.php:1593 mod/admin.php:1806 -#: mod/admin.php:1856 mod/admin.php:1930 mod/admin.php:1998 -msgid "Administration" -msgstr "Administración" - -#: mod/admin.php:388 +#: mod/admin.php:485 #, php-format msgid "Currently this node is aware of %d nodes from the following platforms:" msgstr "Actualmente este nodo reconoce %d nodos de las siguientes plataformas:" -#: mod/admin.php:418 +#: mod/admin.php:515 msgid "ID" msgstr "ID" -#: mod/admin.php:419 +#: mod/admin.php:516 msgid "Recipient Name" msgstr "Nombre del recipiente" -#: mod/admin.php:420 +#: mod/admin.php:517 msgid "Recipient Profile" msgstr "Perfil del recipiente" -#: mod/admin.php:422 +#: mod/admin.php:519 msgid "Created" msgstr "Creado" -#: mod/admin.php:423 +#: mod/admin.php:520 msgid "Last Tried" msgstr "Ultimo intento" -#: mod/admin.php:424 +#: mod/admin.php:521 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 "Esta pagina muestra la cola de mensajes salientes. Estos son publicaciones cuyo envío inicial fallo. Serán reenviados mas tarde y eventualmente eliminados si la entrega falla permanentemente. " -#: mod/admin.php:449 +#: mod/admin.php:546 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " "InnoDB. As Friendica will use InnoDB only features in the future, you should" " change this! See here for a guide that may be helpful " -"converting the table engines. You may also use the " -"convert_innodb.sql in the /util directory of your " -"Friendica installation.
" -msgstr "Su DB aún funciona con las tablas MyISAM. Debería cambiar el tipo de motror a InnoDB. ¡Como Friendica sólo usará las características de InnoDB en el futuro, debería cambiar esto! Vea aquí para una guía que puede ayudar a convertir las tablas de motor. También puede usar convert_innodb.sql en el directorio /util de su instalación de Friendica.
" +"converting the table engines. You may also use the command php " +"include/dbstructure.php toinnodb of your Friendica installation for an " +"automatic conversion.
" +msgstr "" -#: mod/admin.php:454 +#: mod/admin.php:555 msgid "" -"You are using a MySQL version which does not support all features that " -"Friendica uses. You should consider switching to MariaDB." -msgstr "Está usando una versión de MySQL que no soporta todas las características de Friendica. Debería considerar cambiar a MariaDB." +"The database update failed. Please run \"php include/dbstructure.php " +"update\" from the command line and have a look at the errors that might " +"appear." +msgstr "" -#: mod/admin.php:458 mod/admin.php:1362 +#: mod/admin.php:560 mod/admin.php:1453 msgid "Normal Account" msgstr "Cuenta normal" -#: mod/admin.php:459 mod/admin.php:1363 +#: mod/admin.php:561 mod/admin.php:1454 msgid "Soapbox Account" msgstr "Cuenta tribuna" -#: mod/admin.php:460 mod/admin.php:1364 +#: mod/admin.php:562 mod/admin.php:1455 msgid "Community/Celebrity Account" msgstr "Cuenta de Comunidad/Celebridad" -#: mod/admin.php:461 mod/admin.php:1365 +#: mod/admin.php:563 mod/admin.php:1456 msgid "Automatic Friend Account" msgstr "Cuenta de amistad automática" -#: mod/admin.php:462 +#: mod/admin.php:564 msgid "Blog Account" msgstr "Cuenta de blog" -#: mod/admin.php:463 +#: mod/admin.php:565 msgid "Private Forum" msgstr "Foro privado" -#: mod/admin.php:488 +#: mod/admin.php:587 msgid "Message queues" msgstr "Cola de mensajes" -#: mod/admin.php:494 +#: mod/admin.php:593 msgid "Summary" msgstr "Resumen" -#: mod/admin.php:496 +#: mod/admin.php:595 msgid "Registered users" msgstr "Usuarios registrados" -#: mod/admin.php:498 +#: mod/admin.php:597 msgid "Pending registrations" msgstr "Pendientes de registro" -#: mod/admin.php:499 +#: mod/admin.php:598 msgid "Version" msgstr "Versión" -#: mod/admin.php:504 +#: mod/admin.php:603 msgid "Active plugins" msgstr "Módulos activos" -#: mod/admin.php:529 +#: mod/admin.php:628 msgid "Can not parse base url. Must have at least ://" msgstr "No se puede resolver la direccion URL base.\nDeberá tener al menos ://" -#: mod/admin.php:819 -msgid "RINO2 needs mcrypt php extension to work." -msgstr "RINO2 precisa la extensión mcrypt para funcionar. " - -#: mod/admin.php:827 +#: mod/admin.php:920 msgid "Site settings updated." msgstr "Configuración de actualización." -#: mod/admin.php:855 mod/settings.php:943 +#: mod/admin.php:948 mod/settings.php:944 msgid "No special theme for mobile devices" msgstr "No hay tema especial para dispositivos móviles" -#: mod/admin.php:884 +#: mod/admin.php:977 msgid "No community page" msgstr "No hay pagina de comunidad" -#: mod/admin.php:885 +#: mod/admin.php:978 msgid "Public postings from users of this site" msgstr "Temas públicos de perfiles de este sitio." -#: mod/admin.php:886 +#: mod/admin.php:979 msgid "Global community page" msgstr "Pagina global de comunidad" -#: mod/admin.php:891 mod/contacts.php:538 +#: mod/admin.php:984 mod/contacts.php:541 msgid "Never" msgstr "Nunca" -#: mod/admin.php:892 +#: mod/admin.php:985 msgid "At post arrival" msgstr "A la llegada de una publicación" -#: mod/admin.php:900 mod/contacts.php:565 +#: mod/admin.php:993 mod/contacts.php:568 msgid "Disabled" msgstr "Deshabilitado" -#: mod/admin.php:902 +#: mod/admin.php:995 msgid "Users, Global Contacts" msgstr "Perfiles, contactos globales" -#: mod/admin.php:903 +#: mod/admin.php:996 msgid "Users, Global Contacts/fallback" msgstr "Perfiles, contactos globales/fallback" -#: mod/admin.php:907 +#: mod/admin.php:1000 msgid "One month" msgstr "Un mes" -#: mod/admin.php:908 +#: mod/admin.php:1001 msgid "Three months" msgstr "Tres meses" -#: mod/admin.php:909 +#: mod/admin.php:1002 msgid "Half a year" msgstr "Medio año" -#: mod/admin.php:910 +#: mod/admin.php:1003 msgid "One year" msgstr "Un año" -#: mod/admin.php:915 +#: mod/admin.php:1008 msgid "Multi user instance" msgstr "Sesión multi usuario" -#: mod/admin.php:938 +#: mod/admin.php:1031 msgid "Closed" msgstr "Cerrado" -#: mod/admin.php:939 +#: mod/admin.php:1032 msgid "Requires approval" msgstr "Requiere aprobación" -#: mod/admin.php:940 +#: mod/admin.php:1033 msgid "Open" msgstr "Abierto" -#: mod/admin.php:944 +#: mod/admin.php:1037 msgid "No SSL policy, links will track page SSL state" msgstr "No existe una política de SSL, los vínculos harán un seguimiento del estado de SSL en la página" -#: mod/admin.php:945 +#: mod/admin.php:1038 msgid "Force all links to use SSL" msgstr "Forzar todos los enlaces a utilizar SSL" -#: mod/admin.php:946 +#: mod/admin.php:1039 msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "Certificación personal, usa SSL solo para enlaces locales (no recomendado)" -#: mod/admin.php:968 mod/admin.php:1595 mod/admin.php:1858 mod/admin.php:1932 -#: mod/admin.php:2085 mod/settings.php:681 mod/settings.php:792 -#: mod/settings.php:841 mod/settings.php:908 mod/settings.php:1005 -#: mod/settings.php:1271 +#: mod/admin.php:1061 mod/admin.php:1686 mod/admin.php:1949 mod/admin.php:2023 +#: mod/admin.php:2176 mod/settings.php:682 mod/settings.php:793 +#: mod/settings.php:842 mod/settings.php:909 mod/settings.php:1006 +#: mod/settings.php:1272 msgid "Save Settings" msgstr "Guardar configuración" -#: mod/admin.php:969 mod/register.php:272 -msgid "Registration" -msgstr "Registro" - -#: mod/admin.php:970 +#: mod/admin.php:1063 msgid "File upload" msgstr "Subida de archivo" -#: mod/admin.php:971 +#: mod/admin.php:1064 msgid "Policies" msgstr "Políticas" -#: mod/admin.php:973 +#: mod/admin.php:1066 msgid "Auto Discovered Contact Directory" msgstr "Directorio de contactos descubierto automáticamente" -#: mod/admin.php:974 +#: mod/admin.php:1067 msgid "Performance" msgstr "Rendimiento" -#: mod/admin.php:975 +#: mod/admin.php:1068 msgid "Worker" msgstr "Trabajador (??)" -#: mod/admin.php:976 +#: mod/admin.php:1069 msgid "" "Relocate - WARNING: advanced function. Could make this server unreachable." msgstr "Reubicación - ADVERTENCIA: función avanzada. Puede hacer a este servidor inaccesible. " -#: mod/admin.php:979 +#: mod/admin.php:1072 msgid "Site name" msgstr "Nombre del sitio" -#: mod/admin.php:980 +#: mod/admin.php:1073 msgid "Host name" msgstr "Nombre de dominio" -#: mod/admin.php:981 +#: mod/admin.php:1074 msgid "Sender Email" msgstr "Dirección de origen de correo electrónico" -#: mod/admin.php:981 +#: mod/admin.php:1074 msgid "" "The email address your server shall use to send notification emails from." msgstr "La dirección de correo electrónico que el servidor debería usar como dirección de envío." -#: mod/admin.php:982 +#: mod/admin.php:1075 msgid "Banner/Logo" msgstr "Imagen/Logotipo" -#: mod/admin.php:983 +#: mod/admin.php:1076 msgid "Shortcut icon" msgstr "Icono de atajo" -#: mod/admin.php:983 +#: mod/admin.php:1076 msgid "Link to an icon that will be used for browsers." msgstr "Enlace hacia un icono que sera usado para el navegador." -#: mod/admin.php:984 +#: mod/admin.php:1077 msgid "Touch icon" msgstr "Icono touch" -#: mod/admin.php:984 +#: mod/admin.php:1077 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "Enlace para un icono que sera usado para tablets y moviles." -#: mod/admin.php:985 +#: mod/admin.php:1078 msgid "Additional Info" msgstr "Información adicional" -#: mod/admin.php:985 +#: mod/admin.php:1078 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/siteinfo." msgstr "Para servidores públicos: información adicional que sera publicado en %s/siteinfo." -#: mod/admin.php:986 +#: mod/admin.php:1079 msgid "System language" msgstr "Idioma" -#: mod/admin.php:987 +#: mod/admin.php:1080 msgid "System theme" msgstr "Tema" -#: mod/admin.php:987 +#: mod/admin.php:1080 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "Tema por defecto del sistema, los usuarios podrán elegir el suyo propio en su configuración cambiar configuración del tema" -#: mod/admin.php:988 +#: mod/admin.php:1081 msgid "Mobile system theme" msgstr "Tema de sistema móvil" -#: mod/admin.php:988 +#: mod/admin.php:1081 msgid "Theme for mobile devices" msgstr "Tema para dispositivos móviles" -#: mod/admin.php:989 +#: mod/admin.php:1082 msgid "SSL link policy" msgstr "Política de enlaces SSL" -#: mod/admin.php:989 +#: mod/admin.php:1082 msgid "Determines whether generated links should be forced to use SSL" msgstr "Determina si los enlaces generados deben ser forzados a utilizar SSL" -#: mod/admin.php:990 +#: mod/admin.php:1083 msgid "Force SSL" msgstr "Forzar SSL" -#: mod/admin.php:990 +#: mod/admin.php:1083 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "Forzar todos las consultas No-SSL a SSL. - ATENCIÓN: en algunos sistemas esto puede generar comportamiento recursivo interminable." -#: mod/admin.php:991 +#: mod/admin.php:1084 msgid "Hide help entry from navigation menu" msgstr "Ocultar la ayuda en el menú de navegación" -#: mod/admin.php:991 +#: mod/admin.php:1084 msgid "" "Hides the menu entry for the Help pages from the navigation menu. You can " "still access it calling /help directly." msgstr "Oculta la entrada de las páginas de Ayuda en el menú de navegación. Todavía se puede acceder escribiendo /ayuda directamente." -#: mod/admin.php:992 +#: mod/admin.php:1085 msgid "Single user instance" msgstr "Sesión de usuario único" -#: mod/admin.php:992 +#: mod/admin.php:1085 msgid "Make this instance multi-user or single-user for the named user" msgstr "Haz esta sesión multi-usuario o usuario único para el usuario" -#: mod/admin.php:993 +#: mod/admin.php:1086 msgid "Maximum image size" msgstr "Tamaño máximo de la imagen" -#: mod/admin.php:993 +#: mod/admin.php:1086 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "Tamaño máximo en bytes de las imágenes a subir. Por defecto es 0, que quiere decir que no hay límite." -#: mod/admin.php:994 +#: mod/admin.php:1087 msgid "Maximum image length" msgstr "Largo máximo de imagen" -#: mod/admin.php:994 +#: mod/admin.php:1087 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "Longitud máxima en píxeles del lado más largo de las imágenes subidas. Por defecto es -1, que significa que no hay límites." -#: mod/admin.php:995 +#: mod/admin.php:1088 msgid "JPEG image quality" msgstr "Calidad de imagen JPEG" -#: mod/admin.php:995 +#: mod/admin.php:1088 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "Los archivos JPEG subidos se guardarán con este ajuste de calidad [0-100]. Por defecto es 100, que es calidad máxima." -#: mod/admin.php:997 +#: mod/admin.php:1090 msgid "Register policy" msgstr "Política de registros" -#: mod/admin.php:998 +#: mod/admin.php:1091 msgid "Maximum Daily Registrations" msgstr "Registros Máximos Diarios" -#: mod/admin.php:998 +#: mod/admin.php:1091 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 anteriormente se ha permitido el registro, esto establece el número máximo de registro de nuevos usuarios aceptados por día. Si el registro se establece como cerrado, esta opción no tiene efecto." -#: mod/admin.php:999 +#: mod/admin.php:1092 msgid "Register text" msgstr "Términos" -#: mod/admin.php:999 +#: mod/admin.php:1092 msgid "Will be displayed prominently on the registration page." msgstr "Se mostrará en un lugar destacado en la página de registro." -#: mod/admin.php:1000 +#: mod/admin.php:1093 msgid "Accounts abandoned after x days" msgstr "Cuentas abandonadas después de x días" -#: mod/admin.php:1000 +#: mod/admin.php:1093 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "No gastará recursos del sistema creando sondeos a sitios externos para cuentas abandonadas. Introduce 0 para ningún límite temporal." -#: mod/admin.php:1001 +#: mod/admin.php:1094 msgid "Allowed friend domains" msgstr "Dominios amigos permitidos" -#: mod/admin.php:1001 +#: mod/admin.php:1094 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Lista separada por comas de los dominios que están autorizados para establecer conexiones con este sitio. Se aceptan comodines. Dejar en blanco para permitir cualquier dominio" -#: mod/admin.php:1002 +#: mod/admin.php:1095 msgid "Allowed email domains" msgstr "Dominios de correo permitidos" -#: mod/admin.php:1002 +#: mod/admin.php:1095 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 "Lista separada por comas de los dominios que están autorizados en las direcciones de correo para registrarse en este sitio. Se aceptan comodines. Dejar en blanco para permitir cualquier dominio" -#: mod/admin.php:1003 +#: mod/admin.php:1096 msgid "Block public" msgstr "Bloqueo público" -#: mod/admin.php:1003 +#: mod/admin.php:1096 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Marca para bloquear el acceso público a todas las páginas personales, aún siendo públicas, hasta que no hayas iniciado tu sesión." -#: mod/admin.php:1004 +#: mod/admin.php:1097 msgid "Force publish" msgstr "Forzar publicación" -#: mod/admin.php:1004 +#: mod/admin.php:1097 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Marca para forzar que todos los perfiles de este sitio sean listados en el directorio del sitio." -#: mod/admin.php:1005 +#: mod/admin.php:1098 msgid "Global directory URL" msgstr "URL del directorio global." -#: mod/admin.php:1005 +#: mod/admin.php:1098 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "URL del directorio global. Si se deja este campo vacío, el directorio global sera completamente inaccesible para la instancia." -#: mod/admin.php:1006 +#: mod/admin.php:1099 msgid "Allow threaded items" msgstr "Permitir elementos en hilo" -#: mod/admin.php:1006 +#: mod/admin.php:1099 msgid "Allow infinite level threading for items on this site." msgstr "Permitir infinitos niveles de hilo para los elementos de este sitio." -#: mod/admin.php:1007 +#: mod/admin.php:1100 msgid "Private posts by default for new users" msgstr "Publicaciones privadas por defecto para usuarios nuevos" -#: mod/admin.php:1007 +#: mod/admin.php:1100 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." msgstr "Ajusta los permisos de publicación por defecto a los miembros nuevos al grupo privado por defecto en vez del público." -#: mod/admin.php:1008 +#: mod/admin.php:1101 msgid "Don't include post content in email notifications" msgstr "No incluir el contenido del post en las notificaciones de correo electrónico" -#: mod/admin.php:1008 +#: mod/admin.php:1101 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr "No incluye el contenido de un mensaje/comentario/mensaje privado/etc. en las notificaciones de correo electrónico que se envían desde este sitio, como una medida de privacidad." -#: mod/admin.php:1009 +#: mod/admin.php:1102 msgid "Disallow public access to addons listed in the apps menu." msgstr "Deshabilitar acceso a addons listados en el menú de aplicaciones." -#: mod/admin.php:1009 +#: mod/admin.php:1102 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "Habilitando esta opción restringe el acceso a addons en el menú de aplicaciones a usuarios identificados." -#: mod/admin.php:1010 +#: mod/admin.php:1103 msgid "Don't embed private images in posts" msgstr "No agregar imágenes privados en las publicaciones" -#: mod/admin.php:1010 +#: mod/admin.php:1103 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 " @@ -3767,218 +6600,220 @@ msgid "" "while." msgstr "No reemplazar imágenes privadas guardadas localmente en el servidor con imágenes integrados en los envíos. Esto significa que contactos que reciben publicaciones tendrán que autenticarse y cargar cada imagen, lo que puede demorar." -#: mod/admin.php:1011 +#: mod/admin.php:1104 msgid "Allow Users to set remote_self" msgstr "Permitir a los usuarios de definir perfiles_remotos" -#: mod/admin.php:1011 +#: mod/admin.php:1104 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 "Al habilitar esta opción, cada perfil tiene el permiso de marcar cualquiera de sus contactos como un perfil_remoto. Habilitar la opción perfil_remoto para un contacto genera que todas las publicaciones de este contacto seran re-publicado en el muro del perfil." -#: mod/admin.php:1012 +#: mod/admin.php:1105 msgid "Block multiple registrations" msgstr "Bloquear registros multiples" -#: mod/admin.php:1012 +#: mod/admin.php:1105 msgid "Disallow users to register additional accounts for use as pages." msgstr "Impedir que los usuarios registren cuentas adicionales para su uso como páginas." -#: mod/admin.php:1013 +#: mod/admin.php:1106 msgid "OpenID support" msgstr "Soporte OpenID" -#: mod/admin.php:1013 +#: mod/admin.php:1106 msgid "OpenID support for registration and logins." msgstr "Soporte OpenID para registros y accesos." -#: mod/admin.php:1014 +#: mod/admin.php:1107 msgid "Fullname check" msgstr "Comprobar Nombre completo" -#: mod/admin.php:1014 +#: mod/admin.php:1107 msgid "" "Force users to register with a space between firstname and lastname in Full " "name, as an antispam measure" msgstr "Fuerza a los usuarios a registrarse con un espacio entre su nombre y su apellido en el campo Nombre completo como medida anti-spam" -#: mod/admin.php:1015 -msgid "UTF-8 Regular expressions" -msgstr "Expresiones regulares UTF-8" - -#: mod/admin.php:1015 -msgid "Use PHP UTF8 regular expressions" -msgstr "Usar expresiones regulares de UTF8 en PHP" - -#: mod/admin.php:1016 +#: mod/admin.php:1108 msgid "Community Page Style" msgstr "Estilo de pagina de comunidad" -#: mod/admin.php:1016 +#: mod/admin.php:1108 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 de pagina de comunidad a visualizar. 'Comunidad global' muestra todas las publicaciones publicas de la red abierta federada que llega a este servidor." -#: mod/admin.php:1017 +#: mod/admin.php:1109 msgid "Posts per user on community page" msgstr "Publicaciones por usuario en la pagina de comunidad" -#: mod/admin.php:1017 +#: mod/admin.php:1109 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "'Global Community')" msgstr "El numero máximo de publicaciones por usuario que aparecerán en la pagina de comunidad. (No valido para 'comunidad global')" -#: mod/admin.php:1018 +#: mod/admin.php:1110 msgid "Enable OStatus support" msgstr "Permitir soporte OStatus" -#: mod/admin.php:1018 +#: mod/admin.php:1110 msgid "" "Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public, so privacy warnings will be " "occasionally displayed." msgstr "Proporcionar OStatus compatibilidad integrada (StatusNet, GNU Social, Quitter etc.). Todas las comunicaciones en OStatus son publicas así que eventuales advertencias serán ocasionalmente desplegadas." -#: mod/admin.php:1019 +#: mod/admin.php:1111 msgid "OStatus conversation completion interval" msgstr "Intervalo de actualización de conversaciones OStatus" -#: mod/admin.php:1019 +#: mod/admin.php:1111 msgid "" "How often shall the poller check for new entries in OStatus conversations? " "This can be a very ressource task." msgstr "Cuan seguido el recolector deberá buscar nuevas entradas en OStatus? Esto puede ser un trabajo de mucha carga para los recursos del servidor." -#: mod/admin.php:1020 +#: mod/admin.php:1112 msgid "Only import OStatus threads from our contacts" msgstr "Solo importar OStatus temas de nuestros (?) contactos." -#: mod/admin.php:1020 +#: mod/admin.php:1112 msgid "" "Normally we import every content from our OStatus contacts. With this option" " we only store threads that are started by a contact that is known on our " "system." msgstr "Normalmente importamos todo el contenido de los contactos de OStatus. Con esta opción solamente se guardan temas que fueron iniciados por contactos que son conocidos de la instancia.\n(nota de traducción, no se entiende muy bien la función en base al texto original)" -#: mod/admin.php:1021 +#: mod/admin.php:1113 msgid "OStatus support can only be enabled if threading is enabled." msgstr "Solo se puede habilitar el soporte OStatus si threading (comentarios en fila) se encuentra habilitado." -#: mod/admin.php:1023 +#: mod/admin.php:1115 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "El soporte para Diaspora* no se puede habilitar porque friendica se instalo en un directorio subalterno (sub directory)." -#: mod/admin.php:1024 +#: mod/admin.php:1116 msgid "Enable Diaspora support" msgstr "Habilitar el soporte para Diaspora*" -#: mod/admin.php:1024 +#: mod/admin.php:1116 msgid "Provide built-in Diaspora network compatibility." msgstr "Provee una compatibilidad con la red de Diaspora." -#: mod/admin.php:1025 +#: mod/admin.php:1117 msgid "Only allow Friendica contacts" msgstr "Permitir solo contactos de Friendica" -#: mod/admin.php:1025 +#: mod/admin.php:1117 msgid "" "All contacts must use Friendica protocols. All other built-in communication " "protocols disabled." msgstr "Todos los contactos deben usar protocolos de Friendica. El resto de protocolos serán desactivados." -#: mod/admin.php:1026 +#: mod/admin.php:1118 msgid "Verify SSL" msgstr "Verificar SSL" -#: mod/admin.php:1026 +#: mod/admin.php:1118 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 quieres puedes activar la comprobación estricta de certificados. Esto significa que serás incapaz de conectar con ningún sitio que use certificados SSL autofirmados." -#: mod/admin.php:1027 +#: mod/admin.php:1119 msgid "Proxy user" msgstr "Usuario proxy" -#: mod/admin.php:1028 +#: mod/admin.php:1120 msgid "Proxy URL" msgstr "Dirección proxy" -#: mod/admin.php:1029 +#: mod/admin.php:1121 msgid "Network timeout" msgstr "Tiempo de espera de red" -#: mod/admin.php:1029 +#: mod/admin.php:1121 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Valor en segundos. Usar 0 para dejarlo sin límites (no se recomienda)." -#: mod/admin.php:1030 +#: mod/admin.php:1122 msgid "Maximum Load Average" msgstr "Promedio de carga máxima" -#: mod/admin.php:1030 +#: mod/admin.php:1122 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "Carga máxima del sistema antes de que la entrega y los procesos de sondeo sean retrasados - por defecto 50." -#: mod/admin.php:1031 +#: mod/admin.php:1123 msgid "Maximum Load Average (Frontend)" msgstr "Carga máxima promedio (frontend)" -#: mod/admin.php:1031 +#: mod/admin.php:1123 msgid "Maximum system load before the frontend quits service - default 50." msgstr "Carga máxima del sistema antes de que el frontend cancele el servicio - por defecto 50." -#: mod/admin.php:1032 +#: mod/admin.php:1124 +msgid "Minimal Memory" +msgstr "" + +#: mod/admin.php:1124 +msgid "" +"Minimal free memory in MB for the poller. Needs access to /proc/meminfo - " +"default 0 (deactivated)." +msgstr "" + +#: mod/admin.php:1125 msgid "Maximum table size for optimization" msgstr "Tamaño máximo de las tablas para la optimización." -#: mod/admin.php:1032 +#: mod/admin.php:1125 msgid "" "Maximum table size (in MB) for the automatic optimization - default 100 MB. " "Enter -1 to disable it." msgstr "Tamaño máximo de tablas (en MB) para la optimización automática - por defecto 100MB. Ingrese -1 para deshabilitar." -#: mod/admin.php:1033 +#: mod/admin.php:1126 msgid "Minimum level of fragmentation" msgstr "Nivel mínimo de fragmentación " -#: mod/admin.php:1033 +#: mod/admin.php:1126 msgid "" "Minimum fragmenation level to start the automatic optimization - default " "value is 30%." msgstr "Nivel mínimo de fragmentación para para comenzar la optimización - valor por defecto es 30%. " -#: mod/admin.php:1035 +#: mod/admin.php:1128 msgid "Periodical check of global contacts" msgstr "Verificación periódica de los contactos globales." -#: mod/admin.php:1035 +#: mod/admin.php:1128 msgid "" "If enabled, the global contacts are checked periodically for missing or " "outdated data and the vitality of the contacts and servers." msgstr "Habilitado los contactos globales son verificado periódicamente por datos faltantes o datos obsoletos como también por la vitalidad de los contactos y servidores." -#: mod/admin.php:1036 +#: mod/admin.php:1129 msgid "Days between requery" msgstr "Días entre búsquedas" -#: mod/admin.php:1036 +#: mod/admin.php:1129 msgid "Number of days after which a server is requeried for his contacts." msgstr "Cantidad de días hasta que un servidor es consultado por sus contactos." -#: mod/admin.php:1037 +#: mod/admin.php:1130 msgid "Discover contacts from other servers" msgstr "Descubrir contactos de otros servidores" -#: mod/admin.php:1037 +#: mod/admin.php:1130 msgid "" "Periodically query other servers for contacts. You can choose between " "'users': the users on the remote system, 'Global Contacts': active contacts " @@ -3988,32 +6823,32 @@ msgid "" "Global Contacts'." msgstr "Recoger periódicamente información sobre perfiles en otros servidores. Puede elegir entre 'usuarios': perfiles de un sistema remoto, 'contactos globales': contactos activos que son conocidos por el servidor. El fallback es para servidors redmatrix y instalaciones viejas de friendica en las que los contactos no estaban a disposición. El fallback aumenta la carga del servidor, asi que la configuración recomendada es 'usuarios, contactos globales'" -#: mod/admin.php:1038 +#: mod/admin.php:1131 msgid "Timeframe for fetching global contacts" msgstr "Intervalos de tiempo para revisar contactos globales." -#: mod/admin.php:1038 +#: mod/admin.php:1131 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 "Cuando la revisacion es activada, este valor define el intervalo de tiempo de la actividad de los contactos globales que son recolectados de los servidores. (?)" -#: mod/admin.php:1039 +#: mod/admin.php:1132 msgid "Search the local directory" msgstr "Buscar el directorio local" -#: mod/admin.php:1039 +#: mod/admin.php:1132 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 "Buscar en el directorio local en vez del directorio global. Cuando se busca localmente, cada busqueda sera efectuada en el directorio global en el background. Esto mejora los resultados de la busqueda cuando la misma es repetida." -#: mod/admin.php:1041 +#: mod/admin.php:1134 msgid "Publish server information" msgstr "Publicar información del servidor" -#: mod/admin.php:1041 +#: mod/admin.php:1134 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 " @@ -4021,153 +6856,133 @@ msgid "" " href='http://the-federation.info/'>the-federation.info for details." msgstr "Si habilitado, datos generales del servidor y estadisticas de uso serán publicados. Los datos contienen el nombre y la versión del servidor, numero de usuarios con perfiles públicos, cantidad de temas publicados y los protocolos y conectores activados. Vea the-federation.info por detalles." -#: mod/admin.php:1043 -msgid "Use MySQL full text engine" -msgstr "Usar motor MySQL de texto completo" - -#: mod/admin.php:1043 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "Activa el motor de texto completo. Agiliza las búsquedas, pero solo busca cuatro o más caracteres." - -#: mod/admin.php:1044 +#: mod/admin.php:1136 msgid "Suppress Tags" msgstr "Suprimir tags" -#: mod/admin.php:1044 +#: mod/admin.php:1136 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "Suprimir la lista de tags al final de una publicación." -#: mod/admin.php:1045 +#: mod/admin.php:1137 msgid "Path to item cache" msgstr "Ruta a la caché del objeto" -#: mod/admin.php:1045 +#: mod/admin.php:1137 msgid "The item caches buffers generated bbcode and external images." msgstr "El buffer de cache de items generado para bbcodes e imágenes externas. " -#: mod/admin.php:1046 +#: mod/admin.php:1138 msgid "Cache duration in seconds" msgstr "Duración de la caché en segundos" -#: mod/admin.php:1046 +#: mod/admin.php:1138 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 "¿Por cuanto tiempo deberían los archives ser almacenados en el cache? Valor por defecto 86400 segundos (un día). Para deshabilita el item cache, ajuste el valor a -1." -#: mod/admin.php:1047 +#: mod/admin.php:1139 msgid "Maximum numbers of comments per post" msgstr "Numero máximo de respuestas por tema" -#: mod/admin.php:1047 +#: mod/admin.php:1139 msgid "How much comments should be shown for each post? Default value is 100." msgstr "¿Cuantos comentarios deberían ser mostrados por tema? Valor por defecto es 100." -#: mod/admin.php:1048 +#: mod/admin.php:1140 msgid "Temp path" msgstr "Ruta a los temporales" -#: mod/admin.php:1048 +#: mod/admin.php:1140 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "Si tiene un sistema restringido en donde el servidor web no puede acceder la dirección del sistema temp, ingrese una dirección alternativa aquí. " -#: mod/admin.php:1049 +#: mod/admin.php:1141 msgid "Base path to installation" msgstr "Ruta base para la instalación" -#: mod/admin.php:1049 +#: mod/admin.php:1141 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 "Si el sistema no puede detectar el acceso correcto a la instalación, ingrese la dirección correcta aquí. Esta configuración solo debería utilizarse si si usa un sistema restringido y enlaces simbolicos a su webroot." -#: mod/admin.php:1050 +#: mod/admin.php:1142 msgid "Disable picture proxy" msgstr "Deshabilitar proxy de imagen" -#: mod/admin.php:1050 +#: mod/admin.php:1142 msgid "" "The picture proxy increases performance and privacy. It shouldn't be used on" " systems with very low bandwith." msgstr "El proxy de imagen mejora el performance y privacidad. No debería ser usado en sistemas con poco ancho de banda." -#: mod/admin.php:1051 +#: mod/admin.php:1143 msgid "Only search in tags" msgstr "Solo buscar en tags" -#: mod/admin.php:1051 +#: mod/admin.php:1143 msgid "On large systems the text search can slow down the system extremely." msgstr "En sistemas grandes, la búsqueda de texto puede enlentecer el sistema gravemente." -#: mod/admin.php:1053 +#: mod/admin.php:1145 msgid "New base url" msgstr "Nueva URLbase" -#: mod/admin.php:1053 +#: mod/admin.php:1145 msgid "" "Change base url for this server. Sends relocate message to all DFRN contacts" " of all users." msgstr "Cambiar base URL para este servidor. Envía mensajes de relocalisación a todos los contactos DFRN." -#: mod/admin.php:1055 +#: mod/admin.php:1147 msgid "RINO Encryption" msgstr "Encryptado RINO" -#: mod/admin.php:1055 +#: mod/admin.php:1147 msgid "Encryption layer between nodes." msgstr "Capa de encryptación entre nodos." -#: mod/admin.php:1056 -msgid "Embedly API key" -msgstr "Embedly llave de API (API key) " - -#: mod/admin.php:1056 -msgid "" -"Embedly is used to fetch additional data for " -"web pages. This is an optional parameter." -msgstr "Embedly es usado para recolectar datos adicionales para paginas web. Esto es un parámetro opcional." - -#: mod/admin.php:1058 +#: mod/admin.php:1149 msgid "Maximum number of parallel workers" msgstr "Numero máximo de trabajos paralelos de fondo." -#: mod/admin.php:1058 +#: mod/admin.php:1149 msgid "" "On shared hosters set this to 2. On larger systems, values of 10 are great. " "Default value is 4." msgstr "Ajustar a 2 en un servidor compartido (shared hosting).\nEn sistemas grandes valores como 10 son excelentes.\nValor por defecto es 4." -#: mod/admin.php:1059 +#: mod/admin.php:1150 msgid "Don't use 'proc_open' with the worker" msgstr "No use 'proc_open' junto al \"trabajador\"!" -#: mod/admin.php:1059 +#: mod/admin.php:1150 msgid "" "Enable this if your system doesn't allow the use of 'proc_open'. This can " "happen on shared hosters. If this is enabled you should increase the " "frequency of poller calls in your crontab." msgstr "Habilite esta función si el sistema no permite el uso de 'proc_open'. Esto suelo suceder en servidores compartidos (shared hosting). Si esta función se habilita se debería incrementar la frecuencia de llamadas del poller (poller calls) en la pestaña de trabajos cron. (¡en el hosting?)" -#: mod/admin.php:1060 +#: mod/admin.php:1151 msgid "Enable fastlane" msgstr "Habilitar ascenso rápido" -#: mod/admin.php:1060 +#: mod/admin.php:1151 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes" " with higher priority are blocked by processes of lower priority." msgstr "Cuando está habilitado, el mecanismo ascenso rápido inicia un trabajador adicional si los procesos de mayor prioridad son bloqueados por prcesos de menor prioridad." -#: mod/admin.php:1061 +#: mod/admin.php:1152 msgid "Enable frontend worker" msgstr "Habilitar trabajador de interfaz" -#: mod/admin.php:1061 +#: mod/admin.php:1152 msgid "" "When enabled the Worker process is triggered when backend access is " "performed (e.g. messages being delivered). On smaller sites you might want " @@ -4177,66 +6992,66 @@ msgid "" "this." msgstr "Cuando está habilitado, el proceso de Trabajador se activa cuando se ejecuta el acceso de respaldo (ej. mensajes siendo entregados). En páginas más pequeñas usted puede querer llamar a yourdomain.tld/worker en una base regular mediante un trabajo cron externo. Sólo debería habilitar esta opción si no puede utilizar trabajos cron/scheduled en su servidor. El proceso de trabajador en segundo plano necesita ser activado para eso." -#: mod/admin.php:1091 +#: mod/admin.php:1182 msgid "Update has been marked successful" msgstr "La actualización se ha completado con éxito" -#: mod/admin.php:1099 +#: mod/admin.php:1190 #, php-format msgid "Database structure update %s was successfully applied." msgstr "Actualización de base de datos %s fue aplicada con éxito." -#: mod/admin.php:1102 +#: mod/admin.php:1193 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "El paso de actualización de la estructura de la base de datos %s fallo con el mensaje de error: %s" -#: mod/admin.php:1116 +#: mod/admin.php:1207 #, php-format msgid "Executing %s failed with error: %s" msgstr "Paso %s fallo con el error: %s" -#: mod/admin.php:1119 +#: mod/admin.php:1210 #, php-format msgid "Update %s was successfully applied." msgstr "Actualización %s aplicada con éxito." -#: mod/admin.php:1122 +#: mod/admin.php:1213 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "La actualización %s no ha informado, se desconoce el estado." -#: mod/admin.php:1125 +#: mod/admin.php:1216 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "No había función adicional de actualización %s que necesitaba ser requerida." -#: mod/admin.php:1145 +#: mod/admin.php:1236 msgid "No failed updates." msgstr "Actualizaciones sin fallos." -#: mod/admin.php:1146 +#: mod/admin.php:1237 msgid "Check database structure" msgstr "Revisar estructura de la base de datos" -#: mod/admin.php:1151 +#: mod/admin.php:1242 msgid "Failed Updates" msgstr "Actualizaciones fallidas" -#: mod/admin.php:1152 +#: mod/admin.php:1243 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "No se incluyen las anteriores a la 1139, que no indicaban su estado." -#: mod/admin.php:1153 +#: mod/admin.php:1244 msgid "Mark success (if update was manually applied)" msgstr "Marcar como correcta (si actualizaste manualmente)" -#: mod/admin.php:1154 +#: mod/admin.php:1245 msgid "Attempt to execute this update step automatically" msgstr "Intentando ejecutar este paso automáticamente" -#: mod/admin.php:1188 +#: mod/admin.php:1279 #, php-format msgid "" "\n" @@ -4244,7 +7059,7 @@ msgid "" "\t\t\t\tthe administrator of %2$s has set up an account for you." msgstr "\n\t\t\tEstimado %1$s,\n\t\t\t\tel administrador de %2$s ha creado una cuenta para usted." -#: mod/admin.php:1191 +#: mod/admin.php:1282 #, php-format msgid "" "\n" @@ -4274,181 +7089,172 @@ msgid "" "\t\t\tThank you and welcome to %4$s." msgstr "\n\t\t\tLos detalles de acceso son las siguientes:\n\n\t\t\tDirección del sitio:\t%1$s\n\t\t\tNombre de la cuenta:\t\t%2$s\n\t\t\tContraseña:\t\t%3$s\n\n\t\t\tPodrá cambiar la contraseña desde la pagina de configuración de su cuenta después de acceder a la misma\n\t\t\ten.\n\n\t\t\tPor favor tome unos minutos para revisar las opciones demás de la cuenta en dicha pagina de configuración.\n\n\t\t\tTambién podrá agregar informaciones adicionales a su pagina de perfil predeterminado. \n\t\t\t(en la pagina \"Perfiles\") para que otras personas pueden encontrarlo fácilmente.\n\n\t\t\tRecomendamos que elija un nombre apropiado, agregando una imagen de perfil,\n\t\t\tagregando algunas palabras claves de la cuenta (muy útil para hacer nuevos amigos) - y \n\t\t\tquizás el país en donde vive; si no quiere ser mas especifico\n\t\t\tque eso.\n\n\t\t\tRespetamos absolutamente su derecho a la privacidad y ninguno de estos detalles es necesario.\n\t\t\tSi eres nuevo aquí y no conoces a nadie, estos detalles pueden ayudarte\n\t\t\tpara hacer nuevas e interesantes amistades.\n\n\t\t\tGracias y bienvenido a %4$s." -#: mod/admin.php:1235 +#: mod/admin.php:1326 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" msgstr[0] "%s usuario bloqueado/desbloqueado" msgstr[1] "%s usuarios bloqueados/desbloqueados" -#: mod/admin.php:1242 +#: mod/admin.php:1333 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "%s usuario eliminado" msgstr[1] "%s usuarios eliminados" -#: mod/admin.php:1289 +#: mod/admin.php:1380 #, php-format msgid "User '%s' deleted" msgstr "Usuario '%s' eliminado" -#: mod/admin.php:1297 +#: mod/admin.php:1388 #, php-format msgid "User '%s' unblocked" msgstr "Usuario '%s' desbloqueado" -#: mod/admin.php:1297 +#: mod/admin.php:1388 #, php-format msgid "User '%s' blocked" msgstr "Usuario '%s' bloqueado'" -#: mod/admin.php:1405 mod/admin.php:1418 mod/admin.php:1431 mod/admin.php:1447 -#: mod/crepair.php:167 mod/settings.php:683 mod/settings.php:709 -msgid "Name" -msgstr "Nombre" - -#: mod/admin.php:1405 mod/admin.php:1431 +#: mod/admin.php:1496 mod/admin.php:1522 msgid "Register date" msgstr "Fecha de registro" -#: mod/admin.php:1405 mod/admin.php:1431 +#: mod/admin.php:1496 mod/admin.php:1522 msgid "Last login" msgstr "Último acceso" -#: mod/admin.php:1405 mod/admin.php:1431 +#: mod/admin.php:1496 mod/admin.php:1522 msgid "Last item" msgstr "Último elemento" -#: mod/admin.php:1405 mod/settings.php:43 +#: mod/admin.php:1496 mod/settings.php:45 msgid "Account" msgstr "Cuenta" -#: mod/admin.php:1414 +#: mod/admin.php:1505 msgid "Add User" msgstr "Agregar usuario" -#: mod/admin.php:1415 +#: mod/admin.php:1506 msgid "select all" msgstr "seleccionar todo" -#: mod/admin.php:1416 +#: mod/admin.php:1507 msgid "User registrations waiting for confirm" msgstr "Registro de usuarios esperando confirmación" -#: mod/admin.php:1417 +#: mod/admin.php:1508 msgid "User waiting for permanent deletion" msgstr "Usuario esperando anulación permanente." -#: mod/admin.php:1418 +#: mod/admin.php:1509 msgid "Request date" msgstr "Solicitud de fecha" -#: mod/admin.php:1419 +#: mod/admin.php:1510 msgid "No registrations." msgstr "Sin registros." -#: mod/admin.php:1420 +#: mod/admin.php:1511 msgid "Note from the user" msgstr "Nota para el usuario" -#: mod/admin.php:1421 mod/notifications.php:176 mod/notifications.php:255 -msgid "Approve" -msgstr "Aprobar" - -#: mod/admin.php:1422 +#: mod/admin.php:1513 msgid "Deny" msgstr "Denegado" -#: mod/admin.php:1424 mod/contacts.php:613 mod/contacts.php:813 -#: mod/contacts.php:991 +#: mod/admin.php:1515 mod/contacts.php:616 mod/contacts.php:816 +#: mod/contacts.php:994 msgid "Block" msgstr "Bloquear" -#: mod/admin.php:1425 mod/contacts.php:613 mod/contacts.php:813 -#: mod/contacts.php:991 +#: mod/admin.php:1516 mod/contacts.php:616 mod/contacts.php:816 +#: mod/contacts.php:994 msgid "Unblock" msgstr "Desbloquear" -#: mod/admin.php:1426 +#: mod/admin.php:1517 msgid "Site admin" msgstr "Administrador de la web" -#: mod/admin.php:1427 +#: mod/admin.php:1518 msgid "Account expired" msgstr "Cuenta caducada" -#: mod/admin.php:1430 +#: mod/admin.php:1521 msgid "New User" msgstr "Nuevo usuario" -#: mod/admin.php:1431 +#: mod/admin.php:1522 msgid "Deleted since" msgstr "Borrado desde" -#: mod/admin.php:1436 +#: mod/admin.php:1527 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "¡Los usuarios seleccionados serán eliminados!\\n\\n¡Todo lo que hayan publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?" -#: mod/admin.php:1437 +#: mod/admin.php:1528 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 "¡El usuario {0} será eliminado!\\n\\n¡Todo lo que haya publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?" -#: mod/admin.php:1447 +#: mod/admin.php:1538 msgid "Name of the new user." msgstr "Nombre del nuevo usuario" -#: mod/admin.php:1448 +#: mod/admin.php:1539 msgid "Nickname" msgstr "Apodo" -#: mod/admin.php:1448 +#: mod/admin.php:1539 msgid "Nickname of the new user." msgstr "Apodo del nuevo perfil." -#: mod/admin.php:1449 +#: mod/admin.php:1540 msgid "Email address of the new user." msgstr "Dirección de correo del nuevo perfil." -#: mod/admin.php:1492 +#: mod/admin.php:1583 #, php-format msgid "Plugin %s disabled." msgstr "Módulo %s deshabilitado." -#: mod/admin.php:1496 +#: mod/admin.php:1587 #, php-format msgid "Plugin %s enabled." msgstr "Módulo %s habilitado." -#: mod/admin.php:1507 mod/admin.php:1759 +#: mod/admin.php:1598 mod/admin.php:1850 msgid "Disable" msgstr "Desactivado" -#: mod/admin.php:1509 mod/admin.php:1761 +#: mod/admin.php:1600 mod/admin.php:1852 msgid "Enable" msgstr "Activado" -#: mod/admin.php:1532 mod/admin.php:1808 +#: mod/admin.php:1623 mod/admin.php:1899 msgid "Toggle" msgstr "Activar" -#: mod/admin.php:1540 mod/admin.php:1817 +#: mod/admin.php:1631 mod/admin.php:1908 msgid "Author: " msgstr "Autor:" -#: mod/admin.php:1541 mod/admin.php:1818 +#: mod/admin.php:1632 mod/admin.php:1909 msgid "Maintainer: " msgstr "Mantenedor: " -#: mod/admin.php:1596 +#: mod/admin.php:1687 msgid "Reload active plugins" msgstr "Recargar plugins activos" -#: mod/admin.php:1601 +#: mod/admin.php:1692 #, php-format msgid "" "There are currently no plugins available on your node. You can find the " @@ -4456,70 +7262,70 @@ msgid "" "in the open plugin registry at %2$s" msgstr "No ay plugins habilitados en este nodo. Encontrara los repositorios oficiales de plugins en %1$s y posiblemente encontrara mas plugins interesantes en el registro abierto de plugins aquí %2$s ." -#: mod/admin.php:1720 +#: mod/admin.php:1811 msgid "No themes found." msgstr "No se encontraron temas." -#: mod/admin.php:1799 +#: mod/admin.php:1890 msgid "Screenshot" msgstr "Captura de pantalla" -#: mod/admin.php:1859 +#: mod/admin.php:1950 msgid "Reload active themes" msgstr "Recargar interfaces de usuario activos" -#: mod/admin.php:1864 +#: mod/admin.php:1955 #, php-format msgid "No themes found on the system. They should be paced in %1$s" msgstr "No se encuentran interfaces en el sistema. Deberían estar localizados (paced) en %1$s" -#: mod/admin.php:1865 +#: mod/admin.php:1956 msgid "[Experimental]" msgstr "[Experimental]" -#: mod/admin.php:1866 +#: mod/admin.php:1957 msgid "[Unsupported]" msgstr "[Sin soporte]" -#: mod/admin.php:1890 +#: mod/admin.php:1981 msgid "Log settings updated." msgstr "Configuración de registro actualizada." -#: mod/admin.php:1922 +#: mod/admin.php:2013 msgid "PHP log currently enabled." msgstr "Registro PHP actualmente disponible." -#: mod/admin.php:1924 +#: mod/admin.php:2015 msgid "PHP log currently disabled." msgstr "Registro PHP actualmente deshabilitado." -#: mod/admin.php:1933 +#: mod/admin.php:2024 msgid "Clear" msgstr "Limpiar" -#: mod/admin.php:1938 +#: mod/admin.php:2029 msgid "Enable Debugging" msgstr "Habilitar debugging" -#: mod/admin.php:1939 +#: mod/admin.php:2030 msgid "Log file" msgstr "Archivo de registro" -#: mod/admin.php:1939 +#: mod/admin.php:2030 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Debes tener permiso de escritura en el servidor. Relacionado con tu directorio de inicio de Friendica." -#: mod/admin.php:1940 +#: mod/admin.php:2031 msgid "Log level" msgstr "Nivel de registro" -#: mod/admin.php:1943 +#: mod/admin.php:2034 msgid "PHP logging" msgstr "PHP logging" -#: mod/admin.php:1944 +#: mod/admin.php:2035 msgid "" "To enable logging of PHP errors and warnings you can add the following to " "the .htconfig.php file of your installation. The filename set in the " @@ -4528,2769 +7334,346 @@ msgid "" "'display_errors' is to enable these options, set to '0' to disable them." msgstr "Para habilitar la documentación de los errores PHP y las advertencias se puede agregar lo siguiente al archivo .htconfig.php de la instalación (ftp). La dirección definido en el 'error_log' es relativo al directorio friendica principal (top-level directory) y debe de ser habilitado para la escritura por el servidor web. La opción '1' para 'log_errors' y 'display_errors' es para habilitar estas opciones, '0' para deshabilitarlo." -#: mod/admin.php:2074 mod/admin.php:2075 mod/settings.php:782 +#: mod/admin.php:2165 mod/admin.php:2166 mod/settings.php:783 msgid "Off" msgstr "Apagado" -#: mod/admin.php:2074 mod/admin.php:2075 mod/settings.php:782 +#: mod/admin.php:2165 mod/admin.php:2166 mod/settings.php:783 msgid "On" msgstr "Encendido" -#: mod/admin.php:2075 +#: mod/admin.php:2166 #, php-format msgid "Lock feature %s" msgstr "Trancar opción %s " -#: mod/admin.php:2083 +#: mod/admin.php:2174 msgid "Manage Additional Features" msgstr "Administrar opciones adicionales" -#: mod/allfriends.php:46 -msgid "No friends to display." -msgstr "No hay amigos para mostrar." - -#: mod/api.php:76 mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autorizar la conexión de la aplicación" - -#: mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Regresa a tu aplicación e introduce este código de seguridad:" - -#: mod/api.php:89 -msgid "Please login to continue." -msgstr "Inicia sesión para continuar." - -#: mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "¿Quieres autorizar a esta aplicación el acceso a tus mensajes y contactos, y/o crear nuevas publicaciones para ti?" - -#: mod/api.php:106 mod/dfrn_request.php:875 mod/follow.php:113 -#: mod/profiles.php:640 mod/profiles.php:644 mod/profiles.php:669 -#: mod/register.php:246 mod/settings.php:1171 mod/settings.php:1177 -#: mod/settings.php:1184 mod/settings.php:1188 mod/settings.php:1193 -#: mod/settings.php:1198 mod/settings.php:1203 mod/settings.php:1208 -#: mod/settings.php:1234 mod/settings.php:1235 mod/settings.php:1236 -#: mod/settings.php:1237 mod/settings.php:1238 -msgid "No" -msgstr "No" - -#: mod/apps.php:11 -msgid "Applications" -msgstr "Aplicaciones" - -#: mod/apps.php:14 -msgid "No installed applications." -msgstr "Sin aplicaciones" - -#: mod/attach.php:8 -msgid "Item not available." -msgstr "Elemento no disponible." - -#: mod/attach.php:20 -msgid "Item was not found." -msgstr "Elemento no encontrado." - -#: mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Texto fuente (bbcode):" - -#: mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Fuente (Diaspora) para pasar a BBcode:" - -#: mod/babel.php:31 -msgid "Source input: " -msgstr "Entrada: " - -#: mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (raw HTML): " - -#: mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html: " - -#: mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " - -#: mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md: " - -#: mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html: " - -#: mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " - -#: mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " - -#: mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Fuente (formato Diaspora): " - -#: mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " - -#: mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "La publicación fue creada" - -#: mod/cal.php:143 mod/display.php:328 mod/profile.php:154 -msgid "Access to this profile has been restricted." -msgstr "El acceso a este perfil ha sido restringido." - -#: mod/cal.php:271 mod/events.php:387 -msgid "View" -msgstr "Vista" - -#: mod/cal.php:272 mod/events.php:389 -msgid "Previous" -msgstr "Previo" - -#: mod/cal.php:273 mod/events.php:390 mod/install.php:235 -msgid "Next" -msgstr "Siguiente" - -#: mod/cal.php:282 mod/events.php:399 -msgid "list" -msgstr "lista" - -#: mod/cal.php:292 -msgid "User not found" -msgstr "Usuario no encontrado" - -#: mod/cal.php:308 -msgid "This calendar format is not supported" -msgstr "Este formato de calendario no se soporta" - -#: mod/cal.php:310 -msgid "No exportable data found" -msgstr "No se ha encontrado información exportable" - -#: mod/cal.php:325 -msgid "calendar" -msgstr "calendario" - -#: mod/common.php:91 -msgid "No contacts in common." -msgstr "Sin contactos en común." - -#: mod/common.php:141 mod/contacts.php:871 -msgid "Common Friends" -msgstr "Amigos comunes" - -#: mod/community.php:22 mod/dfrn_request.php:799 mod/directory.php:37 -#: mod/display.php:200 mod/photos.php:964 mod/search.php:93 mod/search.php:99 -#: mod/videos.php:198 mod/viewcontacts.php:36 -msgid "Public access denied." -msgstr "Acceso público denegado." - -#: mod/community.php:27 -msgid "Not available." -msgstr "No disponible" - -#: mod/community.php:54 mod/search.php:224 -msgid "No results." -msgstr "Sin resultados." - -#: mod/contacts.php:134 +#: mod/contacts.php:137 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." msgstr[0] "%d contacto editado." msgstr[1] "%d contacts edited." -#: mod/contacts.php:169 mod/contacts.php:378 +#: mod/contacts.php:172 mod/contacts.php:381 msgid "Could not access contact record." msgstr "No se pudo acceder a los datos del contacto." -#: mod/contacts.php:183 +#: mod/contacts.php:186 msgid "Could not locate selected profile." msgstr "No se pudo encontrar el perfil seleccionado." -#: mod/contacts.php:216 +#: mod/contacts.php:219 msgid "Contact updated." msgstr "Contacto actualizado." -#: mod/contacts.php:218 mod/dfrn_request.php:588 -msgid "Failed to update contact record." -msgstr "Error al actualizar el contacto." - -#: mod/contacts.php:399 +#: mod/contacts.php:402 msgid "Contact has been blocked" msgstr "El contacto ha sido bloqueado" -#: mod/contacts.php:399 +#: mod/contacts.php:402 msgid "Contact has been unblocked" msgstr "El contacto ha sido desbloqueado" -#: mod/contacts.php:410 +#: mod/contacts.php:413 msgid "Contact has been ignored" msgstr "El contacto ha sido ignorado" -#: mod/contacts.php:410 +#: mod/contacts.php:413 msgid "Contact has been unignored" msgstr "El contacto ya no está ignorado" -#: mod/contacts.php:422 +#: mod/contacts.php:425 msgid "Contact has been archived" msgstr "El contacto ha sido archivado" -#: mod/contacts.php:422 +#: mod/contacts.php:425 msgid "Contact has been unarchived" msgstr "El contacto ya no está archivado" -#: mod/contacts.php:447 +#: mod/contacts.php:450 msgid "Drop contact" msgstr "Eliminar contacto" -#: mod/contacts.php:450 mod/contacts.php:809 +#: mod/contacts.php:453 mod/contacts.php:812 msgid "Do you really want to delete this contact?" msgstr "¿Estás seguro de que quieres eliminar este contacto?" -#: mod/contacts.php:469 +#: mod/contacts.php:472 msgid "Contact has been removed." msgstr "El contacto ha sido eliminado" -#: mod/contacts.php:506 +#: mod/contacts.php:509 #, php-format msgid "You are mutual friends with %s" msgstr "Ahora tienes una amistad mutua con %s" -#: mod/contacts.php:510 +#: mod/contacts.php:513 #, php-format msgid "You are sharing with %s" msgstr "Estás compartiendo con %s" -#: mod/contacts.php:515 +#: mod/contacts.php:518 #, php-format msgid "%s is sharing with you" msgstr "%s está compartiendo contigo" -#: mod/contacts.php:535 +#: mod/contacts.php:538 msgid "Private communications are not available for this contact." msgstr "Las comunicaciones privadas no está disponibles para este contacto." -#: mod/contacts.php:542 +#: mod/contacts.php:545 msgid "(Update was successful)" msgstr "(La actualización se ha completado)" -#: mod/contacts.php:542 +#: mod/contacts.php:545 msgid "(Update was not successful)" msgstr "(La actualización no se ha completado)" -#: mod/contacts.php:544 mod/contacts.php:972 +#: mod/contacts.php:547 mod/contacts.php:975 msgid "Suggest friends" msgstr "Sugerir amigos" -#: mod/contacts.php:548 +#: mod/contacts.php:551 #, php-format msgid "Network type: %s" msgstr "Tipo de red: %s" -#: mod/contacts.php:561 +#: mod/contacts.php:564 msgid "Communications lost with this contact!" msgstr "¡Se ha perdido la comunicación con este contacto!" -#: mod/contacts.php:564 +#: mod/contacts.php:567 msgid "Fetch further information for feeds" msgstr "Recaudar informacion complementaria de los feeds" -#: mod/contacts.php:565 +#: mod/contacts.php:568 msgid "Fetch information" msgstr "Recaudar informacion" -#: mod/contacts.php:565 +#: mod/contacts.php:568 msgid "Fetch information and keywords" msgstr "Recaudar informacion y palabras claves" -#: mod/contacts.php:583 +#: mod/contacts.php:586 msgid "Contact" msgstr "Contacto" -#: mod/contacts.php:585 mod/content.php:728 mod/crepair.php:156 -#: mod/events.php:513 mod/fsuggest.php:108 mod/install.php:276 -#: mod/install.php:316 mod/invite.php:142 mod/localtime.php:45 -#: mod/manage.php:145 mod/message.php:338 mod/message.php:521 mod/mood.php:138 -#: mod/photos.php:1124 mod/photos.php:1246 mod/photos.php:1562 -#: mod/photos.php:1612 mod/photos.php:1660 mod/photos.php:1746 -#: mod/poke.php:203 mod/profiles.php:680 object/Item.php:705 -#: view/theme/duepuntozero/config.php:61 view/theme/frio/config.php:64 -#: view/theme/quattro/config.php:67 view/theme/vier/config.php:112 -msgid "Submit" -msgstr "Envíar" - -#: mod/contacts.php:586 +#: mod/contacts.php:589 msgid "Profile Visibility" msgstr "Visibilidad del Perfil" -#: mod/contacts.php:587 +#: mod/contacts.php:590 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Por favor, selecciona el perfil que quieras mostrar a %s cuando esté viendo tu perfil de forma segura." -#: mod/contacts.php:588 +#: mod/contacts.php:591 msgid "Contact Information / Notes" msgstr "Información del Contacto / Notas" -#: mod/contacts.php:589 +#: mod/contacts.php:592 msgid "Edit contact notes" msgstr "Editar notas del contacto" -#: mod/contacts.php:594 mod/contacts.php:938 mod/nogroup.php:43 -#: mod/viewcontacts.php:102 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Ver el perfil de %s [%s]" - -#: mod/contacts.php:595 +#: mod/contacts.php:598 msgid "Block/Unblock contact" msgstr "Boquear/Desbloquear contacto" -#: mod/contacts.php:596 +#: mod/contacts.php:599 msgid "Ignore contact" msgstr "Ignorar contacto" -#: mod/contacts.php:597 +#: mod/contacts.php:600 msgid "Repair URL settings" msgstr "Configuración de reparación de la dirección" -#: mod/contacts.php:598 +#: mod/contacts.php:601 msgid "View conversations" msgstr "Ver conversaciones" -#: mod/contacts.php:604 +#: mod/contacts.php:607 msgid "Last update:" msgstr "Última actualización:" -#: mod/contacts.php:606 +#: mod/contacts.php:609 msgid "Update public posts" msgstr "Actualizar publicaciones públicas" -#: mod/contacts.php:608 mod/contacts.php:982 +#: mod/contacts.php:611 mod/contacts.php:985 msgid "Update now" msgstr "Actualizar ahora" -#: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999 +#: mod/contacts.php:617 mod/contacts.php:817 mod/contacts.php:1002 msgid "Unignore" msgstr "Quitar de Ignorados" -#: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999 -#: mod/notifications.php:60 mod/notifications.php:179 -#: mod/notifications.php:257 -msgid "Ignore" -msgstr "Ignorar" - -#: mod/contacts.php:618 +#: mod/contacts.php:621 msgid "Currently blocked" msgstr "Bloqueados" -#: mod/contacts.php:619 +#: mod/contacts.php:622 msgid "Currently ignored" msgstr "Ignorados" -#: mod/contacts.php:620 +#: mod/contacts.php:623 msgid "Currently archived" msgstr "Archivados" -#: mod/contacts.php:621 mod/notifications.php:172 mod/notifications.php:245 -msgid "Hide this contact from others" -msgstr "Ocultar este contacto a los demás." - -#: mod/contacts.php:621 +#: mod/contacts.php:624 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Los comentarios o \"me gusta\" en tus publicaciones públicas todavía pueden ser visibles." -#: mod/contacts.php:622 +#: mod/contacts.php:625 msgid "Notification for new posts" msgstr "Notificacion de nuevos temas." -#: mod/contacts.php:622 +#: mod/contacts.php:625 msgid "Send a notification of every new post of this contact" msgstr "Enviar una notificacion por nuevos temas de este contacto." -#: mod/contacts.php:625 +#: mod/contacts.php:628 msgid "Blacklisted keywords" msgstr "Lista negra de palabras" -#: mod/contacts.php:625 +#: mod/contacts.php:628 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "Lista separada por comas de palabras claves que no deberian ser convertido en #hashtags cuando \"Recaudar informacion y palabras claves\" es seleccionado" -#: mod/contacts.php:632 mod/follow.php:129 mod/notifications.php:249 -msgid "Profile URL" -msgstr "URL Perfil" - -#: mod/contacts.php:643 +#: mod/contacts.php:646 msgid "Actions" msgstr "Acciones" -#: mod/contacts.php:646 +#: mod/contacts.php:649 msgid "Contact Settings" msgstr "Ajustes del contacto" -#: mod/contacts.php:692 +#: mod/contacts.php:695 msgid "Suggestions" msgstr "Sugerencias" -#: mod/contacts.php:695 +#: mod/contacts.php:698 msgid "Suggest potential friends" msgstr "Amistades potenciales sugeridas" -#: mod/contacts.php:700 mod/group.php:202 -msgid "All Contacts" -msgstr "Todos los contactos" - -#: mod/contacts.php:703 +#: mod/contacts.php:706 msgid "Show all contacts" msgstr "Mostrar todos los contactos" -#: mod/contacts.php:708 +#: mod/contacts.php:711 msgid "Unblocked" msgstr "Desbloqueados" -#: mod/contacts.php:711 +#: mod/contacts.php:714 msgid "Only show unblocked contacts" msgstr "Mostrar solo contactos sin bloquear" -#: mod/contacts.php:717 +#: mod/contacts.php:720 msgid "Blocked" msgstr "Bloqueados" -#: mod/contacts.php:720 +#: mod/contacts.php:723 msgid "Only show blocked contacts" msgstr "Mostrar solo contactos bloqueados" -#: mod/contacts.php:726 +#: mod/contacts.php:729 msgid "Ignored" msgstr "Ignorados" -#: mod/contacts.php:729 +#: mod/contacts.php:732 msgid "Only show ignored contacts" msgstr "Mostrar solo contactos ignorados" -#: mod/contacts.php:735 +#: mod/contacts.php:738 msgid "Archived" msgstr "Archivados" -#: mod/contacts.php:738 +#: mod/contacts.php:741 msgid "Only show archived contacts" msgstr "Mostrar solo contactos archivados" -#: mod/contacts.php:744 +#: mod/contacts.php:747 msgid "Hidden" msgstr "Ocultos" -#: mod/contacts.php:747 +#: mod/contacts.php:750 msgid "Only show hidden contacts" msgstr "Mostrar solo contactos ocultos" -#: mod/contacts.php:804 +#: mod/contacts.php:807 msgid "Search your contacts" msgstr "Buscar en tus contactos" -#: mod/contacts.php:805 mod/network.php:145 mod/search.php:232 -#, php-format -msgid "Results for: %s" -msgstr "Resultados para: %s" - -#: mod/contacts.php:812 mod/settings.php:160 mod/settings.php:707 +#: mod/contacts.php:815 mod/settings.php:162 mod/settings.php:708 msgid "Update" msgstr "Actualizar" -#: mod/contacts.php:815 mod/contacts.php:1007 +#: mod/contacts.php:818 mod/contacts.php:1010 msgid "Archive" msgstr "Archivo" -#: mod/contacts.php:815 mod/contacts.php:1007 +#: mod/contacts.php:818 mod/contacts.php:1010 msgid "Unarchive" msgstr "Sin archivar" -#: mod/contacts.php:818 +#: mod/contacts.php:821 msgid "Batch Actions" msgstr "Accones en lote" -#: mod/contacts.php:864 +#: mod/contacts.php:867 msgid "View all contacts" msgstr "Ver todos los contactos" -#: mod/contacts.php:874 +#: mod/contacts.php:877 msgid "View all common friends" msgstr "Ver todos los conocidos en común " -#: mod/contacts.php:881 +#: mod/contacts.php:884 msgid "Advanced Contact Settings" msgstr "Configuración avanzada" -#: mod/contacts.php:915 +#: mod/contacts.php:918 msgid "Mutual Friendship" msgstr "Amistad recíproca" -#: mod/contacts.php:919 +#: mod/contacts.php:922 msgid "is a fan of yours" msgstr "es tu fan" -#: mod/contacts.php:923 +#: mod/contacts.php:926 msgid "you are a fan of" msgstr "eres fan de" -#: mod/contacts.php:939 mod/nogroup.php:44 -msgid "Edit contact" -msgstr "Modificar contacto" - -#: mod/contacts.php:993 +#: mod/contacts.php:996 msgid "Toggle Blocked status" msgstr "Cambiar bloqueados" -#: mod/contacts.php:1001 +#: mod/contacts.php:1004 msgid "Toggle Ignored status" msgstr "Cambiar ignorados" -#: mod/contacts.php:1009 +#: mod/contacts.php:1012 msgid "Toggle Archive status" msgstr "Cambiar archivados" -#: mod/contacts.php:1017 +#: mod/contacts.php:1020 msgid "Delete contact" msgstr "Eliminar contacto" -#: mod/content.php:119 mod/network.php:468 -msgid "No such group" -msgstr "Ningún grupo" - -#: mod/content.php:130 mod/group.php:203 mod/network.php:495 -msgid "Group is empty" -msgstr "El grupo está vacío" - -#: mod/content.php:135 mod/network.php:499 -#, php-format -msgid "Group: %s" -msgstr "Grupo: %s" - -#: mod/content.php:325 object/Item.php:96 -msgid "This entry was edited" -msgstr "Esta entrada fue editada" - -#: mod/content.php:621 object/Item.php:417 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d comentario" -msgstr[1] "%d comentarios" - -#: mod/content.php:638 mod/photos.php:1402 object/Item.php:117 -msgid "Private Message" -msgstr "Mensaje privado" - -#: mod/content.php:702 mod/photos.php:1590 object/Item.php:274 -msgid "I like this (toggle)" -msgstr "Me gusta esto (cambiar)" - -#: mod/content.php:702 object/Item.php:274 -msgid "like" -msgstr "me gusta" - -#: mod/content.php:703 mod/photos.php:1591 object/Item.php:275 -msgid "I don't like this (toggle)" -msgstr "No me gusta esto (cambiar)" - -#: mod/content.php:703 object/Item.php:275 -msgid "dislike" -msgstr "no me gusta" - -#: mod/content.php:705 object/Item.php:278 -msgid "Share this" -msgstr "Compartir esto" - -#: mod/content.php:705 object/Item.php:278 -msgid "share" -msgstr "compartir" - -#: mod/content.php:725 mod/photos.php:1609 mod/photos.php:1657 -#: mod/photos.php:1743 object/Item.php:702 -msgid "This is you" -msgstr "Este eres tú" - -#: mod/content.php:727 mod/content.php:950 mod/photos.php:1611 -#: mod/photos.php:1659 mod/photos.php:1745 object/Item.php:392 -#: object/Item.php:704 -msgid "Comment" -msgstr "Comentar" - -#: mod/content.php:729 object/Item.php:706 -msgid "Bold" -msgstr "Negrita" - -#: mod/content.php:730 object/Item.php:707 -msgid "Italic" -msgstr "Cursiva" - -#: mod/content.php:731 object/Item.php:708 -msgid "Underline" -msgstr "Subrayado" - -#: mod/content.php:732 object/Item.php:709 -msgid "Quote" -msgstr "Cita" - -#: mod/content.php:733 object/Item.php:710 -msgid "Code" -msgstr "Código" - -#: mod/content.php:734 object/Item.php:711 -msgid "Image" -msgstr "Imagen" - -#: mod/content.php:735 object/Item.php:712 -msgid "Link" -msgstr "Enlace" - -#: mod/content.php:736 object/Item.php:713 -msgid "Video" -msgstr "Vídeo" - -#: mod/content.php:746 mod/settings.php:743 object/Item.php:122 -#: object/Item.php:124 -msgid "Edit" -msgstr "Editar" - -#: mod/content.php:772 object/Item.php:238 -msgid "add star" -msgstr "Añadir estrella" - -#: mod/content.php:773 object/Item.php:239 -msgid "remove star" -msgstr "Quitar estrella" - -#: mod/content.php:774 object/Item.php:240 -msgid "toggle star status" -msgstr "Añadir a destacados" - -#: mod/content.php:777 object/Item.php:243 -msgid "starred" -msgstr "marcados con estrellas" - -#: mod/content.php:778 mod/content.php:800 object/Item.php:263 -msgid "add tag" -msgstr "añadir etiqueta" - -#: mod/content.php:789 object/Item.php:251 -msgid "ignore thread" -msgstr "ignorar publicación" - -#: mod/content.php:790 object/Item.php:252 -msgid "unignore thread" -msgstr "revertir ignorar publicacion" - -#: mod/content.php:791 object/Item.php:253 -msgid "toggle ignore status" -msgstr "cambiar estatus de observación" - -#: mod/content.php:794 mod/ostatus_subscribe.php:73 object/Item.php:256 -msgid "ignored" -msgstr "ignorado" - -#: mod/content.php:805 object/Item.php:141 -msgid "save to folder" -msgstr "grabado en directorio" - -#: mod/content.php:853 object/Item.php:212 -msgid "I will attend" -msgstr "Voy a estar presente" - -#: mod/content.php:853 object/Item.php:212 -msgid "I will not attend" -msgstr "No voy a estar presente" - -#: mod/content.php:853 object/Item.php:212 -msgid "I might attend" -msgstr "Puede que voy a estar presente" - -#: mod/content.php:917 object/Item.php:358 -msgid "to" -msgstr "a" - -#: mod/content.php:918 object/Item.php:360 -msgid "Wall-to-Wall" -msgstr "Muro-A-Muro" - -#: mod/content.php:919 object/Item.php:361 -msgid "via Wall-To-Wall:" -msgstr "via Muro-A-Muro:" - -#: mod/credits.php:16 -msgid "Credits" -msgstr "Creditos" - -#: 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 es un proyecto comunitario, que no seria posible sin la ayuda de mucha gente. Aquí una lista de de aquellos que aportaron al código o la traducción de friendica.\nGracias a todos! " - -#: mod/crepair.php:89 -msgid "Contact settings applied." -msgstr "Contacto configurado con éxito." - -#: mod/crepair.php:91 -msgid "Contact update failed." -msgstr "Error al actualizar el Contacto." - -#: mod/crepair.php:116 mod/dfrn_confirm.php:126 mod/fsuggest.php:21 -#: mod/fsuggest.php:93 -msgid "Contact not found." -msgstr "Contacto no encontrado." - -#: mod/crepair.php:122 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "ADVERTENCIA: Esto es muy avanzado y si se introduce información incorrecta tu conexión con este contacto puede dejar de funcionar." - -#: mod/crepair.php:123 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Por favor usa el botón 'Atás' de tu navegador ahora si no tienes claro qué hacer en esta página." - -#: mod/crepair.php:136 mod/crepair.php:138 -msgid "No mirroring" -msgstr "No espejar" - -#: mod/crepair.php:136 -msgid "Mirror as forwarded posting" -msgstr "Espejar como reenvio" - -#: mod/crepair.php:136 mod/crepair.php:138 -msgid "Mirror as my own posting" -msgstr "Espejar como publicación propia" - -#: mod/crepair.php:152 -msgid "Return to contact editor" -msgstr "Volver al editor de contactos" - -#: mod/crepair.php:154 -msgid "Refetch contact data" -msgstr "Volver a solicitar datos del contacto." - -#: mod/crepair.php:158 -msgid "Remote Self" -msgstr "Perfil remoto" - -#: mod/crepair.php:161 -msgid "Mirror postings from this contact" -msgstr "Espejar publicaciones de este contacto" - -#: mod/crepair.php:163 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "Marcar este contacto como perfil_remoto, esto generara que friendica reenvía nuevas publicaciones desde esta cuenta." - -#: mod/crepair.php:168 -msgid "Account Nickname" -msgstr "Apodo de la cuenta" - -#: mod/crepair.php:169 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Etiqueta - Sobrescribe el Nombre/Apodo" - -#: mod/crepair.php:170 -msgid "Account URL" -msgstr "Dirección de la cuenta" - -#: mod/crepair.php:171 -msgid "Friend Request URL" -msgstr "Dirección de la solicitud de amistad" - -#: mod/crepair.php:172 -msgid "Friend Confirm URL" -msgstr "Dirección de confirmación de tu amigo " - -#: mod/crepair.php:173 -msgid "Notification Endpoint URL" -msgstr "Dirección URL de la notificación" - -#: mod/crepair.php:174 -msgid "Poll/Feed URL" -msgstr "Dirección del Sondeo/Fuentes" - -#: mod/crepair.php:175 -msgid "New photo from this URL" -msgstr "Nueva foto de esta dirección" - -#: mod/delegate.php:101 -msgid "No potential page delegates located." -msgstr "No se han localizado delegados potenciales de la página." - -#: 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 "Los delegados tienen la capacidad de gestionar todos los aspectos de esta cuenta/página, excepto los ajustes básicos de la cuenta. Por favor, no delegues tu cuenta personal a nadie en quien no confíes completamente." - -#: mod/delegate.php:133 -msgid "Existing Page Managers" -msgstr "Administradores actuales de la página" - -#: mod/delegate.php:135 -msgid "Existing Page Delegates" -msgstr "Delegados actuales de la página" - -#: mod/delegate.php:137 -msgid "Potential Delegates" -msgstr "Delegados potenciales" - -#: mod/delegate.php:139 mod/tagrm.php:95 -msgid "Remove" -msgstr "Eliminar" - -#: mod/delegate.php:140 -msgid "Add" -msgstr "Añadir" - -#: mod/delegate.php:141 -msgid "No entries." -msgstr "Sin entradas." - -#: mod/dfrn_confirm.php:70 mod/profiles.php:19 mod/profiles.php:134 -#: mod/profiles.php:180 mod/profiles.php:619 -msgid "Profile not found." -msgstr "Perfil no encontrado." - -#: mod/dfrn_confirm.php:127 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Esto puede ocurrir a veces si la conexión fue solicitada por ambas personas y ya hubiera sido aprobada." - -#: mod/dfrn_confirm.php:244 -msgid "Response from remote site was not understood." -msgstr "La respuesta desde el sitio remoto no ha sido entendida." - -#: mod/dfrn_confirm.php:253 mod/dfrn_confirm.php:258 -msgid "Unexpected response from remote site: " -msgstr "Respuesta inesperada desde el sitio remoto: " - -#: mod/dfrn_confirm.php:267 -msgid "Confirmation completed successfully." -msgstr "Confirmación completada con éxito." - -#: mod/dfrn_confirm.php:269 mod/dfrn_confirm.php:283 mod/dfrn_confirm.php:290 -msgid "Remote site reported: " -msgstr "El sito remoto informó: " - -#: mod/dfrn_confirm.php:281 -msgid "Temporary failure. Please wait and try again." -msgstr "Error temporal. Por favor, espere y vuelva a intentarlo." - -#: mod/dfrn_confirm.php:288 -msgid "Introduction failed or was revoked." -msgstr "La presentación ha fallado o ha sido anulada." - -#: mod/dfrn_confirm.php:418 -msgid "Unable to set contact photo." -msgstr "Imposible establecer la foto del contacto." - -#: mod/dfrn_confirm.php:559 -#, php-format -msgid "No user record found for '%s' " -msgstr "No se ha encontrado a ningún '%s' " - -#: mod/dfrn_confirm.php:569 -msgid "Our site encryption key is apparently messed up." -msgstr "Nuestra clave de cifrado del sitio es aparentemente un lío." - -#: mod/dfrn_confirm.php:580 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "Se ha proporcionado una dirección vacía o no hemos podido descifrarla." - -#: mod/dfrn_confirm.php:601 -msgid "Contact record was not found for you on our site." -msgstr "El contacto no se ha encontrado en nuestra base de datos." - -#: mod/dfrn_confirm.php:615 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "La clave pública del sitio no está disponible en los datos del contacto para %s." - -#: mod/dfrn_confirm.php:635 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "La identificación proporcionada por el sistema es un duplicado de nuestro sistema. Debería funcionar si lo intentas de nuevo." - -#: mod/dfrn_confirm.php:646 -msgid "Unable to set your contact credentials on our system." -msgstr "No se puede establecer las credenciales de tu contacto en nuestro sistema." - -#: mod/dfrn_confirm.php:708 -msgid "Unable to update your contact profile details on our system" -msgstr "No se puede actualizar los datos de tu perfil de contacto en nuestro sistema" - -#: mod/dfrn_confirm.php:780 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s se ha unido a %2$s" - -#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:539 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s te da la bienvenida a %2$s" - -#: mod/dfrn_request.php:101 -msgid "This introduction has already been accepted." -msgstr "Esta presentación ya ha sido aceptada." - -#: mod/dfrn_request.php:124 mod/dfrn_request.php:523 -msgid "Profile location is not valid or does not contain profile information." -msgstr "La dirección del perfil no es válida o no contiene información del perfil." - -#: mod/dfrn_request.php:129 mod/dfrn_request.php:528 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Aviso: La dirección del perfil no tiene un nombre de propietario identificable." - -#: mod/dfrn_request.php:132 mod/dfrn_request.php:531 -msgid "Warning: profile location has no profile photo." -msgstr "Aviso: la dirección del perfil no tiene foto de perfil." - -#: mod/dfrn_request.php:136 mod/dfrn_request.php:535 -#, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "no se encontró %d parámetro requerido en el lugar determinado" -msgstr[1] "no se encontraron %d parámetros requeridos en el lugar determinado" - -#: mod/dfrn_request.php:180 -msgid "Introduction complete." -msgstr "Presentación completa." - -#: mod/dfrn_request.php:225 -msgid "Unrecoverable protocol error." -msgstr "Error de protocolo irrecuperable." - -#: mod/dfrn_request.php:253 -msgid "Profile unavailable." -msgstr "Perfil no disponible." - -#: mod/dfrn_request.php:280 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s ha recibido demasiadas solicitudes de conexión hoy." - -#: mod/dfrn_request.php:281 -msgid "Spam protection measures have been invoked." -msgstr "Han sido activadas las medidas de protección contra spam." - -#: mod/dfrn_request.php:282 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Tus amigos serán avisados para que lo intenten de nuevo pasadas 24 horas." - -#: mod/dfrn_request.php:344 -msgid "Invalid locator" -msgstr "Localizador no válido" - -#: mod/dfrn_request.php:353 -msgid "Invalid email address." -msgstr "Dirección de correo incorrecta" - -#: mod/dfrn_request.php:378 -msgid "This account has not been configured for email. Request failed." -msgstr "Esta cuenta no ha sido configurada para el correo. Fallo de solicitud." - -#: mod/dfrn_request.php:481 -msgid "You have already introduced yourself here." -msgstr "Ya te has presentado aquí." - -#: mod/dfrn_request.php:485 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Al parecer, ya eres amigo de %s." - -#: mod/dfrn_request.php:506 -msgid "Invalid profile URL." -msgstr "Dirección de perfil no válida." - -#: mod/dfrn_request.php:609 -msgid "Your introduction has been sent." -msgstr "Tu presentación ha sido enviada." - -#: mod/dfrn_request.php:651 -msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." -msgstr "La subscripción remota no se podrá hacer para tu red. Por favor contacta directamente desde tu sistema." - -#: mod/dfrn_request.php:672 -msgid "Please login to confirm introduction." -msgstr "Inicia sesión para confirmar la presentación." - -#: mod/dfrn_request.php:682 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Sesión iniciada con la identificación incorrecta. Entra en este perfil." - -#: mod/dfrn_request.php:696 mod/dfrn_request.php:713 -msgid "Confirm" -msgstr "Confirmar" - -#: mod/dfrn_request.php:708 -msgid "Hide this contact" -msgstr "Ocultar este contacto" - -#: mod/dfrn_request.php:711 -#, php-format -msgid "Welcome home %s." -msgstr "Bienvenido a casa %s" - -#: mod/dfrn_request.php:712 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Por favor, confirma tu solicitud de presentación/conexión con %s." - -#: mod/dfrn_request.php:843 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Por favor introduce tu dirección ID de una de las siguientes redes sociales soportadas:" - -#: mod/dfrn_request.php:867 -#, php-format -msgid "" -"If you are not yet a member of the free social web, follow this link to find a public Friendica site and " -"join us today." -msgstr "Si aun no eres miembro de la red social libre seguí este enlace para encontrara un sitio disponible de friendica y acompañanos hoy mismo" - -#: mod/dfrn_request.php:872 -msgid "Friend/Connection Request" -msgstr "Solicitud de Amistad/Conexión" - -#: mod/dfrn_request.php:873 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Ejemplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" - -#: mod/dfrn_request.php:874 mod/follow.php:112 -msgid "Please answer the following:" -msgstr "Por favor responde lo siguiente:" - -#: mod/dfrn_request.php:875 mod/follow.php:113 -#, php-format -msgid "Does %s know you?" -msgstr "¿%s te conoce?" - -#: mod/dfrn_request.php:879 mod/follow.php:114 -msgid "Add a personal note:" -msgstr "Añade una nota personal:" - -#: mod/dfrn_request.php:882 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Web Social Federada" - -#: mod/dfrn_request.php:884 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr "(En vez de usar este formulario, introduce %s en la barra de búsqueda de Diaspora." - -#: mod/dfrn_request.php:885 mod/follow.php:120 -msgid "Your Identity Address:" -msgstr "Dirección de tu perfil:" - -#: mod/dfrn_request.php:888 mod/follow.php:19 -msgid "Submit Request" -msgstr "Enviar solicitud" - -#: mod/directory.php:199 view/theme/vier/theme.php:196 -msgid "Global Directory" -msgstr "Directorio global" - -#: mod/directory.php:201 -msgid "Find on this site" -msgstr "Buscar en este sitio" - -#: mod/directory.php:203 -msgid "Results for:" -msgstr "Resultados para:" - -#: mod/directory.php:205 -msgid "Site Directory" -msgstr "Directorio del sitio" - -#: mod/directory.php:212 -msgid "No entries (some entries may be hidden)." -msgstr "Sin entradas (algunas pueden que estén ocultas)." - -#: mod/dirfind.php:37 -#, php-format -msgid "People Search - %s" -msgstr "Buscar perfiles - %s" - -#: mod/dirfind.php:48 -#, php-format -msgid "Forum Search - %s" -msgstr "Búsqueda de foro - %s" - -#: mod/dirfind.php:245 mod/match.php:109 -msgid "No matches" -msgstr "Sin conincidencias" - -#: mod/display.php:479 -msgid "Item has been removed." -msgstr "El elemento ha sido eliminado." - -#: mod/editpost.php:17 mod/editpost.php:27 -msgid "Item not found" -msgstr "Elemento no encontrado" - -#: mod/editpost.php:32 -msgid "Edit post" -msgstr "Editar publicación" - -#: mod/events.php:100 mod/events.php:102 -msgid "Event can not end before it has started." -msgstr "Un evento no puede terminar antes de su comienzo." - -#: mod/events.php:109 mod/events.php:111 -msgid "Event title and start time are required." -msgstr "Título del evento y hora de inicio requeridas." - -#: mod/events.php:388 -msgid "Create New Event" -msgstr "Crea un evento nuevo" - -#: mod/events.php:489 -msgid "Event details" -msgstr "Detalles del evento" - -#: mod/events.php:490 -msgid "Starting date and Title are required." -msgstr "Se requiere fecha de comienzo y titulo" - -#: mod/events.php:491 mod/events.php:492 -msgid "Event Starts:" -msgstr "Inicio del evento:" - -#: mod/events.php:491 mod/events.php:503 mod/profiles.php:708 -msgid "Required" -msgstr "Obligatorio" - -#: mod/events.php:493 mod/events.php:509 -msgid "Finish date/time is not known or not relevant" -msgstr "La fecha/hora de finalización no es conocida o es irrelevante." - -#: mod/events.php:495 mod/events.php:496 -msgid "Event Finishes:" -msgstr "Finalización del evento:" - -#: mod/events.php:497 mod/events.php:510 -msgid "Adjust for viewer timezone" -msgstr "Ajuste de zona horaria" - -#: mod/events.php:499 -msgid "Description:" -msgstr "Descripción:" - -#: mod/events.php:503 mod/events.php:505 -msgid "Title:" -msgstr "Título:" - -#: mod/events.php:506 mod/events.php:507 -msgid "Share this event" -msgstr "Comparte este evento" - -#: mod/fbrowser.php:132 -msgid "Files" -msgstr "Archivos" - -#: mod/filer.php:30 -msgid "- select -" -msgstr "- seleccionar -" - -#: mod/follow.php:30 -msgid "You already added this contact." -msgstr "Ya has añadido este contacto." - -#: mod/follow.php:39 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "El soporte de Diaspora* no esta habilitado, el contacto no puede ser agregado." - -#: mod/follow.php:46 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "El soporte de OStatus no esta habilitado, el contacto no puede ser agregado." - -#: mod/follow.php:53 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "No se pudo detectar el tipo de red. Contacto no puede ser agregado." - -#: mod/follow.php:186 -msgid "Contact added" -msgstr "Contacto añadido" - -#: mod/friendica.php:72 -msgid "This is Friendica, version" -msgstr "Esto es Friendica, versión" - -#: mod/friendica.php:73 -msgid "running at web location" -msgstr "ejecutándose en la dirección web" - -#: mod/friendica.php:75 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Por favor, visita Friendica.com para saber más sobre el proyecto Friendica." - -#: mod/friendica.php:77 -msgid "Bug reports and issues: please visit" -msgstr "Reporte de fallos y problemas: por favor visita" - -#: mod/friendica.php:77 -msgid "the bugtracker at github" -msgstr "aviso de fallas (bugs) en github" - -#: mod/friendica.php:78 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Sugerencias, elogios, donaciones, etc. por favor manda un correo a Info arroba Friendica punto com" - -#: mod/friendica.php:92 -msgid "Installed plugins/addons/apps:" -msgstr "Módulos/extensiones/aplicaciones instalados:" - -#: mod/friendica.php:105 -msgid "No installed plugins/addons/apps" -msgstr "Módulos/extensiones/aplicaciones no instalados" - -#: mod/fsuggest.php:64 -msgid "Friend suggestion sent." -msgstr "Solicitud de amistad enviada." - -#: mod/fsuggest.php:98 -msgid "Suggest Friends" -msgstr "Sugerencias de amistad" - -#: mod/fsuggest.php:100 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Recomienda un amigo a %s" - -#: mod/group.php:29 -msgid "Group created." -msgstr "Grupo creado." - -#: mod/group.php:35 -msgid "Could not create group." -msgstr "Imposible crear el grupo." - -#: mod/group.php:49 mod/group.php:150 -msgid "Group not found." -msgstr "Grupo no encontrado." - -#: mod/group.php:63 -msgid "Group name changed." -msgstr "El nombre del grupo ha cambiado." - -#: mod/group.php:91 -msgid "Save Group" -msgstr "Guardar grupo" - -#: mod/group.php:97 -msgid "Create a group of contacts/friends." -msgstr "Crea un grupo de contactos/amigos." - -#: mod/group.php:122 -msgid "Group removed." -msgstr "Grupo eliminado." - -#: mod/group.php:124 -msgid "Unable to remove group." -msgstr "No se puede eliminar el grupo." - -#: mod/group.php:187 -msgid "Group Editor" -msgstr "Editor de grupos" - -#: mod/group.php:200 -msgid "Members" -msgstr "Miembros" - -#: mod/group.php:233 mod/profperm.php:107 -msgid "Click on a contact to add or remove." -msgstr "Pulsa en un contacto para añadirlo o eliminarlo." - -#: mod/hcard.php:11 -msgid "No profile" -msgstr "Nigún perfil" - -#: mod/help.php:41 -msgid "Help:" -msgstr "Ayuda:" - -#: mod/home.php:39 -#, php-format -msgid "Welcome to %s" -msgstr "Bienvenido a %s" - -#: mod/install.php:140 -msgid "Friendica Communications Server - Setup" -msgstr "Servidor de comunicación Friendica - Configuración" - -#: mod/install.php:146 -msgid "Could not connect to database." -msgstr "No es posible la conexión con la base de datos." - -#: mod/install.php:150 -msgid "Could not create table." -msgstr "No se puede crear la tabla." - -#: mod/install.php:156 -msgid "Your Friendica site database has been installed." -msgstr "La base de datos de su sitio web de Friendica ha sido instalada." - -#: mod/install.php:161 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Puede que tengas que importar el archivo \"Database.sql\" manualmente usando phpmyadmin o mysql." - -#: mod/install.php:162 mod/install.php:234 mod/install.php:609 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Por favor, consulta el archivo \"INSTALL.txt\"." - -#: mod/install.php:174 -msgid "Database already in use." -msgstr "Base de datos ya se encuentra en uso" - -#: mod/install.php:231 -msgid "System check" -msgstr "Verificación del sistema" - -#: mod/install.php:236 -msgid "Check again" -msgstr "Compruebalo de nuevo" - -#: mod/install.php:255 -msgid "Database connection" -msgstr "Conexión con la base de datos" - -#: mod/install.php:256 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Con el fin de poder instalar Friendica, necesitamos saber cómo conectar con tu base de datos." - -#: mod/install.php:257 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Por favor, contacta con tu proveedor de servicios o con el administrador de la página si tienes alguna pregunta sobre estas configuraciones." - -#: mod/install.php:258 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "La base de datos que especifiques a continuación debería existir ya. Si no es el caso, debes crearla antes de continuar." - -#: mod/install.php:262 -msgid "Database Server Name" -msgstr "Nombre del servidor de la base de datos" - -#: mod/install.php:263 -msgid "Database Login Name" -msgstr "Usuario de la base de datos" - -#: mod/install.php:264 -msgid "Database Login Password" -msgstr "Contraseña de la base de datos" - -#: mod/install.php:264 -msgid "For security reasons the password must not be empty" -msgstr "Por razones de seguridad la contraseña no debe estar vacía" - -#: mod/install.php:265 -msgid "Database Name" -msgstr "Nombre de la base de datos" - -#: mod/install.php:266 mod/install.php:307 -msgid "Site administrator email address" -msgstr "Dirección de correo del administrador de la web" - -#: mod/install.php:266 mod/install.php:307 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "La dirección de correo de tu cuenta debe coincidir con esta para poder usar el panel de administración de la web." - -#: mod/install.php:270 mod/install.php:310 -msgid "Please select a default timezone for your website" -msgstr "Por favor, selecciona la zona horaria predeterminada para tu web" - -#: mod/install.php:297 -msgid "Site settings" -msgstr "Configuración de la página web" - -#: mod/install.php:311 -msgid "System Language:" -msgstr "Sistema de idioma:" - -#: mod/install.php:311 -msgid "" -"Set the default language for your Friendica installation interface and to " -"send emails." -msgstr "Seleccione el idioma por defecto para su interfaz de instalación de Friendica y para enviar emails." - -#: mod/install.php:351 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "No se pudo encontrar una versión de la línea de comandos de PHP en la ruta del servidor web." - -#: mod/install.php:352 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron. See 'Setup the poller'" -msgstr "Si no tienes una versión de command line de php installado en el servidor, no sera posible de efectuar polling como trabajo de fondo a traves de cron. Vea 'Setup the poller'" - -#: mod/install.php:356 -msgid "PHP executable path" -msgstr "Dirección al ejecutable PHP" - -#: mod/install.php:356 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Introduce la ruta completa al ejecutable php. Puedes dejarlo en blanco y seguir con la instalación." - -#: mod/install.php:361 -msgid "Command line PHP" -msgstr "Línea de comandos PHP" - -#: mod/install.php:370 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "El ejecutable PHP no es e lphp cli binary (podria ser versión cgi-fgci)" - -#: mod/install.php:371 -msgid "Found PHP version: " -msgstr "Versión PHP encontrada:" - -#: mod/install.php:373 -msgid "PHP cli binary" -msgstr "PHP cli binario" - -#: mod/install.php:384 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "La versión en línea de comandos de PHP en tu sistema no tiene \"register_argc_argv\" habilitado." - -#: mod/install.php:385 -msgid "This is required for message delivery to work." -msgstr "Esto es necesario para que funcione la entrega de mensajes." - -#: mod/install.php:387 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: mod/install.php:410 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de generar claves de cifrado" - -#: mod/install.php:411 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Si se ejecuta en Windows, por favor consulta la sección \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: mod/install.php:413 -msgid "Generate encryption keys" -msgstr "Generar claves de encriptación" - -#: mod/install.php:420 -msgid "libCurl PHP module" -msgstr "Módulo PHP libCurl" - -#: mod/install.php:421 -msgid "GD graphics PHP module" -msgstr "Módulo PHP gráficos GD" - -#: mod/install.php:422 -msgid "OpenSSL PHP module" -msgstr "Módulo PHP OpenSSL" - -#: mod/install.php:423 -msgid "mysqli PHP module" -msgstr "Módulo PHP mysqli" - -#: mod/install.php:424 -msgid "mb_string PHP module" -msgstr "Módulo PHP mb_string" - -#: mod/install.php:425 -msgid "mcrypt PHP module" -msgstr "modulo mycrypt PHP" - -#: mod/install.php:426 -msgid "XML PHP module" -msgstr "Módulo XML PHP" - -#: mod/install.php:427 -msgid "iconv module" -msgstr "Módulo iconv" - -#: mod/install.php:431 mod/install.php:433 -msgid "Apache mod_rewrite module" -msgstr "Módulo mod_rewrite de Apache" - -#: mod/install.php:431 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Error: El módulo de Apache mod-rewrite es necesario pero no está instalado." - -#: mod/install.php:439 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Error: El módulo de PHP libcurl es necesario, pero no está instalado." - -#: mod/install.php:443 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Error: El módulo de de PHP gráficos GD con soporte JPEG es necesario, pero no está instalado." - -#: mod/install.php:447 -msgid "Error: openssl PHP module required but not installed." -msgstr "Error: El módulo de PHP openssl es necesario, pero no está instalado." - -#: mod/install.php:451 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Error: El módulo de PHP mysqli es necesario, pero no está instalado." - -#: mod/install.php:455 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Error: El módulo de PHP mb_string es necesario, pero no está instalado." - -#: mod/install.php:459 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Error: modulo mycrypt PHP requerido pero no instalado." - -#: mod/install.php:463 -msgid "Error: iconv PHP module required but not installed." -msgstr "Error: módulo iconv PHP requerido pero no instalado." - -#: mod/install.php:472 -msgid "" -"If you are using php_cli, please make sure that mcrypt module is enabled in " -"its config file" -msgstr "Si está utilizando php_cli, por favor asegúrese de que el módulo mcrypt está habilitado en este archivo de configuración" - -#: mod/install.php:475 -msgid "" -"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 " -"encryption layer." -msgstr "Función mycrypt_create_iv() no esta definido. Esto es preciso para habilitar RINO2 encryption layer." - -#: mod/install.php:477 -msgid "mcrypt_create_iv() function" -msgstr "mcrypt_create_iv() función" - -#: mod/install.php:485 -msgid "Error, XML PHP module required but not installed." -msgstr "Error, módulo XML PHP requerido pero no instalado." - -#: mod/install.php:500 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "El programa de instalación web necesita ser capaz de crear un archivo llamado \".htconfig.php\" en la carpeta principal de tu servidor web y es incapaz de hacerlo." - -#: mod/install.php:501 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "Se trata a menudo de una configuración de permisos, pues el servidor web puede que no sea capaz de escribir archivos en la carpeta, aunque tú sí puedas." - -#: mod/install.php:502 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "Al final obtendremos un texto que debes guardar en un archivo llamado .htconfig.php en la carpeta de Friendica." - -#: mod/install.php:503 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "Como alternativa, puedes saltarte estos pasos y realizar una instalación manual. Por favor, consulta el archivo \"INSTALL.txt\" para las instrucciones." - -#: mod/install.php:506 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php tiene permiso de escritura" - -#: mod/install.php:516 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Friendica usa el motor de templates Smarty3 para renderizar su visualisacion web. Smarty3 compila templates hacia PHP para acelerar la velocidad del renderizar." - -#: mod/install.php:517 -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory view/smarty3/ under the Friendica top level " -"folder." -msgstr "Para poder guardar estos templates compilados, el servidor web necesita acceso de escritura en el directorio /view/smarty3/ en el árbol de raíz de la instalación friendica." - -#: mod/install.php:518 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Por favor asegure que el usuario que utiliza el servidor web (ejemplo: www-data) tiene permisos de escritura en esta carpeta." - -#: mod/install.php:519 -msgid "" -"Note: as a security measure, you should give the web server write access to " -"view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "Nota: como medida de seguridad deberia dar acceso de escritura solo a /view/smarty3 / → no al los archivos template (.tpl) que contiene." - -#: mod/install.php:522 -msgid "view/smarty3 is writable" -msgstr "Se puede escribir en /view/smarty3" - -#: mod/install.php:538 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "La reescritura de la dirección en .htaccess no funcionó. Revisa la configuración." - -#: mod/install.php:540 -msgid "Url rewrite is working" -msgstr "Reescribiendo la dirección..." - -#: mod/install.php:559 -msgid "ImageMagick PHP extension is not installed" -msgstr "No está instalada la extensión ImageMagick PHP" - -#: mod/install.php:561 -msgid "ImageMagick PHP extension is installed" -msgstr "ImageMagick PHP extension is installed" - -#: mod/install.php:563 -msgid "ImageMagick supports GIF" -msgstr "ImageMagick supporta GIF" - -#: mod/install.php:570 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "El archivo de configuración de base de datos \".htconfig.php\" no se pudo escribir. Por favor, utiliza el texto adjunto para crear un archivo de configuración en la raíz de tu servidor web." - -#: mod/install.php:607 -msgid "

What next

" -msgstr "

¿Ahora qué?

" - -#: mod/install.php:608 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANTE: Tendrás que configurar [manualmente] una tarea programada para el sondeo" - -#: mod/invite.php:28 -msgid "Total invitation limit exceeded." -msgstr "Límite total de invitaciones excedido." - -#: mod/invite.php:51 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : No es una dirección de correo válida." - -#: mod/invite.php:76 -msgid "Please join us on Friendica" -msgstr "Únete a nosotros en Friendica" - -#: mod/invite.php:87 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Límite de invitaciones sobrepasado. Contacta con el administrador del sitio." - -#: mod/invite.php:91 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Ha fallado la entrega del mensaje." - -#: mod/invite.php:95 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d mensaje enviado." -msgstr[1] "%d mensajes enviados." - -#: mod/invite.php:114 -msgid "You have no more invitations available" -msgstr "No tienes más invitaciones disponibles" - -#: mod/invite.php:122 -#, 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 para ver una lista de servidores públicos donde puedes darte de alta. Los miembros de otros servidores de Friendica pueden conectarse entre ellos, así como con miembros de otras redes sociales diferentes." - -#: mod/invite.php:124 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "Para aceptar la invitación visita y regístrate en %s o en cualquier otro servidor público de Friendica." - -#: mod/invite.php:125 -#, php-format -msgid "" -"Friendica sites all inter-connect to create a huge privacy-enhanced social " -"web that is owned and controlled by its members. They can also connect with " -"many traditional social networks. See %s for a list of alternate Friendica " -"sites you can join." -msgstr "Los servidores de Friendica están interconectados para crear una enorme red social centrada en la privacidad y controlada por sus miembros. También se puede conectar con muchas redes sociales tradicionales. Mira en %s para poder ver un listado de servidores alternativos de Friendica donde puedes darte de alta." - -#: mod/invite.php:128 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Discúlpanos. Este sistema no está configurado actualmente para conectar con otros servidores públicos o invitar nuevos miembros." - -#: mod/invite.php:134 -msgid "Send invitations" -msgstr "Enviar invitaciones" - -#: mod/invite.php:135 -msgid "Enter email addresses, one per line:" -msgstr "Introduce las direcciones de correo, una por línea:" - -#: mod/invite.php:136 mod/message.php:332 mod/message.php:515 -#: mod/wallmessage.php:135 -msgid "Your message:" -msgstr "Tu mensaje:" - -#: mod/invite.php:137 -msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "Estás cordialmente invitado a unirte a mi y a otros amigos en Friendica, creemos juntos una red social mejor." - -#: mod/invite.php:139 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Tienes que proporcionar el siguiente código: $invite_code" - -#: mod/invite.php:139 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Una vez registrado, por favor contacta conmigo a través de mi página de perfil en:" - -#: mod/invite.php:141 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendica.com" -msgstr "Para más información sobre el Proyecto Friendica y sobre por qué pensamos que es algo importante, visita http://friendica.com" - -#: mod/item.php:118 -msgid "Unable to locate original post." -msgstr "No se puede encontrar la publicación original." - -#: mod/item.php:336 -msgid "Empty post discarded." -msgstr "Publicación vacía descartada." - -#: mod/item.php:889 -msgid "System error. Post not saved." -msgstr "Error del sistema. Mensaje no guardado." - -#: mod/item.php:979 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Este mensaje te lo ha enviado %s, miembro de la red social Friendica." - -#: mod/item.php:981 -#, php-format -msgid "You may visit them online at %s" -msgstr "Los puedes visitar en línea en %s" - -#: mod/item.php:982 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Por favor contacta con el remitente respondiendo a este mensaje si no deseas recibir estos mensajes." - -#: mod/item.php:986 -#, php-format -msgid "%s posted an update." -msgstr "%s ha publicado una actualización." - -#: mod/localtime.php:24 -msgid "Time Conversion" -msgstr "Conversión horária" - -#: mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "Friendica ofrece este servicio para compartir eventos con otros servidores de la red friendica y amigos en zonas de horarios desconocidos." - -#: mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "Tiempo UTC: %s" - -#: mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "Zona horaria actual: %s" - -#: mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "Zona horaria local convertida: %s" - -#: mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Por favor, selecciona tu zona horaria:" - -#: mod/lockview.php:32 mod/lockview.php:40 -msgid "Remote privacy information not available." -msgstr "Privacidad de la información remota no disponible." - -#: mod/lockview.php:49 -msgid "Visible to:" -msgstr "Visible para:" - -#: mod/lostpass.php:19 -msgid "No valid account found." -msgstr "No se ha encontrado ninguna cuenta válida" - -#: mod/lostpass.php:35 -msgid "Password reset request issued. Check your email." -msgstr "Solicitud de restablecimiento de contraseña enviada. Revisa tu correo." - -#: mod/lostpass.php:41 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" -"\t\tpassword. In order to confirm this request, please select the verification link\n" -"\t\tbelow or paste it into your web browser address bar.\n" -"\n" -"\t\tIf you did NOT request this change, please DO NOT follow the link\n" -"\t\tprovided and ignore and/or delete this email.\n" -"\n" -"\t\tYour password will not be changed unless we can verify that you\n" -"\t\tissued this request." -msgstr "\n\t\tEstimado %1$s,\n\t\t\tUna consulta llego recientemente a \"%2$s\" para renovar su\n\t\tcontraseña. Para confirmar esta solicitud por favor seleccione el enlace de verificación mas \n\t\tabajo o copie a pegue el mismo en la barra de dirección de su navegador.\n\n\t\tSi NO ha solicitado este cambio por favor NO SIGA este enlace\n\t\tproporcionado y ignore o borre este mail.\n\n\t\tSu contraseña no sera cambiada hasta que podamos verificar que usted haza\n\t\tsolicitado este cambio.." - -#: mod/lostpass.php:52 -#, php-format -msgid "" -"\n" -"\t\tFollow this link to verify your identity:\n" -"\n" -"\t\t%1$s\n" -"\n" -"\t\tYou will then receive a follow-up message containing the new password.\n" -"\t\tYou may change that password from your account settings page after logging in.\n" -"\n" -"\t\tThe login details are as follows:\n" -"\n" -"\t\tSite Location:\t%2$s\n" -"\t\tLogin Name:\t%3$s" -msgstr "\n\t\tSiga este enlace para verificar su identidad:\n\n\t\t%1$s\n\n\t\tA continuación recibirá un mensaje consecutivo conteniendo la nueva contraseña.\n\t\tPodrá cambiar la contraseña después de haber accedido a la cuenta.\n\n\t\tLos detalles del acceso son las siguientes:\n\n\t\tDirección del sitio:\t%2$s\n\t\tNombre de la cuenta:\t%3$s" - -#: mod/lostpass.php:71 -#, php-format -msgid "Password reset requested at %s" -msgstr "Contraseña restablecida enviada a %s" - -#: mod/lostpass.php:91 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "La solicitud no puede ser verificada (deberías haberla proporcionado antes). Falló el restablecimiento de la contraseña." - -#: mod/lostpass.php:111 -msgid "Your password has been reset as requested." -msgstr "Tu contraseña ha sido restablecida como solicitaste." - -#: mod/lostpass.php:112 -msgid "Your new password is" -msgstr "Tu nueva contraseña es" - -#: mod/lostpass.php:113 -msgid "Save or copy your new password - and then" -msgstr "Guarda o copia tu nueva contraseña y luego" - -#: mod/lostpass.php:114 -msgid "click here to login" -msgstr "pulsa aquí para acceder" - -#: mod/lostpass.php:115 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Puedes cambiar tu contraseña desde la página de Configuración después de acceder con éxito." - -#: mod/lostpass.php:125 -#, php-format -msgid "" -"\n" -"\t\t\t\tDear %1$s,\n" -"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" -"\t\t\t\tinformation for your records (or change your password immediately to\n" -"\t\t\t\tsomething that you will remember).\n" -"\t\t\t" -msgstr "\n\t\t\t\tEstimado %1$s,\n\t\t\t\t\tSu contraseña ha cambiado como solicitado. Por favor guarde esta\n\t\t\t\tinformación para sus documentación (o cambie su contraseña inmediatamente a\n\t\t\t\talgo que pueda recordar).\n\t\t" - -#: mod/lostpass.php:131 -#, php-format -msgid "" -"\n" -"\t\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\t\tSite Location:\t%1$s\n" -"\t\t\t\tLogin Name:\t%2$s\n" -"\t\t\t\tPassword:\t%3$s\n" -"\n" -"\t\t\t\tYou may change that password from your account settings page after logging in.\n" -"\t\t\t" -msgstr "\n\t\t\t\tSus datos de acceso son las siguientes:\n\n\t\t\t\tDirección del sitio:\t%1$s\n\t\t\t\tNombre de cuenta:\t%2$s\n\t\t\t\tContraseña:\t%3$s\n\n\t\t\t\tPodrá cambiar esta contraseña después de ingresar al sitio en su pagina de configuración.\n\t\t\t" - -#: mod/lostpass.php:147 -#, php-format -msgid "Your password has been changed at %s" -msgstr "Tu contraseña se ha cambiado por %s" - -#: mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "¿Olvidaste tu contraseña?" - -#: mod/lostpass.php:160 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Introduce tu correo para restablecer tu contraseña. Luego comprueba tu correo para las instrucciones adicionales." - -#: mod/lostpass.php:162 -msgid "Reset" -msgstr "Restablecer" - -#: mod/maintenance.php:20 -msgid "System down for maintenance" -msgstr "Servicio suspendido por mantenimiento" - -#: mod/manage.php:141 -msgid "Manage Identities and/or Pages" -msgstr "Administrar identidades y/o páginas" - -#: mod/manage.php:142 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Cambia entre diferentes identidades o páginas de Comunidad/Grupos que comparten los detalles de tu cuenta o sobre los que tienes permisos para administrar" - -#: mod/manage.php:143 -msgid "Select an identity to manage: " -msgstr "Selecciona una identidad a gestionar:" - -#: mod/match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "No hay palabras clave que coincidan. Por favor, agrega algunas palabras claves en tu perfil predeterminado." - -#: mod/match.php:88 -msgid "is interested in:" -msgstr "estás interesado en:" - -#: mod/match.php:102 -msgid "Profile Match" -msgstr "Coincidencias de Perfil" - -#: mod/message.php:60 mod/wallmessage.php:50 -msgid "No recipient selected." -msgstr "Ningún destinatario seleccionado" - -#: mod/message.php:64 -msgid "Unable to locate contact information." -msgstr "No se puede encontrar información del contacto." - -#: mod/message.php:67 mod/wallmessage.php:56 -msgid "Message could not be sent." -msgstr "El mensaje no ha podido ser enviado." - -#: mod/message.php:70 mod/wallmessage.php:59 -msgid "Message collection failure." -msgstr "Fallo en la recolección de mensajes." - -#: mod/message.php:73 mod/wallmessage.php:62 -msgid "Message sent." -msgstr "Mensaje enviado." - -#: mod/message.php:204 -msgid "Do you really want to delete this message?" -msgstr "¿Estás seguro de que quieres borrar este mensaje?" - -#: mod/message.php:224 -msgid "Message deleted." -msgstr "Mensaje eliminado." - -#: mod/message.php:255 -msgid "Conversation removed." -msgstr "Conversación eliminada." - -#: mod/message.php:322 mod/wallmessage.php:126 -msgid "Send Private Message" -msgstr "Enviar mensaje privado" - -#: mod/message.php:323 mod/message.php:510 mod/wallmessage.php:128 -msgid "To:" -msgstr "Para:" - -#: mod/message.php:328 mod/message.php:512 mod/wallmessage.php:129 -msgid "Subject:" -msgstr "Asunto:" - -#: mod/message.php:364 -msgid "No messages." -msgstr "No hay mensajes." - -#: mod/message.php:403 -msgid "Message not available." -msgstr "Mensaje no disponibile." - -#: mod/message.php:477 -msgid "Delete message" -msgstr "Borrar mensaje" - -#: mod/message.php:503 mod/message.php:583 -msgid "Delete conversation" -msgstr "Eliminar conversación" - -#: mod/message.php:505 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "No hay comunicaciones seguras disponibles. Podrías responder desde la página de perfil del remitente. " - -#: mod/message.php:509 -msgid "Send Reply" -msgstr "Enviar respuesta" - -#: mod/message.php:553 -#, php-format -msgid "Unknown sender - %s" -msgstr "Remitente desconocido - %s" - -#: mod/message.php:555 -#, php-format -msgid "You and %s" -msgstr "Tú y %s" - -#: mod/message.php:557 -#, php-format -msgid "%s and You" -msgstr "%s y Tú" - -#: mod/message.php:586 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: mod/message.php:589 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d mensaje" -msgstr[1] "%d mensajes" - -#: mod/mood.php:134 -msgid "Mood" -msgstr "Ánimo" - -#: mod/mood.php:135 -msgid "Set your current mood and tell your friends" -msgstr "Coloca tu ánimo actual y cuéntaselo a tus amigos" - -#: mod/network.php:190 mod/search.php:25 -msgid "Remove term" -msgstr "Eliminar término" - -#: mod/network.php:397 -#, php-format -msgid "" -"Warning: This group contains %s member from a network that doesn't allow non" -" public messages." -msgid_plural "" -"Warning: This group contains %s members from a network that doesn't allow " -"non public messages." -msgstr[0] "Aviso: Este grupo contiene %s miembro de una red que no permite mensajes públicos." -msgstr[1] "Aviso: Este grupo contiene %s miembros de una red que no permite mensajes públicos." - -#: mod/network.php:400 -msgid "Messages in this group won't be send to these receivers." -msgstr "Los mensajes de este grupo no se enviarán a estos receptores." - -#: mod/network.php:528 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Los mensajes privados a esta persona corren el riesgo de ser mostrados públicamente." - -#: mod/network.php:533 -msgid "Invalid contact." -msgstr "Contacto erróneo." - -#: mod/network.php:810 -msgid "Commented Order" -msgstr "Orden de comentarios" - -#: mod/network.php:813 -msgid "Sort by Comment Date" -msgstr "Ordenar por fecha de comentarios" - -#: mod/network.php:818 -msgid "Posted Order" -msgstr "Orden de publicación" - -#: mod/network.php:821 -msgid "Sort by Post Date" -msgstr "Ordenar por fecha de publicación" - -#: mod/network.php:832 -msgid "Posts that mention or involve you" -msgstr "Publicaciones que te mencionan o involucran" - -#: mod/network.php:840 -msgid "New" -msgstr "Nuevo" - -#: mod/network.php:843 -msgid "Activity Stream - by date" -msgstr "Corriente de actividad por fecha" - -#: mod/network.php:851 -msgid "Shared Links" -msgstr "Enlaces compartidos" - -#: mod/network.php:854 -msgid "Interesting Links" -msgstr "Enlaces interesantes" - -#: mod/network.php:862 -msgid "Starred" -msgstr "Favoritos" - -#: mod/network.php:865 -msgid "Favourite Posts" -msgstr "Publicaciones favoritas" - -#: mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Bienvenido a Friendica " - -#: mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Listado de nuevos miembros" - -#: 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 "Nos gustaría ofrecerte algunos consejos y enlaces para ayudar a hacer tu experiencia más amena. Pulsa en cualquier elemento para visitar la página correspondiente. Un enlace a esta página será visible desde tu página de inicio durante las dos semanas siguientes a tu inscripción y luego desaparecerá." - -#: mod/newmember.php:14 -msgid "Getting Started" -msgstr "Empezando" - -#: mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "Visita guiada a Friendica" - -#: mod/newmember.php:18 -msgid "" -"On your Quick Start page - find a brief introduction to your " -"profile and network tabs, make some new connections, and find some groups to" -" join." -msgstr "En tu página de Inicio Rápido - busca una introducción breve para tus pestañas de perfil y red, haz algunas conexiones nuevas, y busca algunos grupos a los que unirte." - -#: mod/newmember.php:26 -msgid "Go to Your Settings" -msgstr "Ir a tus ajustes" - -#: mod/newmember.php:26 -msgid "" -"On your Settings page - change your initial password. Also make a " -"note of your Identity Address. This looks just like an email address - and " -"will be useful in making friends on the free social web." -msgstr "En la página de Configuración puedes cambiar tu contraseña inicial. También aparece tu ID (Identity Address). Es parecida a una dirección de correo y te servirá para conectar con gente de redes sociales libres." - -#: 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 "Revisa las otras configuraciones, especialmente la configuración de privacidad. Un listado de directorio sin publicar es como tener un número de teléfono sin publicar. Normalmente querrás publicar tu listado, a menos que tus amigos y amigos potenciales sepan cómo ponerse en contacto contigo." - -#: mod/newmember.php:36 mod/profile_photo.php:256 mod/profiles.php:699 -msgid "Upload Profile Photo" -msgstr "Subir foto del Perfil" - -#: mod/newmember.php:36 -msgid "" -"Upload a profile photo if you have not done so already. Studies have shown " -"that people with real photos of themselves are ten times more likely to make" -" friends than people who do not." -msgstr "Sube una foto para tu perfil si no lo has hecho aún. Los estudios han demostrado que la gente que usa fotos suyas reales tienen diez veces más éxito a la hora de entablar amistad que las que no." - -#: mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "Editar tu perfil" - -#: mod/newmember.php:38 -msgid "" -"Edit your default profile to your liking. Review the " -"settings for hiding your list of friends and hiding the profile from unknown" -" visitors." -msgstr "Edita tu perfil predeterminado como quieras. Revisa la configuración para ocultar tu lista de amigos o tu perfil a los visitantes desconocidos." - -#: mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "Palabras clave del perfil" - -#: mod/newmember.php:40 -msgid "" -"Set some public keywords for your default profile which describe your " -"interests. We may be able to find other people with similar interests and " -"suggest friendships." -msgstr "Define en tu perfil público algunas palabras que describan tus intereses. Así podremos buscar otras personas con los mismos gustos y sugerirte posibles amigos." - -#: mod/newmember.php:44 -msgid "Connecting" -msgstr "Conectando" - -#: mod/newmember.php:51 -msgid "Importing Emails" -msgstr "Importando correos electrónicos" - -#: mod/newmember.php:51 -msgid "" -"Enter your email access information on your Connector Settings page if you " -"wish to import and interact with friends or mailing lists from your email " -"INBOX" -msgstr "Introduce la información para acceder a tu correo en la página de Configuración del conector si quieres importar e interactuar con amigos o listas de correos del buzón de entrada de tu correo electrónico." - -#: mod/newmember.php:53 -msgid "Go to Your Contacts Page" -msgstr "Ir a tu página de contactos" - -#: mod/newmember.php:53 -msgid "" -"Your Contacts page is your gateway to managing friendships and connecting " -"with friends on other networks. Typically you enter their address or site " -"URL in the Add New Contact dialog." -msgstr "Tu página de Contactos es el portal desde donde podrás manejar tus amistades y conectarte con amigos de otras redes. Normalmente introduces su dirección o la dirección de su sitio web en el recuadro \"Añadir contacto nuevo\"." - -#: mod/newmember.php:55 -msgid "Go to Your Site's Directory" -msgstr "Ir al directorio de tu sitio" - -#: mod/newmember.php:55 -msgid "" -"The Directory page lets you find other people in this network or other " -"federated sites. Look for a Connect or Follow link on " -"their profile page. Provide your own Identity Address if requested." -msgstr "El Directorio te permite encontrar otras personas en esta red o en cualquier otro sitio federado. Busca algún enlace de Conectar o Seguir en su perfil. Proporciona tu direción personal si es necesario." - -#: mod/newmember.php:57 -msgid "Finding New People" -msgstr "Encontrando nueva gente" - -#: mod/newmember.php:57 -msgid "" -"On the side panel of the Contacts page are several tools to find new " -"friends. We can match people by interest, look up people by name or " -"interest, and provide suggestions based on network relationships. On a brand" -" new site, friend suggestions will usually begin to be populated within 24 " -"hours." -msgstr "En el panel lateral de la página de Contactos existen varias herramientas para encontrar nuevos amigos. Podemos filtrar personas por sus intereses, buscar personas por nombre o por sus intereses, y ofrecerte sugerencias basadas en sus relaciones de la red. En un sitio nuevo, las sugerencias de amigos por lo general comienzan pasadas las 24 horas." - -#: mod/newmember.php:65 -msgid "Group Your Contacts" -msgstr "Agrupa tus contactos" - -#: mod/newmember.php:65 -msgid "" -"Once you have made some friends, organize them into private conversation " -"groups from the sidebar of your Contacts page and then you can interact with" -" each group privately on your Network page." -msgstr "Una vez que tengas algunos amigos, puedes organizarlos en grupos privados de conversación mediante el memnú en tu página de Contactos y luego puedes interactuar con cada grupo por separado desde tu página de Red." - -#: mod/newmember.php:68 -msgid "Why Aren't My Posts Public?" -msgstr "¿Por qué mis publicaciones no son públicas?" - -#: mod/newmember.php:68 -msgid "" -"Friendica respects your privacy. By default, your posts will only show up to" -" people you've added as friends. For more information, see the help section " -"from the link above." -msgstr "Friendica respeta tu privacidad. Por defecto, tus publicaciones solo se mostrarán a personas que hayas añadido como amistades. Para más información, mira la sección de ayuda en el enlace de más arriba." - -#: mod/newmember.php:73 -msgid "Getting Help" -msgstr "Consiguiendo ayuda" - -#: mod/newmember.php:77 -msgid "Go to the Help Section" -msgstr "Ir a la sección de ayuda" - -#: mod/newmember.php:77 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "Puedes consultar nuestra página de Ayuda para más información y recursos de ayuda." - -#: mod/nogroup.php:65 -msgid "Contacts who are not members of a group" -msgstr "Contactos sin grupo" - -#: mod/notifications.php:35 -msgid "Invalid request identifier." -msgstr "Solicitud de identificación no válida." - -#: mod/notifications.php:44 mod/notifications.php:180 -#: mod/notifications.php:258 -msgid "Discard" -msgstr "Descartar" - -#: mod/notifications.php:105 -msgid "Network Notifications" -msgstr "Notificaciones de Red" - -#: mod/notifications.php:111 mod/notify.php:69 -msgid "System Notifications" -msgstr "Notificaciones del sistema" - -#: mod/notifications.php:117 -msgid "Personal Notifications" -msgstr "Notificaciones personales" - -#: mod/notifications.php:123 -msgid "Home Notifications" -msgstr "Notificaciones de Inicio" - -#: mod/notifications.php:152 -msgid "Show Ignored Requests" -msgstr "Mostrar peticiones ignoradas" - -#: mod/notifications.php:152 -msgid "Hide Ignored Requests" -msgstr "Ocultar peticiones ignoradas" - -#: mod/notifications.php:164 mod/notifications.php:228 -msgid "Notification type: " -msgstr "Tipo de notificación: " - -#: mod/notifications.php:167 -#, php-format -msgid "suggested by %s" -msgstr "sugerido por %s" - -#: mod/notifications.php:173 mod/notifications.php:246 -msgid "Post a new friend activity" -msgstr "Publica tu nueva amistad" - -#: mod/notifications.php:173 mod/notifications.php:246 -msgid "if applicable" -msgstr "Si corresponde" - -#: mod/notifications.php:195 -msgid "Claims to be known to you: " -msgstr "Dice conocerte: " - -#: mod/notifications.php:196 -msgid "yes" -msgstr "sí" - -#: mod/notifications.php:196 -msgid "no" -msgstr "no" - -#: mod/notifications.php:197 mod/notifications.php:202 -msgid "Shall your connection be bidirectional or not?" -msgstr "¿Su conexión debe ser bidireccional o no?" - -#: mod/notifications.php:198 mod/notifications.php:203 -#, php-format -msgid "" -"Accepting %s as a friend allows %s to subscribe to your posts, and you will " -"also receive updates from them in your news feed." -msgstr "Aceptar a %s como amigo le permite a %s suscribirse a sus publicaciones, y usted también recibirá actualizaciones de ellos en sus noticias." - -#: mod/notifications.php:199 -#, php-format -msgid "" -"Accepting %s as a subscriber allows them to subscribe to your posts, but you" -" will not receive updates from them in your news feed." -msgstr "Aceptar a %s como suscriptor les permite suscribirse a sus publicaciones, pero usted no recibirá actualizaciones de ellos en sus noticias." - -#: mod/notifications.php:204 -#, php-format -msgid "" -"Accepting %s as a sharer allows them to subscribe to your posts, but you " -"will not receive updates from them in your news feed." -msgstr "Aceptar a %s como participante les permite suscribirse a sus publicaciones, pero usted no recibirá actualizaciones de ellos en sus noticias." - -#: mod/notifications.php:215 -msgid "Friend" -msgstr "Amigo" - -#: mod/notifications.php:216 -msgid "Sharer" -msgstr "Lector" - -#: mod/notifications.php:216 -msgid "Subscriber" -msgstr "Suscriptor" - -#: mod/notifications.php:266 -msgid "No introductions." -msgstr "Sin presentaciones." - -#: mod/notifications.php:307 -msgid "Show unread" -msgstr "Mostrar no leído" - -#: mod/notifications.php:307 -msgid "Show all" -msgstr "Mostrar todo" - -#: mod/notifications.php:313 -#, php-format -msgid "No more %s notifications." -msgstr "No más notificaciones de %s." - -#: mod/notify.php:65 -msgid "No more system notifications." -msgstr "No hay más notificaciones del sistema." - -#: mod/oexchange.php:21 -msgid "Post successful." -msgstr "¡Publicado!" - -#: mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "Error de protocolo OpenID. ID no devuelta." - -#: mod/openid.php:60 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Cuenta no encontrada y el registro OpenID no está permitido en ese sitio." - -#: mod/ostatus_subscribe.php:14 -msgid "Subscribing to OStatus contacts" -msgstr "Subscribir a los contactos de OStatus" - -#: mod/ostatus_subscribe.php:25 -msgid "No contact provided." -msgstr "Sin suministro de datos de contacto." - -#: mod/ostatus_subscribe.php:31 -msgid "Couldn't fetch information for contact." -msgstr "No se ha podido conseguir la información del contacto." - -#: mod/ostatus_subscribe.php:40 -msgid "Couldn't fetch friends for contact." -msgstr "No se ha podido conseguir datos de amigos para contactar." - -#: mod/ostatus_subscribe.php:54 mod/repair_ostatus.php:44 -msgid "Done" -msgstr "hecho!" - -#: mod/ostatus_subscribe.php:68 -msgid "success" -msgstr "exito!" - -#: mod/ostatus_subscribe.php:70 -msgid "failed" -msgstr "fallido!" - -#: mod/ostatus_subscribe.php:78 mod/repair_ostatus.php:50 -msgid "Keep this window open until done." -msgstr "Mantén esta ventana abierta hasta que el proceso ha terminado." - -#: mod/p.php:9 -msgid "Not Extended" -msgstr "No extendido" - -#: mod/photos.php:90 mod/photos.php:1876 -msgid "Recent Photos" -msgstr "Fotos recientes" - -#: mod/photos.php:93 mod/photos.php:1303 mod/photos.php:1878 -msgid "Upload New Photos" -msgstr "Subir nuevas fotos" - -#: mod/photos.php:107 mod/settings.php:36 -msgid "everybody" -msgstr "todos" - -#: mod/photos.php:171 -msgid "Contact information unavailable" -msgstr "Información del contacto no disponible" - -#: mod/photos.php:192 -msgid "Album not found." -msgstr "Álbum no encontrado." - -#: mod/photos.php:225 mod/photos.php:237 mod/photos.php:1247 -msgid "Delete Album" -msgstr "Eliminar álbum" - -#: mod/photos.php:235 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "¿Estás seguro de quieres borrar este álbum y todas sus fotos?" - -#: mod/photos.php:317 mod/photos.php:328 mod/photos.php:1563 -msgid "Delete Photo" -msgstr "Eliminar foto" - -#: mod/photos.php:326 -msgid "Do you really want to delete this photo?" -msgstr "¿Estás seguro de que quieres borrar esta foto?" - -#: mod/photos.php:705 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s fue etiquetado en %2$s por %3$s" - -#: mod/photos.php:705 -msgid "a photo" -msgstr "una foto" - -#: mod/photos.php:803 mod/profile_photo.php:156 mod/wall_upload.php:151 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "La imagen excede el limite de %s" - -#: mod/photos.php:811 -msgid "Image file is empty." -msgstr "El archivo de imagen está vacío." - -#: mod/photos.php:844 mod/profile_photo.php:165 mod/wall_upload.php:186 -msgid "Unable to process image." -msgstr "Imposible procesar la imagen." - -#: mod/photos.php:871 mod/profile_photo.php:315 mod/wall_upload.php:219 -msgid "Image upload failed." -msgstr "Error al subir la imagen." - -#: mod/photos.php:974 -msgid "No photos selected" -msgstr "Ninguna foto seleccionada" - -#: mod/photos.php:1074 mod/videos.php:309 -msgid "Access to this item is restricted." -msgstr "El acceso a este elemento está restringido." - -#: mod/photos.php:1134 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Has usado %1$.2f MB de %2$.2f MB de tu álbum de fotos." - -#: mod/photos.php:1168 -msgid "Upload Photos" -msgstr "Subir fotos" - -#: mod/photos.php:1172 mod/photos.php:1242 -msgid "New album name: " -msgstr "Nombre del nuevo álbum: " - -#: mod/photos.php:1173 -msgid "or existing album name: " -msgstr "o nombre de un álbum existente: " - -#: mod/photos.php:1174 -msgid "Do not show a status post for this upload" -msgstr "No actualizar tu estado con este envío" - -#: mod/photos.php:1185 mod/photos.php:1567 mod/settings.php:1307 -msgid "Show to Groups" -msgstr "Mostrar a los Grupos" - -#: mod/photos.php:1186 mod/photos.php:1568 mod/settings.php:1308 -msgid "Show to Contacts" -msgstr "Mostrar a los Contactos" - -#: mod/photos.php:1187 -msgid "Private Photo" -msgstr "Foto Privada" - -#: mod/photos.php:1188 -msgid "Public Photo" -msgstr "Foto Pública" - -#: mod/photos.php:1254 -msgid "Edit Album" -msgstr "Modificar álbum" - -#: mod/photos.php:1260 -msgid "Show Newest First" -msgstr "Mostrar más nuevos primero" - -#: mod/photos.php:1262 -msgid "Show Oldest First" -msgstr "Mostrar más antiguos primero" - -#: mod/photos.php:1289 mod/photos.php:1861 -msgid "View Photo" -msgstr "Ver foto" - -#: mod/photos.php:1335 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permiso denegado. El acceso a este elemento puede estar restringido." - -#: mod/photos.php:1337 -msgid "Photo not available" -msgstr "Foto no disponible" - -#: mod/photos.php:1395 -msgid "View photo" -msgstr "Ver foto" - -#: mod/photos.php:1395 -msgid "Edit photo" -msgstr "Modificar foto" - -#: mod/photos.php:1396 -msgid "Use as profile photo" -msgstr "Usar como foto del perfil" - -#: mod/photos.php:1421 -msgid "View Full Size" -msgstr "Ver a tamaño completo" - -#: mod/photos.php:1507 -msgid "Tags: " -msgstr "Etiquetas: " - -#: mod/photos.php:1510 -msgid "[Remove any tag]" -msgstr "[Borrar todas las etiquetas]" - -#: mod/photos.php:1549 -msgid "New album name" -msgstr "Nuevo nombre del álbum" - -#: mod/photos.php:1550 -msgid "Caption" -msgstr "Título" - -#: mod/photos.php:1551 -msgid "Add a Tag" -msgstr "Añadir una etiqueta" - -#: mod/photos.php:1551 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Ejemplo: @juan, @Barbara_Ruiz, @julia@example.com, #California, #camping" - -#: mod/photos.php:1552 -msgid "Do not rotate" -msgstr "No rotar" - -#: mod/photos.php:1553 -msgid "Rotate CW (right)" -msgstr "Girar a la derecha" - -#: mod/photos.php:1554 -msgid "Rotate CCW (left)" -msgstr "Girar a la izquierda" - -#: mod/photos.php:1569 -msgid "Private photo" -msgstr "Foto privada" - -#: mod/photos.php:1570 -msgid "Public photo" -msgstr "Foto pública" - -#: mod/photos.php:1792 -msgid "Map" -msgstr "Mapa" - -#: mod/photos.php:1867 mod/videos.php:391 -msgid "View Album" -msgstr "Ver Álbum" - -#: mod/ping.php:270 -msgid "{0} wants to be your friend" -msgstr "{0} quiere ser tu amigo" - -#: mod/ping.php:285 -msgid "{0} sent you a message" -msgstr "{0} te ha enviado un mensaje" - -#: mod/ping.php:300 -msgid "{0} requested registration" -msgstr "{0} solicitudes de registro" - -#: mod/poke.php:196 -msgid "Poke/Prod" -msgstr "Toque/Empujón" - -#: mod/poke.php:197 -msgid "poke, prod or do other things to somebody" -msgstr "da un toque, empujón o similar a alguien" - -#: mod/poke.php:198 -msgid "Recipient" -msgstr "Receptor" - -#: mod/poke.php:199 -msgid "Choose what you wish to do to recipient" -msgstr "Elige qué desea hacer con el receptor" - -#: mod/poke.php:202 -msgid "Make this post private" -msgstr "Hacer esta publicación privada" - -#: mod/profile.php:174 -msgid "Tips for New Members" -msgstr "Consejos para nuevos miembros" - #: mod/profile_photo.php:44 msgid "Image uploaded but image cropping failed." msgstr "Imagen recibida, pero ha fallado al recortarla." #: mod/profile_photo.php:77 mod/profile_photo.php:85 mod/profile_photo.php:93 -#: mod/profile_photo.php:323 +#: mod/profile_photo.php:322 #, php-format msgid "Image size reduction [%s] failed." msgstr "Ha fallado la reducción de las dimensiones de la imagen [%s]." @@ -7301,1467 +7684,1095 @@ msgid "" "display immediately." msgstr "Recarga la página o limpia la caché del navegador si la foto nueva no aparece inmediatamente." -#: mod/profile_photo.php:137 +#: mod/profile_photo.php:136 msgid "Unable to process image" msgstr "Imposible procesar la imagen" -#: mod/profile_photo.php:254 +#: mod/profile_photo.php:253 msgid "Upload File:" msgstr "Subir archivo:" -#: mod/profile_photo.php:255 +#: mod/profile_photo.php:254 msgid "Select a profile:" msgstr "Elige un perfil:" -#: mod/profile_photo.php:257 +#: mod/profile_photo.php:256 msgid "Upload" msgstr "Subir" -#: mod/profile_photo.php:260 +#: mod/profile_photo.php:259 msgid "or" msgstr "o" -#: mod/profile_photo.php:260 +#: mod/profile_photo.php:259 msgid "skip this step" msgstr "saltar este paso" -#: mod/profile_photo.php:260 +#: mod/profile_photo.php:259 msgid "select a photo from your photo albums" msgstr "elige una foto de tus álbumes" -#: mod/profile_photo.php:274 +#: mod/profile_photo.php:273 msgid "Crop Image" msgstr "Recortar imagen" -#: mod/profile_photo.php:275 +#: mod/profile_photo.php:274 msgid "Please adjust the image cropping for optimum viewing." msgstr "Por favor, ajusta el recorte de la imagen para optimizarla." -#: mod/profile_photo.php:277 +#: mod/profile_photo.php:276 msgid "Done Editing" msgstr "Editado" -#: mod/profile_photo.php:313 +#: mod/profile_photo.php:312 msgid "Image uploaded successfully." msgstr "Imagen subida con éxito." -#: mod/profiles.php:38 +#: mod/profiles.php:42 msgid "Profile deleted." msgstr "Perfil eliminado." -#: mod/profiles.php:56 mod/profiles.php:90 +#: mod/profiles.php:58 mod/profiles.php:94 msgid "Profile-" msgstr "Perfil-" -#: mod/profiles.php:75 mod/profiles.php:118 +#: mod/profiles.php:77 mod/profiles.php:122 msgid "New profile created." msgstr "Nuevo perfil creado." -#: mod/profiles.php:96 +#: mod/profiles.php:100 msgid "Profile unavailable to clone." msgstr "Imposible duplicar el perfil." -#: mod/profiles.php:190 +#: mod/profiles.php:196 msgid "Profile Name is required." msgstr "Se necesita un nombre de perfil." -#: mod/profiles.php:338 +#: mod/profiles.php:336 msgid "Marital Status" msgstr "Estado civil" -#: mod/profiles.php:342 +#: mod/profiles.php:340 msgid "Romantic Partner" msgstr "Pareja sentimental" -#: mod/profiles.php:354 +#: mod/profiles.php:352 msgid "Work/Employment" msgstr "Trabajo/estudios" -#: mod/profiles.php:357 +#: mod/profiles.php:355 msgid "Religion" msgstr "Religión" -#: mod/profiles.php:361 +#: mod/profiles.php:359 msgid "Political Views" msgstr "Preferencias políticas" -#: mod/profiles.php:365 +#: mod/profiles.php:363 msgid "Gender" msgstr "Género" -#: mod/profiles.php:369 +#: mod/profiles.php:367 msgid "Sexual Preference" msgstr "Orientación sexual" -#: mod/profiles.php:373 +#: mod/profiles.php:371 msgid "XMPP" msgstr "XMPP" -#: mod/profiles.php:377 +#: mod/profiles.php:375 msgid "Homepage" msgstr "Página de inicio" -#: mod/profiles.php:381 mod/profiles.php:694 +#: mod/profiles.php:379 mod/profiles.php:698 msgid "Interests" msgstr "Intereses" -#: mod/profiles.php:385 +#: mod/profiles.php:383 msgid "Address" msgstr "Dirección" -#: mod/profiles.php:392 mod/profiles.php:690 +#: mod/profiles.php:390 mod/profiles.php:694 msgid "Location" msgstr "Ubicación" -#: mod/profiles.php:477 +#: mod/profiles.php:475 msgid "Profile updated." msgstr "Perfil actualizado." -#: mod/profiles.php:565 +#: mod/profiles.php:567 msgid " and " msgstr " y " -#: mod/profiles.php:573 +#: mod/profiles.php:576 msgid "public profile" msgstr "perfil público" -#: mod/profiles.php:576 +#: mod/profiles.php:579 #, php-format msgid "%1$s changed %2$s to “%3$s”" msgstr "%1$s cambió su %2$s a “%3$s”" -#: mod/profiles.php:577 +#: mod/profiles.php:580 #, php-format msgid " - Visit %1$s's %2$s" msgstr " - Visita %1$s's %2$s" -#: mod/profiles.php:580 +#: mod/profiles.php:582 #, php-format msgid "%1$s has an updated %2$s, changing %3$s." msgstr "%1$s tiene una actualización %2$s, cambiando %3$s." -#: mod/profiles.php:637 +#: mod/profiles.php:640 msgid "Hide contacts and friends:" msgstr "Ocultar contactos y amigos" -#: mod/profiles.php:642 +#: mod/profiles.php:645 msgid "Hide your contact/friend list from viewers of this profile?" msgstr "¿Ocultar tu lista de contactos/amigos en este perfil?" -#: mod/profiles.php:666 +#: mod/profiles.php:670 msgid "Show more profile fields:" msgstr "Mostrar mas campos del perfil:" -#: mod/profiles.php:678 +#: mod/profiles.php:682 msgid "Profile Actions" msgstr "Acciones de perfil" -#: mod/profiles.php:679 +#: mod/profiles.php:683 msgid "Edit Profile Details" msgstr "Editar detalles de tu perfil" -#: mod/profiles.php:681 +#: mod/profiles.php:685 msgid "Change Profile Photo" msgstr "Cambiar imagen del Perfil" -#: mod/profiles.php:682 +#: mod/profiles.php:686 msgid "View this profile" msgstr "Ver este perfil" -#: mod/profiles.php:684 +#: mod/profiles.php:688 msgid "Create a new profile using these settings" msgstr "¿Crear un nuevo perfil con esta configuración?" -#: mod/profiles.php:685 +#: mod/profiles.php:689 msgid "Clone this profile" msgstr "Clonar este perfil" -#: mod/profiles.php:686 +#: mod/profiles.php:690 msgid "Delete this profile" msgstr "Eliminar este perfil" -#: mod/profiles.php:688 +#: mod/profiles.php:692 msgid "Basic information" msgstr "Información básica" -#: mod/profiles.php:689 +#: mod/profiles.php:693 msgid "Profile picture" msgstr "Imagen del perfil" -#: mod/profiles.php:691 +#: mod/profiles.php:695 msgid "Preferences" msgstr "Preferencias" -#: mod/profiles.php:692 +#: mod/profiles.php:696 msgid "Status information" msgstr "Información del estatus" -#: mod/profiles.php:693 +#: mod/profiles.php:697 msgid "Additional information" msgstr "Información addicional" -#: mod/profiles.php:696 +#: mod/profiles.php:700 msgid "Relation" msgstr "Relación" -#: mod/profiles.php:700 +#: mod/profiles.php:704 msgid "Your Gender:" msgstr "Género:" -#: mod/profiles.php:701 +#: mod/profiles.php:705 msgid " Marital Status:" msgstr " Estado civil:" -#: mod/profiles.php:703 +#: mod/profiles.php:707 msgid "Example: fishing photography software" msgstr "Ejemplo: pesca fotografía software" -#: mod/profiles.php:708 +#: mod/profiles.php:712 msgid "Profile Name:" msgstr "Nombres del perfil:" -#: mod/profiles.php:710 +#: mod/profiles.php:714 msgid "" "This is your public profile.
It may " "be visible to anybody using the internet." msgstr "Éste es tu perfil público.
Puede ser visto por cualquier usuario de internet." -#: mod/profiles.php:711 +#: mod/profiles.php:715 msgid "Your Full Name:" msgstr "Tu nombre completo:" -#: mod/profiles.php:712 +#: mod/profiles.php:716 msgid "Title/Description:" msgstr "Título/Descrición:" -#: mod/profiles.php:715 +#: mod/profiles.php:719 msgid "Street Address:" msgstr "Dirección" -#: mod/profiles.php:716 +#: mod/profiles.php:720 msgid "Locality/City:" msgstr "Localidad/Ciudad:" -#: mod/profiles.php:717 +#: mod/profiles.php:721 msgid "Region/State:" msgstr "Región/Estado:" -#: mod/profiles.php:718 +#: mod/profiles.php:722 msgid "Postal/Zip Code:" msgstr "Código postal:" -#: mod/profiles.php:719 +#: mod/profiles.php:723 msgid "Country:" msgstr "País" -#: mod/profiles.php:723 +#: mod/profiles.php:727 msgid "Who: (if applicable)" msgstr "¿Quién? (si es aplicable)" -#: mod/profiles.php:723 +#: mod/profiles.php:727 msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "Ejemplos: cathy123, Cathy Williams, cathy@example.com" -#: mod/profiles.php:724 +#: mod/profiles.php:728 msgid "Since [date]:" msgstr "Desde [fecha]:" -#: mod/profiles.php:726 +#: mod/profiles.php:730 msgid "Tell us about yourself..." msgstr "Háblanos sobre ti..." -#: mod/profiles.php:727 +#: mod/profiles.php:731 msgid "XMPP (Jabber) address:" msgstr "Dirección XMPP (Jabber):" -#: mod/profiles.php:727 +#: mod/profiles.php:731 msgid "" "The XMPP address will be propagated to your contacts so that they can follow" " you." msgstr "La dirección XMPP será propagada entre sus contactos para que puedan seguirle." -#: mod/profiles.php:728 +#: mod/profiles.php:732 msgid "Homepage URL:" msgstr "Dirección de tu página:" -#: mod/profiles.php:731 +#: mod/profiles.php:735 msgid "Religious Views:" msgstr "Creencias religiosas:" -#: mod/profiles.php:732 +#: mod/profiles.php:736 msgid "Public Keywords:" msgstr "Palabras clave públicas:" -#: mod/profiles.php:732 +#: mod/profiles.php:736 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Utilizadas para sugerir amigos potenciales, otros pueden verlo)" -#: mod/profiles.php:733 +#: mod/profiles.php:737 msgid "Private Keywords:" msgstr "Palabras clave privadas:" -#: mod/profiles.php:733 +#: mod/profiles.php:737 msgid "(Used for searching profiles, never shown to others)" msgstr "(Utilizadas para buscar perfiles, nunca se muestra a otros)" -#: mod/profiles.php:736 +#: mod/profiles.php:740 msgid "Musical interests" msgstr "Gustos musicales" -#: mod/profiles.php:737 +#: mod/profiles.php:741 msgid "Books, literature" msgstr "Libros, literatura" -#: mod/profiles.php:738 +#: mod/profiles.php:742 msgid "Television" msgstr "Televisión" -#: mod/profiles.php:739 +#: mod/profiles.php:743 msgid "Film/dance/culture/entertainment" msgstr "Películas/baile/cultura/entretenimiento" -#: mod/profiles.php:740 +#: mod/profiles.php:744 msgid "Hobbies/Interests" msgstr "Aficiones/Intereses" -#: mod/profiles.php:741 +#: mod/profiles.php:745 msgid "Love/romance" msgstr "Amor/Romance" -#: mod/profiles.php:742 +#: mod/profiles.php:746 msgid "Work/employment" msgstr "Trabajo/ocupación" -#: mod/profiles.php:743 +#: mod/profiles.php:747 msgid "School/education" msgstr "Escuela/estudios" -#: mod/profiles.php:744 +#: mod/profiles.php:748 msgid "Contact information and Social Networks" msgstr "Informacioń de contacto y Redes sociales" -#: mod/profiles.php:788 +#: mod/profiles.php:789 msgid "Edit/Manage Profiles" msgstr "Editar/Administrar perfiles" -#: mod/profperm.php:26 mod/profperm.php:57 -msgid "Invalid profile identifier." -msgstr "Identificador de perfil no válido." - -#: mod/profperm.php:103 -msgid "Profile Visibility Editor" -msgstr "Editor de visibilidad del perfil" - -#: mod/profperm.php:116 -msgid "Visible To" -msgstr "Visible para" - -#: mod/profperm.php:132 -msgid "All Contacts (with secure profile access)" -msgstr "Todos los contactos (con perfil de acceso seguro)" - -#: mod/register.php:93 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Te has registrado con éxito. Por favor, consulta tu correo para más información." - -#: mod/register.php:98 -#, php-format -msgid "" -"Failed to send email message. Here your accout details:
login: %s
" -"password: %s

You can change your password after login." -msgstr "Error al intentar de enviar mensaje de correo. Aquí los detalles de su cuenta:
login: %s
contraseña: %s

Puede cambiar su contraseña después de ingresar al sitio." - -#: mod/register.php:105 -msgid "Registration successful." -msgstr "Registro exitoso." - -#: mod/register.php:111 -msgid "Your registration can not be processed." -msgstr "Tu registro no se puede procesar." - -#: mod/register.php:160 -msgid "Your registration is pending approval by the site owner." -msgstr "Tu registro está pendiente de aprobación por el propietario del sitio." - -#: mod/register.php:198 mod/uimport.php:51 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Este sitio ha excedido el número de registros diarios permitidos. Inténtalo de nuevo mañana por favor." - -#: mod/register.php:226 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Puedes (opcionalmente) rellenar este formulario a través de OpenID escribiendo tu OpenID y pulsando en \"Registrar\"." - -#: mod/register.php:227 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Si no estás familiarizado con OpenID, por favor deja ese campo en blanco y rellena el resto de los elementos." - -#: mod/register.php:228 -msgid "Your OpenID (optional): " -msgstr "Tu OpenID (opcional):" - -#: mod/register.php:242 -msgid "Include your profile in member directory?" -msgstr "¿Incluir tu perfil en el directorio de miembros?" - -#: mod/register.php:267 -msgid "Note for the admin" -msgstr "Nota para el administrador" - -#: mod/register.php:267 -msgid "Leave a message for the admin, why you want to join this node" -msgstr "Deje un mensaje para el administrador sobre por qué quiere unirse a este nodo" - -#: mod/register.php:268 -msgid "Membership on this site is by invitation only." -msgstr "Sitio solo accesible mediante invitación." - -#: mod/register.php:269 -msgid "Your invitation ID: " -msgstr "ID de tu invitación: " - -#: mod/register.php:280 -msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "Nombre completo (ej. Joe Smith, real o real aparente):" - -#: mod/register.php:281 -msgid "Your Email Address: " -msgstr "Tu dirección de correo: " - -#: mod/register.php:283 mod/settings.php:1278 -msgid "New Password:" -msgstr "Contraseña nueva:" - -#: mod/register.php:283 -msgid "Leave empty for an auto generated password." -msgstr "Dejar vacío para autogenerar una contraseña" - -#: mod/register.php:284 mod/settings.php:1279 -msgid "Confirm:" -msgstr "Confirmar:" - -#: mod/register.php:285 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "Elije un apodo. Debe comenzar con una letra. Tu dirección de perfil en este sitio va a ser \"apodo@$nombredelsitio\"." - -#: mod/register.php:286 -msgid "Choose a nickname: " -msgstr "Escoge un apodo: " - -#: mod/register.php:295 mod/uimport.php:66 -msgid "Import" -msgstr "Importar" - -#: mod/register.php:296 -msgid "Import your profile to this friendica instance" -msgstr "Importar tu perfil a esta instancia de friendica" - -#: mod/regmod.php:58 -msgid "Account approved." -msgstr "Cuenta aprobada." - -#: mod/regmod.php:95 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registro anulado para %s" - -#: mod/regmod.php:107 -msgid "Please login." -msgstr "Por favor accede." - -#: mod/removeme.php:52 mod/removeme.php:55 -msgid "Remove My Account" -msgstr "Eliminar mi cuenta" - -#: mod/removeme.php:53 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Esto eliminará por completo tu cuenta. Una vez hecho no se puede deshacer." - -#: mod/removeme.php:54 -msgid "Please enter your password for verification:" -msgstr "Por favor, introduce tu contraseña para la verificación:" - -#: mod/repair_ostatus.php:14 -msgid "Resubscribing to OStatus contacts" -msgstr "Resubscribir a contactos de OStatus" - -#: mod/repair_ostatus.php:30 -msgid "Error" -msgstr "error" - -#: mod/search.php:100 -msgid "Only logged in users are permitted to perform a search." -msgstr "Solo usuarios activos tienen permiso para ejecutar búsquedas." - -#: mod/search.php:124 -msgid "Too Many Requests" -msgstr "Demasiadas consultas" - -#: mod/search.php:125 -msgid "Only one search per minute is permitted for not logged in users." -msgstr "Se permite solo una búsqueda por minuto para usuarios no identificados." - -#: mod/search.php:230 -#, php-format -msgid "Items tagged with: %s" -msgstr "Objetos taggeado con: %s" - -#: mod/settings.php:60 +#: mod/settings.php:62 msgid "Display" msgstr "Interfaz del usuario" -#: mod/settings.php:67 mod/settings.php:890 +#: mod/settings.php:69 mod/settings.php:891 msgid "Social Networks" msgstr "Redes sociales" -#: mod/settings.php:88 +#: mod/settings.php:90 msgid "Connected apps" msgstr "Aplicaciones conectadas" -#: mod/settings.php:95 mod/uexport.php:45 -msgid "Export personal data" -msgstr "Exportación de datos personales" - -#: mod/settings.php:102 +#: mod/settings.php:104 msgid "Remove account" msgstr "Eliminar cuenta" -#: mod/settings.php:157 +#: mod/settings.php:159 msgid "Missing some important data!" msgstr "¡Faltan algunos datos importantes!" -#: mod/settings.php:271 +#: mod/settings.php:273 msgid "Failed to connect with email account using the settings provided." msgstr "Error al conectar con la cuenta de correo mediante la configuración suministrada." -#: mod/settings.php:276 +#: mod/settings.php:278 msgid "Email settings updated." msgstr "Configuración de correo actualizada." -#: mod/settings.php:291 +#: mod/settings.php:293 msgid "Features updated" msgstr "Actualizaciones" -#: mod/settings.php:361 +#: mod/settings.php:363 msgid "Relocate message has been send to your contacts" msgstr "Mensaje de reubicación ha sido enviado a sus contactos." -#: mod/settings.php:380 +#: mod/settings.php:382 msgid "Empty passwords are not allowed. Password unchanged." msgstr "No se permiten contraseñas vacías. La contraseña no ha sido modificada." -#: mod/settings.php:388 +#: mod/settings.php:390 msgid "Wrong password." msgstr "Contraseña incorrecta" -#: mod/settings.php:399 +#: mod/settings.php:401 msgid "Password changed." msgstr "Contraseña modificada." -#: mod/settings.php:401 +#: mod/settings.php:403 msgid "Password update failed. Please try again." msgstr "La actualización de la contraseña ha fallado. Por favor, prueba otra vez." -#: mod/settings.php:481 +#: mod/settings.php:483 msgid " Please use a shorter name." msgstr " Usa un nombre más corto." -#: mod/settings.php:483 +#: mod/settings.php:485 msgid " Name too short." msgstr " Nombre demasiado corto." -#: mod/settings.php:492 +#: mod/settings.php:494 msgid "Wrong Password" msgstr "Contraseña incorrecta" -#: mod/settings.php:497 +#: mod/settings.php:499 msgid " Not valid email." msgstr " Correo no válido." -#: mod/settings.php:503 +#: mod/settings.php:505 msgid " Cannot change to that email." msgstr " No se puede usar ese correo." -#: mod/settings.php:559 +#: mod/settings.php:561 msgid "Private forum has no privacy permissions. Using default privacy group." msgstr "El foro privado no tiene permisos de privacidad. Usando el grupo de privacidad por defecto." -#: mod/settings.php:563 +#: mod/settings.php:565 msgid "Private forum has no privacy permissions and no default privacy group." msgstr "El foro privado no tiene permisos de privacidad ni grupo por defecto de privacidad." -#: mod/settings.php:603 +#: mod/settings.php:605 msgid "Settings updated." msgstr "Configuración actualizada." -#: mod/settings.php:680 mod/settings.php:706 mod/settings.php:742 +#: mod/settings.php:681 mod/settings.php:707 mod/settings.php:743 msgid "Add application" msgstr "Agregar aplicación" -#: mod/settings.php:684 mod/settings.php:710 +#: mod/settings.php:685 mod/settings.php:711 msgid "Consumer Key" msgstr "Clave del consumidor" -#: mod/settings.php:685 mod/settings.php:711 +#: mod/settings.php:686 mod/settings.php:712 msgid "Consumer Secret" msgstr "Secreto del consumidor" -#: mod/settings.php:686 mod/settings.php:712 +#: mod/settings.php:687 mod/settings.php:713 msgid "Redirect" msgstr "Redirigir" -#: mod/settings.php:687 mod/settings.php:713 +#: mod/settings.php:688 mod/settings.php:714 msgid "Icon url" msgstr "Dirección del ícono" -#: mod/settings.php:698 +#: mod/settings.php:699 msgid "You can't edit this application." msgstr "No puedes editar esta aplicación." -#: mod/settings.php:741 +#: mod/settings.php:742 msgid "Connected Apps" msgstr "Aplicaciones conectadas" -#: mod/settings.php:745 +#: mod/settings.php:746 msgid "Client key starts with" msgstr "Clave de cliente comienza por" -#: mod/settings.php:746 +#: mod/settings.php:747 msgid "No name" msgstr "Sin nombre" -#: mod/settings.php:747 +#: mod/settings.php:748 msgid "Remove authorization" msgstr "Suprimir la autorización" -#: mod/settings.php:759 +#: mod/settings.php:760 msgid "No Plugin settings configured" msgstr "No se ha configurado ningún módulo" -#: mod/settings.php:768 +#: mod/settings.php:769 msgid "Plugin Settings" msgstr "Configuración de los módulos" -#: mod/settings.php:790 +#: mod/settings.php:791 msgid "Additional Features" msgstr "Características adicionales" -#: mod/settings.php:800 mod/settings.php:804 +#: mod/settings.php:801 mod/settings.php:805 msgid "General Social Media Settings" msgstr "Configuración general de social media " -#: mod/settings.php:810 +#: mod/settings.php:811 msgid "Disable intelligent shortening" msgstr "Deshabilitar recorte inteligente de URL" -#: mod/settings.php:812 +#: mod/settings.php:813 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 "Normalemente el sistema intenta de encontrara el mejor enlace para agregar a envíos recortados (twitter, OStatus). Si esta opción se encuentra habilitado, todo envío recortado apuntara siempre al tema original en friendica." -#: mod/settings.php:818 +#: mod/settings.php:819 msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" msgstr "Automáticamente seguir cualquier GNUsocial (OStatus) seguidores o menciones " -#: mod/settings.php:820 +#: mod/settings.php:821 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 "Cuando se recibe un mensaje de un perfil desconocido de OStatus, esta opción define que hacer.\nSi es habilitado, un nuevo contacto sera creado para cada usuario." -#: mod/settings.php:826 +#: mod/settings.php:827 msgid "Default group for OStatus contacts" msgstr "Grupo por defecto para contactos OStatus" -#: mod/settings.php:834 +#: mod/settings.php:835 msgid "Your legacy GNU Social account" msgstr "Tu cuenta GNU social conectada" -#: mod/settings.php:836 +#: mod/settings.php:837 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 agrega su viejo nombre de perfil GNUsocial/Statusnet aqui (en el formato de usuario@dominio.tld), sus contactos serán añadidos automáticamente.\nEl campo sera vaciado cuando termine el proceso. " -#: mod/settings.php:839 +#: mod/settings.php:840 msgid "Repair OStatus subscriptions" msgstr "Reparar subscripciones de OStatus" -#: mod/settings.php:848 mod/settings.php:849 +#: mod/settings.php:849 mod/settings.php:850 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "El soporte integrado de conexión con %s está %s" -#: mod/settings.php:848 mod/settings.php:849 +#: mod/settings.php:849 mod/settings.php:850 msgid "enabled" msgstr "habilitado" -#: mod/settings.php:848 mod/settings.php:849 +#: mod/settings.php:849 mod/settings.php:850 msgid "disabled" msgstr "deshabilitado" -#: mod/settings.php:849 +#: mod/settings.php:850 msgid "GNU Social (OStatus)" msgstr "GNUsocial (OStatus)" -#: mod/settings.php:883 +#: mod/settings.php:884 msgid "Email access is disabled on this site." msgstr "El acceso por correo está deshabilitado en esta web." -#: mod/settings.php:895 +#: mod/settings.php:896 msgid "Email/Mailbox Setup" msgstr "Configuración del correo/buzón" -#: mod/settings.php:896 +#: mod/settings.php:897 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Si quieres comunicarte con tus contactos de correo usando este servicio (opcional), por favor, especifica cómo conectar con tu buzón." -#: mod/settings.php:897 +#: mod/settings.php:898 msgid "Last successful email check:" msgstr "Última comprobación del correo con éxito:" -#: mod/settings.php:899 +#: mod/settings.php:900 msgid "IMAP server name:" msgstr "Nombre del servidor IMAP:" -#: mod/settings.php:900 +#: mod/settings.php:901 msgid "IMAP port:" msgstr "Puerto IMAP:" -#: mod/settings.php:901 +#: mod/settings.php:902 msgid "Security:" msgstr "Seguridad:" -#: mod/settings.php:901 mod/settings.php:906 +#: mod/settings.php:902 mod/settings.php:907 msgid "None" msgstr "Ninguna" -#: mod/settings.php:902 +#: mod/settings.php:903 msgid "Email login name:" msgstr "Nombre de usuario:" -#: mod/settings.php:903 +#: mod/settings.php:904 msgid "Email password:" msgstr "Contraseña:" -#: mod/settings.php:904 +#: mod/settings.php:905 msgid "Reply-to address:" msgstr "Dirección de respuesta:" -#: mod/settings.php:905 +#: mod/settings.php:906 msgid "Send public posts to all email contacts:" msgstr "Enviar publicaciones públicas a todos los contactos de correo:" -#: mod/settings.php:906 +#: mod/settings.php:907 msgid "Action after import:" msgstr "Acción después de importar:" -#: mod/settings.php:906 +#: mod/settings.php:907 msgid "Move to folder" msgstr "Mover a un directorio" -#: mod/settings.php:907 +#: mod/settings.php:908 msgid "Move to folder:" msgstr "Mover al directorio:" -#: mod/settings.php:1003 +#: mod/settings.php:1004 msgid "Display Settings" msgstr "Configuración Tema/Visualización" -#: mod/settings.php:1009 mod/settings.php:1032 +#: mod/settings.php:1010 mod/settings.php:1033 msgid "Display Theme:" msgstr "Utilizar tema:" -#: mod/settings.php:1010 +#: mod/settings.php:1011 msgid "Mobile Theme:" msgstr "Tema móvil:" -#: mod/settings.php:1011 +#: mod/settings.php:1012 msgid "Suppress warning of insecure networks" msgstr "Suprimir el aviso de redes inseguras" -#: mod/settings.php:1011 +#: mod/settings.php:1012 msgid "" "Should the system suppress the warning that the current group contains " "members of networks that can't receive non public postings." msgstr "Debería el sistema suprimir el aviso de que el grupo actual contiene miembros de redes que no pueden recibir publicaciones públicas." -#: mod/settings.php:1012 +#: mod/settings.php:1013 msgid "Update browser every xx seconds" msgstr "Actualizar navegador cada xx segundos" -#: mod/settings.php:1012 +#: mod/settings.php:1013 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "Minimo 10 segundos. Ingrese -1 para deshabilitar." -#: mod/settings.php:1013 +#: mod/settings.php:1014 msgid "Number of items to display per page:" msgstr "Número de elementos a mostrar por página:" -#: mod/settings.php:1013 mod/settings.php:1014 +#: mod/settings.php:1014 mod/settings.php:1015 msgid "Maximum of 100 items" msgstr "Máximo 100 elementos" -#: mod/settings.php:1014 +#: mod/settings.php:1015 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Cantidad de objetos a visualizar cuando se usa un movil" -#: mod/settings.php:1015 +#: mod/settings.php:1016 msgid "Don't show emoticons" msgstr "No mostrar emoticones" -#: mod/settings.php:1016 +#: mod/settings.php:1017 msgid "Calendar" msgstr "Calendario" -#: mod/settings.php:1017 +#: mod/settings.php:1018 msgid "Beginning of week:" msgstr "Principio de la semana:" -#: mod/settings.php:1018 +#: mod/settings.php:1019 msgid "Don't show notices" msgstr "No mostrara avisos" -#: mod/settings.php:1019 +#: mod/settings.php:1020 msgid "Infinite scroll" msgstr "pagina infinita (sroll)" -#: mod/settings.php:1020 +#: mod/settings.php:1021 msgid "Automatic updates only at the top of the network page" msgstr "Actualizaciones automaticas solo estando al principio de la pagina" -#: mod/settings.php:1021 +#: mod/settings.php:1022 msgid "Bandwith Saver Mode" msgstr "Modo de guardado de ancho de banda" -#: mod/settings.php:1021 +#: mod/settings.php:1022 msgid "" "When enabled, embedded content is not displayed on automatic updates, they " "only show on page reload." msgstr "Cuando está habilitado, el contenido incrustado no se muestra en las actualizaciones automáticas, sólo en las páginas recargadas." -#: mod/settings.php:1023 +#: mod/settings.php:1024 msgid "General Theme Settings" msgstr "Ajustes generales de tema" -#: mod/settings.php:1024 +#: mod/settings.php:1025 msgid "Custom Theme Settings" msgstr "Ajustes personalizados de tema" -#: mod/settings.php:1025 +#: mod/settings.php:1026 msgid "Content Settings" msgstr "Ajustes de contenido" -#: mod/settings.php:1026 view/theme/duepuntozero/config.php:63 -#: view/theme/frio/config.php:66 view/theme/quattro/config.php:69 -#: view/theme/vier/config.php:114 +#: mod/settings.php:1027 view/theme/duepuntozero/config.php:66 +#: view/theme/frio/config.php:69 view/theme/quattro/config.php:72 +#: view/theme/vier/config.php:115 msgid "Theme settings" msgstr "Configuración del Tema" -#: mod/settings.php:1110 +#: mod/settings.php:1111 msgid "Account Types" msgstr "Tipos de cuenta" -#: mod/settings.php:1111 +#: mod/settings.php:1112 msgid "Personal Page Subtypes" msgstr "Subtipos de página personal" -#: mod/settings.php:1112 +#: mod/settings.php:1113 msgid "Community Forum Subtypes" msgstr "Subtipos de foro de comunidad" -#: mod/settings.php:1119 +#: mod/settings.php:1120 msgid "Personal Page" msgstr "Página personal" -#: mod/settings.php:1120 +#: mod/settings.php:1121 msgid "This account is a regular personal profile" msgstr "Esta cuenta es un perfil personal corriente" -#: mod/settings.php:1123 +#: mod/settings.php:1124 msgid "Organisation Page" msgstr "Página de organización" -#: mod/settings.php:1124 +#: mod/settings.php:1125 msgid "This account is a profile for an organisation" msgstr "Esta cuenta es un perfil de una organización" -#: mod/settings.php:1127 +#: mod/settings.php:1128 msgid "News Page" msgstr "Página de noticias" -#: mod/settings.php:1128 +#: mod/settings.php:1129 msgid "This account is a news account/reflector" msgstr "Esta cuenta es una cuenta de noticias/reflectora" -#: mod/settings.php:1131 +#: mod/settings.php:1132 msgid "Community Forum" msgstr "Foro de la comunidad" -#: mod/settings.php:1132 +#: mod/settings.php:1133 msgid "" "This account is a community forum where people can discuss with each other" msgstr "Esta cuenta es un foro de comunidad donde la gente puede debatir con otros" -#: mod/settings.php:1135 +#: mod/settings.php:1136 msgid "Normal Account Page" msgstr "Página de cuenta normal" -#: mod/settings.php:1136 +#: mod/settings.php:1137 msgid "This account is a normal personal profile" msgstr "Esta cuenta es el perfil personal normal" -#: mod/settings.php:1139 +#: mod/settings.php:1140 msgid "Soapbox Page" msgstr "Página de tribuna" -#: mod/settings.php:1140 +#: mod/settings.php:1141 msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "Acepta automáticamente todas las peticiones de conexión/amistad como seguidores de solo-lectura" -#: mod/settings.php:1143 +#: mod/settings.php:1144 msgid "Public Forum" msgstr "Foro público" -#: mod/settings.php:1144 +#: mod/settings.php:1145 msgid "Automatically approve all contact requests" msgstr "Aprovar autimáticamente todas las solicitudes de contacto" -#: mod/settings.php:1147 +#: mod/settings.php:1148 msgid "Automatic Friend Page" msgstr "Página de Amistad autómatica" -#: mod/settings.php:1148 +#: mod/settings.php:1149 msgid "Automatically approve all connection/friend requests as friends" msgstr "Aceptar automáticamente todas las solicitudes de conexión/amistad como amigos" -#: mod/settings.php:1151 +#: mod/settings.php:1152 msgid "Private Forum [Experimental]" msgstr "Foro privado [Experimental]" -#: mod/settings.php:1152 +#: mod/settings.php:1153 msgid "Private forum - approved members only" msgstr "Foro privado - solo miembros" -#: mod/settings.php:1163 +#: mod/settings.php:1164 msgid "OpenID:" msgstr "OpenID:" -#: mod/settings.php:1163 +#: mod/settings.php:1164 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Opcional) Permitir a este OpenID acceder a esta cuenta." -#: mod/settings.php:1171 +#: mod/settings.php:1172 msgid "Publish your default profile in your local site directory?" msgstr "¿Quieres publicar tu perfil predeterminado en el directorio local del sitio?" -#: mod/settings.php:1177 +#: mod/settings.php:1172 +msgid "Your profile may be visible in public." +msgstr "" + +#: mod/settings.php:1178 msgid "Publish your default profile in the global social directory?" msgstr "¿Quieres publicar tu perfil predeterminado en el directorio social de forma global?" -#: mod/settings.php:1184 +#: mod/settings.php:1185 msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "¿Quieres ocultar tu lista de contactos/amigos en la vista de tu perfil predeterminado?" -#: mod/settings.php:1188 +#: mod/settings.php:1189 msgid "" "If enabled, posting public messages to Diaspora and other networks isn't " "possible." msgstr "Si habilitado, enviar temas públicos a a Diaspora* y otras redes no es posible. " -#: mod/settings.php:1193 +#: mod/settings.php:1194 msgid "Allow friends to post to your profile page?" msgstr "¿Permites que tus amigos publiquen en tu página de perfil?" -#: mod/settings.php:1198 +#: mod/settings.php:1199 msgid "Allow friends to tag your posts?" msgstr "¿Permites a los amigos etiquetar tus publicaciones?" -#: mod/settings.php:1203 +#: mod/settings.php:1204 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "¿Nos permite recomendarte como amigo potencial a los nuevos miembros?" -#: mod/settings.php:1208 +#: mod/settings.php:1209 msgid "Permit unknown people to send you private mail?" msgstr "¿Permites que desconocidos te manden correos privados?" -#: mod/settings.php:1216 +#: mod/settings.php:1217 msgid "Profile is not published." msgstr "El perfil no está publicado." -#: mod/settings.php:1224 +#: mod/settings.php:1225 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "Su dirección de identidad es '%s' o '%s'." -#: mod/settings.php:1231 +#: mod/settings.php:1232 msgid "Automatically expire posts after this many days:" msgstr "Las publicaciones expirarán automáticamente después de estos días:" -#: mod/settings.php:1231 +#: mod/settings.php:1232 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Si lo dejas vacío no expirarán nunca. Las publicaciones que hayan expirado se borrarán" -#: mod/settings.php:1232 +#: mod/settings.php:1233 msgid "Advanced expiration settings" msgstr "Configuración avanzada de expiración" -#: mod/settings.php:1233 +#: mod/settings.php:1234 msgid "Advanced Expiration" msgstr "Expiración avanzada" -#: mod/settings.php:1234 +#: mod/settings.php:1235 msgid "Expire posts:" msgstr "¿Expiran las publicaciones?" -#: mod/settings.php:1235 +#: mod/settings.php:1236 msgid "Expire personal notes:" msgstr "¿Expiran las notas personales?" -#: mod/settings.php:1236 +#: mod/settings.php:1237 msgid "Expire starred posts:" msgstr "¿Expiran los favoritos?" -#: mod/settings.php:1237 +#: mod/settings.php:1238 msgid "Expire photos:" msgstr "¿Expiran las fotografías?" -#: mod/settings.php:1238 +#: mod/settings.php:1239 msgid "Only expire posts by others:" msgstr "Solo expiran los mensajes de los demás:" -#: mod/settings.php:1269 +#: mod/settings.php:1270 msgid "Account Settings" msgstr "Configuración de la cuenta" -#: mod/settings.php:1277 +#: mod/settings.php:1278 msgid "Password Settings" msgstr "Configuración de la contraseña" -#: mod/settings.php:1279 +#: mod/settings.php:1280 msgid "Leave password fields blank unless changing" msgstr "Deja la contraseña en blanco si no quieres cambiarla" -#: mod/settings.php:1280 +#: mod/settings.php:1281 msgid "Current Password:" msgstr "Contraseña actual:" -#: mod/settings.php:1280 mod/settings.php:1281 +#: mod/settings.php:1281 mod/settings.php:1282 msgid "Your current password to confirm the changes" msgstr "Su contraseña actual para confirmar los cambios." -#: mod/settings.php:1281 +#: mod/settings.php:1282 msgid "Password:" msgstr "Contraseña:" -#: mod/settings.php:1285 +#: mod/settings.php:1286 msgid "Basic Settings" msgstr "Configuración básica" -#: mod/settings.php:1287 +#: mod/settings.php:1288 msgid "Email Address:" msgstr "Dirección de correo:" -#: mod/settings.php:1288 +#: mod/settings.php:1289 msgid "Your Timezone:" msgstr "Zona horaria:" -#: mod/settings.php:1289 +#: mod/settings.php:1290 msgid "Your Language:" msgstr "Tu idioma:" -#: mod/settings.php:1289 +#: mod/settings.php:1290 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Selecciona el idioma que se usara para la interfaz del usuario y para el envío de correo." -#: mod/settings.php:1290 +#: mod/settings.php:1291 msgid "Default Post Location:" msgstr "Localización predeterminada:" -#: mod/settings.php:1291 +#: mod/settings.php:1292 msgid "Use Browser Location:" msgstr "Usar localización del navegador:" -#: mod/settings.php:1294 +#: mod/settings.php:1295 msgid "Security and Privacy Settings" msgstr "Configuración de seguridad y privacidad" -#: mod/settings.php:1296 +#: mod/settings.php:1297 msgid "Maximum Friend Requests/Day:" msgstr "Máximo número de peticiones de amistad por día:" -#: mod/settings.php:1296 mod/settings.php:1326 +#: mod/settings.php:1297 mod/settings.php:1327 msgid "(to prevent spam abuse)" msgstr "(para prevenir el abuso de spam)" -#: mod/settings.php:1297 +#: mod/settings.php:1298 msgid "Default Post Permissions" msgstr "Permisos por defecto para las publicaciones" -#: mod/settings.php:1298 +#: mod/settings.php:1299 msgid "(click to open/close)" msgstr "(pulsa para abrir/cerrar)" -#: mod/settings.php:1309 +#: mod/settings.php:1310 msgid "Default Private Post" msgstr "Publicación Privada por defecto" -#: mod/settings.php:1310 +#: mod/settings.php:1311 msgid "Default Public Post" msgstr "Publicación Pública por defecto" -#: mod/settings.php:1314 +#: mod/settings.php:1315 msgid "Default Permissions for New Posts" msgstr "Permisos por defecto para nuevas publicaciones" -#: mod/settings.php:1326 +#: mod/settings.php:1327 msgid "Maximum private messages per day from unknown people:" msgstr "Número máximo de mensajes diarios para desconocidos:" -#: mod/settings.php:1329 +#: mod/settings.php:1330 msgid "Notification Settings" msgstr "Configuración de notificaciones" -#: mod/settings.php:1330 +#: mod/settings.php:1331 msgid "By default post a status message when:" msgstr "Publicar en tu estado cuando:" -#: mod/settings.php:1331 +#: mod/settings.php:1332 msgid "accepting a friend request" msgstr "aceptes una solicitud de amistad" -#: mod/settings.php:1332 +#: mod/settings.php:1333 msgid "joining a forum/community" msgstr "te unas a un foro/comunidad" -#: mod/settings.php:1333 +#: mod/settings.php:1334 msgid "making an interesting profile change" msgstr "hagas un cambio interesante en tu perfil" -#: mod/settings.php:1334 +#: mod/settings.php:1335 msgid "Send a notification email when:" msgstr "Enviar notificación por correo cuando:" -#: mod/settings.php:1335 +#: mod/settings.php:1336 msgid "You receive an introduction" msgstr "Recibas una presentación" -#: mod/settings.php:1336 +#: mod/settings.php:1337 msgid "Your introductions are confirmed" msgstr "Tu presentación sea confirmada" -#: mod/settings.php:1337 +#: mod/settings.php:1338 msgid "Someone writes on your profile wall" msgstr "Alguien escriba en el muro de mi perfil" -#: mod/settings.php:1338 +#: mod/settings.php:1339 msgid "Someone writes a followup comment" msgstr "Algien escriba en un comentario que sigo" -#: mod/settings.php:1339 +#: mod/settings.php:1340 msgid "You receive a private message" msgstr "Recibas un mensaje privado" -#: mod/settings.php:1340 +#: mod/settings.php:1341 msgid "You receive a friend suggestion" msgstr "Recibas una sugerencia de amistad" -#: mod/settings.php:1341 +#: mod/settings.php:1342 msgid "You are tagged in a post" msgstr "Seas etiquetado en una publicación" -#: mod/settings.php:1342 +#: mod/settings.php:1343 msgid "You are poked/prodded/etc. in a post" msgstr "Te han tocado/empujado/etc. en una publicación" -#: mod/settings.php:1344 +#: mod/settings.php:1345 msgid "Activate desktop notifications" msgstr "Activar notificaciones en pantalla." -#: mod/settings.php:1344 +#: mod/settings.php:1345 msgid "Show desktop popup on new notifications" msgstr "Mostrar notificaciones emergentes en caso de nuevos eventos." -#: mod/settings.php:1346 +#: mod/settings.php:1347 msgid "Text-only notification emails" msgstr "Notificaciones e-mail de solo texto" -#: mod/settings.php:1348 +#: mod/settings.php:1349 msgid "Send text only notification emails, without the html part" msgstr "Enviar las notificaciones por correo con formato de solo texto sin html." -#: mod/settings.php:1350 +#: mod/settings.php:1351 msgid "Advanced Account/Page Type Settings" msgstr "Configuración avanzada de tipo de Cuenta/Página" -#: mod/settings.php:1351 +#: mod/settings.php:1352 msgid "Change the behaviour of this account for special situations" msgstr "Cambiar el comportamiento de esta cuenta para situaciones especiales" -#: mod/settings.php:1354 +#: mod/settings.php:1355 msgid "Relocate" msgstr "Relocalizar" -#: mod/settings.php:1355 +#: mod/settings.php:1356 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 ha migrado este perfil desde otro servidor aquí y algunos contactos no reciben sus publicaciones intente recomunicar su ubicación a traves este botón. (Como para decir el botón de los botones)" -#: mod/settings.php:1356 +#: mod/settings.php:1357 msgid "Resend relocate message to contacts" msgstr "Reenviar mensaje de relocalización a los contactos" -#: mod/subthread.php:104 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s está siguiendo las %3$s de %2$s" - -#: mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "¿Estás seguro de que quieres borrar esta sugerencia?" - -#: mod/suggest.php:71 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "No hay sugerencias disponibles. Si el sitio web es nuevo inténtalo de nuevo dentro de 24 horas." - -#: mod/suggest.php:84 mod/suggest.php:104 -msgid "Ignore/Hide" -msgstr "Ignorar/Ocultar" - -#: mod/tagrm.php:43 -msgid "Tag removed" -msgstr "Etiqueta eliminada" - -#: mod/tagrm.php:82 -msgid "Remove Item Tag" -msgstr "Eliminar etiqueta" - -#: mod/tagrm.php:84 -msgid "Select a tag to remove: " -msgstr "Selecciona una etiqueta para eliminar: " - -#: mod/uexport.php:37 -msgid "Export account" -msgstr "Exportar cuenta" - -#: mod/uexport.php:37 -msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "Exporta la información de tu cuenta y tus contactos. Úsalo para guardar una copia de seguridad de tu cuenta y/o moverla a otro servidor." - -#: mod/uexport.php:38 -msgid "Export all" -msgstr "Exportar todo" - -#: mod/uexport.php:38 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" -msgstr "Exporta la información de tu cuenta, contactos y lo demás en JSON. Puede ser un archivo bastante grande, por lo que llevará tiempo. Úsalo para hacer una copia de seguridad completa de tu cuenta (las fotos no se exportarán)" - -#: mod/uimport.php:68 -msgid "Move account" -msgstr "Mover cuenta" - -#: mod/uimport.php:69 -msgid "You can import an account from another Friendica server." -msgstr "Puedes importar una cuenta desde otro servidor de Friendica." - -#: mod/uimport.php:70 -msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also" -" to inform your friends that you moved here." -msgstr "Necesitas exportar tu cuenta del antiguo servidor y subirla aquí. Volveremos a crear tu antigua cuenta con todos tus contactos aquí. También intentaremos de informar a tus amigos de que te has mudado." - -#: mod/uimport.php:71 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (GNU Social/Statusnet) or from Diaspora" -msgstr "Esta característica es experimental. No podemos importar contactos desde la red OStatus (statusnet/identi.ca) o desde Diaspora*" - -#: mod/uimport.php:72 -msgid "Account file" -msgstr "Archivo de la cuenta" - -#: mod/uimport.php:72 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "Para exportar el perfil vaya a \"Configuracion -> Exportar sus datos personales\" y seleccione \"Exportar cuenta\"" - -#: mod/update_community.php:19 mod/update_display.php:23 -#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35 -msgid "[Embedded content - reload page to view]" -msgstr "[Contenido incrustado - recarga la página para verlo]" - -#: mod/videos.php:124 -msgid "Do you really want to delete this video?" -msgstr "Realmente quieres eliminar este vídeo?" - -#: mod/videos.php:129 -msgid "Delete Video" -msgstr "Borrar vídeo" - -#: mod/videos.php:208 -msgid "No videos selected" -msgstr "Ningún vídeo seleccionado" - -#: mod/videos.php:400 -msgid "Recent Videos" -msgstr "Vídeos recientes" - -#: mod/videos.php:402 -msgid "Upload New Videos" -msgstr "Subir nuevos vídeos" - -#: mod/viewcontacts.php:75 -msgid "No contacts." -msgstr "Ningún contacto." - -#: mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Acceso denegado." - -#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76 -#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86 -#: mod/wall_upload.php:122 mod/wall_upload.php:125 -msgid "Invalid request." -msgstr "Consulta invalida" - -#: mod/wall_attach.php:94 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Disculpa, posiblemente el archivo subido es mas grande que la PHP configuración permite." - -#: mod/wall_attach.php:94 -msgid "Or - did you try to upload an empty file?" -msgstr "Si no - intento de subir un archivo vacío?" - -#: mod/wall_attach.php:105 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "El archivo excede el limite de tamaño de %s" - -#: mod/wall_attach.php:158 mod/wall_attach.php:174 -msgid "File upload failed." -msgstr "Ha fallado la subida del archivo." - -#: mod/wallmessage.php:42 mod/wallmessage.php:106 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Excedido el número máximo de mensajes para %s. El mensaje no se ha enviado." - -#: mod/wallmessage.php:53 -msgid "Unable to check your home location." -msgstr "Imposible comprobar tu servidor de inicio." - -#: mod/wallmessage.php:80 mod/wallmessage.php:89 -msgid "No recipient." -msgstr "Sin receptor." - -#: mod/wallmessage.php:127 -#, php-format -msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "Si quieres que %s te responda, asegúrate de que la configuración de privacidad permite enviar correo privado a desconocidos." - -#: object/Item.php:359 +#: object/Item.php:356 msgid "via" msgstr "vía" -#: view/theme/duepuntozero/config.php:44 +#: view/theme/duepuntozero/config.php:47 msgid "greenzero" msgstr "greenzero" -#: view/theme/duepuntozero/config.php:45 +#: view/theme/duepuntozero/config.php:48 msgid "purplezero" msgstr "purplezero" -#: view/theme/duepuntozero/config.php:46 +#: view/theme/duepuntozero/config.php:49 msgid "easterbunny" msgstr "easterbunny" -#: view/theme/duepuntozero/config.php:47 +#: view/theme/duepuntozero/config.php:50 msgid "darkzero" msgstr "darkzero" -#: view/theme/duepuntozero/config.php:48 +#: view/theme/duepuntozero/config.php:51 msgid "comix" msgstr "comix" -#: view/theme/duepuntozero/config.php:49 +#: view/theme/duepuntozero/config.php:52 msgid "slackr" msgstr "slackr" -#: view/theme/duepuntozero/config.php:64 +#: view/theme/duepuntozero/config.php:67 msgid "Variations" msgstr "Variaciones" -#: view/theme/frio/config.php:47 -msgid "Default" -msgstr "Por defecto" - -#: view/theme/frio/config.php:59 -msgid "Note: " -msgstr "Nota:" - -#: view/theme/frio/config.php:59 -msgid "Check image permissions if all users are allowed to visit the image" -msgstr "Compruebe los permisos de imagen si se les permite a todos los usuarios visitar la imagen" - -#: view/theme/frio/config.php:67 -msgid "Select scheme" -msgstr "Seleccionar plan" - -#: view/theme/frio/config.php:68 -msgid "Navigation bar background color" -msgstr "Color de fondo de la barra de navegación" - -#: view/theme/frio/config.php:69 -msgid "Navigation bar icon color " -msgstr "Color de icono de la barra de navegación" - -#: view/theme/frio/config.php:70 -msgid "Link color" -msgstr "Color de enlace" - -#: view/theme/frio/config.php:71 -msgid "Set the background color" -msgstr "Seleccionar el color de fondo" - -#: view/theme/frio/config.php:72 -msgid "Content background transparency" -msgstr "Transparencia de contenido de fondo" - -#: view/theme/frio/config.php:73 -msgid "Set the background image" -msgstr "Seleccionar la imagen de fondo" - #: view/theme/frio/php/Image.php:23 msgid "Repeat the image" msgstr "Repetir la imagen" @@ -8794,74 +8805,167 @@ msgstr "Reajustar al mejor tamaño" msgid "Resize to best fit and retain aspect ratio." msgstr "Reajustar al mejor tamaño y conservar proporción" -#: view/theme/frio/theme.php:226 +#: view/theme/frio/config.php:50 +msgid "Default" +msgstr "Por defecto" + +#: view/theme/frio/config.php:62 +msgid "Note: " +msgstr "Nota:" + +#: view/theme/frio/config.php:62 +msgid "Check image permissions if all users are allowed to visit the image" +msgstr "Compruebe los permisos de imagen si se les permite a todos los usuarios visitar la imagen" + +#: view/theme/frio/config.php:70 +msgid "Select scheme" +msgstr "Seleccionar plan" + +#: view/theme/frio/config.php:71 +msgid "Navigation bar background color" +msgstr "Color de fondo de la barra de navegación" + +#: view/theme/frio/config.php:72 +msgid "Navigation bar icon color " +msgstr "Color de icono de la barra de navegación" + +#: view/theme/frio/config.php:73 +msgid "Link color" +msgstr "Color de enlace" + +#: view/theme/frio/config.php:74 +msgid "Set the background color" +msgstr "Seleccionar el color de fondo" + +#: view/theme/frio/config.php:75 +msgid "Content background transparency" +msgstr "Transparencia de contenido de fondo" + +#: view/theme/frio/config.php:76 +msgid "Set the background image" +msgstr "Seleccionar la imagen de fondo" + +#: view/theme/frio/theme.php:228 msgid "Guest" msgstr "Invitado" -#: view/theme/frio/theme.php:232 +#: view/theme/frio/theme.php:234 msgid "Visitor" msgstr "Visitante" -#: view/theme/quattro/config.php:70 +#: view/theme/quattro/config.php:73 msgid "Alignment" msgstr "Alineación" -#: view/theme/quattro/config.php:70 +#: view/theme/quattro/config.php:73 msgid "Left" msgstr "Izquierda" -#: view/theme/quattro/config.php:70 +#: view/theme/quattro/config.php:73 msgid "Center" msgstr "Centrado" -#: view/theme/quattro/config.php:71 +#: view/theme/quattro/config.php:74 msgid "Color scheme" msgstr "Esquema de color" -#: view/theme/quattro/config.php:72 +#: view/theme/quattro/config.php:75 msgid "Posts font size" msgstr "Tamaño de letra del titulo de las publicaciones" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:76 msgid "Textareas font size" msgstr "Tamaño de letra del área de texto" -#: view/theme/vier/config.php:69 +#: view/theme/vier/config.php:70 msgid "Comma separated list of helper forums" msgstr "Lista separada por comas de foros de ayuda." -#: view/theme/vier/config.php:115 +#: view/theme/vier/config.php:116 msgid "Set style" msgstr "Definir estilo" -#: view/theme/vier/config.php:116 +#: view/theme/vier/config.php:117 msgid "Community Pages" msgstr "Páginas de Comunidad" -#: view/theme/vier/config.php:117 view/theme/vier/theme.php:146 +#: view/theme/vier/config.php:118 view/theme/vier/theme.php:151 msgid "Community Profiles" msgstr "Perfiles de la Comunidad" -#: view/theme/vier/config.php:118 +#: view/theme/vier/config.php:119 msgid "Help or @NewHere ?" msgstr "¿Ayuda o @NuevoAquí?" -#: view/theme/vier/config.php:119 view/theme/vier/theme.php:385 +#: view/theme/vier/config.php:120 view/theme/vier/theme.php:392 msgid "Connect Services" msgstr "Servicios conectados" -#: view/theme/vier/config.php:120 view/theme/vier/theme.php:194 +#: view/theme/vier/config.php:121 view/theme/vier/theme.php:199 msgid "Find Friends" msgstr "Buscar amigos" -#: view/theme/vier/config.php:121 view/theme/vier/theme.php:176 +#: view/theme/vier/config.php:122 view/theme/vier/theme.php:181 msgid "Last users" msgstr "Últimos usuarios" -#: view/theme/vier/theme.php:195 +#: view/theme/vier/theme.php:200 msgid "Local Directory" msgstr "Directorio local" -#: view/theme/vier/theme.php:286 +#: view/theme/vier/theme.php:292 msgid "Quick Start" msgstr "Inicio rápido" + +#: src/App.php:505 +msgid "Delete this item?" +msgstr "¿Eliminar este elemento?" + +#: src/App.php:507 +msgid "show fewer" +msgstr "ver menos" + +#: index.php:436 +msgid "toggle mobile" +msgstr "Cambiar a versión móvil" + +#: boot.php:726 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Falló la actualización de %s. Mira los registros de errores." + +#: boot.php:838 +msgid "Create a New Account" +msgstr "Crear una nueva cuenta" + +#: boot.php:866 +msgid "Password: " +msgstr "Contraseña: " + +#: boot.php:867 +msgid "Remember me" +msgstr "Recordarme" + +#: boot.php:870 +msgid "Or login using OpenID: " +msgstr "O inicia sesión usando OpenID: " + +#: boot.php:876 +msgid "Forgot your password?" +msgstr "¿Olvidaste la contraseña?" + +#: boot.php:879 +msgid "Website Terms of Service" +msgstr "Términos de uso del sitio" + +#: boot.php:880 +msgid "terms of service" +msgstr "Términos de uso" + +#: boot.php:882 +msgid "Website Privacy Policy" +msgstr "Política de privacidad del sitio" + +#: boot.php:883 +msgid "privacy policy" +msgstr "Política de privacidad" diff --git a/view/lang/es/strings.php b/view/lang/es/strings.php index a7365bb190..97dbf7b36f 100644 --- a/view/lang/es/strings.php +++ b/view/lang/es/strings.php @@ -5,82 +5,6 @@ function string_plural_select_es($n){ return ($n != 1);; }} ; -$a->strings["Delete this item?"] = "¿Eliminar este elemento?"; -$a->strings["show more"] = "ver más"; -$a->strings["show fewer"] = "ver menos"; -$a->strings["Update %s failed. See error logs."] = "Falló la actualización de %s. Mira los registros de errores."; -$a->strings["Create a New Account"] = "Crear una nueva cuenta"; -$a->strings["Register"] = "Registrarse"; -$a->strings["Logout"] = "Salir"; -$a->strings["Login"] = "Acceder"; -$a->strings["Nickname or Email: "] = "Apodo o Correo electrónico: "; -$a->strings["Password: "] = "Contraseña: "; -$a->strings["Remember me"] = "Recordarme"; -$a->strings["Or login using OpenID: "] = "O inicia sesión usando OpenID: "; -$a->strings["Forgot your password?"] = "¿Olvidaste la contraseña?"; -$a->strings["Password Reset"] = "Restablecer la contraseña"; -$a->strings["Website Terms of Service"] = "Términos de uso del sitio"; -$a->strings["terms of service"] = "Términos de uso"; -$a->strings["Website Privacy Policy"] = "Política de privacidad del sitio"; -$a->strings["privacy policy"] = "Política de privacidad"; -$a->strings["View Profile"] = "Ver perfil"; -$a->strings["Connect/Follow"] = "Conectar/Seguir"; -$a->strings["View Status"] = "Ver estado"; -$a->strings["View Photos"] = "Ver fotos"; -$a->strings["Network Posts"] = "Publicaciones en la red"; -$a->strings["View Contact"] = "Ver contacto"; -$a->strings["Drop Contact"] = "Eliminar contacto"; -$a->strings["Send PM"] = "Enviar mensaje privado"; -$a->strings["Poke"] = "Toque"; -$a->strings["Organisation"] = "Organización"; -$a->strings["News"] = "Noticias"; -$a->strings["Forum"] = "Foro"; -$a->strings["Forums"] = "Foros"; -$a->strings["External link to forum"] = "Enlace externo al foro"; -$a->strings["System"] = "Sistema"; -$a->strings["Network"] = "Red"; -$a->strings["Personal"] = "Personal"; -$a->strings["Home"] = "Inicio"; -$a->strings["Introductions"] = "Presentaciones"; -$a->strings["%s commented on %s's post"] = "%s comentó la publicación de %s"; -$a->strings["%s created a new post"] = "%s creó una nueva publicación"; -$a->strings["%s liked %s's post"] = "A %s le gusta la publicación de %s"; -$a->strings["%s disliked %s's post"] = "A %s no le gusta la publicación de %s"; -$a->strings["%s is attending %s's event"] = "%s está asistiendo al evento %s's"; -$a->strings["%s is not attending %s's event"] = "%s no está asistiendo al evento %s's"; -$a->strings["%s may attend %s's event"] = "%s podría asistir al evento %s's"; -$a->strings["%s is now friends with %s"] = "%s es ahora es amigo de %s"; -$a->strings["Friend Suggestion"] = "Propuestas de amistad"; -$a->strings["Friend/Connect Request"] = "Solicitud de Amistad/Conexión"; -$a->strings["New Follower"] = "Nuevo seguidor"; -$a->strings["Wall Photos"] = "Foto del Muro"; -$a->strings["Post to Email"] = "Publicar mediante correo electrónico"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Conectores deshabilitados, ya que \"%s\" es habilitado."; -$a->strings["Hide your profile details from unknown viewers?"] = "¿Quieres que los detalles de tu perfil permanezcan ocultos a los desconocidos?"; -$a->strings["Visible to everybody"] = "Visible para cualquiera"; -$a->strings["show"] = "mostrar"; -$a->strings["don't show"] = "no mostrar"; -$a->strings["CC: email addresses"] = "CC: dirección de correo electrónico"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Ejemplo: juan@ejemplo.com, sofia@ejemplo.com"; -$a->strings["Permissions"] = "Permisos"; -$a->strings["Close"] = "Cerrado"; -$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Limite diario de publicaciones %d alcanzado. La publicación fue rechazada."; -$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Limite semanal de publicaciones %d alcanzado. La publicación fue rechazada."; -$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Limite mensual de publicaciones %d alcanzado. La publicación fue rechazada."; -$a->strings["Logged out."] = "Sesión finalizada"; -$a->strings["Login failed."] = "Accesso fallido."; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Se ha encontrado un problema para acceder con el OpenID que has escrito. Verifica que lo hayas escrito correctamente."; -$a->strings["The error message was:"] = "El mensaje del error fue:"; -$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; -$a->strings["Starts:"] = "Inicio:"; -$a->strings["Finishes:"] = "Final:"; -$a->strings["Location:"] = "Localización:"; -$a->strings["Image/photo"] = "Imagen/Foto"; -$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; -$a->strings["$1 wrote:"] = "$1 escribió:"; -$a->strings["Encrypted content"] = "Contenido cifrado"; -$a->strings["Invalid source protocol"] = "Protocolo de fuente inválido"; -$a->strings["Invalid link protocol"] = "Protocolo de enlace inválido"; $a->strings["Unknown | Not categorised"] = "Desconocido | No clasificado"; $a->strings["Block immediately"] = "Bloquear inmediatamente"; $a->strings["Shady, spammer, self-marketer"] = "Sospechoso, spammer, auto-publicidad"; @@ -107,10 +31,106 @@ $a->strings["Google+"] = "Google+"; $a->strings["pump.io"] = "pump.io"; $a->strings["Twitter"] = "Twitter"; $a->strings["Diaspora Connector"] = "Conector Diaspora"; -$a->strings["GNU Social"] = "GNUsocial (OStatus)"; +$a->strings["GNU Social Connector"] = ""; $a->strings["pnut"] = "pnut"; $a->strings["App.net"] = "App.net"; -$a->strings["Hubzilla/Redmatrix"] = "Hubzilla/Redmatrix"; +$a->strings["General Features"] = "Opciones generales"; +$a->strings["Multiple Profiles"] = "Perfiles multiples"; +$a->strings["Ability to create multiple profiles"] = "Capacidad de crear perfiles multiples. Cada pagina/perfil/usuario puede tener diferentes perfiles/apariencias. Las mismas pueden ser visibles para determinados contactos seleccionados dentro de la red friendica."; +$a->strings["Photo Location"] = "Localización foto"; +$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Normalmente los meta datos de las imágenes son eliminados. Esto extraerá la localización si presente antes de eliminar los meta datos y enlaza la misma con el mapa."; +$a->strings["Export Public Calendar"] = "Exportar Calendario Público"; +$a->strings["Ability for visitors to download the public calendar"] = "Posibilidad de los visitantes de descargar el calendario público"; +$a->strings["Post Composition Features"] = "Opciones de edición de publicaciones."; +$a->strings["Post Preview"] = "Previsualizar publicaciones"; +$a->strings["Allow previewing posts and comments before publishing them"] = "Permitir la previsualización de publicaciones antes de publicar las mismas."; +$a->strings["Auto-mention Forums"] = "Auto-mencionar foros"; +$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Añadir/eliminar mención cuando un foro es seleccionado/deseleccionado en la ventana ACL."; +$a->strings["Network Sidebar Widgets"] = "Accesorios de red del panel lateral"; +$a->strings["Search by Date"] = "Buscar por fecha"; +$a->strings["Ability to select posts by date ranges"] = "Habilidad de seleccionar publicaciones por fecha"; +$a->strings["List Forums"] = "Listar foros"; +$a->strings["Enable widget to display the forums your are connected with"] = "Habilitar la pestaña para mostrar los foros en que estas participando."; +$a->strings["Group Filter"] = "Filtro del grupo"; +$a->strings["Enable widget to display Network posts only from selected group"] = "Habilitar accesorios para visualizar publicaciones en la red solo de grupos seleccionados"; +$a->strings["Network Filter"] = "Filtro de red"; +$a->strings["Enable widget to display Network posts only from selected network"] = "Habilitar accesorios para visualizar publicaciones solo de las redes seleccionadas."; +$a->strings["Saved Searches"] = "Búsquedas guardadas"; +$a->strings["Save search terms for re-use"] = "Guardar términos de búsqueda para su reutilizacion"; +$a->strings["Network Tabs"] = "Pestañas de redes"; +$a->strings["Network Personal Tab"] = "Pestaña actividad personal"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar para visualizar solo publicaciones con las que se ha interactuado"; +$a->strings["Network New Tab"] = "Pestaña nuevo en la red"; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Activar para mostrar solo publicaciones nuevas en la red (de las ultimas 12 horas)"; +$a->strings["Network Shared Links Tab"] = "Pestaña publicaciones con enlaces"; +$a->strings["Enable tab to display only Network posts with links in them"] = "Habilitar para visualizar solo publicaciones que contienen enlaces"; +$a->strings["Post/Comment Tools"] = "Herramienta de publicaciones/respuestas"; +$a->strings["Multiple Deletion"] = "Borrar múltiples publicaciones"; +$a->strings["Select and delete multiple posts/comments at once"] = "Habilidad de seleccionar y borrar varias publicaciones/comentarios a la vez"; +$a->strings["Edit Sent Posts"] = "Editar temas enviados"; +$a->strings["Edit and correct posts and comments after sending"] = "Editar y corregir publicaciones y respuestas enviados. Las ediciones solo son comunicados dentro de la red friendica. No se modificaran copias enviadas a diaspora, OStatus/GNUsocial/Quitter u otros servicios conectados."; +$a->strings["Tagging"] = "taggear"; +$a->strings["Ability to tag existing posts"] = "Habilidad de taggear publicaciones existentes"; +$a->strings["Post Categories"] = "Categorías de publicaciones"; +$a->strings["Add categories to your posts"] = "Agregue categorías a sus publicaciones. Las mismas serán visualizadas en su pagina de inicio."; +$a->strings["Saved Folders"] = "Directorios guardados"; +$a->strings["Ability to file posts under folders"] = "Archivar publicaciones en carpetas"; +$a->strings["Dislike Posts"] = "Desaprobar publicación (dislike)"; +$a->strings["Ability to dislike posts/comments"] = "Habilidad de expresar desacuerdo en publicaciones y comentarios. Esta función solo es visualizado en la red friendica."; +$a->strings["Star Posts"] = "Fijar publicaciones"; +$a->strings["Ability to mark special posts with a star indicator"] = "Habilidad de marcar - observar fijamente publicaciones.\nEl simbolo de estrella es habilitado. Se recibirán notificaciones sobre comentarios, además una pestaña de publicaciones fijadas es habilitada. En las opciones de expiración de publicaciones se puede filtrar estas publicaciones para no ser eliminados contrario a las publicaciones demás de los contactos."; +$a->strings["Mute Post Notifications"] = "Silenciar notificaciones de una publicacion"; +$a->strings["Ability to mute notifications for a thread"] = "Habilidad de silenciar notificaciones sobre nuevos comentarios en una publicación."; +$a->strings["Advanced Profile Settings"] = "Ajustes avanzados del perfil"; +$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Mostrar a los visitantes foros públicos en las que se esta participando en el pagina avanzada de perfiles."; +$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 grupo eliminado con este nombre fue restablecido. Los permisos existentes pueden aplicarse a este grupo y a sus futuros miembros. Si esto no es lo que pretendes, por favor, crea otro grupo con un nombre diferente."; +$a->strings["Default privacy group for new contacts"] = "Grupo por defecto para nuevos contactos"; +$a->strings["Everybody"] = "Todo el mundo"; +$a->strings["edit"] = "editar"; +$a->strings["Groups"] = "Grupos"; +$a->strings["Edit groups"] = "Editar grupo"; +$a->strings["Edit group"] = "Editar grupo"; +$a->strings["Create a new group"] = "Crear un nuevo grupo"; +$a->strings["Group Name: "] = "Nombre del grupo: "; +$a->strings["Contacts not in any group"] = "Contactos sin grupo"; +$a->strings["add"] = "añadir"; +$a->strings["Forums"] = "Foros"; +$a->strings["External link to forum"] = "Enlace externo al foro"; +$a->strings["show more"] = "ver más"; +$a->strings["System"] = "Sistema"; +$a->strings["Network"] = "Red"; +$a->strings["Personal"] = "Personal"; +$a->strings["Home"] = "Inicio"; +$a->strings["Introductions"] = "Presentaciones"; +$a->strings["%s commented on %s's post"] = "%s comentó la publicación de %s"; +$a->strings["%s created a new post"] = "%s creó una nueva publicación"; +$a->strings["%s liked %s's post"] = "A %s le gusta la publicación de %s"; +$a->strings["%s disliked %s's post"] = "A %s no le gusta la publicación de %s"; +$a->strings["%s is attending %s's event"] = "%s está asistiendo al evento %s's"; +$a->strings["%s is not attending %s's event"] = "%s no está asistiendo al evento %s's"; +$a->strings["%s may attend %s's event"] = "%s podría asistir al evento %s's"; +$a->strings["%s is now friends with %s"] = "%s es ahora es amigo de %s"; +$a->strings["Friend Suggestion"] = "Propuestas de amistad"; +$a->strings["Friend/Connect Request"] = "Solicitud de Amistad/Conexión"; +$a->strings["New Follower"] = "Nuevo seguidor"; +$a->strings["Post to Email"] = "Publicar mediante correo electrónico"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Conectores deshabilitados, ya que \"%s\" es habilitado."; +$a->strings["Hide your profile details from unknown viewers?"] = "¿Quieres que los detalles de tu perfil permanezcan ocultos a los desconocidos?"; +$a->strings["Visible to everybody"] = "Visible para cualquiera"; +$a->strings["show"] = "mostrar"; +$a->strings["don't show"] = "no mostrar"; +$a->strings["CC: email addresses"] = "CC: dirección de correo electrónico"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Ejemplo: juan@ejemplo.com, sofia@ejemplo.com"; +$a->strings["Permissions"] = "Permisos"; +$a->strings["Close"] = "Cerrado"; +$a->strings["Logged out."] = "Sesión finalizada"; +$a->strings["Login failed."] = "Accesso fallido."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Se ha encontrado un problema para acceder con el OpenID que has escrito. Verifica que lo hayas escrito correctamente."; +$a->strings["The error message was:"] = "El mensaje del error fue:"; +$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +$a->strings["Starts:"] = "Inicio:"; +$a->strings["Finishes:"] = "Final:"; +$a->strings["Location:"] = "Localización:"; $a->strings["Add New Contact"] = "Añadir nuevo contacto"; $a->strings["Enter address or web location"] = "Escribe la dirección o página web"; $a->strings["Example: bob@example.com, http://example.com/barbara"] = "Ejemplo: miguel@ejemplo.com, http://ejemplo.com/miguel"; @@ -121,6 +141,7 @@ $a->strings["%d invitation available"] = array( ); $a->strings["Find People"] = "Buscar personas"; $a->strings["Enter name or interest"] = "Introduzce nombre o intereses"; +$a->strings["Connect/Follow"] = "Conectar/Seguir"; $a->strings["Examples: Robert Morgenstein, Fishing"] = "Ejemplos: Robert Morgenstein, Pesca"; $a->strings["Find"] = "Buscar"; $a->strings["Friend Suggestions"] = "Sugerencias de amigos"; @@ -129,7 +150,6 @@ $a->strings["Random Profile"] = "Perfil aleatorio"; $a->strings["Invite Friends"] = "Invitar amigos"; $a->strings["Networks"] = "Redes"; $a->strings["All Networks"] = "Todas las redes"; -$a->strings["Saved Folders"] = "Directorios guardados"; $a->strings["Everything"] = "Todo"; $a->strings["Categories"] = "Categorías"; $a->strings["%d contact in common"] = array( @@ -169,6 +189,13 @@ $a->strings["Please wait"] = "Por favor, espera"; $a->strings["remove"] = "eliminar"; $a->strings["Delete Selected Items"] = "Eliminar el elemento seleccionado"; $a->strings["Follow Thread"] = "Seguir publicacion"; +$a->strings["View Status"] = "Ver estado"; +$a->strings["View Profile"] = "Ver perfil"; +$a->strings["View Photos"] = "Ver fotos"; +$a->strings["Network Posts"] = "Publicaciones en la red"; +$a->strings["View Contact"] = "Ver contacto"; +$a->strings["Send PM"] = "Enviar mensaje privado"; +$a->strings["Poke"] = "Toque"; $a->strings["%s likes this."] = "A %s le gusta esto."; $a->strings["%s doesn't like this."] = "A %s no le gusta esto."; $a->strings["%s attends."] = "%s atiende."; @@ -261,16 +288,151 @@ $a->strings["seconds"] = "segundos"; $a->strings["%1\$d %2\$s ago"] = "hace %1\$d %2\$s"; $a->strings["%s's birthday"] = "Cumpleaños de %s"; $a->strings["Happy Birthday %s"] = "Feliz cumpleaños %s"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "No se puede encontrar información DNS para la base de datos del servidor '%s'"; -$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\tLos desarolladores de friendica publicaron una actualización %s recientemente\n\t\t\tpero cuando intento de instalarla,algo salio terriblemente mal.\n\t\t\tEsto necesita ser arreglado pronto y no puedo hacerlo solo. Por favor contacta\n\t\t\tlos desarolladores de friendica si no me podes ayudar por ti solo. Mi base de datos puede estar invalido."; -$a->strings["The error message is\n[pre]%s[/pre]"] = "El mensaje de error es\n[pre]%s[/pre]"; -$a->strings["Errors encountered creating database tables."] = "Se han encontrados errores creando las tablas de la base de datos."; -$a->strings["Errors encountered performing database changes."] = "Errores encontrados al ejecutar cambios en la base de datos."; $a->strings["(no subject)"] = "(sin asunto)"; $a->strings["noreply"] = "no responder"; $a->strings["%s\\'s birthday"] = "%s\\'s cumpleaños"; -$a->strings["Sharing notification from Diaspora network"] = "Compartir notificaciones con la red Diaspora*"; -$a->strings["Attachments:"] = "Archivos adjuntos:"; +$a->strings["all-day"] = "todo el día"; +$a->strings["Sun"] = "Dom"; +$a->strings["Mon"] = "Lun"; +$a->strings["Tue"] = "Mar"; +$a->strings["Wed"] = "Mie"; +$a->strings["Thu"] = "Jue"; +$a->strings["Fri"] = "Vie"; +$a->strings["Sat"] = "Sab"; +$a->strings["Sunday"] = "Domingo"; +$a->strings["Monday"] = "Lunes"; +$a->strings["Tuesday"] = "Martes"; +$a->strings["Wednesday"] = "Miércoles"; +$a->strings["Thursday"] = "Jueves"; +$a->strings["Friday"] = "Viernes"; +$a->strings["Saturday"] = "Sábado"; +$a->strings["Jan"] = "Ene"; +$a->strings["Feb"] = "Feb"; +$a->strings["Mar"] = "Mar"; +$a->strings["Apr"] = "Abr"; +$a->strings["May"] = "Mayo"; +$a->strings["Jun"] = "Jun"; +$a->strings["Jul"] = "Jul"; +$a->strings["Aug"] = "Ago"; +$a->strings["Sept"] = "Sept"; +$a->strings["Oct"] = "Oct"; +$a->strings["Nov"] = "Nov"; +$a->strings["Dec"] = "Dec"; +$a->strings["January"] = "Enero"; +$a->strings["February"] = "Febrero"; +$a->strings["March"] = "Marzo"; +$a->strings["April"] = "Abril"; +$a->strings["June"] = "Junio"; +$a->strings["July"] = "Julio"; +$a->strings["August"] = "Agosto"; +$a->strings["September"] = "Septiembre"; +$a->strings["October"] = "Octubre"; +$a->strings["November"] = "Noviembre"; +$a->strings["December"] = "Diciembre"; +$a->strings["today"] = "hoy"; +$a->strings["No events to display"] = "No hay eventos a mostrar"; +$a->strings["l, F j"] = "l, F j"; +$a->strings["Edit event"] = "Editar evento"; +$a->strings["Delete event"] = ""; +$a->strings["link to source"] = "Enlace al original"; +$a->strings["Export"] = "Exportar"; +$a->strings["Export calendar as ical"] = "Exportar calendario como ical"; +$a->strings["Export calendar as csv"] = "Exportar calendario como csv"; +$a->strings["Disallowed profile URL."] = "Dirección de perfil no permitida."; +$a->strings["Blocked domain"] = ""; +$a->strings["Connect URL missing."] = "Falta el conector URL."; +$a->strings["This site is not configured to allow communications with other networks."] = "Este sitio no está configurado para permitir la comunicación con otras redes."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "No se ha descubierto protocolos de comunicación o fuentes compatibles."; +$a->strings["The profile address specified does not provide adequate information."] = "La dirección del perfil especificado no proporciona información adecuada."; +$a->strings["An author or name was not found."] = "No se ha encontrado un autor o nombre."; +$a->strings["No browser URL could be matched to this address."] = "Ninguna dirección concuerda con la suministrada."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Imposible identificar la dirección @ con algún protocolo conocido o dirección de contacto."; +$a->strings["Use mailto: in front of address to force email check."] = "Escribe mailto: al principio de la dirección para forzar el envío."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "La dirección del perfil especificada pertenece a una red que ha sido deshabilitada en este sitio."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Perfil limitado. Esta persona no podrá recibir notificaciones directas/personales tuyas."; +$a->strings["Unable to retrieve contact information."] = "No ha sido posible recibir la información del contacto."; +$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s atenderá %2\$s's %3\$s"; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s no atenderá %2\$s's %3\$s"; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s puede que atienda %2\$s's %3\$s"; +$a->strings["Contact Photos"] = "Foto del contacto"; +$a->strings["Welcome "] = "Bienvenido "; +$a->strings["Please upload a profile photo."] = "Por favor sube una foto para tu perfil."; +$a->strings["Welcome back "] = "Bienvenido de nuevo "; +$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "La ficha de seguridad no es correcta. Seguramente haya ocurrido por haber dejado el formulario abierto demasiado tiempo (>3 horas) antes de enviarlo."; +$a->strings["newer"] = "más nuevo"; +$a->strings["older"] = "más antiguo"; +$a->strings["first"] = "primera"; +$a->strings["prev"] = "ant."; +$a->strings["next"] = "sig."; +$a->strings["last"] = "última"; +$a->strings["Loading more entries..."] = "Cargar mas entradas .."; +$a->strings["The end"] = "El fin"; +$a->strings["No contacts"] = "Sin contactos"; +$a->strings["%d Contact"] = array( + 0 => "%d Contacto", + 1 => "%d Contactos", +); +$a->strings["View Contacts"] = "Ver contactos"; +$a->strings["Search"] = "Buscar"; +$a->strings["Save"] = "Guardar"; +$a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, contenido"; +$a->strings["Full Text"] = "Texto completo"; +$a->strings["Tags"] = "Tags"; +$a->strings["Contacts"] = "Contactos"; +$a->strings["poke"] = "tocar"; +$a->strings["poked"] = "tocó a"; +$a->strings["ping"] = "hacer \"ping\""; +$a->strings["pinged"] = "hizo \"ping\" a"; +$a->strings["prod"] = "empujar"; +$a->strings["prodded"] = "empujó a"; +$a->strings["slap"] = "abofetear"; +$a->strings["slapped"] = "abofeteó a"; +$a->strings["finger"] = "meter dedo"; +$a->strings["fingered"] = "le metió un dedo a"; +$a->strings["rebuff"] = "desairar"; +$a->strings["rebuffed"] = "desairó a"; +$a->strings["happy"] = "feliz"; +$a->strings["sad"] = "triste"; +$a->strings["mellow"] = "sentimental"; +$a->strings["tired"] = "cansado"; +$a->strings["perky"] = "alegre"; +$a->strings["angry"] = "furioso"; +$a->strings["stupified"] = "estupefacto"; +$a->strings["puzzled"] = "extrañado"; +$a->strings["interested"] = "interesado"; +$a->strings["bitter"] = "rencoroso"; +$a->strings["cheerful"] = "jovial"; +$a->strings["alive"] = "vivo"; +$a->strings["annoyed"] = "enojado"; +$a->strings["anxious"] = "ansioso"; +$a->strings["cranky"] = "irritable"; +$a->strings["disturbed"] = "perturbado"; +$a->strings["frustrated"] = "frustrado"; +$a->strings["motivated"] = "motivado"; +$a->strings["relaxed"] = "relajado"; +$a->strings["surprised"] = "sorprendido"; +$a->strings["View Video"] = "Ver vídeo"; +$a->strings["bytes"] = "bytes"; +$a->strings["Click to open/close"] = "Pulsa para abrir/cerrar"; +$a->strings["View on separate page"] = "Ver en pagina aparte"; +$a->strings["view on separate page"] = "ver en pagina aparte"; +$a->strings["activity"] = "Actividad"; +$a->strings["comment"] = array( + 0 => "", + 1 => "Comentario", +); +$a->strings["post"] = "Publicación"; +$a->strings["Item filed"] = "Elemento archivado"; +$a->strings["Drop Contact"] = "Eliminar contacto"; +$a->strings["Organisation"] = "Organización"; +$a->strings["News"] = "Noticias"; +$a->strings["Forum"] = "Foro"; +$a->strings["Image/photo"] = "Imagen/Foto"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["$1 wrote:"] = "$1 escribió:"; +$a->strings["Encrypted content"] = "Contenido cifrado"; +$a->strings["Invalid source protocol"] = "Protocolo de fuente inválido"; +$a->strings["Invalid link protocol"] = "Protocolo de enlace inválido"; $a->strings["Friendica Notification"] = "Notificación de Friendica"; $a->strings["Thank You,"] = "Gracias,"; $a->strings["%s Administrator"] = "%s Administrador"; @@ -330,128 +492,124 @@ $a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "R $a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Recibiste una [url=%1\$s]consulta de registro[/url] from %2\$s."; $a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Nombre completo:\t%1\$s\\nUbicación del sitio:\t%2\$s\\nLogin Nombre:\t%3\$s (%4\$s)"; $a->strings["Please visit %s to approve or reject the request."] = "Por favor visita %s para aprobar o negar la solicitud."; -$a->strings["Sun"] = "Dom"; -$a->strings["Mon"] = "Lun"; -$a->strings["Tue"] = "Mar"; -$a->strings["Wed"] = "Mie"; -$a->strings["Thu"] = "Jue"; -$a->strings["Fri"] = "Vie"; -$a->strings["Sat"] = "Sab"; -$a->strings["Sunday"] = "Domingo"; -$a->strings["Monday"] = "Lunes"; -$a->strings["Tuesday"] = "Martes"; -$a->strings["Wednesday"] = "Miércoles"; -$a->strings["Thursday"] = "Jueves"; -$a->strings["Friday"] = "Viernes"; -$a->strings["Saturday"] = "Sábado"; -$a->strings["Jan"] = "Ene"; -$a->strings["Feb"] = "Feb"; -$a->strings["Mar"] = "Mar"; -$a->strings["Apr"] = "Abr"; -$a->strings["May"] = "Mayo"; -$a->strings["Jun"] = "Jun"; -$a->strings["Jul"] = "Jul"; -$a->strings["Aug"] = "Ago"; -$a->strings["Sept"] = "Sept"; -$a->strings["Oct"] = "Oct"; -$a->strings["Nov"] = "Nov"; -$a->strings["Dec"] = "Dec"; -$a->strings["January"] = "Enero"; -$a->strings["February"] = "Febrero"; -$a->strings["March"] = "Marzo"; -$a->strings["April"] = "Abril"; -$a->strings["June"] = "Junio"; -$a->strings["July"] = "Julio"; -$a->strings["August"] = "Agosto"; -$a->strings["September"] = "Septiembre"; -$a->strings["October"] = "Octubre"; -$a->strings["November"] = "Noviembre"; -$a->strings["December"] = "Diciembre"; -$a->strings["today"] = "hoy"; -$a->strings["all-day"] = "todo el día"; -$a->strings["No events to display"] = "No hay eventos a mostrar"; -$a->strings["l, F j"] = "l, F j"; -$a->strings["Edit event"] = "Editar evento"; -$a->strings["link to source"] = "Enlace al original"; -$a->strings["Export"] = "Exportar"; -$a->strings["Export calendar as ical"] = "Exportar calendario como ical"; -$a->strings["Export calendar as csv"] = "Exportar calendario como csv"; -$a->strings["General Features"] = "Opciones generales"; -$a->strings["Multiple Profiles"] = "Perfiles multiples"; -$a->strings["Ability to create multiple profiles"] = "Capacidad de crear perfiles multiples. Cada pagina/perfil/usuario puede tener diferentes perfiles/apariencias. Las mismas pueden ser visibles para determinados contactos seleccionados dentro de la red friendica."; -$a->strings["Photo Location"] = "Localización foto"; -$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Normalmente los meta datos de las imágenes son eliminados. Esto extraerá la localización si presente antes de eliminar los meta datos y enlaza la misma con el mapa."; -$a->strings["Export Public Calendar"] = "Exportar Calendario Público"; -$a->strings["Ability for visitors to download the public calendar"] = "Posibilidad de los visitantes de descargar el calendario público"; -$a->strings["Post Composition Features"] = "Opciones de edición de publicaciones."; -$a->strings["Post Preview"] = "Previsualizar publicaciones"; -$a->strings["Allow previewing posts and comments before publishing them"] = "Permitir la previsualización de publicaciones antes de publicar las mismas."; -$a->strings["Auto-mention Forums"] = "Auto-mencionar foros"; -$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Añadir/eliminar mención cuando un foro es seleccionado/deseleccionado en la ventana ACL."; -$a->strings["Network Sidebar Widgets"] = "Accesorios de red del panel lateral"; -$a->strings["Search by Date"] = "Buscar por fecha"; -$a->strings["Ability to select posts by date ranges"] = "Habilidad de seleccionar publicaciones por fecha"; -$a->strings["List Forums"] = "Listar foros"; -$a->strings["Enable widget to display the forums your are connected with"] = "Habilitar la pestaña para mostrar los foros en que estas participando."; -$a->strings["Group Filter"] = "Filtro del grupo"; -$a->strings["Enable widget to display Network posts only from selected group"] = "Habilitar accesorios para visualizar publicaciones en la red solo de grupos seleccionados"; -$a->strings["Network Filter"] = "Filtro de red"; -$a->strings["Enable widget to display Network posts only from selected network"] = "Habilitar accesorios para visualizar publicaciones solo de las redes seleccionadas."; -$a->strings["Saved Searches"] = "Búsquedas guardadas"; -$a->strings["Save search terms for re-use"] = "Guardar términos de búsqueda para su reutilizacion"; -$a->strings["Network Tabs"] = "Pestañas de redes"; -$a->strings["Network Personal Tab"] = "Pestaña actividad personal"; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar para visualizar solo publicaciones con las que se ha interactuado"; -$a->strings["Network New Tab"] = "Pestaña nuevo en la red"; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Activar para mostrar solo publicaciones nuevas en la red (de las ultimas 12 horas)"; -$a->strings["Network Shared Links Tab"] = "Pestaña publicaciones con enlaces"; -$a->strings["Enable tab to display only Network posts with links in them"] = "Habilitar para visualizar solo publicaciones que contienen enlaces"; -$a->strings["Post/Comment Tools"] = "Herramienta de publicaciones/respuestas"; -$a->strings["Multiple Deletion"] = "Borrar múltiples publicaciones"; -$a->strings["Select and delete multiple posts/comments at once"] = "Habilidad de seleccionar y borrar varias publicaciones/comentarios a la vez"; -$a->strings["Edit Sent Posts"] = "Editar temas enviados"; -$a->strings["Edit and correct posts and comments after sending"] = "Editar y corregir publicaciones y respuestas enviados. Las ediciones solo son comunicados dentro de la red friendica. No se modificaran copias enviadas a diaspora, OStatus/GNUsocial/Quitter u otros servicios conectados."; -$a->strings["Tagging"] = "taggear"; -$a->strings["Ability to tag existing posts"] = "Habilidad de taggear publicaciones existentes"; -$a->strings["Post Categories"] = "Categorías de publicaciones"; -$a->strings["Add categories to your posts"] = "Agregue categorías a sus publicaciones. Las mismas serán visualizadas en su pagina de inicio."; -$a->strings["Ability to file posts under folders"] = "Archivar publicaciones en carpetas"; -$a->strings["Dislike Posts"] = "Desaprobar publicación (dislike)"; -$a->strings["Ability to dislike posts/comments"] = "Habilidad de expresar desacuerdo en publicaciones y comentarios. Esta función solo es visualizado en la red friendica."; -$a->strings["Star Posts"] = "Fijar publicaciones"; -$a->strings["Ability to mark special posts with a star indicator"] = "Habilidad de marcar - observar fijamente publicaciones.\nEl simbolo de estrella es habilitado. Se recibirán notificaciones sobre comentarios, además una pestaña de publicaciones fijadas es habilitada. En las opciones de expiración de publicaciones se puede filtrar estas publicaciones para no ser eliminados contrario a las publicaciones demás de los contactos."; -$a->strings["Mute Post Notifications"] = "Silenciar notificaciones de una publicacion"; -$a->strings["Ability to mute notifications for a thread"] = "Habilidad de silenciar notificaciones sobre nuevos comentarios en una publicación."; -$a->strings["Advanced Profile Settings"] = "Ajustes avanzados del perfil"; -$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Mostrar a los visitantes foros públicos en las que se esta participando en el pagina avanzada de perfiles."; -$a->strings["Disallowed profile URL."] = "Dirección de perfil no permitida."; -$a->strings["Connect URL missing."] = "Falta el conector URL."; -$a->strings["This site is not configured to allow communications with other networks."] = "Este sitio no está configurado para permitir la comunicación con otras redes."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "No se ha descubierto protocolos de comunicación o fuentes compatibles."; -$a->strings["The profile address specified does not provide adequate information."] = "La dirección del perfil especificado no proporciona información adecuada."; -$a->strings["An author or name was not found."] = "No se ha encontrado un autor o nombre."; -$a->strings["No browser URL could be matched to this address."] = "Ninguna dirección concuerda con la suministrada."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Imposible identificar la dirección @ con algún protocolo conocido o dirección de contacto."; -$a->strings["Use mailto: in front of address to force email check."] = "Escribe mailto: al principio de la dirección para forzar el envío."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "La dirección del perfil especificada pertenece a una red que ha sido deshabilitada en este sitio."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Perfil limitado. Esta persona no podrá recibir notificaciones directas/personales tuyas."; -$a->strings["Unable to retrieve contact information."] = "No ha sido posible recibir la información del contacto."; -$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 grupo eliminado con este nombre fue restablecido. Los permisos existentes pueden aplicarse a este grupo y a sus futuros miembros. Si esto no es lo que pretendes, por favor, crea otro grupo con un nombre diferente."; -$a->strings["Default privacy group for new contacts"] = "Grupo por defecto para nuevos contactos"; -$a->strings["Everybody"] = "Todo el mundo"; -$a->strings["edit"] = "editar"; -$a->strings["Groups"] = "Grupos"; -$a->strings["Edit groups"] = "Editar grupo"; -$a->strings["Edit group"] = "Editar grupo"; -$a->strings["Create a new group"] = "Crear un nuevo grupo"; -$a->strings["Group Name: "] = "Nombre del grupo: "; -$a->strings["Contacts not in any group"] = "Contactos sin grupo"; -$a->strings["add"] = "añadir"; +$a->strings["[no subject]"] = "[sin asunto]"; +$a->strings["Wall Photos"] = "Foto del Muro"; +$a->strings["Nothing new here"] = "Nada nuevo por aquí"; +$a->strings["Clear notifications"] = "Limpiar notificaciones"; +$a->strings["Logout"] = "Salir"; +$a->strings["End this session"] = "Cerrar la sesión"; +$a->strings["Status"] = "Estado"; +$a->strings["Your posts and conversations"] = "Tus publicaciones y conversaciones"; +$a->strings["Profile"] = "Perfil"; +$a->strings["Your profile page"] = "Tu página de perfil"; +$a->strings["Photos"] = "Fotografías"; +$a->strings["Your photos"] = "Tus fotos"; +$a->strings["Videos"] = "Videos"; +$a->strings["Your videos"] = "Tus videos"; +$a->strings["Events"] = "Eventos"; +$a->strings["Your events"] = "Tus eventos"; +$a->strings["Personal notes"] = "Notas personales"; +$a->strings["Your personal notes"] = "Tus notas personales"; +$a->strings["Login"] = "Acceder"; +$a->strings["Sign in"] = "Date de alta"; +$a->strings["Home Page"] = "Página de inicio"; +$a->strings["Register"] = "Registrarse"; +$a->strings["Create an account"] = "Crea una cuenta"; +$a->strings["Help"] = "Ayuda"; +$a->strings["Help and documentation"] = "Ayuda y documentación"; +$a->strings["Apps"] = "Aplicaciones"; +$a->strings["Addon applications, utilities, games"] = "Aplicaciones, utilidades, juegos"; +$a->strings["Search site content"] = " Busca contenido en la página"; +$a->strings["Community"] = "Comunidad"; +$a->strings["Conversations on this site"] = "Conversaciones en este sitio"; +$a->strings["Conversations on the network"] = "Conversaciones en la red"; +$a->strings["Events and Calendar"] = "Eventos y Calendario"; +$a->strings["Directory"] = "Directorio"; +$a->strings["People directory"] = "Directorio de usuarios"; +$a->strings["Information"] = "Información"; +$a->strings["Information about this friendica instance"] = "Información sobre esta instancia de friendica"; +$a->strings["Conversations from your friends"] = "Conversaciones de tus amigos"; +$a->strings["Network Reset"] = "Reseteo de la red"; +$a->strings["Load Network page with no filters"] = "Cargar pagina de redes sin filtros"; +$a->strings["Friend Requests"] = "Solicitudes de amistad"; +$a->strings["Notifications"] = "Notificaciones"; +$a->strings["See all notifications"] = "Ver todas las notificaciones"; +$a->strings["Mark as seen"] = "Marcar como leído"; +$a->strings["Mark all system notifications seen"] = "Marcar todas las notificaciones del sistema como leídas"; +$a->strings["Messages"] = "Mensajes"; +$a->strings["Private mail"] = "Correo privado"; +$a->strings["Inbox"] = "Entrada"; +$a->strings["Outbox"] = "Enviados"; +$a->strings["New Message"] = "Nuevo mensaje"; +$a->strings["Manage"] = "Administrar"; +$a->strings["Manage other pages"] = "Administrar otras páginas"; +$a->strings["Delegations"] = "Delegaciones"; +$a->strings["Delegate Page Management"] = "Delegar la administración de la página"; +$a->strings["Settings"] = "Configuración"; +$a->strings["Account settings"] = "Configuración de tu cuenta"; +$a->strings["Profiles"] = "Perfiles"; +$a->strings["Manage/Edit Profiles"] = "Manejar/editar Perfiles"; +$a->strings["Manage/edit friends and contacts"] = "Administrar/editar amigos y contactos"; +$a->strings["Admin"] = "Admin"; +$a->strings["Site setup and configuration"] = "Opciones y configuración del sitio"; +$a->strings["Navigation"] = "Navegación"; +$a->strings["Site map"] = "Mapa del sitio"; +$a->strings["view full size"] = "Ver a tamaño completo"; +$a->strings["Embedded content"] = "Contenido integrado"; +$a->strings["Embedding disabled"] = "Contenido incrustrado desabilitado"; +$a->strings["Error decoding account file"] = "Error decodificando el archivo de cuenta"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Error! No hay datos de versión en el archivo! ¿Es esto de una cuenta friendica? "; +$a->strings["Error! Cannot check nickname"] = "Error! No puedo consultar el apodo"; +$a->strings["User '%s' already exists on this server!"] = "La cuenta '%s' ya existe en este servidor!"; +$a->strings["User creation error"] = "Error al crear la cuenta"; +$a->strings["User profile creation error"] = "Error de creación del perfil de la cuenta"; +$a->strings["%d contact not imported"] = array( + 0 => "%d contactos no encontrado", + 1 => "%d contactos no importado", +); +$a->strings["Done. You can now login with your username and password"] = "Hecho. Ahora podes ingresar con tu nombre de cuenta y la contraseña."; +$a->strings["Passwords do not match. Password unchanged."] = "Las contraseñas no coinciden. La contraseña no ha sido modificada."; +$a->strings["An invitation is required."] = "Se necesita invitación."; +$a->strings["Invitation could not be verified."] = "No se puede verificar la invitación."; +$a->strings["Invalid OpenID url"] = "Dirección OpenID no válida"; +$a->strings["Please enter the required information."] = "Por favor, introduce la información necesaria."; +$a->strings["Please use a shorter name."] = "Por favor, usa un nombre más corto."; +$a->strings["Name too short."] = "El nombre es demasiado corto."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "No parece que ese sea tu nombre completo."; +$a->strings["Your email domain is not among those allowed on this site."] = "Tu dominio de correo no se encuentra entre los permitidos en este sitio."; +$a->strings["Not a valid email address."] = "No es una dirección de correo electrónico válida."; +$a->strings["Cannot use that email."] = "No se puede utilizar este correo electrónico."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "El apodo solo puede contener \"a-z\", \"0-9\" y \"_\"."; +$a->strings["Nickname is already registered. Please choose another."] = "Apodo ya registrado. Por favor, elije otro."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "El apodo ya ha sido registrado alguna vez y no puede volver a usarse. Por favor, utiliza otro."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERROR GRAVE: La generación de claves de seguridad ha fallado."; +$a->strings["An error occurred during registration. Please try again."] = "Se produjo un error durante el registro. Por favor, inténtalo de nuevo."; +$a->strings["default"] = "predeterminado"; +$a->strings["An error occurred creating your default profile. Please try again."] = "Error al crear tu perfil predeterminado. Por favor, inténtalo de nuevo."; +$a->strings["Friends"] = "Amigos"; +$a->strings["Profile Photos"] = "Foto del perfil"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "\n\t\tEstimado %1\$s,\n\t\t\tGracias por registrarse en %2\$s. Su cuenta está pendiente de aprobación por el administrador.\n\t"; +$a->strings["Registration at %s"] = "Registro en %s"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tEstimado %1\$s,\n\t\t\tGracias por registrar en %2\$s. Su cuenta ha sido creada.\n\t"; +$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\n\t\t\tLos detalles de acceso son las siguientes:\n\n\t\t\tDirección del sitio:\t%3\$s\n\t\t\tNombre de la cuenta:\t\t%1\$s\n\t\t\tContraseña:\t\t%5\$s\n\n\t\t\tPodrá cambiar la contraseña desde la pagina de configuración de su cuenta después de acceder a la misma\n\t\t\ten.\n\n\t\t\tPor favor tome unos minutos para revisar las opciones demás de la cuenta en dicha pagina de configuración.\n\n\t\t\tTambién podrá agregar informaciones adicionales a su pagina de perfil predeterminado. \n\t\t\t(en la pagina \"Perfiles\") para que otras personas pueden encontrarlo fácilmente.\n\n\t\t\tRecomendamos que elija un nombre apropiado, agregando una imagen de perfil,\n\t\t\tagregando algunas palabras claves de la cuenta (muy útil para hacer nuevos amigos) - y \n\t\t\tquizás el país en donde vive; si no quiere ser mas especifico\n\t\t\tque eso.\n\n\t\t\tRespetamos absolutamente su derecho a la privacidad y ninguno de estos detalles es necesario.\n\t\t\tSi eres nuevo aquí y no conoces a nadie, estos detalles pueden ayudarte\n\t\t\tpara hacer nuevas e interesantes amistades.\n\n\t\t\tGracias y bienvenido a %2\$s."; +$a->strings["Registration details for %s"] = "Detalles de registro para %s"; +$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Limite diario de publicaciones %d alcanzado. La publicación fue rechazada."; +$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Limite semanal de publicaciones %d alcanzado. La publicación fue rechazada."; +$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Limite mensual de publicaciones %d alcanzado. La publicación fue rechazada."; +$a->strings["Cannot locate DNS info for database server '%s'"] = "No se puede encontrar información DNS para la base de datos del servidor '%s'"; +$a->strings["There are no tables on MyISAM."] = ""; +$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\tLos desarolladores de friendica publicaron una actualización %s recientemente\n\t\t\tpero cuando intento de instalarla,algo salio terriblemente mal.\n\t\t\tEsto necesita ser arreglado pronto y no puedo hacerlo solo. Por favor contacta\n\t\t\tlos desarolladores de friendica si no me podes ayudar por ti solo. Mi base de datos puede estar invalido."; +$a->strings["The error message is\n[pre]%s[/pre]"] = "El mensaje de error es\n[pre]%s[/pre]"; +$a->strings["\nError %d occurred during database update:\n%s\n"] = ""; +$a->strings["Errors encountered performing database changes: "] = ""; +$a->strings[": Database update"] = ""; +$a->strings["%s: updating %s table."] = ""; +$a->strings["Sharing notification from Diaspora network"] = "Compartir notificaciones con la red Diaspora*"; +$a->strings["Attachments:"] = "Archivos adjuntos:"; $a->strings["Requested account is not available."] = "La cuenta solicitada no está disponible."; $a->strings["Requested profile is not available."] = "El perfil solicitado no está disponible."; $a->strings["Edit profile"] = "Editar perfil"; $a->strings["Atom feed"] = "Atom feed"; -$a->strings["Profiles"] = "Perfiles"; $a->strings["Manage/edit profiles"] = "Administrar/editar perfiles"; $a->strings["Change profile photo"] = "Cambiar foto del perfil"; $a->strings["Create New Profile"] = "Crear nuevo perfil"; @@ -472,7 +630,6 @@ $a->strings["Birthdays this week:"] = "Cumpleaños esta semana:"; $a->strings["[No description]"] = "[Sin descripción]"; $a->strings["Event Reminders"] = "Recordatorios de eventos"; $a->strings["Events this week:"] = "Eventos de esta semana:"; -$a->strings["Profile"] = "Perfil"; $a->strings["Full Name:"] = "Nombre completo:"; $a->strings["j F, Y"] = "j F, Y"; $a->strings["j F"] = "j F"; @@ -497,89 +654,21 @@ $a->strings["School/education:"] = "Escuela/estudios:"; $a->strings["Forums:"] = "Foros:"; $a->strings["Basic"] = "Basic"; $a->strings["Advanced"] = "Avanzado"; -$a->strings["Status"] = "Estado"; $a->strings["Status Messages and Posts"] = "Mensajes de Estado y Publicaciones"; $a->strings["Profile Details"] = "Detalles del Perfil"; -$a->strings["Photos"] = "Fotografías"; $a->strings["Photo Albums"] = "Álbum de Fotos"; -$a->strings["Videos"] = "Videos"; -$a->strings["Events"] = "Eventos"; -$a->strings["Events and Calendar"] = "Eventos y Calendario"; $a->strings["Personal Notes"] = "Notas personales"; $a->strings["Only You Can See This"] = "Únicamente tú puedes ver esto"; -$a->strings["Contacts"] = "Contactos"; $a->strings["[Name Withheld]"] = "[Nombre oculto]"; $a->strings["Item not found."] = "Elemento no encontrado."; $a->strings["Do you really want to delete this item?"] = "¿Realmente quieres borrar este objeto?"; $a->strings["Yes"] = "Sí"; $a->strings["Permission denied."] = "Permiso denegado."; $a->strings["Archives"] = "Archivos"; -$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s atenderá %2\$s's %3\$s"; -$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s no atenderá %2\$s's %3\$s"; -$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s puede que atienda %2\$s's %3\$s"; -$a->strings["[no subject]"] = "[sin asunto]"; -$a->strings["Nothing new here"] = "Nada nuevo por aquí"; -$a->strings["Clear notifications"] = "Limpiar notificaciones"; -$a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, contenido"; -$a->strings["End this session"] = "Cerrar la sesión"; -$a->strings["Your posts and conversations"] = "Tus publicaciones y conversaciones"; -$a->strings["Your profile page"] = "Tu página de perfil"; -$a->strings["Your photos"] = "Tus fotos"; -$a->strings["Your videos"] = "Tus videos"; -$a->strings["Your events"] = "Tus eventos"; -$a->strings["Personal notes"] = "Notas personales"; -$a->strings["Your personal notes"] = "Tus notas personales"; -$a->strings["Sign in"] = "Date de alta"; -$a->strings["Home Page"] = "Página de inicio"; -$a->strings["Create an account"] = "Crea una cuenta"; -$a->strings["Help"] = "Ayuda"; -$a->strings["Help and documentation"] = "Ayuda y documentación"; -$a->strings["Apps"] = "Aplicaciones"; -$a->strings["Addon applications, utilities, games"] = "Aplicaciones, utilidades, juegos"; -$a->strings["Search"] = "Buscar"; -$a->strings["Search site content"] = " Busca contenido en la página"; -$a->strings["Full Text"] = "Texto completo"; -$a->strings["Tags"] = "Tags"; -$a->strings["Community"] = "Comunidad"; -$a->strings["Conversations on this site"] = "Conversaciones en este sitio"; -$a->strings["Conversations on the network"] = "Conversaciones en la red"; -$a->strings["Directory"] = "Directorio"; -$a->strings["People directory"] = "Directorio de usuarios"; -$a->strings["Information"] = "Información"; -$a->strings["Information about this friendica instance"] = "Información sobre esta instancia de friendica"; -$a->strings["Conversations from your friends"] = "Conversaciones de tus amigos"; -$a->strings["Network Reset"] = "Reseteo de la red"; -$a->strings["Load Network page with no filters"] = "Cargar pagina de redes sin filtros"; -$a->strings["Friend Requests"] = "Solicitudes de amistad"; -$a->strings["Notifications"] = "Notificaciones"; -$a->strings["See all notifications"] = "Ver todas las notificaciones"; -$a->strings["Mark as seen"] = "Marcar como leído"; -$a->strings["Mark all system notifications seen"] = "Marcar todas las notificaciones del sistema como leídas"; -$a->strings["Messages"] = "Mensajes"; -$a->strings["Private mail"] = "Correo privado"; -$a->strings["Inbox"] = "Entrada"; -$a->strings["Outbox"] = "Enviados"; -$a->strings["New Message"] = "Nuevo mensaje"; -$a->strings["Manage"] = "Administrar"; -$a->strings["Manage other pages"] = "Administrar otras páginas"; -$a->strings["Delegations"] = "Delegaciones"; -$a->strings["Delegate Page Management"] = "Delegar la administración de la página"; -$a->strings["Settings"] = "Configuración"; -$a->strings["Account settings"] = "Configuración de tu cuenta"; -$a->strings["Manage/Edit Profiles"] = "Manejar/editar Perfiles"; -$a->strings["Manage/edit friends and contacts"] = "Administrar/editar amigos y contactos"; -$a->strings["Admin"] = "Admin"; -$a->strings["Site setup and configuration"] = "Opciones y configuración del sitio"; -$a->strings["Navigation"] = "Navegación"; -$a->strings["Site map"] = "Mapa del sitio"; -$a->strings["view full size"] = "Ver a tamaño completo"; -$a->strings["Embedded content"] = "Contenido integrado"; -$a->strings["Embedding disabled"] = "Contenido incrustrado desabilitado"; $a->strings["%s is now following %s."] = "%s sigue ahora a %s."; $a->strings["following"] = "siguiendo"; $a->strings["%s stopped following %s."] = "%s dejó de seguir a %s."; $a->strings["stopped following"] = "dejó de seguir"; -$a->strings["Contact Photos"] = "Foto del contacto"; $a->strings["Click here to upgrade."] = "Pulsa aquí para actualizar."; $a->strings["This action exceeds the limits set by your subscription plan."] = "Esta acción excede los límites permitidos por tu subscripción."; $a->strings["This action is not available under your subscription plan."] = "Esta acción no está permitida para tu subscripción."; @@ -618,7 +707,6 @@ $a->strings["Infatuated"] = "Loco/a por alguien"; $a->strings["Dating"] = "De citas"; $a->strings["Unfaithful"] = "Infiel"; $a->strings["Sex Addict"] = "Adicto al sexo"; -$a->strings["Friends"] = "Amigos"; $a->strings["Friends/Benefits"] = "Amigos con beneficios"; $a->strings["Casual"] = "Casual"; $a->strings["Engaged"] = "Comprometido/a"; @@ -640,409 +728,13 @@ $a->strings["Uncertain"] = "Incierto"; $a->strings["It's complicated"] = "Es complicado"; $a->strings["Don't care"] = "No te importa"; $a->strings["Ask me"] = "Pregúntame"; -$a->strings["Welcome "] = "Bienvenido "; -$a->strings["Please upload a profile photo."] = "Por favor sube una foto para tu perfil."; -$a->strings["Welcome back "] = "Bienvenido de nuevo "; -$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "La ficha de seguridad no es correcta. Seguramente haya ocurrido por haber dejado el formulario abierto demasiado tiempo (>3 horas) antes de enviarlo."; -$a->strings["newer"] = "más nuevo"; -$a->strings["older"] = "más antiguo"; -$a->strings["first"] = "primera"; -$a->strings["prev"] = "ant."; -$a->strings["next"] = "sig."; -$a->strings["last"] = "última"; -$a->strings["Loading more entries..."] = "Cargar mas entradas .."; -$a->strings["The end"] = "El fin"; -$a->strings["No contacts"] = "Sin contactos"; -$a->strings["%d Contact"] = array( - 0 => "%d Contacto", - 1 => "%d Contactos", -); -$a->strings["View Contacts"] = "Ver contactos"; -$a->strings["Save"] = "Guardar"; -$a->strings["poke"] = "tocar"; -$a->strings["poked"] = "tocó a"; -$a->strings["ping"] = "hacer \"ping\""; -$a->strings["pinged"] = "hizo \"ping\" a"; -$a->strings["prod"] = "empujar"; -$a->strings["prodded"] = "empujó a"; -$a->strings["slap"] = "abofetear"; -$a->strings["slapped"] = "abofeteó a"; -$a->strings["finger"] = "meter dedo"; -$a->strings["fingered"] = "le metió un dedo a"; -$a->strings["rebuff"] = "desairar"; -$a->strings["rebuffed"] = "desairó a"; -$a->strings["happy"] = "feliz"; -$a->strings["sad"] = "triste"; -$a->strings["mellow"] = "sentimental"; -$a->strings["tired"] = "cansado"; -$a->strings["perky"] = "alegre"; -$a->strings["angry"] = "furioso"; -$a->strings["stupified"] = "estupefacto"; -$a->strings["puzzled"] = "extrañado"; -$a->strings["interested"] = "interesado"; -$a->strings["bitter"] = "rencoroso"; -$a->strings["cheerful"] = "jovial"; -$a->strings["alive"] = "vivo"; -$a->strings["annoyed"] = "enojado"; -$a->strings["anxious"] = "ansioso"; -$a->strings["cranky"] = "irritable"; -$a->strings["disturbed"] = "perturbado"; -$a->strings["frustrated"] = "frustrado"; -$a->strings["motivated"] = "motivado"; -$a->strings["relaxed"] = "relajado"; -$a->strings["surprised"] = "sorprendido"; -$a->strings["View Video"] = "Ver vídeo"; -$a->strings["bytes"] = "bytes"; -$a->strings["Click to open/close"] = "Pulsa para abrir/cerrar"; -$a->strings["View on separate page"] = "Ver en pagina aparte"; -$a->strings["view on separate page"] = "ver en pagina aparte"; -$a->strings["activity"] = "Actividad"; -$a->strings["comment"] = array( - 0 => "", - 1 => "Comentario", -); -$a->strings["post"] = "Publicación"; -$a->strings["Item filed"] = "Elemento archivado"; -$a->strings["Error decoding account file"] = "Error decodificando el archivo de cuenta"; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Error! No hay datos de versión en el archivo! ¿Es esto de una cuenta friendica? "; -$a->strings["Error! Cannot check nickname"] = "Error! No puedo consultar el apodo"; -$a->strings["User '%s' already exists on this server!"] = "La cuenta '%s' ya existe en este servidor!"; -$a->strings["User creation error"] = "Error al crear la cuenta"; -$a->strings["User profile creation error"] = "Error de creación del perfil de la cuenta"; -$a->strings["%d contact not imported"] = array( - 0 => "%d contactos no encontrado", - 1 => "%d contactos no importado", -); -$a->strings["Done. You can now login with your username and password"] = "Hecho. Ahora podes ingresar con tu nombre de cuenta y la contraseña."; -$a->strings["Passwords do not match. Password unchanged."] = "Las contraseñas no coinciden. La contraseña no ha sido modificada."; -$a->strings["An invitation is required."] = "Se necesita invitación."; -$a->strings["Invitation could not be verified."] = "No se puede verificar la invitación."; -$a->strings["Invalid OpenID url"] = "Dirección OpenID no válida"; -$a->strings["Please enter the required information."] = "Por favor, introduce la información necesaria."; -$a->strings["Please use a shorter name."] = "Por favor, usa un nombre más corto."; -$a->strings["Name too short."] = "El nombre es demasiado corto."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "No parece que ese sea tu nombre completo."; -$a->strings["Your email domain is not among those allowed on this site."] = "Tu dominio de correo no se encuentra entre los permitidos en este sitio."; -$a->strings["Not a valid email address."] = "No es una dirección de correo electrónico válida."; -$a->strings["Cannot use that email."] = "No se puede utilizar este correo electrónico."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "El apodo solo puede contener \"a-z\", \"0-9\" y \"_\"."; -$a->strings["Nickname is already registered. Please choose another."] = "Apodo ya registrado. Por favor, elije otro."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "El apodo ya ha sido registrado alguna vez y no puede volver a usarse. Por favor, utiliza otro."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERROR GRAVE: La generación de claves de seguridad ha fallado."; -$a->strings["An error occurred during registration. Please try again."] = "Se produjo un error durante el registro. Por favor, inténtalo de nuevo."; -$a->strings["default"] = "predeterminado"; -$a->strings["An error occurred creating your default profile. Please try again."] = "Error al crear tu perfil predeterminado. Por favor, inténtalo de nuevo."; -$a->strings["Profile Photos"] = "Foto del perfil"; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "\n\t\tEstimado %1\$s,\n\t\t\tGracias por registrarse en %2\$s. Su cuenta está pendiente de aprobación por el administrador.\n\t"; -$a->strings["Registration at %s"] = "Registro en %s"; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tEstimado %1\$s,\n\t\t\tGracias por registrar en %2\$s. Su cuenta ha sido creada.\n\t"; -$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\n\t\t\tLos detalles de acceso son las siguientes:\n\n\t\t\tDirección del sitio:\t%3\$s\n\t\t\tNombre de la cuenta:\t\t%1\$s\n\t\t\tContraseña:\t\t%5\$s\n\n\t\t\tPodrá cambiar la contraseña desde la pagina de configuración de su cuenta después de acceder a la misma\n\t\t\ten.\n\n\t\t\tPor favor tome unos minutos para revisar las opciones demás de la cuenta en dicha pagina de configuración.\n\n\t\t\tTambién podrá agregar informaciones adicionales a su pagina de perfil predeterminado. \n\t\t\t(en la pagina \"Perfiles\") para que otras personas pueden encontrarlo fácilmente.\n\n\t\t\tRecomendamos que elija un nombre apropiado, agregando una imagen de perfil,\n\t\t\tagregando algunas palabras claves de la cuenta (muy útil para hacer nuevos amigos) - y \n\t\t\tquizás el país en donde vive; si no quiere ser mas especifico\n\t\t\tque eso.\n\n\t\t\tRespetamos absolutamente su derecho a la privacidad y ninguno de estos detalles es necesario.\n\t\t\tSi eres nuevo aquí y no conoces a nadie, estos detalles pueden ayudarte\n\t\t\tpara hacer nuevas e interesantes amistades.\n\n\t\t\tGracias y bienvenido a %2\$s."; -$a->strings["Registration details for %s"] = "Detalles de registro para %s"; -$a->strings["You must be logged in to use addons. "] = "Tienes que estar registrado para tener acceso a los accesorios."; -$a->strings["Not Found"] = "No se ha encontrado"; -$a->strings["Page not found."] = "Página no encontrada."; -$a->strings["Permission denied"] = "Permiso denegado"; -$a->strings["toggle mobile"] = "Cambiar a versión móvil"; -$a->strings["Theme settings updated."] = "Configuración de la apariencia actualizada."; -$a->strings["Site"] = "Sitio"; -$a->strings["Users"] = "Usuarios"; -$a->strings["Plugins"] = "Módulos"; -$a->strings["Themes"] = "Temas"; -$a->strings["Additional features"] = "Características adicionales"; -$a->strings["DB updates"] = "Actualizaciones de la Base de Datos"; -$a->strings["Inspect Queue"] = "Inspeccionar cola"; -$a->strings["Federation Statistics"] = "Estadísticas de federación"; -$a->strings["Logs"] = "Registros"; -$a->strings["View Logs"] = "Ver registro de depuración"; -$a->strings["probe address"] = "probar direccion"; -$a->strings["check webfinger"] = "Verificar webfinger"; -$a->strings["Plugin Features"] = "Características del módulo"; -$a->strings["diagnostics"] = "diagnosticos"; -$a->strings["User registrations waiting for confirmation"] = "Registro de usuarios esperando la confirmación"; -$a->strings["unknown"] = "desconocido"; -$a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = "Esta pagina ofrece algunos datos sobre la red conocida a la que tu nodo friendica esta conectado. Estos nummeros no son completos respecto a las redes federadas, si no refleja los nodos esta instancia conoce. "; -$a->strings["The Auto Discovered Contact Directory feature is not enabled, it will improve the data displayed here."] = "El modulo directorio de contactos encontrados no esta habilitado, habilitado aumentara la cantidad de datos detallados aquí."; -$a->strings["Administration"] = "Administración"; -$a->strings["Currently this node is aware of %d nodes from the following platforms:"] = "Actualmente este nodo reconoce %d nodos de las siguientes plataformas:"; -$a->strings["ID"] = "ID"; -$a->strings["Recipient Name"] = "Nombre del recipiente"; -$a->strings["Recipient Profile"] = "Perfil del recipiente"; -$a->strings["Created"] = "Creado"; -$a->strings["Last Tried"] = "Ultimo intento"; -$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."] = "Esta pagina muestra la cola de mensajes salientes. Estos son publicaciones cuyo envío inicial fallo. Serán reenviados mas tarde y eventualmente eliminados si la entrega falla permanentemente. "; -$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the convert_innodb.sql in the /util directory of your Friendica installation.
"] = "Su DB aún funciona con las tablas MyISAM. Debería cambiar el tipo de motror a InnoDB. ¡Como Friendica sólo usará las características de InnoDB en el futuro, debería cambiar esto! Vea aquí para una guía que puede ayudar a convertir las tablas de motor. También puede usar convert_innodb.sql en el directorio /util de su instalación de Friendica.
"; -$a->strings["You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB."] = "Está usando una versión de MySQL que no soporta todas las características de Friendica. Debería considerar cambiar a MariaDB."; -$a->strings["Normal Account"] = "Cuenta normal"; -$a->strings["Soapbox Account"] = "Cuenta tribuna"; -$a->strings["Community/Celebrity Account"] = "Cuenta de Comunidad/Celebridad"; -$a->strings["Automatic Friend Account"] = "Cuenta de amistad automática"; -$a->strings["Blog Account"] = "Cuenta de blog"; -$a->strings["Private Forum"] = "Foro privado"; -$a->strings["Message queues"] = "Cola de mensajes"; -$a->strings["Summary"] = "Resumen"; -$a->strings["Registered users"] = "Usuarios registrados"; -$a->strings["Pending registrations"] = "Pendientes de registro"; -$a->strings["Version"] = "Versión"; -$a->strings["Active plugins"] = "Módulos activos"; -$a->strings["Can not parse base url. Must have at least ://"] = "No se puede resolver la direccion URL base.\nDeberá tener al menos ://"; -$a->strings["RINO2 needs mcrypt php extension to work."] = "RINO2 precisa la extensión mcrypt para funcionar. "; -$a->strings["Site settings updated."] = "Configuración de actualización."; -$a->strings["No special theme for mobile devices"] = "No hay tema especial para dispositivos móviles"; -$a->strings["No community page"] = "No hay pagina de comunidad"; -$a->strings["Public postings from users of this site"] = "Temas públicos de perfiles de este sitio."; -$a->strings["Global community page"] = "Pagina global de comunidad"; -$a->strings["Never"] = "Nunca"; -$a->strings["At post arrival"] = "A la llegada de una publicación"; -$a->strings["Disabled"] = "Deshabilitado"; -$a->strings["Users, Global Contacts"] = "Perfiles, contactos globales"; -$a->strings["Users, Global Contacts/fallback"] = "Perfiles, contactos globales/fallback"; -$a->strings["One month"] = "Un mes"; -$a->strings["Three months"] = "Tres meses"; -$a->strings["Half a year"] = "Medio año"; -$a->strings["One year"] = "Un año"; -$a->strings["Multi user instance"] = "Sesión multi usuario"; -$a->strings["Closed"] = "Cerrado"; -$a->strings["Requires approval"] = "Requiere aprobación"; -$a->strings["Open"] = "Abierto"; -$a->strings["No SSL policy, links will track page SSL state"] = "No existe una política de SSL, los vínculos harán un seguimiento del estado de SSL en la página"; -$a->strings["Force all links to use SSL"] = "Forzar todos los enlaces a utilizar SSL"; -$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificación personal, usa SSL solo para enlaces locales (no recomendado)"; -$a->strings["Save Settings"] = "Guardar configuración"; -$a->strings["Registration"] = "Registro"; -$a->strings["File upload"] = "Subida de archivo"; -$a->strings["Policies"] = "Políticas"; -$a->strings["Auto Discovered Contact Directory"] = "Directorio de contactos descubierto automáticamente"; -$a->strings["Performance"] = "Rendimiento"; -$a->strings["Worker"] = "Trabajador (??)"; -$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Reubicación - ADVERTENCIA: función avanzada. Puede hacer a este servidor inaccesible. "; -$a->strings["Site name"] = "Nombre del sitio"; -$a->strings["Host name"] = "Nombre de dominio"; -$a->strings["Sender Email"] = "Dirección de origen de correo electrónico"; -$a->strings["The email address your server shall use to send notification emails from."] = "La dirección de correo electrónico que el servidor debería usar como dirección de envío."; -$a->strings["Banner/Logo"] = "Imagen/Logotipo"; -$a->strings["Shortcut icon"] = "Icono de atajo"; -$a->strings["Link to an icon that will be used for browsers."] = "Enlace hacia un icono que sera usado para el navegador."; -$a->strings["Touch icon"] = "Icono touch"; -$a->strings["Link to an icon that will be used for tablets and mobiles."] = "Enlace para un icono que sera usado para tablets y moviles."; -$a->strings["Additional Info"] = "Información adicional"; -$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = "Para servidores públicos: información adicional que sera publicado en %s/siteinfo."; -$a->strings["System language"] = "Idioma"; -$a->strings["System theme"] = "Tema"; -$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Tema por defecto del sistema, los usuarios podrán elegir el suyo propio en su configuración cambiar configuración del tema"; -$a->strings["Mobile system theme"] = "Tema de sistema móvil"; -$a->strings["Theme for mobile devices"] = "Tema para dispositivos móviles"; -$a->strings["SSL link policy"] = "Política de enlaces SSL"; -$a->strings["Determines whether generated links should be forced to use SSL"] = "Determina si los enlaces generados deben ser forzados a utilizar SSL"; -$a->strings["Force SSL"] = "Forzar SSL"; -$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Forzar todos las consultas No-SSL a SSL. - ATENCIÓN: en algunos sistemas esto puede generar comportamiento recursivo interminable."; -$a->strings["Hide help entry from navigation menu"] = "Ocultar la ayuda en el menú de navegación"; -$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Oculta la entrada de las páginas de Ayuda en el menú de navegación. Todavía se puede acceder escribiendo /ayuda directamente."; -$a->strings["Single user instance"] = "Sesión de usuario único"; -$a->strings["Make this instance multi-user or single-user for the named user"] = "Haz esta sesión multi-usuario o usuario único para el usuario"; -$a->strings["Maximum image size"] = "Tamaño máximo de la imagen"; -$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Tamaño máximo en bytes de las imágenes a subir. Por defecto es 0, que quiere decir que no hay límite."; -$a->strings["Maximum image length"] = "Largo máximo de imagen"; -$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Longitud máxima en píxeles del lado más largo de las imágenes subidas. Por defecto es -1, que significa que no hay límites."; -$a->strings["JPEG image quality"] = "Calidad de imagen JPEG"; -$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Los archivos JPEG subidos se guardarán con este ajuste de calidad [0-100]. Por defecto es 100, que es calidad máxima."; -$a->strings["Register policy"] = "Política de registros"; -$a->strings["Maximum Daily Registrations"] = "Registros Máximos Diarios"; -$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."] = "Si anteriormente se ha permitido el registro, esto establece el número máximo de registro de nuevos usuarios aceptados por día. Si el registro se establece como cerrado, esta opción no tiene efecto."; -$a->strings["Register text"] = "Términos"; -$a->strings["Will be displayed prominently on the registration page."] = "Se mostrará en un lugar destacado en la página de registro."; -$a->strings["Accounts abandoned after x days"] = "Cuentas abandonadas después de x días"; -$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "No gastará recursos del sistema creando sondeos a sitios externos para cuentas abandonadas. Introduce 0 para ningún límite temporal."; -$a->strings["Allowed friend domains"] = "Dominios amigos permitidos"; -$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Lista separada por comas de los dominios que están autorizados para establecer conexiones con este sitio. Se aceptan comodines. Dejar en blanco para permitir cualquier dominio"; -$a->strings["Allowed email domains"] = "Dominios de correo permitidos"; -$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Lista separada por comas de los dominios que están autorizados en las direcciones de correo para registrarse en este sitio. Se aceptan comodines. Dejar en blanco para permitir cualquier dominio"; -$a->strings["Block public"] = "Bloqueo público"; -$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Marca para bloquear el acceso público a todas las páginas personales, aún siendo públicas, hasta que no hayas iniciado tu sesión."; -$a->strings["Force publish"] = "Forzar publicación"; -$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Marca para forzar que todos los perfiles de este sitio sean listados en el directorio del sitio."; -$a->strings["Global directory URL"] = "URL del directorio global."; -$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL del directorio global. Si se deja este campo vacío, el directorio global sera completamente inaccesible para la instancia."; -$a->strings["Allow threaded items"] = "Permitir elementos en hilo"; -$a->strings["Allow infinite level threading for items on this site."] = "Permitir infinitos niveles de hilo para los elementos de este sitio."; -$a->strings["Private posts by default for new users"] = "Publicaciones privadas por defecto para usuarios nuevos"; -$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Ajusta los permisos de publicación por defecto a los miembros nuevos al grupo privado por defecto en vez del público."; -$a->strings["Don't include post content in email notifications"] = "No incluir el contenido del post en las notificaciones de correo electrónico"; -$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "No incluye el contenido de un mensaje/comentario/mensaje privado/etc. en las notificaciones de correo electrónico que se envían desde este sitio, como una medida de privacidad."; -$a->strings["Disallow public access to addons listed in the apps menu."] = "Deshabilitar acceso a addons listados en el menú de aplicaciones."; -$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Habilitando esta opción restringe el acceso a addons en el menú de aplicaciones a usuarios identificados."; -$a->strings["Don't embed private images in posts"] = "No agregar imágenes privados en las publicaciones"; -$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = "No reemplazar imágenes privadas guardadas localmente en el servidor con imágenes integrados en los envíos. Esto significa que contactos que reciben publicaciones tendrán que autenticarse y cargar cada imagen, lo que puede demorar."; -$a->strings["Allow Users to set remote_self"] = "Permitir a los usuarios de definir perfiles_remotos"; -$a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = "Al habilitar esta opción, cada perfil tiene el permiso de marcar cualquiera de sus contactos como un perfil_remoto. Habilitar la opción perfil_remoto para un contacto genera que todas las publicaciones de este contacto seran re-publicado en el muro del perfil."; -$a->strings["Block multiple registrations"] = "Bloquear registros multiples"; -$a->strings["Disallow users to register additional accounts for use as pages."] = "Impedir que los usuarios registren cuentas adicionales para su uso como páginas."; -$a->strings["OpenID support"] = "Soporte OpenID"; -$a->strings["OpenID support for registration and logins."] = "Soporte OpenID para registros y accesos."; -$a->strings["Fullname check"] = "Comprobar Nombre completo"; -$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Fuerza a los usuarios a registrarse con un espacio entre su nombre y su apellido en el campo Nombre completo como medida anti-spam"; -$a->strings["UTF-8 Regular expressions"] = "Expresiones regulares UTF-8"; -$a->strings["Use PHP UTF8 regular expressions"] = "Usar expresiones regulares de UTF8 en PHP"; -$a->strings["Community Page Style"] = "Estilo de pagina de comunidad"; -$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "Tipo de pagina de comunidad a visualizar. 'Comunidad global' muestra todas las publicaciones publicas de la red abierta federada que llega a este servidor."; -$a->strings["Posts per user on community page"] = "Publicaciones por usuario en la pagina de comunidad"; -$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "El numero máximo de publicaciones por usuario que aparecerán en la pagina de comunidad. (No valido para 'comunidad global')"; -$a->strings["Enable OStatus support"] = "Permitir soporte 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."] = "Proporcionar OStatus compatibilidad integrada (StatusNet, GNU Social, Quitter etc.). Todas las comunicaciones en OStatus son publicas así que eventuales advertencias serán ocasionalmente desplegadas."; -$a->strings["OStatus conversation completion interval"] = "Intervalo de actualización de conversaciones OStatus"; -$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "Cuan seguido el recolector deberá buscar nuevas entradas en OStatus? Esto puede ser un trabajo de mucha carga para los recursos del servidor."; -$a->strings["Only import OStatus threads from our contacts"] = "Solo importar OStatus temas de nuestros (?) contactos."; -$a->strings["Normally we import every content from our OStatus contacts. With this option we only store threads that are started by a contact that is known on our system."] = "Normalmente importamos todo el contenido de los contactos de OStatus. Con esta opción solamente se guardan temas que fueron iniciados por contactos que son conocidos de la instancia.\n(nota de traducción, no se entiende muy bien la función en base al texto original)"; -$a->strings["OStatus support can only be enabled if threading is enabled."] = "Solo se puede habilitar el soporte OStatus si threading (comentarios en fila) se encuentra habilitado."; -$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "El soporte para Diaspora* no se puede habilitar porque friendica se instalo en un directorio subalterno (sub directory)."; -$a->strings["Enable Diaspora support"] = "Habilitar el soporte para Diaspora*"; -$a->strings["Provide built-in Diaspora network compatibility."] = "Provee una compatibilidad con la red de Diaspora."; -$a->strings["Only allow Friendica contacts"] = "Permitir solo contactos de Friendica"; -$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Todos los contactos deben usar protocolos de Friendica. El resto de protocolos serán desactivados."; -$a->strings["Verify SSL"] = "Verificar SSL"; -$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Si quieres puedes activar la comprobación estricta de certificados. Esto significa que serás incapaz de conectar con ningún sitio que use certificados SSL autofirmados."; -$a->strings["Proxy user"] = "Usuario proxy"; -$a->strings["Proxy URL"] = "Dirección proxy"; -$a->strings["Network timeout"] = "Tiempo de espera de red"; -$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valor en segundos. Usar 0 para dejarlo sin límites (no se recomienda)."; -$a->strings["Maximum Load Average"] = "Promedio de carga máxima"; -$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carga máxima del sistema antes de que la entrega y los procesos de sondeo sean retrasados - por defecto 50."; -$a->strings["Maximum Load Average (Frontend)"] = "Carga máxima promedio (frontend)"; -$a->strings["Maximum system load before the frontend quits service - default 50."] = "Carga máxima del sistema antes de que el frontend cancele el servicio - por defecto 50."; -$a->strings["Maximum table size for optimization"] = "Tamaño máximo de las tablas para la optimización."; -$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = "Tamaño máximo de tablas (en MB) para la optimización automática - por defecto 100MB. Ingrese -1 para deshabilitar."; -$a->strings["Minimum level of fragmentation"] = "Nivel mínimo de fragmentación "; -$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = "Nivel mínimo de fragmentación para para comenzar la optimización - valor por defecto es 30%. "; -$a->strings["Periodical check of global contacts"] = "Verificación periódica de los contactos globales."; -$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "Habilitado los contactos globales son verificado periódicamente por datos faltantes o datos obsoletos como también por la vitalidad de los contactos y servidores."; -$a->strings["Days between requery"] = "Días entre búsquedas"; -$a->strings["Number of days after which a server is requeried for his contacts."] = "Cantidad de días hasta que un servidor es consultado por sus contactos."; -$a->strings["Discover contacts from other servers"] = "Descubrir contactos de otros servidores"; -$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'."] = "Recoger periódicamente información sobre perfiles en otros servidores. Puede elegir entre 'usuarios': perfiles de un sistema remoto, 'contactos globales': contactos activos que son conocidos por el servidor. El fallback es para servidors redmatrix y instalaciones viejas de friendica en las que los contactos no estaban a disposición. El fallback aumenta la carga del servidor, asi que la configuración recomendada es 'usuarios, contactos globales'"; -$a->strings["Timeframe for fetching global contacts"] = "Intervalos de tiempo para revisar contactos globales."; -$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."] = "Cuando la revisacion es activada, este valor define el intervalo de tiempo de la actividad de los contactos globales que son recolectados de los servidores. (?)"; -$a->strings["Search the local directory"] = "Buscar el directorio local"; -$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."] = "Buscar en el directorio local en vez del directorio global. Cuando se busca localmente, cada busqueda sera efectuada en el directorio global en el background. Esto mejora los resultados de la busqueda cuando la misma es repetida."; -$a->strings["Publish server information"] = "Publicar información del servidor"; -$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 habilitado, datos generales del servidor y estadisticas de uso serán publicados. Los datos contienen el nombre y la versión del servidor, numero de usuarios con perfiles públicos, cantidad de temas publicados y los protocolos y conectores activados. Vea the-federation.info por detalles."; -$a->strings["Use MySQL full text engine"] = "Usar motor MySQL de texto completo"; -$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Activa el motor de texto completo. Agiliza las búsquedas, pero solo busca cuatro o más caracteres."; -$a->strings["Suppress Tags"] = "Suprimir tags"; -$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "Suprimir la lista de tags al final de una publicación."; -$a->strings["Path to item cache"] = "Ruta a la caché del objeto"; -$a->strings["The item caches buffers generated bbcode and external images."] = "El buffer de cache de items generado para bbcodes e imágenes externas. "; -$a->strings["Cache duration in seconds"] = "Duración de la caché en segundos"; -$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "¿Por cuanto tiempo deberían los archives ser almacenados en el cache? Valor por defecto 86400 segundos (un día). Para deshabilita el item cache, ajuste el valor a -1."; -$a->strings["Maximum numbers of comments per post"] = "Numero máximo de respuestas por tema"; -$a->strings["How much comments should be shown for each post? Default value is 100."] = "¿Cuantos comentarios deberían ser mostrados por tema? Valor por defecto es 100."; -$a->strings["Temp path"] = "Ruta a los temporales"; -$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "Si tiene un sistema restringido en donde el servidor web no puede acceder la dirección del sistema temp, ingrese una dirección alternativa aquí. "; -$a->strings["Base path to installation"] = "Ruta base para la instalación"; -$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "Si el sistema no puede detectar el acceso correcto a la instalación, ingrese la dirección correcta aquí. Esta configuración solo debería utilizarse si si usa un sistema restringido y enlaces simbolicos a su webroot."; -$a->strings["Disable picture proxy"] = "Deshabilitar proxy de imagen"; -$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "El proxy de imagen mejora el performance y privacidad. No debería ser usado en sistemas con poco ancho de banda."; -$a->strings["Only search in tags"] = "Solo buscar en tags"; -$a->strings["On large systems the text search can slow down the system extremely."] = "En sistemas grandes, la búsqueda de texto puede enlentecer el sistema gravemente."; -$a->strings["New base url"] = "Nueva URLbase"; -$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = "Cambiar base URL para este servidor. Envía mensajes de relocalisación a todos los contactos DFRN."; -$a->strings["RINO Encryption"] = "Encryptado RINO"; -$a->strings["Encryption layer between nodes."] = "Capa de encryptación entre nodos."; -$a->strings["Embedly API key"] = "Embedly llave de API (API key) "; -$a->strings["Embedly is used to fetch additional data for web pages. This is an optional parameter."] = "Embedly es usado para recolectar datos adicionales para paginas web. Esto es un parámetro opcional."; -$a->strings["Maximum number of parallel workers"] = "Numero máximo de trabajos paralelos de fondo."; -$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = "Ajustar a 2 en un servidor compartido (shared hosting).\nEn sistemas grandes valores como 10 son excelentes.\nValor por defecto es 4."; -$a->strings["Don't use 'proc_open' with the worker"] = "No use 'proc_open' junto al \"trabajador\"!"; -$a->strings["Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosters. If this is enabled you should increase the frequency of poller calls in your crontab."] = "Habilite esta función si el sistema no permite el uso de 'proc_open'. Esto suelo suceder en servidores compartidos (shared hosting). Si esta función se habilita se debería incrementar la frecuencia de llamadas del poller (poller calls) en la pestaña de trabajos cron. (¡en el hosting?)"; -$a->strings["Enable fastlane"] = "Habilitar ascenso rápido"; -$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = "Cuando está habilitado, el mecanismo ascenso rápido inicia un trabajador adicional si los procesos de mayor prioridad son bloqueados por prcesos de menor prioridad."; -$a->strings["Enable frontend worker"] = "Habilitar trabajador de interfaz"; -$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = "Cuando está habilitado, el proceso de Trabajador se activa cuando se ejecuta el acceso de respaldo (ej. mensajes siendo entregados). En páginas más pequeñas usted puede querer llamar a yourdomain.tld/worker en una base regular mediante un trabajo cron externo. Sólo debería habilitar esta opción si no puede utilizar trabajos cron/scheduled en su servidor. El proceso de trabajador en segundo plano necesita ser activado para eso."; -$a->strings["Update has been marked successful"] = "La actualización se ha completado con éxito"; -$a->strings["Database structure update %s was successfully applied."] = "Actualización de base de datos %s fue aplicada con éxito."; -$a->strings["Executing of database structure update %s failed with error: %s"] = "El paso de actualización de la estructura de la base de datos %s fallo con el mensaje de error: %s"; -$a->strings["Executing %s failed with error: %s"] = "Paso %s fallo con el error: %s"; -$a->strings["Update %s was successfully applied."] = "Actualización %s aplicada con éxito."; -$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "La actualización %s no ha informado, se desconoce el estado."; -$a->strings["There was no additional update function %s that needed to be called."] = "No había función adicional de actualización %s que necesitaba ser requerida."; -$a->strings["No failed updates."] = "Actualizaciones sin fallos."; -$a->strings["Check database structure"] = "Revisar estructura de la base de datos"; -$a->strings["Failed Updates"] = "Actualizaciones fallidas"; -$a->strings["This does not include updates prior to 1139, which did not return a status."] = "No se incluyen las anteriores a la 1139, que no indicaban su estado."; -$a->strings["Mark success (if update was manually applied)"] = "Marcar como correcta (si actualizaste manualmente)"; -$a->strings["Attempt to execute this update step automatically"] = "Intentando ejecutar este paso automáticamente"; -$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "\n\t\t\tEstimado %1\$s,\n\t\t\t\tel administrador de %2\$s ha creado una cuenta para usted."; -$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = "\n\t\t\tLos detalles de acceso son las siguientes:\n\n\t\t\tDirección del sitio:\t%1\$s\n\t\t\tNombre de la cuenta:\t\t%2\$s\n\t\t\tContraseña:\t\t%3\$s\n\n\t\t\tPodrá cambiar la contraseña desde la pagina de configuración de su cuenta después de acceder a la misma\n\t\t\ten.\n\n\t\t\tPor favor tome unos minutos para revisar las opciones demás de la cuenta en dicha pagina de configuración.\n\n\t\t\tTambién podrá agregar informaciones adicionales a su pagina de perfil predeterminado. \n\t\t\t(en la pagina \"Perfiles\") para que otras personas pueden encontrarlo fácilmente.\n\n\t\t\tRecomendamos que elija un nombre apropiado, agregando una imagen de perfil,\n\t\t\tagregando algunas palabras claves de la cuenta (muy útil para hacer nuevos amigos) - y \n\t\t\tquizás el país en donde vive; si no quiere ser mas especifico\n\t\t\tque eso.\n\n\t\t\tRespetamos absolutamente su derecho a la privacidad y ninguno de estos detalles es necesario.\n\t\t\tSi eres nuevo aquí y no conoces a nadie, estos detalles pueden ayudarte\n\t\t\tpara hacer nuevas e interesantes amistades.\n\n\t\t\tGracias y bienvenido a %4\$s."; -$a->strings["%s user blocked/unblocked"] = array( - 0 => "%s usuario bloqueado/desbloqueado", - 1 => "%s usuarios bloqueados/desbloqueados", -); -$a->strings["%s user deleted"] = array( - 0 => "%s usuario eliminado", - 1 => "%s usuarios eliminados", -); -$a->strings["User '%s' deleted"] = "Usuario '%s' eliminado"; -$a->strings["User '%s' unblocked"] = "Usuario '%s' desbloqueado"; -$a->strings["User '%s' blocked"] = "Usuario '%s' bloqueado'"; -$a->strings["Name"] = "Nombre"; -$a->strings["Register date"] = "Fecha de registro"; -$a->strings["Last login"] = "Último acceso"; -$a->strings["Last item"] = "Último elemento"; -$a->strings["Account"] = "Cuenta"; -$a->strings["Add User"] = "Agregar usuario"; -$a->strings["select all"] = "seleccionar todo"; -$a->strings["User registrations waiting for confirm"] = "Registro de usuarios esperando confirmación"; -$a->strings["User waiting for permanent deletion"] = "Usuario esperando anulación permanente."; -$a->strings["Request date"] = "Solicitud de fecha"; -$a->strings["No registrations."] = "Sin registros."; -$a->strings["Note from the user"] = "Nota para el usuario"; -$a->strings["Approve"] = "Aprobar"; -$a->strings["Deny"] = "Denegado"; -$a->strings["Block"] = "Bloquear"; -$a->strings["Unblock"] = "Desbloquear"; -$a->strings["Site admin"] = "Administrador de la web"; -$a->strings["Account expired"] = "Cuenta caducada"; -$a->strings["New User"] = "Nuevo usuario"; -$a->strings["Deleted since"] = "Borrado desde"; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "¡Los usuarios seleccionados serán eliminados!\\n\\n¡Todo lo que hayan publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?"; -$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "¡El usuario {0} será eliminado!\\n\\n¡Todo lo que haya publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?"; -$a->strings["Name of the new user."] = "Nombre del nuevo usuario"; -$a->strings["Nickname"] = "Apodo"; -$a->strings["Nickname of the new user."] = "Apodo del nuevo perfil."; -$a->strings["Email address of the new user."] = "Dirección de correo del nuevo perfil."; -$a->strings["Plugin %s disabled."] = "Módulo %s deshabilitado."; -$a->strings["Plugin %s enabled."] = "Módulo %s habilitado."; -$a->strings["Disable"] = "Desactivado"; -$a->strings["Enable"] = "Activado"; -$a->strings["Toggle"] = "Activar"; -$a->strings["Author: "] = "Autor:"; -$a->strings["Maintainer: "] = "Mantenedor: "; -$a->strings["Reload active plugins"] = "Recargar plugins activos"; -$a->strings["There are currently no plugins available on your node. You can find the official plugin repository at %1\$s and might find other interesting plugins in the open plugin registry at %2\$s"] = "No ay plugins habilitados en este nodo. Encontrara los repositorios oficiales de plugins en %1\$s y posiblemente encontrara mas plugins interesantes en el registro abierto de plugins aquí %2\$s ."; -$a->strings["No themes found."] = "No se encontraron temas."; -$a->strings["Screenshot"] = "Captura de pantalla"; -$a->strings["Reload active themes"] = "Recargar interfaces de usuario activos"; -$a->strings["No themes found on the system. They should be paced in %1\$s"] = "No se encuentran interfaces en el sistema. Deberían estar localizados (paced) en %1\$s"; -$a->strings["[Experimental]"] = "[Experimental]"; -$a->strings["[Unsupported]"] = "[Sin soporte]"; -$a->strings["Log settings updated."] = "Configuración de registro actualizada."; -$a->strings["PHP log currently enabled."] = "Registro PHP actualmente disponible."; -$a->strings["PHP log currently disabled."] = "Registro PHP actualmente deshabilitado."; -$a->strings["Clear"] = "Limpiar"; -$a->strings["Enable Debugging"] = "Habilitar debugging"; -$a->strings["Log file"] = "Archivo de registro"; -$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Debes tener permiso de escritura en el servidor. Relacionado con tu directorio de inicio de Friendica."; -$a->strings["Log level"] = "Nivel de registro"; -$a->strings["PHP logging"] = "PHP logging"; -$a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = "Para habilitar la documentación de los errores PHP y las advertencias se puede agregar lo siguiente al archivo .htconfig.php de la instalación (ftp). La dirección definido en el 'error_log' es relativo al directorio friendica principal (top-level directory) y debe de ser habilitado para la escritura por el servidor web. La opción '1' para 'log_errors' y 'display_errors' es para habilitar estas opciones, '0' para deshabilitarlo."; -$a->strings["Off"] = "Apagado"; -$a->strings["On"] = "Encendido"; -$a->strings["Lock feature %s"] = "Trancar opción %s "; -$a->strings["Manage Additional Features"] = "Administrar opciones adicionales"; $a->strings["No friends to display."] = "No hay amigos para mostrar."; $a->strings["Authorize application connection"] = "Autorizar la conexión de la aplicación"; $a->strings["Return to your app and insert this Securty Code:"] = "Regresa a tu aplicación e introduce este código de seguridad:"; $a->strings["Please login to continue."] = "Inicia sesión para continuar."; $a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "¿Quieres autorizar a esta aplicación el acceso a tus mensajes y contactos, y/o crear nuevas publicaciones para ti?"; $a->strings["No"] = "No"; +$a->strings["You must be logged in to use addons. "] = "Tienes que estar registrado para tener acceso a los accesorios."; $a->strings["Applications"] = "Aplicaciones"; $a->strings["No installed applications."] = "Sin aplicaciones"; $a->strings["Item not available."] = "Elemento no disponible."; @@ -1074,94 +766,6 @@ $a->strings["Common Friends"] = "Amigos comunes"; $a->strings["Public access denied."] = "Acceso público denegado."; $a->strings["Not available."] = "No disponible"; $a->strings["No results."] = "Sin resultados."; -$a->strings["%d contact edited."] = array( - 0 => "%d contacto editado.", - 1 => "%d contacts edited.", -); -$a->strings["Could not access contact record."] = "No se pudo acceder a los datos del contacto."; -$a->strings["Could not locate selected profile."] = "No se pudo encontrar el perfil seleccionado."; -$a->strings["Contact updated."] = "Contacto actualizado."; -$a->strings["Failed to update contact record."] = "Error al actualizar el contacto."; -$a->strings["Contact has been blocked"] = "El contacto ha sido bloqueado"; -$a->strings["Contact has been unblocked"] = "El contacto ha sido desbloqueado"; -$a->strings["Contact has been ignored"] = "El contacto ha sido ignorado"; -$a->strings["Contact has been unignored"] = "El contacto ya no está ignorado"; -$a->strings["Contact has been archived"] = "El contacto ha sido archivado"; -$a->strings["Contact has been unarchived"] = "El contacto ya no está archivado"; -$a->strings["Drop contact"] = "Eliminar contacto"; -$a->strings["Do you really want to delete this contact?"] = "¿Estás seguro de que quieres eliminar este contacto?"; -$a->strings["Contact has been removed."] = "El contacto ha sido eliminado"; -$a->strings["You are mutual friends with %s"] = "Ahora tienes una amistad mutua con %s"; -$a->strings["You are sharing with %s"] = "Estás compartiendo con %s"; -$a->strings["%s is sharing with you"] = "%s está compartiendo contigo"; -$a->strings["Private communications are not available for this contact."] = "Las comunicaciones privadas no está disponibles para este contacto."; -$a->strings["(Update was successful)"] = "(La actualización se ha completado)"; -$a->strings["(Update was not successful)"] = "(La actualización no se ha completado)"; -$a->strings["Suggest friends"] = "Sugerir amigos"; -$a->strings["Network type: %s"] = "Tipo de red: %s"; -$a->strings["Communications lost with this contact!"] = "¡Se ha perdido la comunicación con este contacto!"; -$a->strings["Fetch further information for feeds"] = "Recaudar informacion complementaria de los feeds"; -$a->strings["Fetch information"] = "Recaudar informacion"; -$a->strings["Fetch information and keywords"] = "Recaudar informacion y palabras claves"; -$a->strings["Contact"] = "Contacto"; -$a->strings["Submit"] = "Envíar"; -$a->strings["Profile Visibility"] = "Visibilidad del Perfil"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, selecciona el perfil que quieras mostrar a %s cuando esté viendo tu perfil de forma segura."; -$a->strings["Contact Information / Notes"] = "Información del Contacto / Notas"; -$a->strings["Edit contact notes"] = "Editar notas del contacto"; -$a->strings["Visit %s's profile [%s]"] = "Ver el perfil de %s [%s]"; -$a->strings["Block/Unblock contact"] = "Boquear/Desbloquear contacto"; -$a->strings["Ignore contact"] = "Ignorar contacto"; -$a->strings["Repair URL settings"] = "Configuración de reparación de la dirección"; -$a->strings["View conversations"] = "Ver conversaciones"; -$a->strings["Last update:"] = "Última actualización:"; -$a->strings["Update public posts"] = "Actualizar publicaciones públicas"; -$a->strings["Update now"] = "Actualizar ahora"; -$a->strings["Unignore"] = "Quitar de Ignorados"; -$a->strings["Ignore"] = "Ignorar"; -$a->strings["Currently blocked"] = "Bloqueados"; -$a->strings["Currently ignored"] = "Ignorados"; -$a->strings["Currently archived"] = "Archivados"; -$a->strings["Hide this contact from others"] = "Ocultar este contacto a los demás."; -$a->strings["Replies/likes to your public posts may still be visible"] = "Los comentarios o \"me gusta\" en tus publicaciones públicas todavía pueden ser visibles."; -$a->strings["Notification for new posts"] = "Notificacion de nuevos temas."; -$a->strings["Send a notification of every new post of this contact"] = "Enviar una notificacion por nuevos temas de este contacto."; -$a->strings["Blacklisted keywords"] = "Lista negra de palabras"; -$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Lista separada por comas de palabras claves que no deberian ser convertido en #hashtags cuando \"Recaudar informacion y palabras claves\" es seleccionado"; -$a->strings["Profile URL"] = "URL Perfil"; -$a->strings["Actions"] = "Acciones"; -$a->strings["Contact Settings"] = "Ajustes del contacto"; -$a->strings["Suggestions"] = "Sugerencias"; -$a->strings["Suggest potential friends"] = "Amistades potenciales sugeridas"; -$a->strings["All Contacts"] = "Todos los contactos"; -$a->strings["Show all contacts"] = "Mostrar todos los contactos"; -$a->strings["Unblocked"] = "Desbloqueados"; -$a->strings["Only show unblocked contacts"] = "Mostrar solo contactos sin bloquear"; -$a->strings["Blocked"] = "Bloqueados"; -$a->strings["Only show blocked contacts"] = "Mostrar solo contactos bloqueados"; -$a->strings["Ignored"] = "Ignorados"; -$a->strings["Only show ignored contacts"] = "Mostrar solo contactos ignorados"; -$a->strings["Archived"] = "Archivados"; -$a->strings["Only show archived contacts"] = "Mostrar solo contactos archivados"; -$a->strings["Hidden"] = "Ocultos"; -$a->strings["Only show hidden contacts"] = "Mostrar solo contactos ocultos"; -$a->strings["Search your contacts"] = "Buscar en tus contactos"; -$a->strings["Results for: %s"] = "Resultados para: %s"; -$a->strings["Update"] = "Actualizar"; -$a->strings["Archive"] = "Archivo"; -$a->strings["Unarchive"] = "Sin archivar"; -$a->strings["Batch Actions"] = "Accones en lote"; -$a->strings["View all contacts"] = "Ver todos los contactos"; -$a->strings["View all common friends"] = "Ver todos los conocidos en común "; -$a->strings["Advanced Contact Settings"] = "Configuración avanzada"; -$a->strings["Mutual Friendship"] = "Amistad recíproca"; -$a->strings["is a fan of yours"] = "es tu fan"; -$a->strings["you are a fan of"] = "eres fan de"; -$a->strings["Edit contact"] = "Modificar contacto"; -$a->strings["Toggle Blocked status"] = "Cambiar bloqueados"; -$a->strings["Toggle Ignored status"] = "Cambiar ignorados"; -$a->strings["Toggle Archive status"] = "Cambiar archivados"; -$a->strings["Delete contact"] = "Eliminar contacto"; $a->strings["No such group"] = "Ningún grupo"; $a->strings["Group is empty"] = "El grupo está vacío"; $a->strings["Group: %s"] = "Grupo: %s"; @@ -1179,6 +783,7 @@ $a->strings["Share this"] = "Compartir esto"; $a->strings["share"] = "compartir"; $a->strings["This is you"] = "Este eres tú"; $a->strings["Comment"] = "Comentar"; +$a->strings["Submit"] = "Envíar"; $a->strings["Bold"] = "Negrita"; $a->strings["Italic"] = "Cursiva"; $a->strings["Underline"] = "Subrayado"; @@ -1219,6 +824,7 @@ $a->strings["Refetch contact data"] = "Volver a solicitar datos del contacto."; $a->strings["Remote Self"] = "Perfil remoto"; $a->strings["Mirror postings from this contact"] = "Espejar publicaciones de este contacto"; $a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Marcar este contacto como perfil_remoto, esto generara que friendica reenvía nuevas publicaciones desde esta cuenta."; +$a->strings["Name"] = "Nombre"; $a->strings["Account Nickname"] = "Apodo de la cuenta"; $a->strings["@Tagname - overrides Name/Nickname"] = "@Etiqueta - Sobrescribe el Nombre/Apodo"; $a->strings["Account URL"] = "Dirección de la cuenta"; @@ -1254,45 +860,6 @@ $a->strings["Unable to set your contact credentials on our system."] = "No se pu $a->strings["Unable to update your contact profile details on our system"] = "No se puede actualizar los datos de tu perfil de contacto en nuestro sistema"; $a->strings["%1\$s has joined %2\$s"] = "%1\$s se ha unido a %2\$s"; $a->strings["%1\$s welcomes %2\$s"] = "%1\$s te da la bienvenida a %2\$s"; -$a->strings["This introduction has already been accepted."] = "Esta presentación ya ha sido aceptada."; -$a->strings["Profile location is not valid or does not contain profile information."] = "La dirección del perfil no es válida o no contiene información del perfil."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Aviso: La dirección del perfil no tiene un nombre de propietario identificable."; -$a->strings["Warning: profile location has no profile photo."] = "Aviso: la dirección del perfil no tiene foto de perfil."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "no se encontró %d parámetro requerido en el lugar determinado", - 1 => "no se encontraron %d parámetros requeridos en el lugar determinado", -); -$a->strings["Introduction complete."] = "Presentación completa."; -$a->strings["Unrecoverable protocol error."] = "Error de protocolo irrecuperable."; -$a->strings["Profile unavailable."] = "Perfil no disponible."; -$a->strings["%s has received too many connection requests today."] = "%s ha recibido demasiadas solicitudes de conexión hoy."; -$a->strings["Spam protection measures have been invoked."] = "Han sido activadas las medidas de protección contra spam."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Tus amigos serán avisados para que lo intenten de nuevo pasadas 24 horas."; -$a->strings["Invalid locator"] = "Localizador no válido"; -$a->strings["Invalid email address."] = "Dirección de correo incorrecta"; -$a->strings["This account has not been configured for email. Request failed."] = "Esta cuenta no ha sido configurada para el correo. Fallo de solicitud."; -$a->strings["You have already introduced yourself here."] = "Ya te has presentado aquí."; -$a->strings["Apparently you are already friends with %s."] = "Al parecer, ya eres amigo de %s."; -$a->strings["Invalid profile URL."] = "Dirección de perfil no válida."; -$a->strings["Your introduction has been sent."] = "Tu presentación ha sido enviada."; -$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "La subscripción remota no se podrá hacer para tu red. Por favor contacta directamente desde tu sistema."; -$a->strings["Please login to confirm introduction."] = "Inicia sesión para confirmar la presentación."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Sesión iniciada con la identificación incorrecta. Entra en este perfil."; -$a->strings["Confirm"] = "Confirmar"; -$a->strings["Hide this contact"] = "Ocultar este contacto"; -$a->strings["Welcome home %s."] = "Bienvenido a casa %s"; -$a->strings["Please confirm your introduction/connection request to %s."] = "Por favor, confirma tu solicitud de presentación/conexión con %s."; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Por favor introduce tu dirección ID de una de las siguientes redes sociales soportadas:"; -$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 aun no eres miembro de la red social libre seguí este enlace para encontrara un sitio disponible de friendica y acompañanos hoy mismo"; -$a->strings["Friend/Connection Request"] = "Solicitud de Amistad/Conexión"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Ejemplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; -$a->strings["Please answer the following:"] = "Por favor responde lo siguiente:"; -$a->strings["Does %s know you?"] = "¿%s te conoce?"; -$a->strings["Add a personal note:"] = "Añade una nota personal:"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Web Social Federada"; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "(En vez de usar este formulario, introduce %s en la barra de búsqueda de Diaspora."; -$a->strings["Your Identity Address:"] = "Dirección de tu perfil:"; -$a->strings["Submit Request"] = "Enviar solicitud"; $a->strings["Global Directory"] = "Directorio global"; $a->strings["Find on this site"] = "Buscar en este sitio"; $a->strings["Results for:"] = "Resultados para:"; @@ -1317,12 +884,21 @@ $a->strings["Adjust for viewer timezone"] = "Ajuste de zona horaria"; $a->strings["Description:"] = "Descripción:"; $a->strings["Title:"] = "Título:"; $a->strings["Share this event"] = "Comparte este evento"; +$a->strings["Failed to remove event"] = ""; +$a->strings["Event removed"] = ""; $a->strings["Files"] = "Archivos"; +$a->strings["Not Found"] = "No se ha encontrado"; $a->strings["- select -"] = "- seleccionar -"; +$a->strings["Submit Request"] = "Enviar solicitud"; $a->strings["You already added this contact."] = "Ya has añadido este contacto."; $a->strings["Diaspora support isn't enabled. Contact can't be added."] = "El soporte de Diaspora* no esta habilitado, el contacto no puede ser agregado."; $a->strings["OStatus support is disabled. Contact can't be added."] = "El soporte de OStatus no esta habilitado, el contacto no puede ser agregado."; $a->strings["The network type couldn't be detected. Contact can't be added."] = "No se pudo detectar el tipo de red. Contacto no puede ser agregado."; +$a->strings["Please answer the following:"] = "Por favor responde lo siguiente:"; +$a->strings["Does %s know you?"] = "¿%s te conoce?"; +$a->strings["Add a personal note:"] = "Añade una nota personal:"; +$a->strings["Your Identity Address:"] = "Dirección de tu perfil:"; +$a->strings["Profile URL"] = "URL Perfil"; $a->strings["Contact added"] = "Contacto añadido"; $a->strings["This is Friendica, version"] = "Esto es Friendica, versión"; $a->strings["running at web location"] = "ejecutándose en la dirección web"; @@ -1332,6 +908,8 @@ $a->strings["the bugtracker at github"] = "aviso de fallas (bugs) en github"; $a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Sugerencias, elogios, donaciones, etc. por favor manda un correo a Info arroba Friendica punto com"; $a->strings["Installed plugins/addons/apps:"] = "Módulos/extensiones/aplicaciones instalados:"; $a->strings["No installed plugins/addons/apps"] = "Módulos/extensiones/aplicaciones no instalados"; +$a->strings["On this server the following remote servers are blocked."] = ""; +$a->strings["Reason for the block"] = ""; $a->strings["Friend suggestion sent."] = "Solicitud de amistad enviada."; $a->strings["Suggest Friends"] = "Sugerencias de amistad"; $a->strings["Suggest a friend for %s"] = "Recomienda un amigo a %s"; @@ -1339,15 +917,22 @@ $a->strings["Group created."] = "Grupo creado."; $a->strings["Could not create group."] = "Imposible crear el grupo."; $a->strings["Group not found."] = "Grupo no encontrado."; $a->strings["Group name changed."] = "El nombre del grupo ha cambiado."; +$a->strings["Permission denied"] = "Permiso denegado"; $a->strings["Save Group"] = "Guardar grupo"; $a->strings["Create a group of contacts/friends."] = "Crea un grupo de contactos/amigos."; $a->strings["Group removed."] = "Grupo eliminado."; $a->strings["Unable to remove group."] = "No se puede eliminar el grupo."; +$a->strings["Delete Group"] = ""; $a->strings["Group Editor"] = "Editor de grupos"; +$a->strings["Edit Group Name"] = ""; $a->strings["Members"] = "Miembros"; +$a->strings["All Contacts"] = "Todos los contactos"; +$a->strings["Remove Contact"] = ""; +$a->strings["Add Contact"] = ""; $a->strings["Click on a contact to add or remove."] = "Pulsa en un contacto para añadirlo o eliminarlo."; $a->strings["No profile"] = "Nigún perfil"; $a->strings["Help:"] = "Ayuda:"; +$a->strings["Page not found."] = "Página no encontrada."; $a->strings["Welcome to %s"] = "Bienvenido a %s"; $a->strings["Friendica Communications Server - Setup"] = "Servidor de comunicación Friendica - Configuración"; $a->strings["Could not connect to database."] = "No es posible la conexión con la base de datos."; @@ -1374,7 +959,7 @@ $a->strings["Site settings"] = "Configuración de la página web"; $a->strings["System Language:"] = "Sistema de idioma:"; $a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Seleccione el idioma por defecto para su interfaz de instalación de Friendica y para enviar emails."; $a->strings["Could not find a command line version of PHP in the web server PATH."] = "No se pudo encontrar una versión de la línea de comandos de PHP en la ruta del servidor web."; -$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Setup the poller'"] = "Si no tienes una versión de command line de php installado en el servidor, no sera posible de efectuar polling como trabajo de fondo a traves de cron. Vea 'Setup the poller'"; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run the background processing. See 'Setup the poller'"] = ""; $a->strings["PHP executable path"] = "Dirección al ejecutable PHP"; $a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Introduce la ruta completa al ejecutable php. Puedes dejarlo en blanco y seguir con la instalación."; $a->strings["Command line PHP"] = "Línea de comandos PHP"; @@ -1390,9 +975,8 @@ $a->strings["Generate encryption keys"] = "Generar claves de encriptación"; $a->strings["libCurl PHP module"] = "Módulo PHP libCurl"; $a->strings["GD graphics PHP module"] = "Módulo PHP gráficos GD"; $a->strings["OpenSSL PHP module"] = "Módulo PHP OpenSSL"; -$a->strings["mysqli PHP module"] = "Módulo PHP mysqli"; +$a->strings["PDO or MySQLi PHP module"] = ""; $a->strings["mb_string PHP module"] = "Módulo PHP mb_string"; -$a->strings["mcrypt PHP module"] = "modulo mycrypt PHP"; $a->strings["XML PHP module"] = "Módulo XML PHP"; $a->strings["iconv module"] = "Módulo iconv"; $a->strings["Apache mod_rewrite module"] = "Módulo mod_rewrite de Apache"; @@ -1400,13 +984,10 @@ $a->strings["Error: Apache webserver mod-rewrite module is required but not inst $a->strings["Error: libCURL PHP module required but not installed."] = "Error: El módulo de PHP libcurl es necesario, pero no está instalado."; $a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: El módulo de de PHP gráficos GD con soporte JPEG es necesario, pero no está instalado."; $a->strings["Error: openssl PHP module required but not installed."] = "Error: El módulo de PHP openssl es necesario, pero no está instalado."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Error: El módulo de PHP mysqli es necesario, pero no está instalado."; +$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = ""; +$a->strings["Error: The MySQL driver for PDO is not installed."] = ""; $a->strings["Error: mb_string PHP module required but not installed."] = "Error: El módulo de PHP mb_string es necesario, pero no está instalado."; -$a->strings["Error: mcrypt PHP module required but not installed."] = "Error: modulo mycrypt PHP requerido pero no instalado."; $a->strings["Error: iconv PHP module required but not installed."] = "Error: módulo iconv PHP requerido pero no instalado."; -$a->strings["If you are using php_cli, please make sure that mcrypt module is enabled in its config file"] = "Si está utilizando php_cli, por favor asegúrese de que el módulo mcrypt está habilitado en este archivo de configuración"; -$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = "Función mycrypt_create_iv() no esta definido. Esto es preciso para habilitar RINO2 encryption layer."; -$a->strings["mcrypt_create_iv() function"] = "mcrypt_create_iv() función"; $a->strings["Error, XML PHP module required but not installed."] = "Error, módulo XML PHP requerido pero no instalado."; $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."] = "El programa de instalación web necesita ser capaz de crear un archivo llamado \".htconfig.php\" en la carpeta principal de tu servidor web y es incapaz de hacerlo."; $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."] = "Se trata a menudo de una configuración de permisos, pues el servidor web puede que no sea capaz de escribir archivos en la carpeta, aunque tú sí puedas."; @@ -1447,13 +1028,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"] = "Tienes que proporcionar el siguiente código: \$invite_code"; $a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una vez registrado, por favor contacta conmigo a través de mi página de perfil en:"; $a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Para más información sobre el Proyecto Friendica y sobre por qué pensamos que es algo importante, visita http://friendica.com"; -$a->strings["Unable to locate original post."] = "No se puede encontrar la publicación original."; -$a->strings["Empty post discarded."] = "Publicación vacía descartada."; -$a->strings["System error. Post not saved."] = "Error del sistema. Mensaje no guardado."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Este mensaje te lo ha enviado %s, miembro de la red social Friendica."; -$a->strings["You may visit them online at %s"] = "Los puedes visitar en línea en %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Por favor contacta con el remitente respondiendo a este mensaje si no deseas recibir estos mensajes."; -$a->strings["%s posted an update."] = "%s ha publicado una actualización."; $a->strings["Time Conversion"] = "Conversión horária"; $a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica ofrece este servicio para compartir eventos con otros servidores de la red friendica y amigos en zonas de horarios desconocidos."; $a->strings["UTC time: %s"] = "Tiempo UTC: %s"; @@ -1468,6 +1042,7 @@ $a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s $a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\n\t\tSiga este enlace para verificar su identidad:\n\n\t\t%1\$s\n\n\t\tA continuación recibirá un mensaje consecutivo conteniendo la nueva contraseña.\n\t\tPodrá cambiar la contraseña después de haber accedido a la cuenta.\n\n\t\tLos detalles del acceso son las siguientes:\n\n\t\tDirección del sitio:\t%2\$s\n\t\tNombre de la cuenta:\t%3\$s"; $a->strings["Password reset requested at %s"] = "Contraseña restablecida enviada a %s"; $a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La solicitud no puede ser verificada (deberías haberla proporcionado antes). Falló el restablecimiento de la contraseña."; +$a->strings["Password Reset"] = "Restablecer la contraseña"; $a->strings["Your password has been reset as requested."] = "Tu contraseña ha sido restablecida como solicitaste."; $a->strings["Your new password is"] = "Tu nueva contraseña es"; $a->strings["Save or copy your new password - and then"] = "Guarda o copia tu nueva contraseña y luego"; @@ -1478,6 +1053,7 @@ $a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Locati $a->strings["Your password has been changed at %s"] = "Tu contraseña se ha cambiado por %s"; $a->strings["Forgot your Password?"] = "¿Olvidaste tu contraseña?"; $a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Introduce tu correo para restablecer tu contraseña. Luego comprueba tu correo para las instrucciones adicionales."; +$a->strings["Nickname or Email: "] = "Apodo o Correo electrónico: "; $a->strings["Reset"] = "Restablecer"; $a->strings["System down for maintenance"] = "Servicio suspendido por mantenimiento"; $a->strings["Manage Identities and/or Pages"] = "Administrar identidades y/o páginas"; @@ -1513,6 +1089,7 @@ $a->strings["%d message"] = array( ); $a->strings["Mood"] = "Ánimo"; $a->strings["Set your current mood and tell your friends"] = "Coloca tu ánimo actual y cuéntaselo a tus amigos"; +$a->strings["Results for: %s"] = "Resultados para: %s"; $a->strings["Remove term"] = "Eliminar término"; $a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array( 0 => "Aviso: Este grupo contiene %s miembro de una red que no permite mensajes públicos.", @@ -1563,9 +1140,12 @@ $a->strings["Friendica respects your privacy. By default, your posts will only s $a->strings["Getting Help"] = "Consiguiendo ayuda"; $a->strings["Go to the Help Section"] = "Ir a la sección de ayuda"; $a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Puedes consultar nuestra página de Ayuda para más información y recursos de ayuda."; +$a->strings["Visit %s's profile [%s]"] = "Ver el perfil de %s [%s]"; +$a->strings["Edit contact"] = "Modificar contacto"; $a->strings["Contacts who are not members of a group"] = "Contactos sin grupo"; $a->strings["Invalid request identifier."] = "Solicitud de identificación no válida."; $a->strings["Discard"] = "Descartar"; +$a->strings["Ignore"] = "Ignorar"; $a->strings["Network Notifications"] = "Notificaciones de Red"; $a->strings["System Notifications"] = "Notificaciones del sistema"; $a->strings["Personal Notifications"] = "Notificaciones personales"; @@ -1574,8 +1154,10 @@ $a->strings["Show Ignored Requests"] = "Mostrar peticiones ignoradas"; $a->strings["Hide Ignored Requests"] = "Ocultar peticiones ignoradas"; $a->strings["Notification type: "] = "Tipo de notificación: "; $a->strings["suggested by %s"] = "sugerido por %s"; +$a->strings["Hide this contact from others"] = "Ocultar este contacto a los demás."; $a->strings["Post a new friend activity"] = "Publica tu nueva amistad"; $a->strings["if applicable"] = "Si corresponde"; +$a->strings["Approve"] = "Aprobar"; $a->strings["Claims to be known to you: "] = "Dice conocerte: "; $a->strings["yes"] = "sí"; $a->strings["no"] = "no"; @@ -1661,6 +1243,507 @@ $a->strings["Recipient"] = "Receptor"; $a->strings["Choose what you wish to do to recipient"] = "Elige qué desea hacer con el receptor"; $a->strings["Make this post private"] = "Hacer esta publicación privada"; $a->strings["Tips for New Members"] = "Consejos para nuevos miembros"; +$a->strings["Invalid profile identifier."] = "Identificador de perfil no válido."; +$a->strings["Profile Visibility Editor"] = "Editor de visibilidad del perfil"; +$a->strings["Visible To"] = "Visible para"; +$a->strings["All Contacts (with secure profile access)"] = "Todos los contactos (con perfil de acceso seguro)"; +$a->strings["Registration successful. Please check your email for further instructions."] = "Te has registrado con éxito. Por favor, consulta tu correo para más información."; +$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Error al intentar de enviar mensaje de correo. Aquí los detalles de su cuenta:
login: %s
contraseña: %s

Puede cambiar su contraseña después de ingresar al sitio."; +$a->strings["Registration successful."] = "Registro exitoso."; +$a->strings["Your registration can not be processed."] = "Tu registro no se puede procesar."; +$a->strings["Your registration is pending approval by the site owner."] = "Tu registro está pendiente de aprobación por el propietario del sitio."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este sitio ha excedido el número de registros diarios permitidos. Inténtalo de nuevo mañana por favor."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Puedes (opcionalmente) rellenar este formulario a través de OpenID escribiendo tu OpenID y pulsando en \"Registrar\"."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Si no estás familiarizado con OpenID, por favor deja ese campo en blanco y rellena el resto de los elementos."; +$a->strings["Your OpenID (optional): "] = "Tu OpenID (opcional):"; +$a->strings["Include your profile in member directory?"] = "¿Incluir tu perfil en el directorio de miembros?"; +$a->strings["Note for the admin"] = "Nota para el administrador"; +$a->strings["Leave a message for the admin, why you want to join this node"] = "Deje un mensaje para el administrador sobre por qué quiere unirse a este nodo"; +$a->strings["Membership on this site is by invitation only."] = "Sitio solo accesible mediante invitación."; +$a->strings["Your invitation ID: "] = "ID de tu invitación: "; +$a->strings["Registration"] = "Registro"; +$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Nombre completo (ej. Joe Smith, real o real aparente):"; +$a->strings["Your Email Address: "] = "Tu dirección de correo: "; +$a->strings["New Password:"] = "Contraseña nueva:"; +$a->strings["Leave empty for an auto generated password."] = "Dejar vacío para autogenerar una contraseña"; +$a->strings["Confirm:"] = "Confirmar:"; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Elije un apodo. Debe comenzar con una letra. Tu dirección de perfil en este sitio va a ser \"apodo@\$nombredelsitio\"."; +$a->strings["Choose a nickname: "] = "Escoge un apodo: "; +$a->strings["Import"] = "Importar"; +$a->strings["Import your profile to this friendica instance"] = "Importar tu perfil a esta instancia de friendica"; +$a->strings["Remove My Account"] = "Eliminar mi cuenta"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Esto eliminará por completo tu cuenta. Una vez hecho no se puede deshacer."; +$a->strings["Please enter your password for verification:"] = "Por favor, introduce tu contraseña para la verificación:"; +$a->strings["Resubscribing to OStatus contacts"] = "Resubscribir a contactos de OStatus"; +$a->strings["Error"] = "error"; +$a->strings["Only logged in users are permitted to perform a search."] = "Solo usuarios activos tienen permiso para ejecutar búsquedas."; +$a->strings["Too Many Requests"] = "Demasiadas consultas"; +$a->strings["Only one search per minute is permitted for not logged in users."] = "Se permite solo una búsqueda por minuto para usuarios no identificados."; +$a->strings["Items tagged with: %s"] = "Objetos taggeado con: %s"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está siguiendo las %3\$s de %2\$s"; +$a->strings["Do you really want to delete this suggestion?"] = "¿Estás seguro de que quieres borrar esta sugerencia?"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No hay sugerencias disponibles. Si el sitio web es nuevo inténtalo de nuevo dentro de 24 horas."; +$a->strings["Ignore/Hide"] = "Ignorar/Ocultar"; +$a->strings["Tag removed"] = "Etiqueta eliminada"; +$a->strings["Remove Item Tag"] = "Eliminar etiqueta"; +$a->strings["Select a tag to remove: "] = "Selecciona una etiqueta para eliminar: "; +$a->strings["Export account"] = "Exportar cuenta"; +$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."] = "Exporta la información de tu cuenta y tus contactos. Úsalo para guardar una copia de seguridad de tu cuenta y/o moverla a otro servidor."; +$a->strings["Export all"] = "Exportar todo"; +$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)"] = "Exporta la información de tu cuenta, contactos y lo demás en JSON. Puede ser un archivo bastante grande, por lo que llevará tiempo. Úsalo para hacer una copia de seguridad completa de tu cuenta (las fotos no se exportarán)"; +$a->strings["Export personal data"] = "Exportación de datos personales"; +$a->strings["[Embedded content - reload page to view]"] = "[Contenido incrustado - recarga la página para verlo]"; +$a->strings["Do you really want to delete this video?"] = "Realmente quieres eliminar este vídeo?"; +$a->strings["Delete Video"] = "Borrar vídeo"; +$a->strings["No videos selected"] = "Ningún vídeo seleccionado"; +$a->strings["Recent Videos"] = "Vídeos recientes"; +$a->strings["Upload New Videos"] = "Subir nuevos vídeos"; +$a->strings["No contacts."] = "Ningún contacto."; +$a->strings["Access denied."] = "Acceso denegado."; +$a->strings["Invalid request."] = "Consulta invalida"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Disculpa, posiblemente el archivo subido es mas grande que la PHP configuración permite."; +$a->strings["Or - did you try to upload an empty file?"] = "Si no - intento de subir un archivo vacío?"; +$a->strings["File exceeds size limit of %s"] = "El archivo excede el limite de tamaño de %s"; +$a->strings["File upload failed."] = "Ha fallado la subida del archivo."; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Excedido el número máximo de mensajes para %s. El mensaje no se ha enviado."; +$a->strings["Unable to check your home location."] = "Imposible comprobar tu servidor de inicio."; +$a->strings["No recipient."] = "Sin receptor."; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Si quieres que %s te responda, asegúrate de que la configuración de privacidad permite enviar correo privado a desconocidos."; +$a->strings["Only logged in users are permitted to perform a probing."] = ""; +$a->strings["This introduction has already been accepted."] = "Esta presentación ya ha sido aceptada."; +$a->strings["Profile location is not valid or does not contain profile information."] = "La dirección del perfil no es válida o no contiene información del perfil."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Aviso: La dirección del perfil no tiene un nombre de propietario identificable."; +$a->strings["Warning: profile location has no profile photo."] = "Aviso: la dirección del perfil no tiene foto de perfil."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "no se encontró %d parámetro requerido en el lugar determinado", + 1 => "no se encontraron %d parámetros requeridos en el lugar determinado", +); +$a->strings["Introduction complete."] = "Presentación completa."; +$a->strings["Unrecoverable protocol error."] = "Error de protocolo irrecuperable."; +$a->strings["Profile unavailable."] = "Perfil no disponible."; +$a->strings["%s has received too many connection requests today."] = "%s ha recibido demasiadas solicitudes de conexión hoy."; +$a->strings["Spam protection measures have been invoked."] = "Han sido activadas las medidas de protección contra spam."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Tus amigos serán avisados para que lo intenten de nuevo pasadas 24 horas."; +$a->strings["Invalid locator"] = "Localizador no válido"; +$a->strings["Invalid email address."] = "Dirección de correo incorrecta"; +$a->strings["This account has not been configured for email. Request failed."] = "Esta cuenta no ha sido configurada para el correo. Fallo de solicitud."; +$a->strings["You have already introduced yourself here."] = "Ya te has presentado aquí."; +$a->strings["Apparently you are already friends with %s."] = "Al parecer, ya eres amigo de %s."; +$a->strings["Invalid profile URL."] = "Dirección de perfil no válida."; +$a->strings["Failed to update contact record."] = "Error al actualizar el contacto."; +$a->strings["Your introduction has been sent."] = "Tu presentación ha sido enviada."; +$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "La subscripción remota no se podrá hacer para tu red. Por favor contacta directamente desde tu sistema."; +$a->strings["Please login to confirm introduction."] = "Inicia sesión para confirmar la presentación."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Sesión iniciada con la identificación incorrecta. Entra en este perfil."; +$a->strings["Confirm"] = "Confirmar"; +$a->strings["Hide this contact"] = "Ocultar este contacto"; +$a->strings["Welcome home %s."] = "Bienvenido a casa %s"; +$a->strings["Please confirm your introduction/connection request to %s."] = "Por favor, confirma tu solicitud de presentación/conexión con %s."; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Por favor introduce tu dirección ID de una de las siguientes redes sociales soportadas:"; +$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 aun no eres miembro de la red social libre seguí este enlace para encontrara un sitio disponible de friendica y acompañanos hoy mismo"; +$a->strings["Friend/Connection Request"] = "Solicitud de Amistad/Conexión"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Ejemplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Web Social Federada"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "(En vez de usar este formulario, introduce %s en la barra de búsqueda de Diaspora."; +$a->strings["Unable to locate original post."] = "No se puede encontrar la publicación original."; +$a->strings["Empty post discarded."] = "Publicación vacía descartada."; +$a->strings["System error. Post not saved."] = "Error del sistema. Mensaje no guardado."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Este mensaje te lo ha enviado %s, miembro de la red social Friendica."; +$a->strings["You may visit them online at %s"] = "Los puedes visitar en línea en %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Por favor contacta con el remitente respondiendo a este mensaje si no deseas recibir estos mensajes."; +$a->strings["%s posted an update."] = "%s ha publicado una actualización."; +$a->strings["Account approved."] = "Cuenta aprobada."; +$a->strings["Registration revoked for %s"] = "Registro anulado para %s"; +$a->strings["Please login."] = "Por favor accede."; +$a->strings["Move account"] = "Mover cuenta"; +$a->strings["You can import an account from another Friendica server."] = "Puedes importar una cuenta desde otro servidor de 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."] = "Necesitas exportar tu cuenta del antiguo servidor y subirla aquí. Volveremos a crear tu antigua cuenta con todos tus contactos aquí. También intentaremos de informar a tus amigos de que te has mudado."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Esta característica es experimental. No podemos importar contactos desde la red OStatus (statusnet/identi.ca) o desde Diaspora*"; +$a->strings["Account file"] = "Archivo de la cuenta"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Para exportar el perfil vaya a \"Configuracion -> Exportar sus datos personales\" y seleccione \"Exportar cuenta\""; +$a->strings["Theme settings updated."] = "Configuración de la apariencia actualizada."; +$a->strings["Site"] = "Sitio"; +$a->strings["Users"] = "Usuarios"; +$a->strings["Plugins"] = "Módulos"; +$a->strings["Themes"] = "Temas"; +$a->strings["Additional features"] = "Características adicionales"; +$a->strings["DB updates"] = "Actualizaciones de la Base de Datos"; +$a->strings["Inspect Queue"] = "Inspeccionar cola"; +$a->strings["Server Blocklist"] = ""; +$a->strings["Federation Statistics"] = "Estadísticas de federación"; +$a->strings["Logs"] = "Registros"; +$a->strings["View Logs"] = "Ver registro de depuración"; +$a->strings["probe address"] = "probar direccion"; +$a->strings["check webfinger"] = "Verificar webfinger"; +$a->strings["Plugin Features"] = "Características del módulo"; +$a->strings["diagnostics"] = "diagnosticos"; +$a->strings["User registrations waiting for confirmation"] = "Registro de usuarios esperando la confirmación"; +$a->strings["The blocked domain"] = ""; +$a->strings["The reason why you blocked this domain."] = ""; +$a->strings["Delete domain"] = ""; +$a->strings["Check to delete this entry from the blocklist"] = ""; +$a->strings["Administration"] = "Administración"; +$a->strings["This page can be used to define a black list of servers from the federated network that are not allowed to interact with your node. For all entered domains you should also give a reason why you have blocked the remote server."] = ""; +$a->strings["The list of blocked servers will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily."] = ""; +$a->strings["Add new entry to block list"] = ""; +$a->strings["Server Domain"] = ""; +$a->strings["The domain of the new server to add to the block list. Do not include the protocol."] = ""; +$a->strings["Block reason"] = ""; +$a->strings["Add Entry"] = ""; +$a->strings["Save changes to the blocklist"] = ""; +$a->strings["Current Entries in the Blocklist"] = ""; +$a->strings["Delete entry from blocklist"] = ""; +$a->strings["Delete entry from blocklist?"] = ""; +$a->strings["Server added to blocklist."] = ""; +$a->strings["Site blocklist updated."] = ""; +$a->strings["unknown"] = "desconocido"; +$a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = "Esta pagina ofrece algunos datos sobre la red conocida a la que tu nodo friendica esta conectado. Estos nummeros no son completos respecto a las redes federadas, si no refleja los nodos esta instancia conoce. "; +$a->strings["The Auto Discovered Contact Directory feature is not enabled, it will improve the data displayed here."] = "El modulo directorio de contactos encontrados no esta habilitado, habilitado aumentara la cantidad de datos detallados aquí."; +$a->strings["Currently this node is aware of %d nodes from the following platforms:"] = "Actualmente este nodo reconoce %d nodos de las siguientes plataformas:"; +$a->strings["ID"] = "ID"; +$a->strings["Recipient Name"] = "Nombre del recipiente"; +$a->strings["Recipient Profile"] = "Perfil del recipiente"; +$a->strings["Created"] = "Creado"; +$a->strings["Last Tried"] = "Ultimo intento"; +$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."] = "Esta pagina muestra la cola de mensajes salientes. Estos son publicaciones cuyo envío inicial fallo. Serán reenviados mas tarde y eventualmente eliminados si la entrega falla permanentemente. "; +$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the command php include/dbstructure.php toinnodb of your Friendica installation for an automatic conversion.
"] = ""; +$a->strings["The database update failed. Please run \"php include/dbstructure.php update\" from the command line and have a look at the errors that might appear."] = ""; +$a->strings["Normal Account"] = "Cuenta normal"; +$a->strings["Soapbox Account"] = "Cuenta tribuna"; +$a->strings["Community/Celebrity Account"] = "Cuenta de Comunidad/Celebridad"; +$a->strings["Automatic Friend Account"] = "Cuenta de amistad automática"; +$a->strings["Blog Account"] = "Cuenta de blog"; +$a->strings["Private Forum"] = "Foro privado"; +$a->strings["Message queues"] = "Cola de mensajes"; +$a->strings["Summary"] = "Resumen"; +$a->strings["Registered users"] = "Usuarios registrados"; +$a->strings["Pending registrations"] = "Pendientes de registro"; +$a->strings["Version"] = "Versión"; +$a->strings["Active plugins"] = "Módulos activos"; +$a->strings["Can not parse base url. Must have at least ://"] = "No se puede resolver la direccion URL base.\nDeberá tener al menos ://"; +$a->strings["Site settings updated."] = "Configuración de actualización."; +$a->strings["No special theme for mobile devices"] = "No hay tema especial para dispositivos móviles"; +$a->strings["No community page"] = "No hay pagina de comunidad"; +$a->strings["Public postings from users of this site"] = "Temas públicos de perfiles de este sitio."; +$a->strings["Global community page"] = "Pagina global de comunidad"; +$a->strings["Never"] = "Nunca"; +$a->strings["At post arrival"] = "A la llegada de una publicación"; +$a->strings["Disabled"] = "Deshabilitado"; +$a->strings["Users, Global Contacts"] = "Perfiles, contactos globales"; +$a->strings["Users, Global Contacts/fallback"] = "Perfiles, contactos globales/fallback"; +$a->strings["One month"] = "Un mes"; +$a->strings["Three months"] = "Tres meses"; +$a->strings["Half a year"] = "Medio año"; +$a->strings["One year"] = "Un año"; +$a->strings["Multi user instance"] = "Sesión multi usuario"; +$a->strings["Closed"] = "Cerrado"; +$a->strings["Requires approval"] = "Requiere aprobación"; +$a->strings["Open"] = "Abierto"; +$a->strings["No SSL policy, links will track page SSL state"] = "No existe una política de SSL, los vínculos harán un seguimiento del estado de SSL en la página"; +$a->strings["Force all links to use SSL"] = "Forzar todos los enlaces a utilizar SSL"; +$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificación personal, usa SSL solo para enlaces locales (no recomendado)"; +$a->strings["Save Settings"] = "Guardar configuración"; +$a->strings["File upload"] = "Subida de archivo"; +$a->strings["Policies"] = "Políticas"; +$a->strings["Auto Discovered Contact Directory"] = "Directorio de contactos descubierto automáticamente"; +$a->strings["Performance"] = "Rendimiento"; +$a->strings["Worker"] = "Trabajador (??)"; +$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Reubicación - ADVERTENCIA: función avanzada. Puede hacer a este servidor inaccesible. "; +$a->strings["Site name"] = "Nombre del sitio"; +$a->strings["Host name"] = "Nombre de dominio"; +$a->strings["Sender Email"] = "Dirección de origen de correo electrónico"; +$a->strings["The email address your server shall use to send notification emails from."] = "La dirección de correo electrónico que el servidor debería usar como dirección de envío."; +$a->strings["Banner/Logo"] = "Imagen/Logotipo"; +$a->strings["Shortcut icon"] = "Icono de atajo"; +$a->strings["Link to an icon that will be used for browsers."] = "Enlace hacia un icono que sera usado para el navegador."; +$a->strings["Touch icon"] = "Icono touch"; +$a->strings["Link to an icon that will be used for tablets and mobiles."] = "Enlace para un icono que sera usado para tablets y moviles."; +$a->strings["Additional Info"] = "Información adicional"; +$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = "Para servidores públicos: información adicional que sera publicado en %s/siteinfo."; +$a->strings["System language"] = "Idioma"; +$a->strings["System theme"] = "Tema"; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Tema por defecto del sistema, los usuarios podrán elegir el suyo propio en su configuración cambiar configuración del tema"; +$a->strings["Mobile system theme"] = "Tema de sistema móvil"; +$a->strings["Theme for mobile devices"] = "Tema para dispositivos móviles"; +$a->strings["SSL link policy"] = "Política de enlaces SSL"; +$a->strings["Determines whether generated links should be forced to use SSL"] = "Determina si los enlaces generados deben ser forzados a utilizar SSL"; +$a->strings["Force SSL"] = "Forzar SSL"; +$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Forzar todos las consultas No-SSL a SSL. - ATENCIÓN: en algunos sistemas esto puede generar comportamiento recursivo interminable."; +$a->strings["Hide help entry from navigation menu"] = "Ocultar la ayuda en el menú de navegación"; +$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Oculta la entrada de las páginas de Ayuda en el menú de navegación. Todavía se puede acceder escribiendo /ayuda directamente."; +$a->strings["Single user instance"] = "Sesión de usuario único"; +$a->strings["Make this instance multi-user or single-user for the named user"] = "Haz esta sesión multi-usuario o usuario único para el usuario"; +$a->strings["Maximum image size"] = "Tamaño máximo de la imagen"; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Tamaño máximo en bytes de las imágenes a subir. Por defecto es 0, que quiere decir que no hay límite."; +$a->strings["Maximum image length"] = "Largo máximo de imagen"; +$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Longitud máxima en píxeles del lado más largo de las imágenes subidas. Por defecto es -1, que significa que no hay límites."; +$a->strings["JPEG image quality"] = "Calidad de imagen JPEG"; +$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Los archivos JPEG subidos se guardarán con este ajuste de calidad [0-100]. Por defecto es 100, que es calidad máxima."; +$a->strings["Register policy"] = "Política de registros"; +$a->strings["Maximum Daily Registrations"] = "Registros Máximos Diarios"; +$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."] = "Si anteriormente se ha permitido el registro, esto establece el número máximo de registro de nuevos usuarios aceptados por día. Si el registro se establece como cerrado, esta opción no tiene efecto."; +$a->strings["Register text"] = "Términos"; +$a->strings["Will be displayed prominently on the registration page."] = "Se mostrará en un lugar destacado en la página de registro."; +$a->strings["Accounts abandoned after x days"] = "Cuentas abandonadas después de x días"; +$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "No gastará recursos del sistema creando sondeos a sitios externos para cuentas abandonadas. Introduce 0 para ningún límite temporal."; +$a->strings["Allowed friend domains"] = "Dominios amigos permitidos"; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Lista separada por comas de los dominios que están autorizados para establecer conexiones con este sitio. Se aceptan comodines. Dejar en blanco para permitir cualquier dominio"; +$a->strings["Allowed email domains"] = "Dominios de correo permitidos"; +$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Lista separada por comas de los dominios que están autorizados en las direcciones de correo para registrarse en este sitio. Se aceptan comodines. Dejar en blanco para permitir cualquier dominio"; +$a->strings["Block public"] = "Bloqueo público"; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Marca para bloquear el acceso público a todas las páginas personales, aún siendo públicas, hasta que no hayas iniciado tu sesión."; +$a->strings["Force publish"] = "Forzar publicación"; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Marca para forzar que todos los perfiles de este sitio sean listados en el directorio del sitio."; +$a->strings["Global directory URL"] = "URL del directorio global."; +$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL del directorio global. Si se deja este campo vacío, el directorio global sera completamente inaccesible para la instancia."; +$a->strings["Allow threaded items"] = "Permitir elementos en hilo"; +$a->strings["Allow infinite level threading for items on this site."] = "Permitir infinitos niveles de hilo para los elementos de este sitio."; +$a->strings["Private posts by default for new users"] = "Publicaciones privadas por defecto para usuarios nuevos"; +$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Ajusta los permisos de publicación por defecto a los miembros nuevos al grupo privado por defecto en vez del público."; +$a->strings["Don't include post content in email notifications"] = "No incluir el contenido del post en las notificaciones de correo electrónico"; +$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "No incluye el contenido de un mensaje/comentario/mensaje privado/etc. en las notificaciones de correo electrónico que se envían desde este sitio, como una medida de privacidad."; +$a->strings["Disallow public access to addons listed in the apps menu."] = "Deshabilitar acceso a addons listados en el menú de aplicaciones."; +$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Habilitando esta opción restringe el acceso a addons en el menú de aplicaciones a usuarios identificados."; +$a->strings["Don't embed private images in posts"] = "No agregar imágenes privados en las publicaciones"; +$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = "No reemplazar imágenes privadas guardadas localmente en el servidor con imágenes integrados en los envíos. Esto significa que contactos que reciben publicaciones tendrán que autenticarse y cargar cada imagen, lo que puede demorar."; +$a->strings["Allow Users to set remote_self"] = "Permitir a los usuarios de definir perfiles_remotos"; +$a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = "Al habilitar esta opción, cada perfil tiene el permiso de marcar cualquiera de sus contactos como un perfil_remoto. Habilitar la opción perfil_remoto para un contacto genera que todas las publicaciones de este contacto seran re-publicado en el muro del perfil."; +$a->strings["Block multiple registrations"] = "Bloquear registros multiples"; +$a->strings["Disallow users to register additional accounts for use as pages."] = "Impedir que los usuarios registren cuentas adicionales para su uso como páginas."; +$a->strings["OpenID support"] = "Soporte OpenID"; +$a->strings["OpenID support for registration and logins."] = "Soporte OpenID para registros y accesos."; +$a->strings["Fullname check"] = "Comprobar Nombre completo"; +$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Fuerza a los usuarios a registrarse con un espacio entre su nombre y su apellido en el campo Nombre completo como medida anti-spam"; +$a->strings["Community Page Style"] = "Estilo de pagina de comunidad"; +$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "Tipo de pagina de comunidad a visualizar. 'Comunidad global' muestra todas las publicaciones publicas de la red abierta federada que llega a este servidor."; +$a->strings["Posts per user on community page"] = "Publicaciones por usuario en la pagina de comunidad"; +$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "El numero máximo de publicaciones por usuario que aparecerán en la pagina de comunidad. (No valido para 'comunidad global')"; +$a->strings["Enable OStatus support"] = "Permitir soporte 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."] = "Proporcionar OStatus compatibilidad integrada (StatusNet, GNU Social, Quitter etc.). Todas las comunicaciones en OStatus son publicas así que eventuales advertencias serán ocasionalmente desplegadas."; +$a->strings["OStatus conversation completion interval"] = "Intervalo de actualización de conversaciones OStatus"; +$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "Cuan seguido el recolector deberá buscar nuevas entradas en OStatus? Esto puede ser un trabajo de mucha carga para los recursos del servidor."; +$a->strings["Only import OStatus threads from our contacts"] = "Solo importar OStatus temas de nuestros (?) contactos."; +$a->strings["Normally we import every content from our OStatus contacts. With this option we only store threads that are started by a contact that is known on our system."] = "Normalmente importamos todo el contenido de los contactos de OStatus. Con esta opción solamente se guardan temas que fueron iniciados por contactos que son conocidos de la instancia.\n(nota de traducción, no se entiende muy bien la función en base al texto original)"; +$a->strings["OStatus support can only be enabled if threading is enabled."] = "Solo se puede habilitar el soporte OStatus si threading (comentarios en fila) se encuentra habilitado."; +$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "El soporte para Diaspora* no se puede habilitar porque friendica se instalo en un directorio subalterno (sub directory)."; +$a->strings["Enable Diaspora support"] = "Habilitar el soporte para Diaspora*"; +$a->strings["Provide built-in Diaspora network compatibility."] = "Provee una compatibilidad con la red de Diaspora."; +$a->strings["Only allow Friendica contacts"] = "Permitir solo contactos de Friendica"; +$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Todos los contactos deben usar protocolos de Friendica. El resto de protocolos serán desactivados."; +$a->strings["Verify SSL"] = "Verificar SSL"; +$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Si quieres puedes activar la comprobación estricta de certificados. Esto significa que serás incapaz de conectar con ningún sitio que use certificados SSL autofirmados."; +$a->strings["Proxy user"] = "Usuario proxy"; +$a->strings["Proxy URL"] = "Dirección proxy"; +$a->strings["Network timeout"] = "Tiempo de espera de red"; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valor en segundos. Usar 0 para dejarlo sin límites (no se recomienda)."; +$a->strings["Maximum Load Average"] = "Promedio de carga máxima"; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carga máxima del sistema antes de que la entrega y los procesos de sondeo sean retrasados - por defecto 50."; +$a->strings["Maximum Load Average (Frontend)"] = "Carga máxima promedio (frontend)"; +$a->strings["Maximum system load before the frontend quits service - default 50."] = "Carga máxima del sistema antes de que el frontend cancele el servicio - por defecto 50."; +$a->strings["Minimal Memory"] = ""; +$a->strings["Minimal free memory in MB for the poller. Needs access to /proc/meminfo - default 0 (deactivated)."] = ""; +$a->strings["Maximum table size for optimization"] = "Tamaño máximo de las tablas para la optimización."; +$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = "Tamaño máximo de tablas (en MB) para la optimización automática - por defecto 100MB. Ingrese -1 para deshabilitar."; +$a->strings["Minimum level of fragmentation"] = "Nivel mínimo de fragmentación "; +$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = "Nivel mínimo de fragmentación para para comenzar la optimización - valor por defecto es 30%. "; +$a->strings["Periodical check of global contacts"] = "Verificación periódica de los contactos globales."; +$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "Habilitado los contactos globales son verificado periódicamente por datos faltantes o datos obsoletos como también por la vitalidad de los contactos y servidores."; +$a->strings["Days between requery"] = "Días entre búsquedas"; +$a->strings["Number of days after which a server is requeried for his contacts."] = "Cantidad de días hasta que un servidor es consultado por sus contactos."; +$a->strings["Discover contacts from other servers"] = "Descubrir contactos de otros servidores"; +$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'."] = "Recoger periódicamente información sobre perfiles en otros servidores. Puede elegir entre 'usuarios': perfiles de un sistema remoto, 'contactos globales': contactos activos que son conocidos por el servidor. El fallback es para servidors redmatrix y instalaciones viejas de friendica en las que los contactos no estaban a disposición. El fallback aumenta la carga del servidor, asi que la configuración recomendada es 'usuarios, contactos globales'"; +$a->strings["Timeframe for fetching global contacts"] = "Intervalos de tiempo para revisar contactos globales."; +$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."] = "Cuando la revisacion es activada, este valor define el intervalo de tiempo de la actividad de los contactos globales que son recolectados de los servidores. (?)"; +$a->strings["Search the local directory"] = "Buscar el directorio local"; +$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."] = "Buscar en el directorio local en vez del directorio global. Cuando se busca localmente, cada busqueda sera efectuada en el directorio global en el background. Esto mejora los resultados de la busqueda cuando la misma es repetida."; +$a->strings["Publish server information"] = "Publicar información del servidor"; +$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 habilitado, datos generales del servidor y estadisticas de uso serán publicados. Los datos contienen el nombre y la versión del servidor, numero de usuarios con perfiles públicos, cantidad de temas publicados y los protocolos y conectores activados. Vea the-federation.info por detalles."; +$a->strings["Suppress Tags"] = "Suprimir tags"; +$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "Suprimir la lista de tags al final de una publicación."; +$a->strings["Path to item cache"] = "Ruta a la caché del objeto"; +$a->strings["The item caches buffers generated bbcode and external images."] = "El buffer de cache de items generado para bbcodes e imágenes externas. "; +$a->strings["Cache duration in seconds"] = "Duración de la caché en segundos"; +$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "¿Por cuanto tiempo deberían los archives ser almacenados en el cache? Valor por defecto 86400 segundos (un día). Para deshabilita el item cache, ajuste el valor a -1."; +$a->strings["Maximum numbers of comments per post"] = "Numero máximo de respuestas por tema"; +$a->strings["How much comments should be shown for each post? Default value is 100."] = "¿Cuantos comentarios deberían ser mostrados por tema? Valor por defecto es 100."; +$a->strings["Temp path"] = "Ruta a los temporales"; +$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "Si tiene un sistema restringido en donde el servidor web no puede acceder la dirección del sistema temp, ingrese una dirección alternativa aquí. "; +$a->strings["Base path to installation"] = "Ruta base para la instalación"; +$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "Si el sistema no puede detectar el acceso correcto a la instalación, ingrese la dirección correcta aquí. Esta configuración solo debería utilizarse si si usa un sistema restringido y enlaces simbolicos a su webroot."; +$a->strings["Disable picture proxy"] = "Deshabilitar proxy de imagen"; +$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "El proxy de imagen mejora el performance y privacidad. No debería ser usado en sistemas con poco ancho de banda."; +$a->strings["Only search in tags"] = "Solo buscar en tags"; +$a->strings["On large systems the text search can slow down the system extremely."] = "En sistemas grandes, la búsqueda de texto puede enlentecer el sistema gravemente."; +$a->strings["New base url"] = "Nueva URLbase"; +$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = "Cambiar base URL para este servidor. Envía mensajes de relocalisación a todos los contactos DFRN."; +$a->strings["RINO Encryption"] = "Encryptado RINO"; +$a->strings["Encryption layer between nodes."] = "Capa de encryptación entre nodos."; +$a->strings["Maximum number of parallel workers"] = "Numero máximo de trabajos paralelos de fondo."; +$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = "Ajustar a 2 en un servidor compartido (shared hosting).\nEn sistemas grandes valores como 10 son excelentes.\nValor por defecto es 4."; +$a->strings["Don't use 'proc_open' with the worker"] = "No use 'proc_open' junto al \"trabajador\"!"; +$a->strings["Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosters. If this is enabled you should increase the frequency of poller calls in your crontab."] = "Habilite esta función si el sistema no permite el uso de 'proc_open'. Esto suelo suceder en servidores compartidos (shared hosting). Si esta función se habilita se debería incrementar la frecuencia de llamadas del poller (poller calls) en la pestaña de trabajos cron. (¡en el hosting?)"; +$a->strings["Enable fastlane"] = "Habilitar ascenso rápido"; +$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = "Cuando está habilitado, el mecanismo ascenso rápido inicia un trabajador adicional si los procesos de mayor prioridad son bloqueados por prcesos de menor prioridad."; +$a->strings["Enable frontend worker"] = "Habilitar trabajador de interfaz"; +$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = "Cuando está habilitado, el proceso de Trabajador se activa cuando se ejecuta el acceso de respaldo (ej. mensajes siendo entregados). En páginas más pequeñas usted puede querer llamar a yourdomain.tld/worker en una base regular mediante un trabajo cron externo. Sólo debería habilitar esta opción si no puede utilizar trabajos cron/scheduled en su servidor. El proceso de trabajador en segundo plano necesita ser activado para eso."; +$a->strings["Update has been marked successful"] = "La actualización se ha completado con éxito"; +$a->strings["Database structure update %s was successfully applied."] = "Actualización de base de datos %s fue aplicada con éxito."; +$a->strings["Executing of database structure update %s failed with error: %s"] = "El paso de actualización de la estructura de la base de datos %s fallo con el mensaje de error: %s"; +$a->strings["Executing %s failed with error: %s"] = "Paso %s fallo con el error: %s"; +$a->strings["Update %s was successfully applied."] = "Actualización %s aplicada con éxito."; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "La actualización %s no ha informado, se desconoce el estado."; +$a->strings["There was no additional update function %s that needed to be called."] = "No había función adicional de actualización %s que necesitaba ser requerida."; +$a->strings["No failed updates."] = "Actualizaciones sin fallos."; +$a->strings["Check database structure"] = "Revisar estructura de la base de datos"; +$a->strings["Failed Updates"] = "Actualizaciones fallidas"; +$a->strings["This does not include updates prior to 1139, which did not return a status."] = "No se incluyen las anteriores a la 1139, que no indicaban su estado."; +$a->strings["Mark success (if update was manually applied)"] = "Marcar como correcta (si actualizaste manualmente)"; +$a->strings["Attempt to execute this update step automatically"] = "Intentando ejecutar este paso automáticamente"; +$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "\n\t\t\tEstimado %1\$s,\n\t\t\t\tel administrador de %2\$s ha creado una cuenta para usted."; +$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = "\n\t\t\tLos detalles de acceso son las siguientes:\n\n\t\t\tDirección del sitio:\t%1\$s\n\t\t\tNombre de la cuenta:\t\t%2\$s\n\t\t\tContraseña:\t\t%3\$s\n\n\t\t\tPodrá cambiar la contraseña desde la pagina de configuración de su cuenta después de acceder a la misma\n\t\t\ten.\n\n\t\t\tPor favor tome unos minutos para revisar las opciones demás de la cuenta en dicha pagina de configuración.\n\n\t\t\tTambién podrá agregar informaciones adicionales a su pagina de perfil predeterminado. \n\t\t\t(en la pagina \"Perfiles\") para que otras personas pueden encontrarlo fácilmente.\n\n\t\t\tRecomendamos que elija un nombre apropiado, agregando una imagen de perfil,\n\t\t\tagregando algunas palabras claves de la cuenta (muy útil para hacer nuevos amigos) - y \n\t\t\tquizás el país en donde vive; si no quiere ser mas especifico\n\t\t\tque eso.\n\n\t\t\tRespetamos absolutamente su derecho a la privacidad y ninguno de estos detalles es necesario.\n\t\t\tSi eres nuevo aquí y no conoces a nadie, estos detalles pueden ayudarte\n\t\t\tpara hacer nuevas e interesantes amistades.\n\n\t\t\tGracias y bienvenido a %4\$s."; +$a->strings["%s user blocked/unblocked"] = array( + 0 => "%s usuario bloqueado/desbloqueado", + 1 => "%s usuarios bloqueados/desbloqueados", +); +$a->strings["%s user deleted"] = array( + 0 => "%s usuario eliminado", + 1 => "%s usuarios eliminados", +); +$a->strings["User '%s' deleted"] = "Usuario '%s' eliminado"; +$a->strings["User '%s' unblocked"] = "Usuario '%s' desbloqueado"; +$a->strings["User '%s' blocked"] = "Usuario '%s' bloqueado'"; +$a->strings["Register date"] = "Fecha de registro"; +$a->strings["Last login"] = "Último acceso"; +$a->strings["Last item"] = "Último elemento"; +$a->strings["Account"] = "Cuenta"; +$a->strings["Add User"] = "Agregar usuario"; +$a->strings["select all"] = "seleccionar todo"; +$a->strings["User registrations waiting for confirm"] = "Registro de usuarios esperando confirmación"; +$a->strings["User waiting for permanent deletion"] = "Usuario esperando anulación permanente."; +$a->strings["Request date"] = "Solicitud de fecha"; +$a->strings["No registrations."] = "Sin registros."; +$a->strings["Note from the user"] = "Nota para el usuario"; +$a->strings["Deny"] = "Denegado"; +$a->strings["Block"] = "Bloquear"; +$a->strings["Unblock"] = "Desbloquear"; +$a->strings["Site admin"] = "Administrador de la web"; +$a->strings["Account expired"] = "Cuenta caducada"; +$a->strings["New User"] = "Nuevo usuario"; +$a->strings["Deleted since"] = "Borrado desde"; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "¡Los usuarios seleccionados serán eliminados!\\n\\n¡Todo lo que hayan publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?"; +$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "¡El usuario {0} será eliminado!\\n\\n¡Todo lo que haya publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?"; +$a->strings["Name of the new user."] = "Nombre del nuevo usuario"; +$a->strings["Nickname"] = "Apodo"; +$a->strings["Nickname of the new user."] = "Apodo del nuevo perfil."; +$a->strings["Email address of the new user."] = "Dirección de correo del nuevo perfil."; +$a->strings["Plugin %s disabled."] = "Módulo %s deshabilitado."; +$a->strings["Plugin %s enabled."] = "Módulo %s habilitado."; +$a->strings["Disable"] = "Desactivado"; +$a->strings["Enable"] = "Activado"; +$a->strings["Toggle"] = "Activar"; +$a->strings["Author: "] = "Autor:"; +$a->strings["Maintainer: "] = "Mantenedor: "; +$a->strings["Reload active plugins"] = "Recargar plugins activos"; +$a->strings["There are currently no plugins available on your node. You can find the official plugin repository at %1\$s and might find other interesting plugins in the open plugin registry at %2\$s"] = "No ay plugins habilitados en este nodo. Encontrara los repositorios oficiales de plugins en %1\$s y posiblemente encontrara mas plugins interesantes en el registro abierto de plugins aquí %2\$s ."; +$a->strings["No themes found."] = "No se encontraron temas."; +$a->strings["Screenshot"] = "Captura de pantalla"; +$a->strings["Reload active themes"] = "Recargar interfaces de usuario activos"; +$a->strings["No themes found on the system. They should be paced in %1\$s"] = "No se encuentran interfaces en el sistema. Deberían estar localizados (paced) en %1\$s"; +$a->strings["[Experimental]"] = "[Experimental]"; +$a->strings["[Unsupported]"] = "[Sin soporte]"; +$a->strings["Log settings updated."] = "Configuración de registro actualizada."; +$a->strings["PHP log currently enabled."] = "Registro PHP actualmente disponible."; +$a->strings["PHP log currently disabled."] = "Registro PHP actualmente deshabilitado."; +$a->strings["Clear"] = "Limpiar"; +$a->strings["Enable Debugging"] = "Habilitar debugging"; +$a->strings["Log file"] = "Archivo de registro"; +$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Debes tener permiso de escritura en el servidor. Relacionado con tu directorio de inicio de Friendica."; +$a->strings["Log level"] = "Nivel de registro"; +$a->strings["PHP logging"] = "PHP logging"; +$a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = "Para habilitar la documentación de los errores PHP y las advertencias se puede agregar lo siguiente al archivo .htconfig.php de la instalación (ftp). La dirección definido en el 'error_log' es relativo al directorio friendica principal (top-level directory) y debe de ser habilitado para la escritura por el servidor web. La opción '1' para 'log_errors' y 'display_errors' es para habilitar estas opciones, '0' para deshabilitarlo."; +$a->strings["Off"] = "Apagado"; +$a->strings["On"] = "Encendido"; +$a->strings["Lock feature %s"] = "Trancar opción %s "; +$a->strings["Manage Additional Features"] = "Administrar opciones adicionales"; +$a->strings["%d contact edited."] = array( + 0 => "%d contacto editado.", + 1 => "%d contacts edited.", +); +$a->strings["Could not access contact record."] = "No se pudo acceder a los datos del contacto."; +$a->strings["Could not locate selected profile."] = "No se pudo encontrar el perfil seleccionado."; +$a->strings["Contact updated."] = "Contacto actualizado."; +$a->strings["Contact has been blocked"] = "El contacto ha sido bloqueado"; +$a->strings["Contact has been unblocked"] = "El contacto ha sido desbloqueado"; +$a->strings["Contact has been ignored"] = "El contacto ha sido ignorado"; +$a->strings["Contact has been unignored"] = "El contacto ya no está ignorado"; +$a->strings["Contact has been archived"] = "El contacto ha sido archivado"; +$a->strings["Contact has been unarchived"] = "El contacto ya no está archivado"; +$a->strings["Drop contact"] = "Eliminar contacto"; +$a->strings["Do you really want to delete this contact?"] = "¿Estás seguro de que quieres eliminar este contacto?"; +$a->strings["Contact has been removed."] = "El contacto ha sido eliminado"; +$a->strings["You are mutual friends with %s"] = "Ahora tienes una amistad mutua con %s"; +$a->strings["You are sharing with %s"] = "Estás compartiendo con %s"; +$a->strings["%s is sharing with you"] = "%s está compartiendo contigo"; +$a->strings["Private communications are not available for this contact."] = "Las comunicaciones privadas no está disponibles para este contacto."; +$a->strings["(Update was successful)"] = "(La actualización se ha completado)"; +$a->strings["(Update was not successful)"] = "(La actualización no se ha completado)"; +$a->strings["Suggest friends"] = "Sugerir amigos"; +$a->strings["Network type: %s"] = "Tipo de red: %s"; +$a->strings["Communications lost with this contact!"] = "¡Se ha perdido la comunicación con este contacto!"; +$a->strings["Fetch further information for feeds"] = "Recaudar informacion complementaria de los feeds"; +$a->strings["Fetch information"] = "Recaudar informacion"; +$a->strings["Fetch information and keywords"] = "Recaudar informacion y palabras claves"; +$a->strings["Contact"] = "Contacto"; +$a->strings["Profile Visibility"] = "Visibilidad del Perfil"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, selecciona el perfil que quieras mostrar a %s cuando esté viendo tu perfil de forma segura."; +$a->strings["Contact Information / Notes"] = "Información del Contacto / Notas"; +$a->strings["Edit contact notes"] = "Editar notas del contacto"; +$a->strings["Block/Unblock contact"] = "Boquear/Desbloquear contacto"; +$a->strings["Ignore contact"] = "Ignorar contacto"; +$a->strings["Repair URL settings"] = "Configuración de reparación de la dirección"; +$a->strings["View conversations"] = "Ver conversaciones"; +$a->strings["Last update:"] = "Última actualización:"; +$a->strings["Update public posts"] = "Actualizar publicaciones públicas"; +$a->strings["Update now"] = "Actualizar ahora"; +$a->strings["Unignore"] = "Quitar de Ignorados"; +$a->strings["Currently blocked"] = "Bloqueados"; +$a->strings["Currently ignored"] = "Ignorados"; +$a->strings["Currently archived"] = "Archivados"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Los comentarios o \"me gusta\" en tus publicaciones públicas todavía pueden ser visibles."; +$a->strings["Notification for new posts"] = "Notificacion de nuevos temas."; +$a->strings["Send a notification of every new post of this contact"] = "Enviar una notificacion por nuevos temas de este contacto."; +$a->strings["Blacklisted keywords"] = "Lista negra de palabras"; +$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Lista separada por comas de palabras claves que no deberian ser convertido en #hashtags cuando \"Recaudar informacion y palabras claves\" es seleccionado"; +$a->strings["Actions"] = "Acciones"; +$a->strings["Contact Settings"] = "Ajustes del contacto"; +$a->strings["Suggestions"] = "Sugerencias"; +$a->strings["Suggest potential friends"] = "Amistades potenciales sugeridas"; +$a->strings["Show all contacts"] = "Mostrar todos los contactos"; +$a->strings["Unblocked"] = "Desbloqueados"; +$a->strings["Only show unblocked contacts"] = "Mostrar solo contactos sin bloquear"; +$a->strings["Blocked"] = "Bloqueados"; +$a->strings["Only show blocked contacts"] = "Mostrar solo contactos bloqueados"; +$a->strings["Ignored"] = "Ignorados"; +$a->strings["Only show ignored contacts"] = "Mostrar solo contactos ignorados"; +$a->strings["Archived"] = "Archivados"; +$a->strings["Only show archived contacts"] = "Mostrar solo contactos archivados"; +$a->strings["Hidden"] = "Ocultos"; +$a->strings["Only show hidden contacts"] = "Mostrar solo contactos ocultos"; +$a->strings["Search your contacts"] = "Buscar en tus contactos"; +$a->strings["Update"] = "Actualizar"; +$a->strings["Archive"] = "Archivo"; +$a->strings["Unarchive"] = "Sin archivar"; +$a->strings["Batch Actions"] = "Accones en lote"; +$a->strings["View all contacts"] = "Ver todos los contactos"; +$a->strings["View all common friends"] = "Ver todos los conocidos en común "; +$a->strings["Advanced Contact Settings"] = "Configuración avanzada"; +$a->strings["Mutual Friendship"] = "Amistad recíproca"; +$a->strings["is a fan of yours"] = "es tu fan"; +$a->strings["you are a fan of"] = "eres fan de"; +$a->strings["Toggle Blocked status"] = "Cambiar bloqueados"; +$a->strings["Toggle Ignored status"] = "Cambiar ignorados"; +$a->strings["Toggle Archive status"] = "Cambiar archivados"; +$a->strings["Delete contact"] = "Eliminar contacto"; $a->strings["Image uploaded but image cropping failed."] = "Imagen recibida, pero ha fallado al recortarla."; $a->strings["Image size reduction [%s] failed."] = "Ha fallado la reducción de las dimensiones de la imagen [%s]."; $a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recarga la página o limpia la caché del navegador si la foto nueva no aparece inmediatamente."; @@ -1748,49 +1831,9 @@ $a->strings["Work/employment"] = "Trabajo/ocupación"; $a->strings["School/education"] = "Escuela/estudios"; $a->strings["Contact information and Social Networks"] = "Informacioń de contacto y Redes sociales"; $a->strings["Edit/Manage Profiles"] = "Editar/Administrar perfiles"; -$a->strings["Invalid profile identifier."] = "Identificador de perfil no válido."; -$a->strings["Profile Visibility Editor"] = "Editor de visibilidad del perfil"; -$a->strings["Visible To"] = "Visible para"; -$a->strings["All Contacts (with secure profile access)"] = "Todos los contactos (con perfil de acceso seguro)"; -$a->strings["Registration successful. Please check your email for further instructions."] = "Te has registrado con éxito. Por favor, consulta tu correo para más información."; -$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Error al intentar de enviar mensaje de correo. Aquí los detalles de su cuenta:
login: %s
contraseña: %s

Puede cambiar su contraseña después de ingresar al sitio."; -$a->strings["Registration successful."] = "Registro exitoso."; -$a->strings["Your registration can not be processed."] = "Tu registro no se puede procesar."; -$a->strings["Your registration is pending approval by the site owner."] = "Tu registro está pendiente de aprobación por el propietario del sitio."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este sitio ha excedido el número de registros diarios permitidos. Inténtalo de nuevo mañana por favor."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Puedes (opcionalmente) rellenar este formulario a través de OpenID escribiendo tu OpenID y pulsando en \"Registrar\"."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Si no estás familiarizado con OpenID, por favor deja ese campo en blanco y rellena el resto de los elementos."; -$a->strings["Your OpenID (optional): "] = "Tu OpenID (opcional):"; -$a->strings["Include your profile in member directory?"] = "¿Incluir tu perfil en el directorio de miembros?"; -$a->strings["Note for the admin"] = "Nota para el administrador"; -$a->strings["Leave a message for the admin, why you want to join this node"] = "Deje un mensaje para el administrador sobre por qué quiere unirse a este nodo"; -$a->strings["Membership on this site is by invitation only."] = "Sitio solo accesible mediante invitación."; -$a->strings["Your invitation ID: "] = "ID de tu invitación: "; -$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Nombre completo (ej. Joe Smith, real o real aparente):"; -$a->strings["Your Email Address: "] = "Tu dirección de correo: "; -$a->strings["New Password:"] = "Contraseña nueva:"; -$a->strings["Leave empty for an auto generated password."] = "Dejar vacío para autogenerar una contraseña"; -$a->strings["Confirm:"] = "Confirmar:"; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Elije un apodo. Debe comenzar con una letra. Tu dirección de perfil en este sitio va a ser \"apodo@\$nombredelsitio\"."; -$a->strings["Choose a nickname: "] = "Escoge un apodo: "; -$a->strings["Import"] = "Importar"; -$a->strings["Import your profile to this friendica instance"] = "Importar tu perfil a esta instancia de friendica"; -$a->strings["Account approved."] = "Cuenta aprobada."; -$a->strings["Registration revoked for %s"] = "Registro anulado para %s"; -$a->strings["Please login."] = "Por favor accede."; -$a->strings["Remove My Account"] = "Eliminar mi cuenta"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Esto eliminará por completo tu cuenta. Una vez hecho no se puede deshacer."; -$a->strings["Please enter your password for verification:"] = "Por favor, introduce tu contraseña para la verificación:"; -$a->strings["Resubscribing to OStatus contacts"] = "Resubscribir a contactos de OStatus"; -$a->strings["Error"] = "error"; -$a->strings["Only logged in users are permitted to perform a search."] = "Solo usuarios activos tienen permiso para ejecutar búsquedas."; -$a->strings["Too Many Requests"] = "Demasiadas consultas"; -$a->strings["Only one search per minute is permitted for not logged in users."] = "Se permite solo una búsqueda por minuto para usuarios no identificados."; -$a->strings["Items tagged with: %s"] = "Objetos taggeado con: %s"; $a->strings["Display"] = "Interfaz del usuario"; $a->strings["Social Networks"] = "Redes sociales"; $a->strings["Connected apps"] = "Aplicaciones conectadas"; -$a->strings["Export personal data"] = "Exportación de datos personales"; $a->strings["Remove account"] = "Eliminar cuenta"; $a->strings["Missing some important data!"] = "¡Faltan algunos datos importantes!"; $a->strings["Failed to connect with email account using the settings provided."] = "Error al conectar con la cuenta de correo mediante la configuración suministrada."; @@ -1896,6 +1939,7 @@ $a->strings["Private forum - approved members only"] = "Foro privado - solo miem $a->strings["OpenID:"] = "OpenID:"; $a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opcional) Permitir a este OpenID acceder a esta cuenta."; $a->strings["Publish your default profile in your local site directory?"] = "¿Quieres publicar tu perfil predeterminado en el directorio local del sitio?"; +$a->strings["Your profile may be visible in public."] = ""; $a->strings["Publish your default profile in the global social directory?"] = "¿Quieres publicar tu perfil predeterminado en el directorio social de forma global?"; $a->strings["Hide your contact/friend list from viewers of your default profile?"] = "¿Quieres ocultar tu lista de contactos/amigos en la vista de tu perfil predeterminado?"; $a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Si habilitado, enviar temas públicos a a Diaspora* y otras redes no es posible. "; @@ -1959,40 +2003,6 @@ $a->strings["Change the behaviour of this account for special situations"] = "Ca $a->strings["Relocate"] = "Relocalizar"; $a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Si ha migrado este perfil desde otro servidor aquí y algunos contactos no reciben sus publicaciones intente recomunicar su ubicación a traves este botón. (Como para decir el botón de los botones)"; $a->strings["Resend relocate message to contacts"] = "Reenviar mensaje de relocalización a los contactos"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está siguiendo las %3\$s de %2\$s"; -$a->strings["Do you really want to delete this suggestion?"] = "¿Estás seguro de que quieres borrar esta sugerencia?"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No hay sugerencias disponibles. Si el sitio web es nuevo inténtalo de nuevo dentro de 24 horas."; -$a->strings["Ignore/Hide"] = "Ignorar/Ocultar"; -$a->strings["Tag removed"] = "Etiqueta eliminada"; -$a->strings["Remove Item Tag"] = "Eliminar etiqueta"; -$a->strings["Select a tag to remove: "] = "Selecciona una etiqueta para eliminar: "; -$a->strings["Export account"] = "Exportar cuenta"; -$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."] = "Exporta la información de tu cuenta y tus contactos. Úsalo para guardar una copia de seguridad de tu cuenta y/o moverla a otro servidor."; -$a->strings["Export all"] = "Exportar todo"; -$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)"] = "Exporta la información de tu cuenta, contactos y lo demás en JSON. Puede ser un archivo bastante grande, por lo que llevará tiempo. Úsalo para hacer una copia de seguridad completa de tu cuenta (las fotos no se exportarán)"; -$a->strings["Move account"] = "Mover cuenta"; -$a->strings["You can import an account from another Friendica server."] = "Puedes importar una cuenta desde otro servidor de 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."] = "Necesitas exportar tu cuenta del antiguo servidor y subirla aquí. Volveremos a crear tu antigua cuenta con todos tus contactos aquí. También intentaremos de informar a tus amigos de que te has mudado."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Esta característica es experimental. No podemos importar contactos desde la red OStatus (statusnet/identi.ca) o desde Diaspora*"; -$a->strings["Account file"] = "Archivo de la cuenta"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Para exportar el perfil vaya a \"Configuracion -> Exportar sus datos personales\" y seleccione \"Exportar cuenta\""; -$a->strings["[Embedded content - reload page to view]"] = "[Contenido incrustado - recarga la página para verlo]"; -$a->strings["Do you really want to delete this video?"] = "Realmente quieres eliminar este vídeo?"; -$a->strings["Delete Video"] = "Borrar vídeo"; -$a->strings["No videos selected"] = "Ningún vídeo seleccionado"; -$a->strings["Recent Videos"] = "Vídeos recientes"; -$a->strings["Upload New Videos"] = "Subir nuevos vídeos"; -$a->strings["No contacts."] = "Ningún contacto."; -$a->strings["Access denied."] = "Acceso denegado."; -$a->strings["Invalid request."] = "Consulta invalida"; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Disculpa, posiblemente el archivo subido es mas grande que la PHP configuración permite."; -$a->strings["Or - did you try to upload an empty file?"] = "Si no - intento de subir un archivo vacío?"; -$a->strings["File exceeds size limit of %s"] = "El archivo excede el limite de tamaño de %s"; -$a->strings["File upload failed."] = "Ha fallado la subida del archivo."; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Excedido el número máximo de mensajes para %s. El mensaje no se ha enviado."; -$a->strings["Unable to check your home location."] = "Imposible comprobar tu servidor de inicio."; -$a->strings["No recipient."] = "Sin receptor."; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Si quieres que %s te responda, asegúrate de que la configuración de privacidad permite enviar correo privado a desconocidos."; $a->strings["via"] = "vía"; $a->strings["greenzero"] = "greenzero"; $a->strings["purplezero"] = "purplezero"; @@ -2001,6 +2011,14 @@ $a->strings["darkzero"] = "darkzero"; $a->strings["comix"] = "comix"; $a->strings["slackr"] = "slackr"; $a->strings["Variations"] = "Variaciones"; +$a->strings["Repeat the image"] = "Repetir la imagen"; +$a->strings["Will repeat your image to fill the background."] = "Repetirá su imagen para llenar el fondo"; +$a->strings["Stretch"] = "Estirar"; +$a->strings["Will stretch to width/height of the image."] = "Estirará la anchura/altura de la imagen."; +$a->strings["Resize fill and-clip"] = "Reajustar llenado y clip"; +$a->strings["Resize to fill and retain aspect ratio."] = "Reajustar para llenar y conservar proporción"; +$a->strings["Resize best fit"] = "Reajustar al mejor tamaño"; +$a->strings["Resize to best fit and retain aspect ratio."] = "Reajustar al mejor tamaño y conservar proporción"; $a->strings["Default"] = "Por defecto"; $a->strings["Note: "] = "Nota:"; $a->strings["Check image permissions if all users are allowed to visit the image"] = "Compruebe los permisos de imagen si se les permite a todos los usuarios visitar la imagen"; @@ -2011,14 +2029,6 @@ $a->strings["Link color"] = "Color de enlace"; $a->strings["Set the background color"] = "Seleccionar el color de fondo"; $a->strings["Content background transparency"] = "Transparencia de contenido de fondo"; $a->strings["Set the background image"] = "Seleccionar la imagen de fondo"; -$a->strings["Repeat the image"] = "Repetir la imagen"; -$a->strings["Will repeat your image to fill the background."] = "Repetirá su imagen para llenar el fondo"; -$a->strings["Stretch"] = "Estirar"; -$a->strings["Will stretch to width/height of the image."] = "Estirará la anchura/altura de la imagen."; -$a->strings["Resize fill and-clip"] = "Reajustar llenado y clip"; -$a->strings["Resize to fill and retain aspect ratio."] = "Reajustar para llenar y conservar proporción"; -$a->strings["Resize best fit"] = "Reajustar al mejor tamaño"; -$a->strings["Resize to best fit and retain aspect ratio."] = "Reajustar al mejor tamaño y conservar proporción"; $a->strings["Guest"] = "Invitado"; $a->strings["Visitor"] = "Visitante"; $a->strings["Alignment"] = "Alineación"; @@ -2037,3 +2047,16 @@ $a->strings["Find Friends"] = "Buscar amigos"; $a->strings["Last users"] = "Últimos usuarios"; $a->strings["Local Directory"] = "Directorio local"; $a->strings["Quick Start"] = "Inicio rápido"; +$a->strings["Delete this item?"] = "¿Eliminar este elemento?"; +$a->strings["show fewer"] = "ver menos"; +$a->strings["toggle mobile"] = "Cambiar a versión móvil"; +$a->strings["Update %s failed. See error logs."] = "Falló la actualización de %s. Mira los registros de errores."; +$a->strings["Create a New Account"] = "Crear una nueva cuenta"; +$a->strings["Password: "] = "Contraseña: "; +$a->strings["Remember me"] = "Recordarme"; +$a->strings["Or login using OpenID: "] = "O inicia sesión usando OpenID: "; +$a->strings["Forgot your password?"] = "¿Olvidaste la contraseña?"; +$a->strings["Website Terms of Service"] = "Términos de uso del sitio"; +$a->strings["terms of service"] = "Términos de uso"; +$a->strings["Website Privacy Policy"] = "Política de privacidad del sitio"; +$a->strings["privacy policy"] = "Política de privacidad"; From 11e17a3512e26de48fdf868c4f10f3fd59d8b39e Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 6 Jun 2017 07:20:37 +0200 Subject: [PATCH 090/125] improved compatibility to MySQL version 5.7 for the CHANGELOG --- CHANGELOG | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index dd76452e47..c309f793af 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -33,7 +33,7 @@ Version 3.5.2 (2017-06-06) Old options for the pager and share element were removed [heluecht] Support of PDO was added [heluecht] Improved error logging for issues with the database [heluecht] - Adoption to changes in DateTime handling of MySQL [heluecht] + Improved compatibility to MySQL version 5.7+ [heluecht] Friendica Addons: Updates to the translation (RU) [pztrm] From 02ee64b9b8e5762d282c0e8c88d73f947d2081c1 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 6 Jun 2017 07:22:28 +0200 Subject: [PATCH 091/125] there can only be one annando --- CHANGELOG | 132 +++++++++++++++++++++++++++--------------------------- 1 file changed, 66 insertions(+), 66 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index c309f793af..a37ed76f59 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -4,44 +4,44 @@ Version 3.5.2 (2017-06-06) Updates to the documentation [annando, beardyunixer, rabuzarus, tobiasd] Updated the nginx example configuration [beardyunixer] Code revision and refactoring [annando, hypolite, Quix0r, rebeka-catalina] - Background process is now done by the new worker process [heluecht] + Background process is now done by the new worker process [annando] Added support of Composer for dependencies [Hypolite] Added support of Web app manifests [Rudloff] Added basic robot.txt functionality if none exists [Shnoulle] Added server blocklist [Hypolite, tobiasd] - Removed mcrypt dependency [heluecht] - Removed unused libraries [heluecht] + Removed mcrypt dependency [annando] + Removed unused libraries [annando] Removed Embedly integration [Hypolite] Fixed a bug in the language detection for EN [Hypolite] Fixed a bug in the probing mechanism on old PHP version [annando] Improved API [annando, gerhard6380] - Improved Diaspora federation [heluecht] - Improved Mastodon federation [heluecht, Hypolite] - Improved import from OStatus threads [heluecht] + Improved Diaspora federation [annando] + Improved Mastodon federation [annando, Hypolite] + Improved import from OStatus threads [annando] Improved the themes (frio, quattro) [fabrixxm, Hypolite, rabuzarus, Rudloff, strk, tobiasd] - Improved maintenance mode [heluecht] - Improved gcontact handling [heluecht] + Improved maintenance mode [annando] + Improved gcontact handling [annando] Improved desktop notifications [rabuzarus] Improved keyboard shortcuts for navigation [Rudloff] - Improved the installer [heluecht] + Improved the installer [annando] Improved openid handling [strk] - Improved php7 support [heluecht] - Improved display of notifications [heluecht] + Improved php7 support [annando] + Improved display of notifications [annando] Improved logging mechanism [beardyunixer] - Improved the worker [heluecht] - Behaviour clarification of the group filter / new tab [heluecht] - Old options for the pager and share element were removed [heluecht] - Support of PDO was added [heluecht] - Improved error logging for issues with the database [heluecht] - Improved compatibility to MySQL version 5.7+ [heluecht] + Improved the worker [annando] + Behaviour clarification of the group filter / new tab [annando] + Old options for the pager and share element were removed [annando] + Support of PDO was added [annando] + Improved error logging for issues with the database [annando] + Improved compatibility to MySQL version 5.7+ [annando] Friendica Addons: Updates to the translation (RU) [pztrm] - (core) Fix blocking issue for Communityhome [heluecht] + (core) Fix blocking issue for Communityhome [annando] Pledgie addon was updated to remove cert problems [tobiasd] Securemail now uses openpgp-php and phpseclib [fabrixxm] Superblock Configuration [tobiasd] - Twitter Connector updated to use with new deletion method [heluecht] + Twitter Connector updated to use with new deletion method [annando] Closed Issues: 1626, 1720, 2432, 2792, 2833, 2364, 2448, 2496, 2690, 2752, 2775, @@ -55,10 +55,10 @@ Version 3.5.2 (2017-06-06) Version 3.5.1 (2017-03-12) Friendica Core: Updates to the translations (BG, CA, CS, DE, EO, ES, FR, IS, IT, NL, PL, PT-BR, RU, SV) [translation teams] - Fix for a potential XSS vector [heluecht, thanks to Vít Šesták 'v6ak' for reporting the problem] + Fix for a potential XSS vector [annando, thanks to Vít Šesták 'v6ak' for reporting the problem] Fix for ghost request notifications on single user instances [Hypolite] Fix user language selection [tobiasd] - Fix a problem with communication to Diaspora with set posting locations [heluecht] + Fix a problem with communication to Diaspora with set posting locations [annando] Fix schema handling of direct links to a original posting [Rabuzarus] Fix a bug in notification handling [Rabuzarus] Adjustments for the Vagrant VM settings [silke, eelcomaljaars] @@ -66,22 +66,22 @@ Version 3.5.1 (2017-03-12) Improvements to the API and Friendica specific extensions [gerhard6380] Improvements to the Browser Notification functionality [Hypolite] Improvements to the themes [Hypolite, rabuzarus, rebeka-catalina, tobiasd] - Improvements to the database handling [heluecht] + Improvements to the database handling [annando] Improvements to the admin panel [tobiasd, Hypolite] - Improvements to the update process [heluecht] - Improvements to the handling of worker processes [heluecht] - Improvements to the performance [heluecht, Hypolite] + Improvements to the update process [annando] + Improvements to the handling of worker processes [annando] + Improvements to the performance [annando, Hypolite] Improvements to the documentation [Hypolite, tobiasd, rabuzarus, beardyunixer, eelcomaljaars] Improvements to the BBCode / Markdown conversation [Hypolite] - Improvements to the OStatus protocol implementation [heluecht] + Improvements to the OStatus protocol implementation [annando] Improvements to the installation wizzard [tobiasd] - Improvements to the Diaspora connectivity [heluecht, Hypolite] + Improvements to the Diaspora connectivity [annando, Hypolite] Work on PHP7 compatibility [ddorian1] Code cleanup [Hypolite, Quix0r] - Initial federation with Mastodon [heluecht] - The worker process can now also be started from the frontend [heluecht] - Deletion of postings is now done in the background [heluecht] - Extension of the DFRN transmitted information fields [heluecht] + Initial federation with Mastodon [annando] + The worker process can now also be started from the frontend [annando] + Deletion of postings is now done in the background [annando] + Extension of the DFRN transmitted information fields [annando] Translations of the core are now in /view/lang [Hypolite, tobiasd] Update of the fullCalendar library to 3.0.1 and adjusting the themes [rabuzarus] ping now works with JSON as well [Hypolite] @@ -100,16 +100,16 @@ Version 3.5.1 (2017-03-12) Updates to the translations (DE, ES, FR, IT, PT-BR) [translation teams] Improvements to the IFTTT addon [Hypolite] Improvements to the language filter addon [strk] - Improvements to the pump.io bridge [heluecht] - Improvements to the jappixmini addon [heluecht] - Improvements to the gpluspost addon [heluecht] - Improvements to the performance of the Twitter bridge when using workers [heluecht] - Diaspora Export addon is now working again [heluecht] + Improvements to the pump.io bridge [annando] + Improvements to the jappixmini addon [annando] + Improvements to the gpluspost addon [annando] + Improvements to the performance of the Twitter bridge when using workers [annando] + Diaspora Export addon is now working again [annando] Pledgie badge now uses https protocol for embedding [tobiasd] - Better posting loop prevention for the Google+/Twitter/GS connectors [heluecht] + Better posting loop prevention for the Google+/Twitter/GS connectors [annando] One can now configure the message for wppost bridged blog postings [tobiasd] - On some pages the result of the Rendertime is not shown anymore [heluecht] - Twitter-bridge now supports quotes and long posts when importing tweets [heluecht] + On some pages the result of the Rendertime is not shown anymore [annando] + Twitter-bridge now supports quotes and long posts when importing tweets [annando] Closed Issues 1019, 1163, 1612, 1613, 2103, 2177, 2252, 2260, 2403, 2991, 2614, @@ -121,48 +121,48 @@ Version 3.5.1 (2017-03-12) Version 3.5 (2016-09-13) Friendica Core: - NEW Optional local directory with possible federated contacts [heluecht] + NEW Optional local directory with possible federated contacts [annando] NEW Autocompletion for @-mentions and BBCode tags [rabuzarus] NEW Added a composer derived autoloader which allows composer autoloaders in addons/libraries [fabrixxm] - NEW theme: frio [rabuzarus, heluecht, fabrixxm] + NEW theme: frio [rabuzarus, annando, fabrixxm] Enhance .htaccess file (nerdoc, dissolve) Updates to the translations (DE, ES, IS, IT, RU) [translation teams] - Updates to the documentation [tobiasd, heluecht, mexcon, silke, rabuzarus, fabrixxm, Olivier Mehani, gerhard6380, ben utzer] - Extended the BBCode by [abstract] tag used for bridged postings to networks with limited character length [heluecht] - Code cleanup [heluecht, QuixOr] - Improvements to the API and Friendica specific extensions [heluecht, fabrixxm, gerhard6380] + Updates to the documentation [tobiasd, annando, mexcon, silke, rabuzarus, fabrixxm, Olivier Mehani, gerhard6380, ben utzer] + Extended the BBCode by [abstract] tag used for bridged postings to networks with limited character length [annando] + Code cleanup [annando, QuixOr] + Improvements to the API and Friendica specific extensions [annando, fabrixxm, gerhard6380] Improvements to the RSS/Atom feed import [mexcon] - Improvements to the communication with federated networks (Diaspora, Hubzilla, OStatus) [heluecht] - Improvements on the themes (quattro, vier, frost) [rabuzarus, fabrixxm, stieben, heluecht, Quix0r, tobiasd] + Improvements to the communication with federated networks (Diaspora, Hubzilla, OStatus) [annando] + Improvements on the themes (quattro, vier, frost) [rabuzarus, fabrixxm, stieben, annando, Quix0r, tobiasd] Improvements to the ACL dialog [fabrixxm, rabuzarus] - Improvements to the database structure and optimization of queries [heluecht] - Improvements to the UI (contacts, hotkeys, remember me, ARIA, code hightlighting) [rabuzarus, heluecht, tobiasd] - Improvements to the background process (poller, worker) [heluecht] - Improvements to the admin panel [tobiasd, heluecht, fabrixxm] - Improvements to the performance [heluecht] + Improvements to the database structure and optimization of queries [annando] + Improvements to the UI (contacts, hotkeys, remember me, ARIA, code hightlighting) [rabuzarus, annando, tobiasd] + Improvements to the background process (poller, worker) [annando] + Improvements to the admin panel [tobiasd, annando, fabrixxm] + Improvements to the performance [annando] Improvements to the installation wizzard (language selection, RINO version, check required PHP modules, default theme is now vier) [tobiasd] - Improvements to the relocation of nodes and accounts [heluecht] - Improvements to the DDoS detection [heluecht] - Improvements to the calendar/events module [heluecht, rabuzarus] + Improvements to the relocation of nodes and accounts [annando] + Improvements to the DDoS detection [annando] + Improvements to the calendar/events module [annando, rabuzarus] Improvements to OpenID login [strk] Improvements to the ShaShape font [andi] - Reworked the implementation of the DFRN, Diaspora protocols [heluecht] - Reworked the notifications code [fabrixxm, rabuzarus, heluecht] + Reworked the implementation of the DFRN, Diaspora protocols [annando] + Reworked the notifications code [fabrixxm, rabuzarus, annando] Reworked the p/config code [fabrixxm, rabuzarus] - Reworked XML generation [heluecht] - Removed now unused simplepie from library [heluecht] + Reworked XML generation [annando] + Removed now unused simplepie from library [annando] Friendica Addons Updated to the translations (DE, ES, IS, NL, PT BR), [translation teams] Piwik [tobiasd] - Twitter Connector [heluecht] - Pumpio Connector [heluecht] - Rendertime [heluecht] - wppost [heluecht] + Twitter Connector [annando] + Pumpio Connector [annando] + Rendertime [annando] + wppost [annando] showmore [rabuzarus] - fromgplus [heluecht] - app.net Connector [heluecht] - GNU Social Connector [heluecht] + fromgplus [annando] + app.net Connector [annando] + GNU Social Connector [annando] LDAP [Olivier Mehani] smileybutton [rabuzarus] retriver [mexon] From a0b0e38c28f10e89add20344ee0ff3e55a50bcea Mon Sep 17 00:00:00 2001 From: Andy H3 Date: Tue, 6 Jun 2017 12:57:08 +0700 Subject: [PATCH 092/125] Rename view/lang/en-GB/messages.po to view/lang/en-gb/messages.po --- view/lang/{en-GB => en-gb}/messages.po | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename view/lang/{en-GB => en-gb}/messages.po (100%) diff --git a/view/lang/en-GB/messages.po b/view/lang/en-gb/messages.po similarity index 100% rename from view/lang/en-GB/messages.po rename to view/lang/en-gb/messages.po From 2529552809ff2af78b7f2d720d2095c849f8130f Mon Sep 17 00:00:00 2001 From: Andy H3 Date: Tue, 6 Jun 2017 12:58:20 +0700 Subject: [PATCH 093/125] Rename view/lang/en-GB/strings.php to view/lang/en-gb/strings.php --- view/lang/{en-GB => en-gb}/strings.php | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename view/lang/{en-GB => en-gb}/strings.php (100%) diff --git a/view/lang/en-GB/strings.php b/view/lang/en-gb/strings.php similarity index 100% rename from view/lang/en-GB/strings.php rename to view/lang/en-gb/strings.php From 0322ed4dbc08c0ad49526247a3ee4bb582f229ce Mon Sep 17 00:00:00 2001 From: Andy H3 Date: Tue, 6 Jun 2017 12:58:59 +0700 Subject: [PATCH 094/125] Rename view/lang/en-US/messages.po to view/lang/en-us/messages.po --- view/lang/{en-US => en-us}/messages.po | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename view/lang/{en-US => en-us}/messages.po (100%) diff --git a/view/lang/en-US/messages.po b/view/lang/en-us/messages.po similarity index 100% rename from view/lang/en-US/messages.po rename to view/lang/en-us/messages.po From b59ca39d32c12ebbc7f70a4a720cfaf585c5e3e1 Mon Sep 17 00:00:00 2001 From: Andy H3 Date: Tue, 6 Jun 2017 13:00:20 +0700 Subject: [PATCH 095/125] Rename view/lang/en-US/strings.php to view/lang/en-us/strings.php --- view/lang/{en-US => en-us}/strings.php | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename view/lang/{en-US => en-us}/strings.php (100%) diff --git a/view/lang/en-US/strings.php b/view/lang/en-us/strings.php similarity index 100% rename from view/lang/en-US/strings.php rename to view/lang/en-us/strings.php From e3f60fe70620f49d8dddc8ee95b420f0e399ab06 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 6 Jun 2017 12:18:29 +0200 Subject: [PATCH 096/125] Friendica version 3.5.2 --- VERSION | 2 +- boot.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 445f311196..87ce492908 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.5.2-rc +3.5.2 diff --git a/boot.php b/boot.php index f9f8794e50..48f4a91bf3 100644 --- a/boot.php +++ b/boot.php @@ -38,7 +38,7 @@ require_once 'include/dbstructure.php'; define ( 'FRIENDICA_PLATFORM', 'Friendica'); define ( 'FRIENDICA_CODENAME', 'Asparagus'); -define ( 'FRIENDICA_VERSION', '3.5.2-rc' ); +define ( 'FRIENDICA_VERSION', '3.5.2' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); define ( 'DB_UPDATE_VERSION', 1227 ); From 7fb4b1be129dab93d6698862faf23c1f3773910b Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 6 Jun 2017 12:22:06 +0200 Subject: [PATCH 097/125] Friendica version 3.5.3dev --- VERSION | 2 +- boot.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 87ce492908..3fec5bc901 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.5.2 +3.5.3dev diff --git a/boot.php b/boot.php index 48f4a91bf3..5f83cb3e40 100644 --- a/boot.php +++ b/boot.php @@ -38,7 +38,7 @@ require_once 'include/dbstructure.php'; define ( 'FRIENDICA_PLATFORM', 'Friendica'); define ( 'FRIENDICA_CODENAME', 'Asparagus'); -define ( 'FRIENDICA_VERSION', '3.5.2' ); +define ( 'FRIENDICA_VERSION', '3.5.3dev' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); define ( 'DB_UPDATE_VERSION', 1227 ); From e00105d649d4a8e3ff89820563470cdd5d742ab9 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 6 Jun 2017 11:59:38 +0000 Subject: [PATCH 098/125] Don't fork a new worker --- include/queue.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/queue.php b/include/queue.php index b21bf676ba..6b42cf31e0 100644 --- a/include/queue.php +++ b/include/queue.php @@ -27,7 +27,7 @@ function queue_run(&$argv, &$argc){ logger('queue: start'); // Handling the pubsubhubbub requests - proc_run(PRIORITY_HIGH,'include/pubsubpublish.php'); + proc_run(array('priority' => PRIORITY_HIGH, 'dont_fork' => true), 'include/pubsubpublish.php'); $r = q("SELECT `queue`.*, `contact`.`name`, `contact`.`uid` FROM `queue` INNER JOIN `contact` ON `queue`.`cid` = `contact`.`id` @@ -50,7 +50,7 @@ function queue_run(&$argv, &$argc){ if (dbm::is_result($r)) { foreach ($r as $q_item) { logger('Call queue for id '.$q_item['id']); - proc_run(PRIORITY_LOW, "include/queue.php", $q_item['id']); + proc_run(array('priority' => PRIORITY_LOW, 'dont_fork' => true), "include/queue.php", $q_item['id']); } } return; From 8d13751d40d40d1d348584ae5ff803096e09f3af Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 6 Jun 2017 12:07:27 +0000 Subject: [PATCH 099/125] Increased database version --- boot.php | 2 +- database.sql | 2 +- include/poller.php | 5 ++--- update.php | 2 +- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/boot.php b/boot.php index 59011bc64f..b1f956fb2b 100644 --- a/boot.php +++ b/boot.php @@ -41,7 +41,7 @@ define ( 'FRIENDICA_PLATFORM', 'Friendica'); define ( 'FRIENDICA_CODENAME', 'Asparagus'); define ( 'FRIENDICA_VERSION', '3.5.2-rc' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); -define ( 'DB_UPDATE_VERSION', 1227 ); +define ( 'DB_UPDATE_VERSION', 1228 ); /** * @brief Constant with a HTML line break. diff --git a/database.sql b/database.sql index 4a5946ef38..2c13264919 100644 --- a/database.sql +++ b/database.sql @@ -580,7 +580,7 @@ CREATE TABLE IF NOT EXISTS `locks` ( `id` int(11) NOT NULL auto_increment, `name` varchar(128) NOT NULL DEFAULT '', `locked` tinyint(1) NOT NULL DEFAULT 0, - `created` datetime DEFAULT '0001-01-01 00:00:00', + `pid` int(10) unsigned NOT NULL DEFAULT 0, PRIMARY KEY(`id`) ) DEFAULT COLLATE utf8mb4_general_ci; diff --git a/include/poller.php b/include/poller.php index 68c5acbcbe..b08d98ca75 100644 --- a/include/poller.php +++ b/include/poller.php @@ -461,8 +461,7 @@ function poller_too_much_workers() { dba::close($processes); } dba::close($entries); - - $processlist = implode(', ', $listitem); + $processlist = ' ('.implode(', ', $listitem).')'; $s = q("SELECT COUNT(*) AS `total` FROM `workerqueue` WHERE `executed` <= '%s'", dbesc(NULL_DATE)); $entries = $s[0]["total"]; @@ -481,7 +480,7 @@ function poller_too_much_workers() { } } - logger("Load: ".$load."/".$maxsysload." - processes: ".$active."/".$entries." (".$processlist.") - maximum: ".$queues."/".$maxqueues, LOGGER_DEBUG); + logger("Load: ".$load."/".$maxsysload." - processes: ".$active."/".$entries.$processlist." - maximum: ".$queues."/".$maxqueues, LOGGER_DEBUG); // Are there fewer workers running as possible? Then fork a new one. if (!Config::get("system", "worker_dont_fork") AND ($queues > ($active + 1)) AND ($entries > 1)) { diff --git a/update.php b/update.php index 7561a9af19..76620a48a4 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ Date: Tue, 6 Jun 2017 17:25:28 +0000 Subject: [PATCH 100/125] Added documentation and renamed function --- doc/database/db_locks.md | 12 +++++------ src/Util/Lock.php | 44 ++++++++++++++++++++-------------------- 2 files changed, 28 insertions(+), 28 deletions(-) diff --git a/doc/database/db_locks.md b/doc/database/db_locks.md index 00556dd953..004ebd1c1e 100644 --- a/doc/database/db_locks.md +++ b/doc/database/db_locks.md @@ -1,11 +1,11 @@ Table locks =========== -| Field | Description | Type | Null | Key | Default | Extra | -|---------|------------------|--------------|------|-----|---------------------|----------------| -| id | sequential ID | int(11) | NO | PRI | NULL | auto_increment | -| name | | varchar(128) | NO | | | | -| locked | | tinyint(1) | NO | | 0 | | -| created | | datetime | YES | | 0001-01-01 00:00:00 | | +| Field | Description | Type | Null | Key | Default | Extra | +|---------|------------------|------------------|------|-----|---------------------|----------------| +| id | sequential ID | int(11) | NO | PRI | NULL | auto_increment | +| name | | varchar(128) | NO | | | | +| locked | | tinyint(1) | NO | | 0 | | +| pid | | int(10) unsigned | NO | | 0 | | Return to [database documentation](help/database) diff --git a/src/Util/Lock.php b/src/Util/Lock.php index af15e106d5..ca327de1e1 100644 --- a/src/Util/Lock.php +++ b/src/Util/Lock.php @@ -18,30 +18,30 @@ use dbm; */ class Lock { /** - * @brief Check for memcache and open a connection if configured - * - * @return object|boolean The memcache object - or "false" if not successful - */ - public static function memcache() { - if (!function_exists('memcache_connect')) { - return false; - } + * @brief Check for memcache and open a connection if configured + * + * @return object|boolean The memcache object - or "false" if not successful + */ + private static function connect_memcache() { + if (!function_exists('memcache_connect')) { + return false; + } - if (!Config::get('system', 'memcache')) { - return false; - } + if (!Config::get('system', 'memcache')) { + return false; + } - $memcache_host = Config::get('system', 'memcache_host', '127.0.0.1'); - $memcache_port = Config::get('system', 'memcache_port', 11211); + $memcache_host = Config::get('system', 'memcache_host', '127.0.0.1'); + $memcache_port = Config::get('system', 'memcache_port', 11211); - $memcache = new Memcache; + $memcache = new Memcache; - if (!$memcache->connect($memcache_host, $memcache_port)) { - return false; - } + if (!$memcache->connect($memcache_host, $memcache_port)) { + return false; + } - return $memcache; - } + return $memcache; + } /** * @brief Sets a lock for a given name @@ -55,7 +55,7 @@ class Lock { $got_lock = false; $start = time(); - $memcache = self::memcache(); + $memcache = self::connect_memcache(); if (is_object($memcache)) { $wait_sec = 0.2; $cachekey = get_app()->get_hostname().";lock:".$fn_name; @@ -126,7 +126,7 @@ class Lock { * @param string $fn_name Name of the lock */ public static function remove($fn_name) { - $memcache = self::memcache(); + $memcache = self::connect_memcache(); if (is_object($memcache)) { $cachekey = get_app()->get_hostname().";lock:".$fn_name; $lock = $memcache->get($cachekey); @@ -147,7 +147,7 @@ class Lock { * @brief Removes all lock that were set by us */ public static function removeAll() { - $memcache = self::memcache(); + $memcache = self::connect_memcache(); if (is_object($memcache)) { // We cannot delete all cache entries, but this doesn't matter with memcache return; From 929f518e5c67b7424e9249babcc7648daa2cd3fd Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 6 Jun 2017 17:38:58 +0000 Subject: [PATCH 101/125] Added documentation --- include/dbclean.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/include/dbclean.php b/include/dbclean.php index 024b845f7d..8da78d64b5 100644 --- a/include/dbclean.php +++ b/include/dbclean.php @@ -35,6 +35,19 @@ function dbclean_run(&$argv, &$argc) { /** * @brief Remove orphaned database entries + * @param integer $stage What should be deleted? + * + * Values for $stage: + * ------------------ + * 1: Old global item entries from item table without user copy. + * 2: Items without parents. + * 3: Orphaned data from thread table. + * 4: Orphaned data from notify table. + * 5: Orphaned data from notify-threads table. + * 6: Orphaned data from sign table. + * 7: Orphaned data from term table. + * 8: Expired threads. + * 9: Old global item entries from expired threads */ function remove_orphans($stage = 0) { global $db; From 611d3e3f5d781a3d3bc2d8cd3c1360a3297a09f5 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 6 Jun 2017 17:41:01 +0000 Subject: [PATCH 102/125] Added documentation --- doc/database/db_locks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/database/db_locks.md b/doc/database/db_locks.md index 004ebd1c1e..4de6fbf961 100644 --- a/doc/database/db_locks.md +++ b/doc/database/db_locks.md @@ -6,6 +6,6 @@ Table locks | id | sequential ID | int(11) | NO | PRI | NULL | auto_increment | | name | | varchar(128) | NO | | | | | locked | | tinyint(1) | NO | | 0 | | -| pid | | int(10) unsigned | NO | | 0 | | +| pid | Process ID | int(10) unsigned | NO | | 0 | | Return to [database documentation](help/database) From e3d5dcf049b4e772ae05a924f4e1d045a3480006 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 6 Jun 2017 17:42:47 +0000 Subject: [PATCH 103/125] Beware of camels --- src/Util/Lock.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Util/Lock.php b/src/Util/Lock.php index ca327de1e1..26ccdc9dd2 100644 --- a/src/Util/Lock.php +++ b/src/Util/Lock.php @@ -22,7 +22,7 @@ class Lock { * * @return object|boolean The memcache object - or "false" if not successful */ - private static function connect_memcache() { + private static function connectMemcache() { if (!function_exists('memcache_connect')) { return false; } @@ -55,7 +55,7 @@ class Lock { $got_lock = false; $start = time(); - $memcache = self::connect_memcache(); + $memcache = self::connectMemcache(); if (is_object($memcache)) { $wait_sec = 0.2; $cachekey = get_app()->get_hostname().";lock:".$fn_name; @@ -126,7 +126,7 @@ class Lock { * @param string $fn_name Name of the lock */ public static function remove($fn_name) { - $memcache = self::connect_memcache(); + $memcache = self::connectMemcache(); if (is_object($memcache)) { $cachekey = get_app()->get_hostname().";lock:".$fn_name; $lock = $memcache->get($cachekey); @@ -147,7 +147,7 @@ class Lock { * @brief Removes all lock that were set by us */ public static function removeAll() { - $memcache = self::connect_memcache(); + $memcache = self::connectMemcache(); if (is_object($memcache)) { // We cannot delete all cache entries, but this doesn't matter with memcache return; From 932e14971fdcfb54888ef7e4c73db0177b2e8816 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 6 Jun 2017 17:56:22 +0000 Subject: [PATCH 104/125] Issue 2864: Add a "alternate" link on display page --- mod/display.php | 7 ++++--- view/templates/display-head.tpl | 3 +-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/mod/display.php b/mod/display.php index ca6809eba1..bc0ba388bf 100644 --- a/mod/display.php +++ b/mod/display.php @@ -209,9 +209,6 @@ function display_content(App $a, $update = 0) { $o = ''; - $a->page['htmlhead'] .= replace_macros(get_markup_template('display-head.tpl'), array()); - - if ($update) { $nick = $_REQUEST['nick']; } else { @@ -281,6 +278,10 @@ function display_content(App $a, $update = 0) { return; } + $alternate = App::get_baseurl().'/display/'.$nick.'/'.$item_id.'.atom'; + $a->page['htmlhead'] .= replace_macros(get_markup_template('display-head.tpl'), + array('$alternate' => $alternate)); + $groups = array(); diff --git a/view/templates/display-head.tpl b/view/templates/display-head.tpl index 9a96a23988..f4d050eec2 100644 --- a/view/templates/display-head.tpl +++ b/view/templates/display-head.tpl @@ -1,4 +1,4 @@ - + - From 4e748668c6862cd4ab37570b77c4f84c1ab855d3 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 6 Jun 2017 20:10:47 +0000 Subject: [PATCH 105/125] Spaces --- include/poller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/poller.php b/include/poller.php index a19d9dec8f..fcabe5d8ee 100644 --- a/include/poller.php +++ b/include/poller.php @@ -392,7 +392,7 @@ function poller_kill_stale_workers() { $pid["priority"] = PRIORITY_MEDIUM; } - // Define the maximum durations + // Define the maximum durations $max_duration_defaults = array(PRIORITY_CRITICAL => 360, PRIORITY_HIGH => 10, PRIORITY_MEDIUM => 60, PRIORITY_LOW => 180, PRIORITY_NEGLIGIBLE => 360); $max_duration = $max_duration_defaults[$pid["priority"]]; From 6e6941a5466f45328d03dcb2819125c83e2c3c48 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 6 Jun 2017 21:56:25 +0000 Subject: [PATCH 106/125] We have an alternate link --- include/dfrn.php | 59 +++++++++++++++++++++++++++++++++ mod/display.php | 21 ++++++++++-- view/templates/display-head.tpl | 2 +- 3 files changed, 79 insertions(+), 3 deletions(-) diff --git a/include/dfrn.php b/include/dfrn.php index 7e4d7af2bc..5d0e6337a4 100644 --- a/include/dfrn.php +++ b/include/dfrn.php @@ -284,6 +284,65 @@ class dfrn { return $atom; } + /** + * @brief Generate an atom entry for a given item id + * + * @param int $item_id The item id + * + * @return string DFRN feed entry + */ + public static function itemFeed($item_id) { + $r = q("SELECT `item`.*, `item`.`id` AS `item_id`, + `contact`.`name`, `contact`.`network`, `contact`.`photo`, `contact`.`url`, + `contact`.`name-date`, `contact`.`uri-date`, `contact`.`avatar-date`, + `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`, + `sign`.`signed_text`, `sign`.`signature`, `sign`.`signer` + FROM `item` + STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id` + AND (NOT `contact`.`blocked` OR `contact`.`pending`) + LEFT JOIN `sign` ON `sign`.`iid` = `item`.`id` + WHERE `item`.`id` = %d AND `item`.`visible` AND NOT `item`.`moderated` AND `item`.`parent` != 0 + AND `item`.`wall` AND NOT `item`.`private`", + intval($item_id) + ); + + if (!dbm::is_result($r)) { + killme(); + } + + $item = $r[0]; + + $r = q("SELECT `contact`.*, `user`.`nickname`, `user`.`timezone`, `user`.`page-flags`, `user`.`account-type` + FROM `contact` INNER JOIN `user` ON `user`.`uid` = `contact`.`uid` + WHERE `contact`.`self` AND `user`.`uid` = %d LIMIT 1", + intval($item['uid']) + ); + + if (!dbm::is_result($r)) { + killme(); + } + + $owner = $r[0]; + + $doc = new DOMDocument('1.0', 'utf-8'); + $doc->formatOutput = true; + + $alternatelink = $owner['url']; + + $author = "dfrn:owner"; + //$author = "author"; + + $root = self::add_header($doc, $owner, $author, $alternatelink, true); + + $type = 'html'; + + $entry = self::entry($doc, $type, $item, $owner, true); + $root->appendChild($entry); + + $atom = trim($doc->saveXML()); + return $atom; + } + /** * @brief Create XML text for DFRN mails * diff --git a/mod/display.php b/mod/display.php index bc0ba388bf..e31b89998c 100644 --- a/mod/display.php +++ b/mod/display.php @@ -11,6 +11,17 @@ function display_init(App $a) { $nick = (($a->argc > 1) ? $a->argv[1] : ''); $profiledata = array(); + if ($a->argc == 3) { + if (substr($a->argv[2], -5) == '.atom') { + require_once('include/dfrn.php'); + $item_id = substr($a->argv[2], 0, -5); + $xml = dfrn::itemFeed($item_id); + header("Content-type: application/atom+xml"); + echo $xml; + http_status_exit(($xml) ? 200 : 500); + } + } + // If there is only one parameter, then check if this parameter could be a guid if ($a->argc == 2) { $nick = ""; @@ -278,11 +289,17 @@ function display_content(App $a, $update = 0) { return; } - $alternate = App::get_baseurl().'/display/'.$nick.'/'.$item_id.'.atom'; + // We are displaying an "alternate" link if that post was public. See issue 2864 + $items = q("SELECT `id` FROM `item` WHERE `id` = %d AND NOT `private` AND `wall`", intval($item_id)); + if (dbm::is_result($items)) { + $alternate = App::get_baseurl().'/display/'.$nick.'/'.$item_id.'.atom'; + } else { + $alternate = ''; + } + $a->page['htmlhead'] .= replace_macros(get_markup_template('display-head.tpl'), array('$alternate' => $alternate)); - $groups = array(); $contact = null; diff --git a/view/templates/display-head.tpl b/view/templates/display-head.tpl index f4d050eec2..dda8162146 100644 --- a/view/templates/display-head.tpl +++ b/view/templates/display-head.tpl @@ -1,4 +1,4 @@ - +{{if $alternate}}{{/if}}