diff --git a/LICENSE b/LICENSE index 42897de4ab..c155965f81 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,5 @@ Friendica Communications Server -Copyright (c) 2010-2013 the Friendica Project +Copyright (c) 2010-2016 the Friendica Project This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by diff --git a/boot.php b/boot.php index b296230b62..c979dde769 100644 --- a/boot.php +++ b/boot.php @@ -36,7 +36,7 @@ require_once('include/dbstructure.php'); define ( 'FRIENDICA_PLATFORM', 'Friendica'); define ( 'FRIENDICA_CODENAME', 'Asparagus'); -define ( 'FRIENDICA_VERSION', '3.5' ); +define ( 'FRIENDICA_VERSION', '3.5.1-dev' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); define ( 'DB_UPDATE_VERSION', 1202 ); diff --git a/doc/Settings.md b/doc/Settings.md index 6eb967acc6..06ef85c436 100644 --- a/doc/Settings.md +++ b/doc/Settings.md @@ -9,7 +9,8 @@ This number should decrease quickly. The second is the messages which could for various reasons not being delivered. They will be resend later. You can have a quick glance into that second queus in the "Inspect Queue" section of the admin panel. -If you have activated the background workers, there might be a third number representing the count of jobs queued for the workers. +If you have activated the background workers, there is a third number representing the count of jobs queued for the workers. +These worker tasks are prioritised and are done accordingly. Then you get an overview of the accounts on your node, which can be moderated in the "Users" section of the panel. As well as an overview of the currently active addons diff --git a/doc/de/Settings.md b/doc/de/Settings.md index f72d4fd75b..2b157e6d9e 100644 --- a/doc/de/Settings.md +++ b/doc/de/Settings.md @@ -9,8 +9,9 @@ Diese Zahl sollte sich relativ schnell sinken. Die zweite Zahl gibt die Anzahl von Nachrichten an, die nicht zugestellt werden konnten. Die Zustellung wird zu einem späteren Zeitpunkt noch einmal versucht. Unter dem Punkt "Warteschlange Inspizieren" kannst du einen schnellen Blick auf die zweite Warteschlange werfen. -Solltest du für die Hintergrundprozesse die Worker aktiviert haben, könntest du eine dritte Zahl angezeigt bekommen. +Solltest du für die Hintergrundprozesse die Worker aktiviert haben, wird eine dritte Zahl angezeigt. Diese repräsentiert die Anzahl der Aufgaben, die die Worker noch vor sich haben. +Die Aufgaben der Worker sind priorisiert und werden anhand dieser Prioritäten abgearbeitet. Des weiteren findest du eine Übersicht über die Accounts auf dem Friendica Knoten, die unter dem Punkt "Nutzer" moderiert werden können. Sowie eine Liste der derzeit aktivierten Addons. diff --git a/include/auth_ejabberd.php b/include/auth_ejabberd.php index 9a9d9accad..e1900dc730 100755 --- a/include/auth_ejabberd.php +++ b/include/auth_ejabberd.php @@ -47,11 +47,10 @@ require_once("boot.php"); global $a, $db; -if(is_null($a)) { +if (is_null($a)) $a = new App; -} -if(is_null($db)) { +if (is_null($db)) { @include(".htconfig.php"); require_once("include/dba.php"); $db = new dba($db_host, $db_user, $db_pass, $db_data); @@ -66,162 +65,261 @@ $bDebug = get_config('jabber','debug'); $oAuth = new exAuth($sLogFile, $bDebug); -class exAuth -{ +class exAuth { private $sLogFile; private $bDebug; private $rLogFile; - public function __construct($sLogFile, $bDebug) - { + /** + * @brief Create the class and do the authentification studd + * + * @param string $sLogFile The logfile name + * @param boolean $bDebug Debug mode + */ + public function __construct($sLogFile, $bDebug) { global $db; // setter $this->sLogFile = $sLogFile; $this->bDebug = $bDebug; - // ovo ne provjeravamo jer ako ne mozes kreirati log file, onda si u kvascu :) + // Open the logfile if the logfile name is defined if ($this->sLogFile != '') $this->rLogFile = fopen($this->sLogFile, "a") or die("Error opening log file: ". $this->sLogFile); $this->writeLog("[exAuth] start"); - // ovdje bi trebali biti spojeni na MySQL, imati otvoren log i zavrtit cekalicu + // We are connected to the SQL server and are having a log file. do { - $iHeader = fgets(STDIN, 3); - $aLength = unpack("n", $iHeader); - $iLength = $aLength["1"]; - if($iLength > 0) { - // ovo znaci da smo nesto dobili - $sData = fgets(STDIN, $iLength + 1); - $this->writeDebugLog("[debug] received data: ". $sData); - $aCommand = explode(":", $sData); - if (is_array($aCommand)){ - switch ($aCommand[0]){ - case "isuser": - // provjeravamo je li korisnik dobar - if (!isset($aCommand[1])){ - $this->writeLog("[exAuth] invalid isuser command, no username given"); - fwrite(STDOUT, pack("nn", 2, 0)); - } else { - // ovdje provjeri je li korisnik OK - $sUser = str_replace(array("%20", "(a)"), array(" ", "@"), $aCommand[1]); - $this->writeDebugLog("[debug] checking isuser for ". $sUser); - $sQuery = "SELECT `uid` FROM `user` WHERE `nickname`='". $db->escape($sUser) ."'"; - $this->writeDebugLog("[debug] using query ". $sQuery); - if ($oResult = q($sQuery)){ - if ($oResult) { - // korisnik OK - $this->writeLog("[exAuth] valid user: ". $sUser); - fwrite(STDOUT, pack("nn", 2, 1)); - } else { - // korisnik nije OK - $this->writeLog("[exAuth] invalid user: ". $sUser); - fwrite(STDOUT, pack("nn", 2, 0)); - } - //$oResult->close(); - } else { - $this->writeLog("[MySQL] invalid query: ". $sQuery); - fwrite(STDOUT, pack("nn", 2, 0)); - } - } - break; - case "auth": - // provjeravamo autentifikaciju korisnika - if (sizeof($aCommand) != 4){ - $this->writeLog("[exAuth] invalid auth command, data missing"); - fwrite(STDOUT, pack("nn", 2, 0)); - } else { - // ovdje provjeri prijavu - $sUser = str_replace(array("%20", "(a)"), array(" ", "@"), $aCommand[1]); - $this->writeDebugLog("[debug] doing auth for ". $sUser); - //$sQuery = "SELECT `uid`, `password` FROM `user` WHERE `password`='".hash('whirlpool',$aCommand[3])."' AND `nickname`='". $db->escape($sUser) ."'"; - $sQuery = "SELECT `uid`, `password` FROM `user` WHERE `nickname`='". $db->escape($sUser) ."'"; - $this->writeDebugLog("[debug] using query ". $sQuery); - if ($oResult = q($sQuery)){ - $uid = $oResult[0]["uid"]; - $Error = ($oResult[0]["password"] != hash('whirlpool',$aCommand[3])); -/* - if ($oResult[0]["password"] == hash('whirlpool',$aCommand[3])) { - // korisnik OK - $this->writeLog("[exAuth] authentificated user ". $sUser ."@". $aCommand[2]); - fwrite(STDOUT, pack("nn", 2, 1)); - } else { - // korisnik nije OK - $this->writeLog("[exAuth] authentification failed for user ". $sUser ."@". $aCommand[2]); - fwrite(STDOUT, pack("nn", 2, 0)); - } - $oResult->close(); -*/ - } else { - $this->writeLog("[MySQL] invalid query: ". $sQuery); - $Error = true; - $uid = -1; - } - if ($Error) { - $oConfig = q("SELECT `v` FROM `pconfig` WHERE `uid`=%d AND `cat` = 'xmpp' AND `k`='password' LIMIT 1;", intval($uid)); - $this->writeLog("[exAuth] got password ".$oConfig[0]["v"]); - $Error = ($aCommand[3] != $oConfig[0]["v"]); - } - - if ($Error) { - $this->writeLog("[exAuth] authentification failed for user ". $sUser ."@". $aCommand[2]); - fwrite(STDOUT, pack("nn", 2, 0)); - } else { - $this->writeLog("[exAuth] authentificated user ". $sUser ."@". $aCommand[2]); - fwrite(STDOUT, pack("nn", 2, 1)); - } - } - break; - case "setpass": - // postavljanje zaporke, onemoguceno - $this->writeLog("[exAuth] setpass command disabled"); - fwrite(STDOUT, pack("nn", 2, 0)); - break; - default: - // ako je uhvaceno ista drugo - $this->writeLog("[exAuth] unknown command ". $aCommand[0]); - fwrite(STDOUT, pack("nn", 2, 0)); - break; - } - } else { - $this->writeDebugLog("[debug] invalid command string"); - fwrite(STDOUT, pack("nn", 2, 0)); - } + // Quit if the database connection went down + if (!$db->connected()) { + $this->writeDebugLog("[debug] the database connection went down"); + return; + } + + $iHeader = fgets(STDIN, 3); + $aLength = unpack("n", $iHeader); + $iLength = $aLength["1"]; + + // No data? Then quit + if ($iLength == 0) { + $this->writeDebugLog("[debug] we got no data"); + return; + } + + // Fetching the data + $sData = fgets(STDIN, $iLength + 1); + $this->writeDebugLog("[debug] received data: ". $sData); + $aCommand = explode(":", $sData); + if (is_array($aCommand)) { + switch ($aCommand[0]) { + case "isuser": + // Check the existance of a given username + $this->isuser($aCommand); + break; + case "auth": + // Check if the givven password is correct + $this->auth($aCommand); + break; + case "setpass": + // We don't accept the setting of passwords here + $this->writeLog("[exAuth] setpass command disabled"); + fwrite(STDOUT, pack("nn", 2, 0)); + break; + default: + // We don't know the given command + $this->writeLog("[exAuth] unknown command ". $aCommand[0]); + fwrite(STDOUT, pack("nn", 2, 0)); + break; + } + } else { + $this->writeDebugLog("[debug] invalid command string"); + fwrite(STDOUT, pack("nn", 2, 0)); } - unset ($iHeader); - unset ($aLength); - unset ($iLength); - unset($aCommand); } while (true); } - public function __destruct() - { - // zatvori log file + /** + * @brief Check if the given username exists + * + * @param array $aCommand The command array + */ + private function isuser($aCommand) { + global $a; + + // Check if there is a username + if (!isset($aCommand[1])) { + $this->writeLog("[exAuth] invalid isuser command, no username given"); + fwrite(STDOUT, pack("nn", 2, 0)); + return; + } + + // Now we check if the given user is valid + $sUser = str_replace(array("%20", "(a)"), array(" ", "@"), $aCommand[1]); + $this->writeDebugLog("[debug] checking isuser for ". $sUser."@".$aCommand[2]); + + // If the hostnames doesn't match, we try to check remotely + if ($a->get_hostname() != $aCommand[2]) + $found = $this->check_user($aCommand[2], $aCommand[1], true); + else { + $sQuery = "SELECT `uid` FROM `user` WHERE `nickname`='".dbesc($sUser)."'"; + $this->writeDebugLog("[debug] using query ". $sQuery); + $r = q($sQuery); + $found = dbm::is_result($r); + } + + if ($found) { + // The user is okay + $this->writeLog("[exAuth] valid user: ". $sUser); + fwrite(STDOUT, pack("nn", 2, 1)); + } else { + // The user isn't okay + $this->writeLog("[exAuth] invalid user: ". $sUser); + fwrite(STDOUT, pack("nn", 2, 0)); + } + } + + /** + * @brief Check remote user existance via HTTP(S) + * + * @param string $host The hostname + * @param string $user Username + * @param boolean $ssl Should the check be done via SSL? + * + * @return boolean Was the user found? + */ + private function check_user($host, $user, $ssl) { + + $url = ($ssl ? "https":"http")."://".$host."/noscrape/".$user; + + $data = z_fetch_url($url); + + if (!is_array($data)) + return(false); + + if ($data["return_code"] != "200") + return(false); + + $json = @json_decode($data["body"]); + if (!is_object($json)) + return(false); + + return($json->nick == $user); + } + + /** + * @brief Authenticate the givven user and password + * + * @param array $aCommand The command array + */ + private function auth($aCommand) { + global $a; + + // check user authentication + if (sizeof($aCommand) != 4) { + $this->writeLog("[exAuth] invalid auth command, data missing"); + fwrite(STDOUT, pack("nn", 2, 0)); + return; + } + + // We now check if the password match + $sUser = str_replace(array("%20", "(a)"), array(" ", "@"), $aCommand[1]); + $this->writeDebugLog("[debug] doing auth for ".$sUser."@".$aCommand[2]); + + // If the hostnames doesn't match, we try to authenticate remotely + if ($a->get_hostname() != $aCommand[2]) + $Error = !$this->check_credentials($aCommand[2], $aCommand[1], $aCommand[3], true); + else { + $sQuery = "SELECT `uid`, `password` FROM `user` WHERE `nickname`='".dbesc($sUser)."'"; + $this->writeDebugLog("[debug] using query ". $sQuery); + if ($oResult = q($sQuery)) { + $uid = $oResult[0]["uid"]; + $Error = ($oResult[0]["password"] != hash('whirlpool',$aCommand[3])); + } else { + $this->writeLog("[MySQL] invalid query: ". $sQuery); + $Error = true; + $uid = -1; + } + if ($Error) { + $oConfig = q("SELECT `v` FROM `pconfig` WHERE `uid` = %d AND `cat` = 'xmpp' AND `k`='password' LIMIT 1;", intval($uid)); + $this->writeLog("[exAuth] got password ".$oConfig[0]["v"]); + $Error = ($aCommand[3] != $oConfig[0]["v"]); + } + } + + if ($Error) { + $this->writeLog("[exAuth] authentification failed for user ".$sUser."@". $aCommand[2]); + fwrite(STDOUT, pack("nn", 2, 0)); + } else { + $this->writeLog("[exAuth] authentificated user ".$sUser."@".$aCommand[2]); + fwrite(STDOUT, pack("nn", 2, 1)); + } + } + + /** + * @brief Check remote credentials via HTTP(S) + * + * @param string $host The hostname + * @param string $user Username + * @param string $password Password + * @param boolean $ssl Should the check be done via SSL? + * + * @return boolean Are the credentials okay? + */ + private function check_credentials($host, $user, $password, $ssl) { + $this->writeDebugLog("[debug] check credentials for user ".$user." on ".$host); + + $url = ($ssl ? "https":"http")."://".$host."/api/account/verify_credentials.json"; + + $ch = curl_init(); + curl_setopt($ch, CURLOPT_URL, $url); + curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); + curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5); + curl_setopt($ch, CURLOPT_HEADER, true); + curl_setopt($ch, CURLOPT_NOBODY, true); + curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC); + curl_setopt($ch, CURLOPT_USERPWD, $user.':'.$password); + + $header = curl_exec($ch); + $curl_info = @curl_getinfo($ch); + $http_code = $curl_info["http_code"]; + curl_close($ch); + + $this->writeDebugLog("[debug] got HTTP code ".$http_code); + + return ($http_code == 200); + } + + /** + * @brief write data to the logfile + * + * @param string $sMessage The logfile message + */ + private function writeLog($sMessage) { + if (is_resource($this->rLogFile)) + fwrite($this->rLogFile, date("r")." ".$sMessage."\n"); + } + + /** + * @brief write debug data to the logfile + * + * @param string $sMessage The logfile message + */ + private function writeDebugLog($sMessage) { + if ($this->bDebug) + $this->writeLog($sMessage); + } + + /** + * @brief destroy the class + */ + public function __destruct() { + // close the log file $this->writeLog("[exAuth] stop"); - if (is_resource($this->rLogFile)){ + if (is_resource($this->rLogFile)) fclose($this->rLogFile); - } } - - private function writeLog($sMessage) - { - if (is_resource($this->rLogFile)) { - fwrite($this->rLogFile, date("r") ." ". $sMessage ."\n"); - } - } - - private function writeDebugLog($sMessage) - { - if ($this->bDebug){ - $this->writeLog($sMessage); - } - } - } ?> - - diff --git a/include/dba.php b/include/dba.php index 5e84b95df5..97f6c87956 100644 --- a/include/dba.php +++ b/include/dba.php @@ -249,6 +249,15 @@ class dba { } } + function connected() { + if ($this->mysqli) + $connected = $this->db->ping(); + else + $connected = mysql_ping($this->db); + + return $connected; + } + function __destruct() { if ($this->db) if($this->mysqli) diff --git a/include/text.php b/include/text.php index 3aec42b323..2276f6688d 100644 --- a/include/text.php +++ b/include/text.php @@ -988,7 +988,7 @@ function search($s,$id='search-box',$url='search',$save = false, $aside = true) $a = get_app(); $values = array( - '$s' => $s, + '$s' => htmlspecialchars($s), '$id' => $id, '$action_url' => $url, '$search_label' => t('Search'), diff --git a/mod/admin.php b/mod/admin.php index 4ae921b048..4dc6064a7d 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -460,6 +460,7 @@ function admin_page_summary(&$a) { '$title' => t('Administration'), '$page' => t('Summary'), '$queues' => $queues, + '$workeractive' => get_config('system','worker'), '$users' => array(t('Registered users'), $users), '$accounts' => $accounts, '$pending' => array(t('Pending registrations'), $pending), @@ -1867,6 +1868,12 @@ function admin_page_logs(&$a){ LOGGER_DATA => 'Data', LOGGER_ALL => 'All' ); + + if (ini_get('log_errors')) { + $phplogenabled = t('PHP log currently enabled.'); + } else { + $phplogenabled = t('PHP log currently disabled.'); + } $t = get_markup_template("admin_logs.tpl"); @@ -1887,6 +1894,7 @@ function admin_page_logs(&$a){ '$phpheader' => t("PHP logging"), '$phphint' => t("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."), '$phplogcode' => "error_reporting(E_ERROR | E_WARNING | E_PARSE);\nini_set('error_log','php.out');\nini_set('log_errors','1');\nini_set('display_errors', '1');", + '$phplogenabled' => $phplogenabled, )); } diff --git a/mod/profile.php b/mod/profile.php index 681b1dbd1c..a8a6ad3885 100644 --- a/mod/profile.php +++ b/mod/profile.php @@ -10,7 +10,7 @@ function profile_init(&$a) { $a->page['aside'] = ''; if($a->argc > 1) - $which = $a->argv[1]; + $which = htmlspecialchars($a->argv[1]); else { $r = q("select nickname from user where blocked = 0 and account_expired = 0 and account_removed = 0 and verified = 1 order by rand() limit 1"); if(count($r)) { @@ -27,7 +27,7 @@ function profile_init(&$a) { $profile = 0; if((local_user()) && ($a->argc > 2) && ($a->argv[2] === 'view')) { $which = $a->user['nickname']; - $profile = $a->argv[1]; + $profile = htmlspecialchars($a->argv[1]); } else { auto_redir($a, $which); diff --git a/util/messages.po b/util/messages.po index 9d7d9c96e1..89a77dd3f3 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: 2016-08-09 18:10+0200\n" +"POT-Creation-Date: 2016-09-21 12:10+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -148,8 +148,8 @@ msgstr "" msgid "Enter name or interest" msgstr "" -#: include/contact_widgets.php:32 include/conversation.php:978 -#: include/Contact.php:324 mod/match.php:72 mod/allfriends.php:66 +#: include/contact_widgets.php:32 include/Contact.php:324 +#: include/conversation.php:976 mod/match.php:72 mod/allfriends.php:66 #: mod/follow.php:103 mod/suggest.php:83 mod/contacts.php:602 #: mod/dirfind.php:204 msgid "Connect/Follow" @@ -211,7 +211,7 @@ msgstr[1] "" #: 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 +#: view/theme/vier/theme.php:260 boot.php:904 msgid "show more" msgstr "" @@ -520,200 +520,6 @@ msgstr "" msgid "External link to forum" msgstr "" -#: include/event.php:16 include/bb2diaspora.php:148 mod/localtime.php:12 -msgid "l F d, Y \\@ g:i A" -msgstr "" - -#: include/event.php:33 include/event.php:51 include/bb2diaspora.php:154 -msgid "Starts:" -msgstr "" - -#: include/event.php:36 include/event.php:57 include/bb2diaspora.php:162 -msgid "Finishes:" -msgstr "" - -#: 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 "" - -#: include/event.php:441 -msgid "Sun" -msgstr "" - -#: include/event.php:442 -msgid "Mon" -msgstr "" - -#: include/event.php:443 -msgid "Tue" -msgstr "" - -#: include/event.php:444 -msgid "Wed" -msgstr "" - -#: include/event.php:445 -msgid "Thu" -msgstr "" - -#: include/event.php:446 -msgid "Fri" -msgstr "" - -#: include/event.php:447 -msgid "Sat" -msgstr "" - -#: include/event.php:448 include/text.php:1112 mod/settings.php:955 -msgid "Sunday" -msgstr "" - -#: include/event.php:449 include/text.php:1112 mod/settings.php:955 -msgid "Monday" -msgstr "" - -#: include/event.php:450 include/text.php:1112 -msgid "Tuesday" -msgstr "" - -#: include/event.php:451 include/text.php:1112 -msgid "Wednesday" -msgstr "" - -#: include/event.php:452 include/text.php:1112 -msgid "Thursday" -msgstr "" - -#: include/event.php:453 include/text.php:1112 -msgid "Friday" -msgstr "" - -#: include/event.php:454 include/text.php:1112 -msgid "Saturday" -msgstr "" - -#: include/event.php:455 -msgid "Jan" -msgstr "" - -#: include/event.php:456 -msgid "Feb" -msgstr "" - -#: include/event.php:457 -msgid "Mar" -msgstr "" - -#: include/event.php:458 -msgid "Apr" -msgstr "" - -#: include/event.php:459 include/event.php:471 include/text.php:1116 -msgid "May" -msgstr "" - -#: include/event.php:460 -msgid "Jun" -msgstr "" - -#: include/event.php:461 -msgid "Jul" -msgstr "" - -#: include/event.php:462 -msgid "Aug" -msgstr "" - -#: include/event.php:463 -msgid "Sept" -msgstr "" - -#: include/event.php:464 -msgid "Oct" -msgstr "" - -#: include/event.php:465 -msgid "Nov" -msgstr "" - -#: include/event.php:466 -msgid "Dec" -msgstr "" - -#: include/event.php:467 include/text.php:1116 -msgid "January" -msgstr "" - -#: include/event.php:468 include/text.php:1116 -msgid "February" -msgstr "" - -#: include/event.php:469 include/text.php:1116 -msgid "March" -msgstr "" - -#: include/event.php:470 include/text.php:1116 -msgid "April" -msgstr "" - -#: include/event.php:472 include/text.php:1116 -msgid "June" -msgstr "" - -#: include/event.php:473 include/text.php:1116 -msgid "July" -msgstr "" - -#: include/event.php:474 include/text.php:1116 -msgid "August" -msgstr "" - -#: include/event.php:475 include/text.php:1116 -msgid "September" -msgstr "" - -#: include/event.php:476 include/text.php:1116 -msgid "October" -msgstr "" - -#: include/event.php:477 include/text.php:1116 -msgid "November" -msgstr "" - -#: include/event.php:478 include/text.php:1116 -msgid "December" -msgstr "" - -#: include/event.php:479 mod/cal.php:286 mod/events.php:388 -msgid "today" -msgstr "" - -#: include/event.php:567 -msgid "l, F j" -msgstr "" - -#: include/event.php:586 -msgid "Edit event" -msgstr "" - -#: include/event.php:608 include/text.php:1518 include/text.php:1525 -msgid "link to source" -msgstr "" - -#: include/event.php:843 -msgid "Export" -msgstr "" - -#: include/event.php:844 -msgid "Export calendar as ical" -msgstr "" - -#: include/event.php:845 -msgid "Export calendar as csv" -msgstr "" - #: include/security.php:22 msgid "Welcome " msgstr "" @@ -784,7 +590,7 @@ msgstr "" msgid "Other" msgstr "" -#: include/profile_selectors.php:6 include/conversation.php:1477 +#: include/profile_selectors.php:6 include/conversation.php:1475 msgid "Undecided" msgid_plural "Undecided" msgstr[0] "" @@ -966,6 +772,24 @@ msgstr "" msgid "Ask me" msgstr "" +#: include/bb2diaspora.php:148 include/event.php:16 mod/localtime.php:12 +msgid "l F d, Y \\@ g:i A" +msgstr "" + +#: include/bb2diaspora.php:154 include/event.php:33 include/event.php:51 +msgid "Starts:" +msgstr "" + +#: include/bb2diaspora.php:162 include/event.php:36 include/event.php:57 +msgid "Finishes:" +msgstr "" + +#: include/bb2diaspora.php:170 include/event.php:39 include/event.php:63 +#: include/identity.php:329 mod/directory.php:145 mod/contacts.php:628 +#: mod/events.php:495 mod/notifications.php:232 +msgid "Location:" +msgstr "" + #: include/oembed.php:229 msgid "Embedded content" msgstr "" @@ -974,23 +798,6 @@ msgstr "" msgid "Embedding disabled" msgstr "" -#: include/bbcode.php:349 include/bbcode.php:1054 include/bbcode.php:1055 -msgid "Image/photo" -msgstr "" - -#: include/bbcode.php:466 -#, php-format -msgid "%2$s %3$s" -msgstr "" - -#: include/bbcode.php:1014 include/bbcode.php:1034 -msgid "$1 wrote:" -msgstr "" - -#: include/bbcode.php:1063 include/bbcode.php:1064 -msgid "Encrypted content" -msgstr "" - #: include/dba_pdo.php:72 include/dba.php:56 #, php-format msgid "Cannot locate DNS info for database server '%s'" @@ -1198,7 +1005,7 @@ msgid "" "\t\tThank you and welcome to %2$s." msgstr "" -#: include/user.php:423 mod/admin.php:1181 +#: include/user.php:423 mod/admin.php:1182 #, php-format msgid "Registration details for %s" msgstr "" @@ -1418,7 +1225,7 @@ msgstr "" msgid "@name, !forum, #tags, content" msgstr "" -#: include/nav.php:75 view/theme/frio/theme.php:243 boot.php:1655 +#: include/nav.php:75 view/theme/frio/theme.php:243 boot.php:1704 msgid "Logout" msgstr "" @@ -1487,7 +1294,7 @@ msgstr "" msgid "Your personal notes" msgstr "" -#: include/nav.php:94 mod/bookmarklet.php:12 boot.php:1656 +#: include/nav.php:94 mod/bookmarklet.php:12 boot.php:1705 msgid "Login" msgstr "" @@ -1504,7 +1311,7 @@ msgstr "" msgid "Home Page" msgstr "" -#: include/nav.php:111 mod/register.php:280 boot.php:1631 +#: include/nav.php:111 mod/register.php:280 boot.php:1680 msgid "Register" msgstr "" @@ -1544,8 +1351,8 @@ msgstr "" 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 +#: include/nav.php:127 include/nav.php:193 include/text.php:1004 +#: include/identity.php:781 include/identity.php:784 mod/viewcontacts.php:116 #: mod/contacts.php:790 mod/contacts.php:851 view/theme/frio/theme.php:257 #: view/theme/diabook/theme.php:125 msgid "Contacts" @@ -1662,8 +1469,8 @@ msgstr "" msgid "Delegate Page Management" msgstr "" -#: 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 +#: include/nav.php:188 mod/newmember.php:22 mod/settings.php:111 +#: mod/admin.php:1502 mod/admin.php:1760 view/theme/frio/theme.php:256 #: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:648 msgid "Settings" msgstr "" @@ -1724,19 +1531,19 @@ msgstr "" msgid "Reputable, has my trust" msgstr "" -#: include/contact_selectors.php:56 mod/admin.php:861 +#: include/contact_selectors.php:56 mod/admin.php:862 msgid "Frequently" msgstr "" -#: include/contact_selectors.php:57 mod/admin.php:862 +#: include/contact_selectors.php:57 mod/admin.php:863 msgid "Hourly" msgstr "" -#: include/contact_selectors.php:58 mod/admin.php:863 +#: include/contact_selectors.php:58 mod/admin.php:864 msgid "Twice daily" msgstr "" -#: include/contact_selectors.php:59 mod/admin.php:864 +#: include/contact_selectors.php:59 mod/admin.php:865 msgid "Daily" msgstr "" @@ -1761,7 +1568,7 @@ msgid "RSS/Atom" msgstr "" #: 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 +#: mod/admin.php:1375 mod/admin.php:1388 mod/admin.php:1400 mod/admin.php:1418 msgid "Email" msgstr "" @@ -1818,487 +1625,49 @@ msgstr "" msgid "Hubzilla/Redmatrix" msgstr "" -#: 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 "" - -#: 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 "" - -#: 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 "" - -#: 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 "" - -#: include/conversation.php:144 include/like.php:184 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "" - -#: include/conversation.php:147 -#, php-format -msgid "%1$s attends %2$s's %3$s" -msgstr "" - -#: include/conversation.php:150 -#, php-format -msgid "%1$s doesn't attend %2$s's %3$s" -msgstr "" - -#: include/conversation.php:153 -#, php-format -msgid "%1$s attends maybe %2$s's %3$s" -msgstr "" - -#: include/conversation.php:185 mod/dfrn_confirm.php:473 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "" - -#: include/conversation.php:219 -#, php-format -msgid "%1$s poked %2$s" -msgstr "" - -#: include/conversation.php:239 mod/mood.php:62 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "" - -#: include/conversation.php:278 mod/tagger.php:95 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "" - -#: include/conversation.php:303 -msgid "post/item" -msgstr "" - -#: include/conversation.php:304 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "" - -#: include/conversation.php:587 mod/content.php:372 mod/profiles.php:345 -#: mod/photos.php:1634 -msgid "Likes" -msgstr "" - -#: include/conversation.php:587 mod/content.php:372 mod/profiles.php:349 -#: mod/photos.php:1634 -msgid "Dislikes" -msgstr "" - -#: 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 "" - -#: 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 "" - -#: 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 "" - -#: include/conversation.php:767 object/Item.php:355 -msgid "Categories:" -msgstr "" - -#: include/conversation.php:768 object/Item.php:356 -msgid "Filed under:" -msgstr "" - -#: include/conversation.php:775 mod/content.php:497 mod/content.php:923 -#: object/Item.php:381 -#, php-format -msgid "%s from %s" -msgstr "" - -#: include/conversation.php:791 mod/content.php:513 -msgid "View in context" -msgstr "" - -#: include/conversation.php:793 include/conversation.php:1255 -#: mod/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 "" - -#: include/conversation.php:872 -msgid "remove" -msgstr "" - -#: include/conversation.php:876 -msgid "Delete Selected Items" -msgstr "" - -#: include/conversation.php:964 -msgid "Follow Thread" -msgstr "" - -#: include/conversation.php:965 include/Contact.php:364 -msgid "View Status" -msgstr "" - -#: 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 "" - -#: include/conversation.php:967 include/Contact.php:366 -msgid "View Photos" -msgstr "" - -#: include/conversation.php:968 include/Contact.php:367 -msgid "Network Posts" -msgstr "" - -#: include/conversation.php:969 include/Contact.php:368 -msgid "Edit Contact" -msgstr "" - -#: include/conversation.php:970 include/Contact.php:370 -msgid "Send PM" -msgstr "" - -#: include/conversation.php:974 include/Contact.php:371 -msgid "Poke" -msgstr "" - -#: include/conversation.php:1088 -#, php-format -msgid "%s likes this." -msgstr "" - -#: include/conversation.php:1091 -#, php-format -msgid "%s doesn't like this." -msgstr "" - -#: 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 "" - -#: include/conversation.php:1116 -#, php-format -msgid ", and %d other people" -msgstr "" - -#: include/conversation.php:1125 -#, php-format -msgid "%2$d people like this" -msgstr "" - -#: include/conversation.php:1126 -#, php-format -msgid "%s like this." -msgstr "" - -#: include/conversation.php:1129 -#, php-format -msgid "%2$d people don't like this" -msgstr "" - -#: include/conversation.php:1130 -#, php-format -msgid "%s don't like this." -msgstr "" - -#: include/conversation.php:1133 -#, php-format -msgid "%2$d people attend" -msgstr "" - -#: include/conversation.php:1134 -#, php-format -msgid "%s attend." -msgstr "" - -#: include/conversation.php:1137 -#, php-format -msgid "%2$d people don't attend" -msgstr "" - -#: include/conversation.php:1138 -#, php-format -msgid "%s don't attend." -msgstr "" - -#: include/conversation.php:1141 -#, php-format -msgid "%2$d people anttend maybe" -msgstr "" - -#: include/conversation.php:1142 -#, php-format -msgid "%s anttend maybe." -msgstr "" - -#: include/conversation.php:1181 include/conversation.php:1199 -msgid "Visible to everybody" -msgstr "" - -#: 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 "" - -#: include/conversation.php:1183 include/conversation.php:1201 -msgid "Please enter a video link/URL:" -msgstr "" - -#: include/conversation.php:1184 include/conversation.php:1202 -msgid "Please enter an audio link/URL:" -msgstr "" - -#: include/conversation.php:1185 include/conversation.php:1203 -msgid "Tag term:" -msgstr "" - -#: include/conversation.php:1186 include/conversation.php:1204 -#: mod/filer.php:30 -msgid "Save to Folder:" -msgstr "" - -#: include/conversation.php:1187 include/conversation.php:1205 -msgid "Where are you right now?" -msgstr "" - -#: include/conversation.php:1188 -msgid "Delete item(s)?" -msgstr "" - -#: include/conversation.php:1236 mod/photos.php:1596 -msgid "Share" -msgstr "" - -#: include/conversation.php:1237 mod/editpost.php:110 mod/wallmessage.php:154 -#: mod/message.php:354 mod/message.php:545 -msgid "Upload photo" -msgstr "" - -#: include/conversation.php:1238 mod/editpost.php:111 -msgid "upload photo" -msgstr "" - -#: include/conversation.php:1239 mod/editpost.php:112 -msgid "Attach file" -msgstr "" - -#: include/conversation.php:1240 mod/editpost.php:113 -msgid "attach file" -msgstr "" - -#: 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 "" - -#: include/conversation.php:1242 mod/editpost.php:115 -msgid "web link" -msgstr "" - -#: include/conversation.php:1243 mod/editpost.php:116 -msgid "Insert video link" -msgstr "" - -#: include/conversation.php:1244 mod/editpost.php:117 -msgid "video link" -msgstr "" - -#: include/conversation.php:1245 mod/editpost.php:118 -msgid "Insert audio link" -msgstr "" - -#: include/conversation.php:1246 mod/editpost.php:119 -msgid "audio link" -msgstr "" - -#: include/conversation.php:1247 mod/editpost.php:120 -msgid "Set your location" -msgstr "" - -#: include/conversation.php:1248 mod/editpost.php:121 -msgid "set location" -msgstr "" - -#: include/conversation.php:1249 mod/editpost.php:122 -msgid "Clear browser location" -msgstr "" - -#: include/conversation.php:1250 mod/editpost.php:123 -msgid "clear location" -msgstr "" - -#: include/conversation.php:1252 mod/editpost.php:137 -msgid "Set title" -msgstr "" - -#: include/conversation.php:1254 mod/editpost.php:139 -msgid "Categories (comma-separated list)" -msgstr "" - -#: include/conversation.php:1256 mod/editpost.php:125 -msgid "Permission settings" -msgstr "" - -#: include/conversation.php:1257 mod/editpost.php:154 -msgid "permissions" -msgstr "" - -#: include/conversation.php:1265 mod/editpost.php:134 -msgid "Public post" -msgstr "" - -#: 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 "" - -#: 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 "" - -#: include/conversation.php:1280 -msgid "Post to Groups" -msgstr "" - -#: include/conversation.php:1281 -msgid "Post to Contacts" -msgstr "" - -#: include/conversation.php:1282 -msgid "Private post" -msgstr "" - -#: include/conversation.php:1287 include/identity.php:250 mod/editpost.php:152 -msgid "Message" -msgstr "" - -#: include/conversation.php:1288 mod/editpost.php:153 -msgid "Browser" -msgstr "" - -#: include/conversation.php:1443 -msgid "View all" -msgstr "" - -#: include/conversation.php:1465 -msgid "Like" -msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" - -#: include/conversation.php:1468 -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "" -msgstr[1] "" - -#: include/conversation.php:1474 -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "" -msgstr[1] "" - #: include/network.php:595 msgid "view full size" msgstr "" -#: include/dbstructure.php:26 -#, php-format -msgid "" -"\n" -"\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\tfriendica developer if you can not help me on your own. My database " -"might be invalid." -msgstr "" - -#: include/dbstructure.php:31 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "" - -#: include/dbstructure.php:153 -msgid "Errors encountered creating database tables." -msgstr "" - -#: include/dbstructure.php:230 -msgid "Errors encountered performing database changes." -msgstr "" - #: include/Contact.php:119 msgid "stopped following" msgstr "" +#: include/Contact.php:310 include/Contact.php:323 include/Contact.php:365 +#: include/conversation.php:964 include/conversation.php:978 +#: mod/directory.php:163 mod/match.php:71 mod/allfriends.php:65 +#: mod/suggest.php:82 mod/dirfind.php:203 +msgid "View Profile" +msgstr "" + +#: include/Contact.php:364 include/conversation.php:963 +msgid "View Status" +msgstr "" + +#: include/Contact.php:366 include/conversation.php:965 +msgid "View Photos" +msgstr "" + +#: include/Contact.php:367 include/conversation.php:966 +msgid "Network Posts" +msgstr "" + +#: include/Contact.php:368 include/conversation.php:967 +msgid "Edit Contact" +msgstr "" + #: include/Contact.php:369 msgid "Drop Contact" msgstr "" +#: include/Contact.php:370 include/conversation.php:968 +msgid "Send PM" +msgstr "" + +#: include/Contact.php:371 include/conversation.php:972 +msgid "Poke" +msgstr "" + #: include/acl_selectors.php:327 msgid "Post to Email" msgstr "" @@ -2335,6 +1704,7 @@ msgid "Example: bob@example.com, mary@example.com" msgstr "" #: include/acl_selectors.php:349 mod/photos.php:1178 mod/photos.php:1562 +#: mod/events.php:510 msgid "Permissions" msgstr "" @@ -2342,34 +1712,11 @@ msgstr "" msgid "Close" msgstr "" -#: include/api.php:975 -#, php-format -msgid "Daily posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: include/api.php:995 -#, php-format -msgid "Weekly posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: include/api.php:1016 -#, php-format -msgid "Monthly posting limit of %d posts reached. The post was rejected." -msgstr "" - #: include/dfrn.php:1110 #, php-format msgid "%s\\'s birthday" msgstr "" -#: include/diaspora.php:1954 -msgid "Sharing notification from Diaspora network" -msgstr "" - -#: include/diaspora.php:2854 -msgid "Attachments:" -msgstr "" - #: include/follow.php:77 mod/dfrn_request.php:507 msgid "Disallowed profile URL." msgstr "" @@ -2429,235 +1776,13 @@ msgstr "" msgid "following" msgstr "" -#: include/identity.php:42 -msgid "Requested account is not available." -msgstr "" - -#: include/identity.php:51 mod/profile.php:21 -msgid "Requested profile is not available." -msgstr "" - -#: include/identity.php:95 include/identity.php:305 include/identity.php:686 -msgid "Edit profile" -msgstr "" - -#: include/identity.php:245 -msgid "Atom feed" -msgstr "" - -#: include/identity.php:276 -msgid "Manage/edit profiles" -msgstr "" - -#: include/identity.php:281 include/identity.php:307 mod/profiles.php:787 -msgid "Change profile photo" -msgstr "" - -#: include/identity.php:282 mod/profiles.php:788 -msgid "Create New Profile" -msgstr "" - -#: include/identity.php:292 mod/profiles.php:777 -msgid "Profile Image" -msgstr "" - -#: include/identity.php:295 mod/profiles.php:779 -msgid "visible to everybody" -msgstr "" - -#: include/identity.php:296 mod/profiles.php:684 mod/profiles.php:780 -msgid "Edit visibility" -msgstr "" - -#: 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 "" - -#: include/identity.php:331 include/identity.php:614 mod/directory.php:147 -#: mod/notifications.php:238 -msgid "Gender:" -msgstr "" - -#: include/identity.php:334 include/identity.php:634 mod/directory.php:149 -msgid "Status:" -msgstr "" - -#: include/identity.php:336 include/identity.php:645 mod/directory.php:151 -msgid "Homepage:" -msgstr "" - -#: include/identity.php:338 include/identity.php:655 mod/directory.php:153 -#: mod/contacts.php:630 mod/notifications.php:234 -msgid "About:" -msgstr "" - -#: include/identity.php:420 mod/contacts.php:50 mod/notifications.php:246 -msgid "Network:" -msgstr "" - -#: include/identity.php:449 include/identity.php:533 -msgid "g A l F d" -msgstr "" - -#: include/identity.php:450 include/identity.php:534 -msgid "F d" -msgstr "" - -#: include/identity.php:495 include/identity.php:580 -msgid "[today]" -msgstr "" - -#: include/identity.php:507 -msgid "Birthday Reminders" -msgstr "" - -#: include/identity.php:508 -msgid "Birthdays this week:" -msgstr "" - -#: include/identity.php:567 -msgid "[No description]" -msgstr "" - -#: include/identity.php:591 -msgid "Event Reminders" -msgstr "" - -#: include/identity.php:592 -msgid "Events this week:" -msgstr "" - -#: include/identity.php:612 mod/settings.php:1229 -msgid "Full Name:" -msgstr "" - -#: include/identity.php:619 -msgid "j F, Y" -msgstr "" - -#: include/identity.php:620 -msgid "j F" -msgstr "" - -#: include/identity.php:631 -msgid "Age:" -msgstr "" - -#: include/identity.php:640 -#, php-format -msgid "for %1$d %2$s" -msgstr "" - -#: include/identity.php:643 mod/profiles.php:703 -msgid "Sexual Preference:" -msgstr "" - -#: include/identity.php:647 mod/profiles.php:729 -msgid "Hometown:" -msgstr "" - -#: include/identity.php:649 mod/follow.php:134 mod/contacts.php:632 -#: mod/notifications.php:236 -msgid "Tags:" -msgstr "" - -#: include/identity.php:651 mod/profiles.php:730 -msgid "Political Views:" -msgstr "" - -#: include/identity.php:653 -msgid "Religion:" -msgstr "" - -#: include/identity.php:657 -msgid "Hobbies/Interests:" -msgstr "" - -#: include/identity.php:659 mod/profiles.php:734 -msgid "Likes:" -msgstr "" - -#: include/identity.php:661 mod/profiles.php:735 -msgid "Dislikes:" -msgstr "" - -#: include/identity.php:664 -msgid "Contact information and Social Networks:" -msgstr "" - -#: include/identity.php:666 -msgid "Musical interests:" -msgstr "" - -#: include/identity.php:668 -msgid "Books, literature:" -msgstr "" - -#: include/identity.php:670 -msgid "Television:" -msgstr "" - -#: include/identity.php:672 -msgid "Film/dance/culture/entertainment:" -msgstr "" - -#: include/identity.php:674 -msgid "Love/Romance:" -msgstr "" - -#: include/identity.php:676 -msgid "Work/employment:" -msgstr "" - -#: include/identity.php:678 -msgid "School/education:" -msgstr "" - -#: include/identity.php:682 -msgid "Forums:" -msgstr "" - -#: 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 "" - -#: include/identity.php:715 mod/follow.php:143 mod/contacts.php:834 -msgid "Status Messages and Posts" -msgstr "" - -#: include/identity.php:723 mod/contacts.php:842 -msgid "Profile Details" -msgstr "" - -#: include/identity.php:731 mod/photos.php:100 -msgid "Photo Albums" -msgstr "" - -#: include/identity.php:770 mod/notes.php:46 -msgid "Personal Notes" -msgstr "" - -#: include/identity.php:773 -msgid "Only You Can See This" -msgstr "" - #: include/items.php:1447 mod/dfrn_request.php:745 mod/dfrn_confirm.php:726 msgid "[Name Withheld]" msgstr "" #: 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 +#: mod/admin.php:1449 mod/admin.php:1683 msgid "Item not found." msgstr "" @@ -2676,25 +1801,34 @@ msgstr "" msgid "Yes" msgstr "" +#: include/items.php:1849 include/conversation.php:1272 mod/fbrowser.php:101 +#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:121 +#: mod/suggest.php:32 mod/editpost.php:148 mod/message.php:220 +#: mod/dfrn_request.php:875 mod/contacts.php:445 mod/settings.php:664 +#: mod/settings.php:690 mod/videos.php:131 mod/photos.php:248 +#: mod/photos.php:337 +msgid "Cancel" +msgstr "" + #: 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 +#: mod/wall_attach.php:70 mod/allfriends.php:12 mod/repair_ostatus.php:9 +#: mod/delegate.php:12 mod/attach.php:33 mod/follow.php:11 mod/follow.php:73 +#: mod/follow.php:155 mod/suggest.php:58 mod/display.php:474 mod/common.php:18 +#: mod/editpost.php:10 mod/network.php:4 mod/group.php:19 +#: mod/wallmessage.php:9 mod/wallmessage.php:33 mod/wallmessage.php:79 +#: mod/wallmessage.php:103 mod/api.php:26 mod/api.php:31 +#: mod/ostatus_subscribe.php:9 mod/message.php:46 mod/message.php:182 +#: mod/manage.php:96 mod/crepair.php:100 mod/contacts.php:350 +#: mod/dfrn_confirm.php:57 mod/dirfind.php:11 mod/fsuggest.php:78 +#: mod/item.php:185 mod/item.php:197 mod/mood.php:114 mod/poke.php:150 +#: mod/profile_photo.php:19 mod/profile_photo.php:175 +#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/profiles.php:166 +#: mod/profiles.php:598 mod/register.php:42 mod/regmod.php:110 +#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:650 +#: mod/photos.php:172 mod/photos.php:1093 mod/cal.php:308 mod/events.php:190 +#: mod/notifications.php:71 index.php:397 msgid "Permission denied." msgstr "" @@ -2702,6 +1836,36 @@ msgstr "" msgid "Archives" msgstr "" +#: include/like.php:163 include/text.php:1790 include/conversation.php:130 +#: include/conversation.php:266 mod/subthread.php:87 mod/tagger.php:62 +#: view/theme/diabook/theme.php:471 +msgid "photo" +msgstr "" + +#: include/like.php:163 include/conversation.php:125 +#: include/conversation.php:134 include/conversation.php:261 +#: include/conversation.php:270 include/diaspora.php:1402 mod/subthread.php:87 +#: mod/tagger.php:62 view/theme/diabook/theme.php:466 +#: view/theme/diabook/theme.php:475 +msgid "status" +msgstr "" + +#: include/like.php:165 include/text.php:1788 include/conversation.php:122 +#: include/conversation.php:258 view/theme/diabook/theme.php:463 +msgid "event" +msgstr "" + +#: include/like.php:182 include/conversation.php:141 include/diaspora.php:1398 +#: view/theme/diabook/theme.php:480 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "" + +#: include/like.php:184 include/conversation.php:144 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "" + #: include/like.php:186 #, php-format msgid "%1$s is attending %2$s's %3$s" @@ -2912,6 +2076,82 @@ msgstr "" msgid "surprised" msgstr "" +#: include/text.php:1112 include/event.php:449 mod/settings.php:955 +msgid "Monday" +msgstr "" + +#: include/text.php:1112 include/event.php:450 +msgid "Tuesday" +msgstr "" + +#: include/text.php:1112 include/event.php:451 +msgid "Wednesday" +msgstr "" + +#: include/text.php:1112 include/event.php:452 +msgid "Thursday" +msgstr "" + +#: include/text.php:1112 include/event.php:453 +msgid "Friday" +msgstr "" + +#: include/text.php:1112 include/event.php:454 +msgid "Saturday" +msgstr "" + +#: include/text.php:1112 include/event.php:448 mod/settings.php:955 +msgid "Sunday" +msgstr "" + +#: include/text.php:1116 include/event.php:467 +msgid "January" +msgstr "" + +#: include/text.php:1116 include/event.php:468 +msgid "February" +msgstr "" + +#: include/text.php:1116 include/event.php:469 +msgid "March" +msgstr "" + +#: include/text.php:1116 include/event.php:470 +msgid "April" +msgstr "" + +#: include/text.php:1116 include/event.php:459 include/event.php:471 +msgid "May" +msgstr "" + +#: include/text.php:1116 include/event.php:472 +msgid "June" +msgstr "" + +#: include/text.php:1116 include/event.php:473 +msgid "July" +msgstr "" + +#: include/text.php:1116 include/event.php:474 +msgid "August" +msgstr "" + +#: include/text.php:1116 include/event.php:475 +msgid "September" +msgstr "" + +#: include/text.php:1116 include/event.php:476 +msgid "October" +msgstr "" + +#: include/text.php:1116 include/event.php:477 +msgid "November" +msgstr "" + +#: include/text.php:1116 include/event.php:478 +msgid "December" +msgstr "" + #: include/text.php:1310 mod/videos.php:383 msgid "View Video" msgstr "" @@ -2932,6 +2172,10 @@ msgstr "" msgid "view on separate page" msgstr "" +#: include/text.php:1518 include/text.php:1525 include/event.php:608 +msgid "link to source" +msgstr "" + #: include/text.php:1792 msgid "activity" msgstr "" @@ -3048,6 +2292,762 @@ msgstr "" msgid "New Follower" msgstr "" +#: include/api.php:975 +#, php-format +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/api.php:995 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/api.php:1016 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/bbcode.php:348 include/bbcode.php:1056 include/bbcode.php:1057 +msgid "Image/photo" +msgstr "" + +#: include/bbcode.php:465 +#, php-format +msgid "%2$s %3$s" +msgstr "" + +#: include/bbcode.php:1016 include/bbcode.php:1036 +msgid "$1 wrote:" +msgstr "" + +#: include/bbcode.php:1065 include/bbcode.php:1066 +msgid "Encrypted content" +msgstr "" + +#: include/conversation.php:147 +#, php-format +msgid "%1$s attends %2$s's %3$s" +msgstr "" + +#: include/conversation.php:150 +#, php-format +msgid "%1$s doesn't attend %2$s's %3$s" +msgstr "" + +#: include/conversation.php:153 +#, php-format +msgid "%1$s attends maybe %2$s's %3$s" +msgstr "" + +#: include/conversation.php:185 mod/dfrn_confirm.php:473 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "" + +#: include/conversation.php:219 +#, php-format +msgid "%1$s poked %2$s" +msgstr "" + +#: include/conversation.php:239 mod/mood.php:62 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "" + +#: include/conversation.php:278 mod/tagger.php:95 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "" + +#: include/conversation.php:303 +msgid "post/item" +msgstr "" + +#: include/conversation.php:304 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "" + +#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:345 +#: mod/photos.php:1634 +msgid "Likes" +msgstr "" + +#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:349 +#: mod/photos.php:1634 +msgid "Dislikes" +msgstr "" + +#: include/conversation.php:586 include/conversation.php:1469 +#: mod/content.php:373 mod/photos.php:1635 +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1635 +msgid "Not attending" +msgstr "" + +#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1635 +msgid "Might attend" +msgstr "" + +#: include/conversation.php:708 mod/content.php:453 mod/content.php:758 +#: mod/photos.php:1709 object/Item.php:133 +msgid "Select" +msgstr "" + +#: include/conversation.php:709 mod/group.php:171 mod/content.php:454 +#: mod/content.php:759 mod/contacts.php:806 mod/contacts.php:1021 +#: mod/settings.php:726 mod/photos.php:1710 mod/admin.php:1392 +#: object/Item.php:134 +msgid "Delete" +msgstr "" + +#: include/conversation.php:753 mod/content.php:487 mod/content.php:910 +#: mod/content.php:911 object/Item.php:367 object/Item.php:368 +#, php-format +msgid "View %s's profile @ %s" +msgstr "" + +#: include/conversation.php:765 object/Item.php:355 +msgid "Categories:" +msgstr "" + +#: include/conversation.php:766 object/Item.php:356 +msgid "Filed under:" +msgstr "" + +#: include/conversation.php:773 mod/content.php:497 mod/content.php:923 +#: object/Item.php:381 +#, php-format +msgid "%s from %s" +msgstr "" + +#: include/conversation.php:789 mod/content.php:513 +msgid "View in context" +msgstr "" + +#: include/conversation.php:791 include/conversation.php:1253 +#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356 +#: mod/message.php:548 mod/content.php:515 mod/content.php:948 +#: mod/photos.php:1597 object/Item.php:406 +msgid "Please wait" +msgstr "" + +#: include/conversation.php:870 +msgid "remove" +msgstr "" + +#: include/conversation.php:874 +msgid "Delete Selected Items" +msgstr "" + +#: include/conversation.php:962 +msgid "Follow Thread" +msgstr "" + +#: include/conversation.php:1086 +#, php-format +msgid "%s likes this." +msgstr "" + +#: include/conversation.php:1089 +#, php-format +msgid "%s doesn't like this." +msgstr "" + +#: include/conversation.php:1092 +#, php-format +msgid "%s attends." +msgstr "" + +#: include/conversation.php:1095 +#, php-format +msgid "%s doesn't attend." +msgstr "" + +#: include/conversation.php:1098 +#, php-format +msgid "%s attends maybe." +msgstr "" + +#: include/conversation.php:1108 +msgid "and" +msgstr "" + +#: include/conversation.php:1114 +#, php-format +msgid ", and %d other people" +msgstr "" + +#: include/conversation.php:1123 +#, php-format +msgid "%2$d people like this" +msgstr "" + +#: include/conversation.php:1124 +#, php-format +msgid "%s like this." +msgstr "" + +#: include/conversation.php:1127 +#, php-format +msgid "%2$d people don't like this" +msgstr "" + +#: include/conversation.php:1128 +#, php-format +msgid "%s don't like this." +msgstr "" + +#: include/conversation.php:1131 +#, php-format +msgid "%2$d people attend" +msgstr "" + +#: include/conversation.php:1132 +#, php-format +msgid "%s attend." +msgstr "" + +#: include/conversation.php:1135 +#, php-format +msgid "%2$d people don't attend" +msgstr "" + +#: include/conversation.php:1136 +#, php-format +msgid "%s don't attend." +msgstr "" + +#: include/conversation.php:1139 +#, php-format +msgid "%2$d people anttend maybe" +msgstr "" + +#: include/conversation.php:1140 +#, php-format +msgid "%s anttend maybe." +msgstr "" + +#: include/conversation.php:1179 include/conversation.php:1197 +msgid "Visible to everybody" +msgstr "" + +#: include/conversation.php:1180 include/conversation.php:1198 +#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291 +#: mod/message.php:299 mod/message.php:442 mod/message.php:450 +msgid "Please enter a link URL:" +msgstr "" + +#: include/conversation.php:1181 include/conversation.php:1199 +msgid "Please enter a video link/URL:" +msgstr "" + +#: include/conversation.php:1182 include/conversation.php:1200 +msgid "Please enter an audio link/URL:" +msgstr "" + +#: include/conversation.php:1183 include/conversation.php:1201 +msgid "Tag term:" +msgstr "" + +#: include/conversation.php:1184 include/conversation.php:1202 +#: mod/filer.php:30 +msgid "Save to Folder:" +msgstr "" + +#: include/conversation.php:1185 include/conversation.php:1203 +msgid "Where are you right now?" +msgstr "" + +#: include/conversation.php:1186 +msgid "Delete item(s)?" +msgstr "" + +#: include/conversation.php:1234 mod/photos.php:1596 +msgid "Share" +msgstr "" + +#: include/conversation.php:1235 mod/editpost.php:110 mod/wallmessage.php:154 +#: mod/message.php:354 mod/message.php:545 +msgid "Upload photo" +msgstr "" + +#: include/conversation.php:1236 mod/editpost.php:111 +msgid "upload photo" +msgstr "" + +#: include/conversation.php:1237 mod/editpost.php:112 +msgid "Attach file" +msgstr "" + +#: include/conversation.php:1238 mod/editpost.php:113 +msgid "attach file" +msgstr "" + +#: include/conversation.php:1239 mod/editpost.php:114 mod/wallmessage.php:155 +#: mod/message.php:355 mod/message.php:546 +msgid "Insert web link" +msgstr "" + +#: include/conversation.php:1240 mod/editpost.php:115 +msgid "web link" +msgstr "" + +#: include/conversation.php:1241 mod/editpost.php:116 +msgid "Insert video link" +msgstr "" + +#: include/conversation.php:1242 mod/editpost.php:117 +msgid "video link" +msgstr "" + +#: include/conversation.php:1243 mod/editpost.php:118 +msgid "Insert audio link" +msgstr "" + +#: include/conversation.php:1244 mod/editpost.php:119 +msgid "audio link" +msgstr "" + +#: include/conversation.php:1245 mod/editpost.php:120 +msgid "Set your location" +msgstr "" + +#: include/conversation.php:1246 mod/editpost.php:121 +msgid "set location" +msgstr "" + +#: include/conversation.php:1247 mod/editpost.php:122 +msgid "Clear browser location" +msgstr "" + +#: include/conversation.php:1248 mod/editpost.php:123 +msgid "clear location" +msgstr "" + +#: include/conversation.php:1250 mod/editpost.php:137 +msgid "Set title" +msgstr "" + +#: include/conversation.php:1252 mod/editpost.php:139 +msgid "Categories (comma-separated list)" +msgstr "" + +#: include/conversation.php:1254 mod/editpost.php:125 +msgid "Permission settings" +msgstr "" + +#: include/conversation.php:1255 mod/editpost.php:154 +msgid "permissions" +msgstr "" + +#: include/conversation.php:1263 mod/editpost.php:134 +msgid "Public post" +msgstr "" + +#: include/conversation.php:1268 mod/editpost.php:145 mod/content.php:737 +#: mod/photos.php:1618 mod/photos.php:1666 mod/photos.php:1754 +#: mod/events.php:505 object/Item.php:729 +msgid "Preview" +msgstr "" + +#: include/conversation.php:1278 +msgid "Post to Groups" +msgstr "" + +#: include/conversation.php:1279 +msgid "Post to Contacts" +msgstr "" + +#: include/conversation.php:1280 +msgid "Private post" +msgstr "" + +#: include/conversation.php:1285 include/identity.php:250 mod/editpost.php:152 +msgid "Message" +msgstr "" + +#: include/conversation.php:1286 mod/editpost.php:153 +msgid "Browser" +msgstr "" + +#: include/conversation.php:1441 +msgid "View all" +msgstr "" + +#: include/conversation.php:1463 +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:1466 +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:1472 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "" +msgstr[1] "" + +#: include/dbstructure.php:26 +#, php-format +msgid "" +"\n" +"\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\tfriendica developer if you can not help me on your own. My database " +"might be invalid." +msgstr "" + +#: include/dbstructure.php:31 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "" + +#: include/dbstructure.php:153 +msgid "Errors encountered creating database tables." +msgstr "" + +#: include/dbstructure.php:230 +msgid "Errors encountered performing database changes." +msgstr "" + +#: include/diaspora.php:1954 +msgid "Sharing notification from Diaspora network" +msgstr "" + +#: include/diaspora.php:2854 +msgid "Attachments:" +msgstr "" + +#: include/event.php:441 +msgid "Sun" +msgstr "" + +#: include/event.php:442 +msgid "Mon" +msgstr "" + +#: include/event.php:443 +msgid "Tue" +msgstr "" + +#: include/event.php:444 +msgid "Wed" +msgstr "" + +#: include/event.php:445 +msgid "Thu" +msgstr "" + +#: include/event.php:446 +msgid "Fri" +msgstr "" + +#: include/event.php:447 +msgid "Sat" +msgstr "" + +#: include/event.php:455 +msgid "Jan" +msgstr "" + +#: include/event.php:456 +msgid "Feb" +msgstr "" + +#: include/event.php:457 +msgid "Mar" +msgstr "" + +#: include/event.php:458 +msgid "Apr" +msgstr "" + +#: include/event.php:460 +msgid "Jun" +msgstr "" + +#: include/event.php:461 +msgid "Jul" +msgstr "" + +#: include/event.php:462 +msgid "Aug" +msgstr "" + +#: include/event.php:463 +msgid "Sept" +msgstr "" + +#: include/event.php:464 +msgid "Oct" +msgstr "" + +#: include/event.php:465 +msgid "Nov" +msgstr "" + +#: include/event.php:466 +msgid "Dec" +msgstr "" + +#: include/event.php:479 mod/cal.php:286 mod/events.php:388 +msgid "today" +msgstr "" + +#: include/event.php:567 +msgid "l, F j" +msgstr "" + +#: include/event.php:586 +msgid "Edit event" +msgstr "" + +#: include/event.php:843 +msgid "Export" +msgstr "" + +#: include/event.php:844 +msgid "Export calendar as ical" +msgstr "" + +#: include/event.php:845 +msgid "Export calendar as csv" +msgstr "" + +#: include/identity.php:42 +msgid "Requested account is not available." +msgstr "" + +#: include/identity.php:51 mod/profile.php:21 +msgid "Requested profile is not available." +msgstr "" + +#: include/identity.php:95 include/identity.php:305 include/identity.php:686 +msgid "Edit profile" +msgstr "" + +#: include/identity.php:245 +msgid "Atom feed" +msgstr "" + +#: include/identity.php:276 +msgid "Manage/edit profiles" +msgstr "" + +#: include/identity.php:281 include/identity.php:307 mod/profiles.php:787 +msgid "Change profile photo" +msgstr "" + +#: include/identity.php:282 mod/profiles.php:788 +msgid "Create New Profile" +msgstr "" + +#: include/identity.php:292 mod/profiles.php:777 +msgid "Profile Image" +msgstr "" + +#: include/identity.php:295 mod/profiles.php:779 +msgid "visible to everybody" +msgstr "" + +#: include/identity.php:296 mod/profiles.php:684 mod/profiles.php:780 +msgid "Edit visibility" +msgstr "" + +#: include/identity.php:319 mod/directory.php:174 mod/match.php:84 +#: mod/viewcontacts.php:105 mod/allfriends.php:79 mod/suggest.php:98 +#: mod/hovercard.php:80 mod/common.php:123 mod/network.php:517 +#: mod/contacts.php:51 mod/contacts.php:626 mod/contacts.php:953 +#: mod/dirfind.php:223 mod/videos.php:37 mod/photos.php:42 mod/cal.php:44 +msgid "Forum" +msgstr "" + +#: include/identity.php:331 include/identity.php:614 mod/directory.php:147 +#: mod/notifications.php:238 +msgid "Gender:" +msgstr "" + +#: include/identity.php:334 include/identity.php:634 mod/directory.php:149 +msgid "Status:" +msgstr "" + +#: include/identity.php:336 include/identity.php:645 mod/directory.php:151 +msgid "Homepage:" +msgstr "" + +#: include/identity.php:338 include/identity.php:655 mod/directory.php:153 +#: mod/contacts.php:630 mod/notifications.php:234 +msgid "About:" +msgstr "" + +#: include/identity.php:420 mod/contacts.php:50 mod/notifications.php:246 +msgid "Network:" +msgstr "" + +#: include/identity.php:449 include/identity.php:533 +msgid "g A l F d" +msgstr "" + +#: include/identity.php:450 include/identity.php:534 +msgid "F d" +msgstr "" + +#: include/identity.php:495 include/identity.php:580 +msgid "[today]" +msgstr "" + +#: include/identity.php:507 +msgid "Birthday Reminders" +msgstr "" + +#: include/identity.php:508 +msgid "Birthdays this week:" +msgstr "" + +#: include/identity.php:567 +msgid "[No description]" +msgstr "" + +#: include/identity.php:591 +msgid "Event Reminders" +msgstr "" + +#: include/identity.php:592 +msgid "Events this week:" +msgstr "" + +#: include/identity.php:612 mod/settings.php:1229 +msgid "Full Name:" +msgstr "" + +#: include/identity.php:619 +msgid "j F, Y" +msgstr "" + +#: include/identity.php:620 +msgid "j F" +msgstr "" + +#: include/identity.php:631 +msgid "Age:" +msgstr "" + +#: include/identity.php:640 +#, php-format +msgid "for %1$d %2$s" +msgstr "" + +#: include/identity.php:643 mod/profiles.php:703 +msgid "Sexual Preference:" +msgstr "" + +#: include/identity.php:647 mod/profiles.php:729 +msgid "Hometown:" +msgstr "" + +#: include/identity.php:649 mod/follow.php:134 mod/contacts.php:632 +#: mod/notifications.php:236 +msgid "Tags:" +msgstr "" + +#: include/identity.php:651 mod/profiles.php:730 +msgid "Political Views:" +msgstr "" + +#: include/identity.php:653 +msgid "Religion:" +msgstr "" + +#: include/identity.php:657 +msgid "Hobbies/Interests:" +msgstr "" + +#: include/identity.php:659 mod/profiles.php:734 +msgid "Likes:" +msgstr "" + +#: include/identity.php:661 mod/profiles.php:735 +msgid "Dislikes:" +msgstr "" + +#: include/identity.php:664 +msgid "Contact information and Social Networks:" +msgstr "" + +#: include/identity.php:666 +msgid "Musical interests:" +msgstr "" + +#: include/identity.php:668 +msgid "Books, literature:" +msgstr "" + +#: include/identity.php:670 +msgid "Television:" +msgstr "" + +#: include/identity.php:672 +msgid "Film/dance/culture/entertainment:" +msgstr "" + +#: include/identity.php:674 +msgid "Love/Romance:" +msgstr "" + +#: include/identity.php:676 +msgid "Work/employment:" +msgstr "" + +#: include/identity.php:678 +msgid "School/education:" +msgstr "" + +#: include/identity.php:682 +msgid "Forums:" +msgstr "" + +#: include/identity.php:690 mod/events.php:508 +msgid "Basic" +msgstr "" + +#: include/identity.php:691 mod/contacts.php:868 mod/events.php:509 +#: mod/admin.php:931 +msgid "Advanced" +msgstr "" + +#: include/identity.php:715 mod/follow.php:143 mod/contacts.php:834 +msgid "Status Messages and Posts" +msgstr "" + +#: include/identity.php:723 mod/contacts.php:842 +msgid "Profile Details" +msgstr "" + +#: include/identity.php:731 mod/photos.php:100 +msgid "Photo Albums" +msgstr "" + +#: include/identity.php:770 mod/notes.php:46 +msgid "Personal Notes" +msgstr "" + +#: include/identity.php:773 +msgid "Only You Can See This" +msgstr "" + #: mod/oexchange.php:25 msgid "Post successful." msgstr "" @@ -3201,7 +3201,7 @@ msgid "" "Password reset failed." msgstr "" -#: mod/lostpass.php:109 boot.php:1670 +#: mod/lostpass.php:109 boot.php:1719 msgid "Password Reset" msgstr "" @@ -3269,7 +3269,7 @@ msgid "" "your email for further instructions." msgstr "" -#: mod/lostpass.php:161 boot.php:1658 +#: mod/lostpass.php:161 boot.php:1707 msgid "Nickname or Email: " msgstr "" @@ -3546,11 +3546,11 @@ msgstr "" #: mod/invite.php:140 mod/localtime.php:45 mod/message.php:357 #: mod/message.php:547 mod/manage.php:143 mod/crepair.php:154 -#: mod/content.php:728 mod/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 +#: mod/content.php:728 mod/contacts.php:577 mod/fsuggest.php:107 +#: mod/mood.php:137 mod/poke.php:199 mod/profiles.php:681 mod/install.php:272 +#: mod/install.php:312 mod/photos.php:1125 mod/photos.php:1249 +#: mod/photos.php:1566 mod/photos.php:1617 mod/photos.php:1665 +#: mod/photos.php:1753 mod/events.php:507 object/Item.php:720 #: view/theme/frio/config.php:59 view/theme/cleanzero/config.php:80 #: view/theme/quattro/config.php:64 view/theme/dispy/config.php:70 #: view/theme/vier/config.php:107 view/theme/diabook/theme.php:633 @@ -3617,18 +3617,6 @@ msgstr "" msgid "Remove" msgstr "" -#: mod/ping.php:272 -msgid "{0} wants to be your friend" -msgstr "" - -#: mod/ping.php:287 -msgid "{0} sent you a message" -msgstr "" - -#: mod/ping.php:302 -msgid "{0} requested registration" -msgstr "" - #: mod/wall_attach.php:94 msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" msgstr "" @@ -3650,38 +3638,6 @@ msgstr "" msgid "No friends to display." msgstr "" -#: mod/cal.php:152 mod/display.php:328 mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "" - -#: mod/cal.php:279 mod/events.php:380 -msgid "View" -msgstr "" - -#: mod/cal.php:280 mod/events.php:382 -msgid "Previous" -msgstr "" - -#: mod/cal.php:281 mod/events.php:383 mod/install.php:231 -msgid "Next" -msgstr "" - -#: mod/cal.php:301 -msgid "User not found" -msgstr "" - -#: mod/cal.php:317 -msgid "This calendar format is not supported" -msgstr "" - -#: mod/cal.php:319 -msgid "No exportable data found" -msgstr "" - -#: mod/cal.php:327 -msgid "calendar" -msgstr "" - #: mod/repair_ostatus.php:14 msgid "Resubscribing to OStatus contacts" msgstr "" @@ -3842,6 +3798,10 @@ msgstr "" msgid "Not Extended" msgstr "" +#: mod/display.php:328 mod/profile.php:155 mod/cal.php:152 +msgid "Access to this profile has been restricted." +msgstr "" + #: mod/display.php:471 msgid "Item has been removed." msgstr "" @@ -4499,9 +4459,8 @@ msgid "" "entries from this contact." msgstr "" -#: 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 +#: mod/crepair.php:165 mod/settings.php:665 mod/settings.php:691 +#: mod/admin.php:1375 mod/admin.php:1388 mod/admin.php:1400 mod/admin.php:1416 msgid "Name" msgstr "" @@ -4732,7 +4691,7 @@ msgstr "" #: 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 +#: object/Item.php:719 boot.php:903 msgid "Comment" msgstr "" @@ -4833,1384 +4792,6 @@ msgstr "" msgid "via Wall-To-Wall:" msgstr "" -#: mod/admin.php:92 -msgid "Theme settings updated." -msgstr "" - -#: mod/admin.php:156 mod/admin.php:925 -msgid "Site" -msgstr "" - -#: mod/admin.php:157 mod/admin.php:869 mod/admin.php:1382 mod/admin.php:1397 -msgid "Users" -msgstr "" - -#: mod/admin.php:158 mod/admin.php:1499 mod/admin.php:1559 mod/settings.php:74 -msgid "Plugins" -msgstr "" - -#: mod/admin.php:159 mod/admin.php:1757 mod/admin.php:1807 -msgid "Themes" -msgstr "" - -#: mod/admin.php:160 mod/settings.php:52 -msgid "Additional features" -msgstr "" - -#: mod/admin.php:161 -msgid "DB updates" -msgstr "" - -#: 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 "" - -#: mod/admin.php:178 mod/admin.php:1942 -msgid "View Logs" -msgstr "" - -#: mod/admin.php:179 -msgid "probe address" -msgstr "" - -#: mod/admin.php:180 -msgid "check webfinger" -msgstr "" - -#: mod/admin.php:187 -msgid "Plugin Features" -msgstr "" - -#: mod/admin.php:189 -msgid "diagnostics" -msgstr "" - -#: mod/admin.php:190 -msgid "User registrations waiting for confirmation" -msgstr "" - -#: mod/admin.php: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 "" - -#: mod/admin.php:369 -#, php-format -msgid "Currently this node is aware of %d nodes from the following platforms:" -msgstr "" - -#: mod/admin.php:399 -msgid "ID" -msgstr "" - -#: mod/admin.php:400 -msgid "Recipient Name" -msgstr "" - -#: 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 "" - -#: mod/admin.php:425 mod/admin.php:1331 -msgid "Soapbox Account" -msgstr "" - -#: mod/admin.php:426 mod/admin.php:1332 -msgid "Community/Celebrity Account" -msgstr "" - -#: mod/admin.php:427 mod/admin.php:1333 -msgid "Automatic Friend Account" -msgstr "" - -#: mod/admin.php:428 -msgid "Blog Account" -msgstr "" - -#: mod/admin.php:429 -msgid "Private Forum" -msgstr "" - -#: mod/admin.php:455 -msgid "Message queues" -msgstr "" - -#: mod/admin.php:461 -msgid "Summary" -msgstr "" - -#: mod/admin.php:463 -msgid "Registered users" -msgstr "" - -#: mod/admin.php:465 -msgid "Pending registrations" -msgstr "" - -#: mod/admin.php:466 -msgid "Version" -msgstr "" - -#: mod/admin.php:471 -msgid "Active plugins" -msgstr "" - -#: mod/admin.php:494 -msgid "Can not parse base url. Must have at least ://" -msgstr "" - -#: mod/admin.php:797 -msgid "RINO2 needs mcrypt php extension to work." -msgstr "" - -#: mod/admin.php:805 -msgid "Site settings updated." -msgstr "" - -#: mod/admin.php:833 mod/settings.php:919 -msgid "No special theme for mobile devices" -msgstr "" - -#: mod/admin.php:852 -msgid "No community page" -msgstr "" - -#: mod/admin.php:853 -msgid "Public postings from users of this site" -msgstr "" - -#: mod/admin.php:854 -msgid "Global community page" -msgstr "" - -#: mod/admin.php:859 mod/contacts.php:530 -msgid "Never" -msgstr "" - -#: mod/admin.php:860 -msgid "At post arrival" -msgstr "" - -#: mod/admin.php:868 mod/contacts.php:557 -msgid "Disabled" -msgstr "" - -#: mod/admin.php:870 -msgid "Users, Global Contacts" -msgstr "" - -#: mod/admin.php:871 -msgid "Users, Global Contacts/fallback" -msgstr "" - -#: mod/admin.php:875 -msgid "One month" -msgstr "" - -#: mod/admin.php:876 -msgid "Three months" -msgstr "" - -#: mod/admin.php:877 -msgid "Half a year" -msgstr "" - -#: mod/admin.php:878 -msgid "One year" -msgstr "" - -#: mod/admin.php:883 -msgid "Multi user instance" -msgstr "" - -#: mod/admin.php:906 -msgid "Closed" -msgstr "" - -#: mod/admin.php:907 -msgid "Requires approval" -msgstr "" - -#: mod/admin.php:908 -msgid "Open" -msgstr "" - -#: mod/admin.php:912 -msgid "No SSL policy, links will track page SSL state" -msgstr "" - -#: mod/admin.php:913 -msgid "Force all links to use SSL" -msgstr "" - -#: mod/admin.php:914 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "" - -#: 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 "" - -#: mod/admin.php:927 mod/register.php:263 -msgid "Registration" -msgstr "" - -#: mod/admin.php:928 -msgid "File upload" -msgstr "" - -#: mod/admin.php:929 -msgid "Policies" -msgstr "" - -#: mod/admin.php:931 -msgid "Auto Discovered Contact Directory" -msgstr "" - -#: mod/admin.php:932 -msgid "Performance" -msgstr "" - -#: mod/admin.php:933 -msgid "Worker" -msgstr "" - -#: mod/admin.php:934 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "" - -#: mod/admin.php:937 -msgid "Site name" -msgstr "" - -#: mod/admin.php:938 -msgid "Host name" -msgstr "" - -#: mod/admin.php:939 -msgid "Sender Email" -msgstr "" - -#: 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 "" - -#: mod/admin.php:941 -msgid "Shortcut icon" -msgstr "" - -#: mod/admin.php:941 -msgid "Link to an icon that will be used for browsers." -msgstr "" - -#: mod/admin.php:942 -msgid "Touch icon" -msgstr "" - -#: 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 "" - -#: 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 "" - -#: mod/admin.php:945 -msgid "System theme" -msgstr "" - -#: mod/admin.php:945 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "" - -#: mod/admin.php:946 -msgid "Mobile system theme" -msgstr "" - -#: mod/admin.php:946 -msgid "Theme for mobile devices" -msgstr "" - -#: mod/admin.php:947 -msgid "SSL link policy" -msgstr "" - -#: mod/admin.php:947 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "" - -#: mod/admin.php:948 -msgid "Force SSL" -msgstr "" - -#: mod/admin.php:948 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead " -"to endless loops." -msgstr "" - -#: mod/admin.php:949 -msgid "Old style 'Share'" -msgstr "" - -#: mod/admin.php:949 -msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "" - -#: mod/admin.php:950 -msgid "Hide help entry from navigation menu" -msgstr "" - -#: 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 "" - -#: mod/admin.php:951 -msgid "Single user instance" -msgstr "" - -#: mod/admin.php:951 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "" - -#: mod/admin.php:952 -msgid "Maximum image size" -msgstr "" - -#: mod/admin.php:952 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "" - -#: mod/admin.php:953 -msgid "Maximum image length" -msgstr "" - -#: mod/admin.php:953 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "" - -#: mod/admin.php:954 -msgid "JPEG image quality" -msgstr "" - -#: mod/admin.php:954 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "" - -#: mod/admin.php:956 -msgid "Register policy" -msgstr "" - -#: mod/admin.php:957 -msgid "Maximum Daily Registrations" -msgstr "" - -#: 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 "" - -#: mod/admin.php:958 -msgid "Register text" -msgstr "" - -#: mod/admin.php:958 -msgid "Will be displayed prominently on the registration page." -msgstr "" - -#: mod/admin.php:959 -msgid "Accounts abandoned after x days" -msgstr "" - -#: mod/admin.php:959 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "" - -#: mod/admin.php:960 -msgid "Allowed friend domains" -msgstr "" - -#: 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 "" - -#: mod/admin.php:961 -msgid "Allowed email domains" -msgstr "" - -#: 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 "" - -#: mod/admin.php:962 -msgid "Block public" -msgstr "" - -#: 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 "" - -#: mod/admin.php:963 -msgid "Force publish" -msgstr "" - -#: mod/admin.php:963 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "" - -#: 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 "" - -#: mod/admin.php:965 -msgid "Allow infinite level threading for items on this site." -msgstr "" - -#: mod/admin.php:966 -msgid "Private posts by default for new users" -msgstr "" - -#: mod/admin.php:966 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "" - -#: mod/admin.php:967 -msgid "Don't include post content in email notifications" -msgstr "" - -#: 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 "" - -#: mod/admin.php:968 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "" - -#: mod/admin.php:968 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "" - -#: mod/admin.php:969 -msgid "Don't embed private images in posts" -msgstr "" - -#: 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 "" - -#: mod/admin.php:970 -msgid "Allow Users to set remote_self" -msgstr "" - -#: 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 "" - -#: mod/admin.php:971 -msgid "Block multiple registrations" -msgstr "" - -#: mod/admin.php:971 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "" - -#: mod/admin.php:972 -msgid "OpenID support" -msgstr "" - -#: mod/admin.php:972 -msgid "OpenID support for registration and logins." -msgstr "" - -#: mod/admin.php:973 -msgid "Fullname check" -msgstr "" - -#: mod/admin.php:973 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "" - -#: mod/admin.php:974 -msgid "UTF-8 Regular expressions" -msgstr "" - -#: mod/admin.php:974 -msgid "Use PHP UTF8 regular expressions" -msgstr "" - -#: mod/admin.php:975 -msgid "Community Page Style" -msgstr "" - -#: 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 "" - -#: mod/admin.php:976 -msgid "Posts per user on community page" -msgstr "" - -#: mod/admin.php:976 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"'Global Community')" -msgstr "" - -#: mod/admin.php:977 -msgid "Enable OStatus support" -msgstr "" - -#: 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 "" - -#: mod/admin.php:978 -msgid "OStatus conversation completion interval" -msgstr "" - -#: 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 "" - -#: 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 "" - -#: mod/admin.php:983 -msgid "Provide built-in Diaspora network compatibility." -msgstr "" - -#: mod/admin.php:984 -msgid "Only allow Friendica contacts" -msgstr "" - -#: mod/admin.php:984 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "" - -#: mod/admin.php:985 -msgid "Verify SSL" -msgstr "" - -#: 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 "" - -#: mod/admin.php:986 -msgid "Proxy user" -msgstr "" - -#: mod/admin.php:987 -msgid "Proxy URL" -msgstr "" - -#: mod/admin.php:988 -msgid "Network timeout" -msgstr "" - -#: mod/admin.php:988 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "" - -#: mod/admin.php:989 -msgid "Delivery interval" -msgstr "" - -#: 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 "" - -#: mod/admin.php:990 -msgid "Poll interval" -msgstr "" - -#: mod/admin.php:990 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "" - -#: mod/admin.php:991 -msgid "Maximum Load Average" -msgstr "" - -#: mod/admin.php:991 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "" - -#: 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 "" - -#: 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 "" - -#: 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 "" - -#: mod/admin.php:1004 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "" - -#: mod/admin.php:1005 -msgid "Suppress Language" -msgstr "" - -#: mod/admin.php:1005 -msgid "Suppress language information in meta information about a posting." -msgstr "" - -#: mod/admin.php:1006 -msgid "Suppress Tags" -msgstr "" - -#: mod/admin.php:1006 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "" - -#: mod/admin.php:1007 -msgid "Path to item cache" -msgstr "" - -#: 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 "" - -#: 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 "" - -#: mod/admin.php:1009 -msgid "Maximum numbers of comments per post" -msgstr "" - -#: mod/admin.php:1009 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "" - -#: mod/admin.php:1010 -msgid "Path for lock file" -msgstr "" - -#: 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 "" - -#: 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 "" - -#: 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 "" - -#: mod/admin.php:1013 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on " -"systems with very low bandwith." -msgstr "" - -#: mod/admin.php:1014 -msgid "Enable old style pager" -msgstr "" - -#: mod/admin.php:1014 -msgid "" -"The old style pager has page numbers but slows down massively the page speed." -msgstr "" - -#: mod/admin.php:1015 -msgid "Only search in tags" -msgstr "" - -#: mod/admin.php:1015 -msgid "On large systems the text search can slow down the system extremely." -msgstr "" - -#: mod/admin.php:1017 -msgid "New base url" -msgstr "" - -#: 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 "" - -#: mod/admin.php:1062 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "" - -#: mod/admin.php:1065 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "" - -#: mod/admin.php:1077 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "" - -#: mod/admin.php:1080 -#, php-format -msgid "Update %s was successfully applied." -msgstr "" - -#: mod/admin.php:1084 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "" - -#: mod/admin.php:1086 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "" - -#: mod/admin.php:1105 -msgid "No failed updates." -msgstr "" - -#: mod/admin.php:1106 -msgid "Check database structure" -msgstr "" - -#: mod/admin.php:1111 -msgid "Failed Updates" -msgstr "" - -#: mod/admin.php:1112 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "" - -#: mod/admin.php:1113 -msgid "Mark success (if update was manually applied)" -msgstr "" - -#: mod/admin.php:1114 -msgid "Attempt to execute this update step automatically" -msgstr "" - -#: 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 "" - -#: 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 "" - -#: mod/admin.php:1193 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "" -msgstr[1] "" - -#: mod/admin.php:1200 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "" -msgstr[1] "" - -#: mod/admin.php:1247 -#, php-format -msgid "User '%s' deleted" -msgstr "" - -#: mod/admin.php:1255 -#, php-format -msgid "User '%s' unblocked" -msgstr "" - -#: mod/admin.php:1255 -#, php-format -msgid "User '%s' blocked" -msgstr "" - -#: mod/admin.php:1374 mod/admin.php:1399 -msgid "Register date" -msgstr "" - -#: mod/admin.php:1374 mod/admin.php:1399 -msgid "Last login" -msgstr "" - -#: mod/admin.php:1374 mod/admin.php:1399 -msgid "Last item" -msgstr "" - -#: mod/admin.php:1374 mod/settings.php:43 -msgid "Account" -msgstr "" - -#: mod/admin.php:1383 -msgid "Add User" -msgstr "" - -#: mod/admin.php:1384 -msgid "select all" -msgstr "" - -#: mod/admin.php:1385 -msgid "User registrations waiting for confirm" -msgstr "" - -#: mod/admin.php:1386 -msgid "User waiting for permanent deletion" -msgstr "" - -#: mod/admin.php:1387 -msgid "Request date" -msgstr "" - -#: mod/admin.php:1388 -msgid "No registrations." -msgstr "" - -#: mod/admin.php:1389 mod/notifications.php:176 mod/notifications.php:249 -msgid "Approve" -msgstr "" - -#: mod/admin.php:1390 -msgid "Deny" -msgstr "" - -#: mod/admin.php:1392 mod/contacts.php:605 mod/contacts.php:803 -#: mod/contacts.php:997 -msgid "Block" -msgstr "" - -#: mod/admin.php:1393 mod/contacts.php:605 mod/contacts.php:803 -#: mod/contacts.php:997 -msgid "Unblock" -msgstr "" - -#: mod/admin.php:1394 -msgid "Site admin" -msgstr "" - -#: mod/admin.php:1395 -msgid "Account expired" -msgstr "" - -#: mod/admin.php:1398 -msgid "New User" -msgstr "" - -#: mod/admin.php:1399 -msgid "Deleted since" -msgstr "" - -#: 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 "" - -#: 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 "" - -#: mod/admin.php:1415 -msgid "Name of the new user." -msgstr "" - -#: mod/admin.php:1416 -msgid "Nickname" -msgstr "" - -#: mod/admin.php:1416 -msgid "Nickname of the new user." -msgstr "" - -#: mod/admin.php:1417 -msgid "Email address of the new user." -msgstr "" - -#: mod/admin.php:1460 -#, php-format -msgid "Plugin %s disabled." -msgstr "" - -#: mod/admin.php:1464 -#, php-format -msgid "Plugin %s enabled." -msgstr "" - -#: mod/admin.php:1475 mod/admin.php:1711 -msgid "Disable" -msgstr "" - -#: mod/admin.php:1477 mod/admin.php:1713 -msgid "Enable" -msgstr "" - -#: mod/admin.php:1500 mod/admin.php:1758 -msgid "Toggle" -msgstr "" - -#: mod/admin.php:1508 mod/admin.php:1767 -msgid "Author: " -msgstr "" - -#: mod/admin.php:1509 mod/admin.php:1768 -msgid "Maintainer: " -msgstr "" - -#: 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 "" - -#: mod/admin.php:1749 -msgid "Screenshot" -msgstr "" - -#: 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 "" - -#: mod/admin.php:1816 -msgid "[Unsupported]" -msgstr "" - -#: mod/admin.php:1840 -msgid "Log settings updated." -msgstr "" - -#: mod/admin.php:1877 -msgid "Clear" -msgstr "" - -#: mod/admin.php:1882 -msgid "Enable Debugging" -msgstr "" - -#: mod/admin.php:1883 -msgid "Log file" -msgstr "" - -#: mod/admin.php:1883 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "" - -#: mod/admin.php:1884 -msgid "Log level" -msgstr "" - -#: 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 "" - -#: mod/admin.php:2014 mod/admin.php:2015 mod/settings.php:763 -msgid "On" -msgstr "" - -#: mod/admin.php:2015 -#, php-format -msgid "Lock feature %s" -msgstr "" - -#: mod/admin.php:2023 -msgid "Manage Additional Features" -msgstr "" - #: mod/contacts.php:128 #, php-format msgid "%d contact edited." @@ -6285,6 +4866,10 @@ msgstr "" msgid "Private communications are not available for this contact." msgstr "" +#: mod/contacts.php:530 mod/admin.php:860 +msgid "Never" +msgstr "" + #: mod/contacts.php:534 msgid "(Update was successful)" msgstr "" @@ -6310,6 +4895,10 @@ msgstr "" msgid "Fetch further information for feeds" msgstr "" +#: mod/contacts.php:557 mod/admin.php:869 +msgid "Disabled" +msgstr "" + #: mod/contacts.php:557 msgid "Fetch information" msgstr "" @@ -6369,6 +4958,16 @@ msgstr "" msgid "Update now" msgstr "" +#: mod/contacts.php:605 mod/contacts.php:803 mod/contacts.php:997 +#: mod/admin.php:1394 +msgid "Unblock" +msgstr "" + +#: mod/contacts.php:605 mod/contacts.php:803 mod/contacts.php:997 +#: mod/admin.php:1393 +msgid "Block" +msgstr "" + #: mod/contacts.php:606 mod/contacts.php:804 mod/contacts.php:1005 msgid "Unignore" msgstr "" @@ -6628,58 +5227,6 @@ msgstr "" msgid "Forum Search - %s" msgstr "" -#: mod/events.php:95 mod/events.php:97 -msgid "Event can not end before it has started." -msgstr "" - -#: mod/events.php:104 mod/events.php:106 -msgid "Event title and start time are required." -msgstr "" - -#: mod/events.php:381 -msgid "Create New Event" -msgstr "" - -#: mod/events.php:483 -msgid "Event details" -msgstr "" - -#: mod/events.php:484 -msgid "Starting date and Title are required." -msgstr "" - -#: mod/events.php:485 mod/events.php:486 -msgid "Event Starts:" -msgstr "" - -#: mod/events.php:485 mod/events.php:497 mod/profiles.php:709 -msgid "Required" -msgstr "" - -#: mod/events.php:487 mod/events.php:503 -msgid "Finish date/time is not known or not relevant" -msgstr "" - -#: mod/events.php:489 mod/events.php:490 -msgid "Event Finishes:" -msgstr "" - -#: mod/events.php:491 mod/events.php:504 -msgid "Adjust for viewer timezone" -msgstr "" - -#: mod/events.php:493 -msgid "Description:" -msgstr "" - -#: mod/events.php:497 mod/events.php:499 -msgid "Title:" -msgstr "" - -#: mod/events.php:500 mod/events.php:501 -msgid "Share this event" -msgstr "" - #: mod/fsuggest.php:63 msgid "Friend suggestion sent." msgstr "" @@ -6986,6 +5533,10 @@ msgstr "" msgid "Profile Name:" msgstr "" +#: mod/profiles.php:709 mod/events.php:485 mod/events.php:497 +msgid "Required" +msgstr "" + #: mod/profiles.php:711 msgid "" "This is your public profile.
It may " @@ -7152,6 +5703,10 @@ msgstr "" msgid "Your invitation ID: " msgstr "" +#: mod/register.php:263 mod/admin.php:928 +msgid "Registration" +msgstr "" + #: mod/register.php:271 msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " msgstr "" @@ -7204,6 +5759,14 @@ msgstr "" msgid "everybody" msgstr "" +#: mod/settings.php:43 mod/admin.php:1375 +msgid "Account" +msgstr "" + +#: mod/settings.php:52 mod/admin.php:160 +msgid "Additional features" +msgstr "" + #: mod/settings.php:60 msgid "Display" msgstr "" @@ -7212,6 +5775,10 @@ msgstr "" msgid "Social Networks" msgstr "" +#: mod/settings.php:74 mod/admin.php:158 mod/admin.php:1500 mod/admin.php:1560 +msgid "Plugins" +msgstr "" + #: mod/settings.php:88 msgid "Connected apps" msgstr "" @@ -7292,6 +5859,13 @@ msgstr "" msgid "Add application" msgstr "" +#: mod/settings.php:663 mod/settings.php:773 mod/settings.php:820 +#: mod/settings.php:889 mod/settings.php:976 mod/settings.php:1214 +#: mod/admin.php:927 mod/admin.php:1561 mod/admin.php:1809 mod/admin.php:1883 +#: mod/admin.php:2033 +msgid "Save Settings" +msgstr "" + #: mod/settings.php:666 mod/settings.php:692 msgid "Consumer Key" msgstr "" @@ -7336,6 +5910,14 @@ msgstr "" msgid "Plugin Settings" msgstr "" +#: mod/settings.php:763 mod/admin.php:2022 mod/admin.php:2023 +msgid "Off" +msgstr "" + +#: mod/settings.php:763 mod/admin.php:2022 mod/admin.php:2023 +msgid "On" +msgstr "" + #: mod/settings.php:771 msgid "Additional Features" msgstr "" @@ -7464,6 +6046,10 @@ msgstr "" msgid "Move to folder:" msgstr "" +#: mod/settings.php:919 mod/admin.php:834 +msgid "No special theme for mobile devices" +msgstr "" + #: mod/settings.php:974 msgid "Display Settings" msgstr "" @@ -7928,6 +6514,10 @@ msgstr "" msgid "System check" msgstr "" +#: mod/install.php:231 mod/cal.php:281 mod/events.php:383 +msgid "Next" +msgstr "" + #: mod/install.php:232 msgid "Check again" msgstr "" @@ -8246,107 +6836,6 @@ msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" -#: mod/notifications.php:35 -msgid "Invalid request identifier." -msgstr "" - -#: mod/notifications.php:44 mod/notifications.php:180 -#: mod/notifications.php:252 -msgid "Discard" -msgstr "" - -#: mod/notifications.php:105 -msgid "Network Notifications" -msgstr "" - -#: mod/notifications.php:117 -msgid "Personal Notifications" -msgstr "" - -#: mod/notifications.php:123 -msgid "Home Notifications" -msgstr "" - -#: mod/notifications.php:152 -msgid "Show Ignored Requests" -msgstr "" - -#: mod/notifications.php:152 -msgid "Hide Ignored Requests" -msgstr "" - -#: mod/notifications.php:164 mod/notifications.php:222 -msgid "Notification type: " -msgstr "" - -#: mod/notifications.php:167 -#, php-format -msgid "suggested by %s" -msgstr "" - -#: mod/notifications.php:173 mod/notifications.php:240 -msgid "Post a new friend activity" -msgstr "" - -#: mod/notifications.php:173 mod/notifications.php:240 -msgid "if applicable" -msgstr "" - -#: mod/notifications.php:195 -msgid "Claims to be known to you: " -msgstr "" - -#: mod/notifications.php:196 -msgid "yes" -msgstr "" - -#: mod/notifications.php:196 -msgid "no" -msgstr "" - -#: mod/notifications.php:197 -msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " -"you allow to read but you do not want to read theirs. Approve as: " -msgstr "" - -#: mod/notifications.php:200 -msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Sharer\" means that you " -"allow to read but you do not want to read theirs. Approve as: " -msgstr "" - -#: mod/notifications.php:209 -msgid "Friend" -msgstr "" - -#: mod/notifications.php:210 -msgid "Sharer" -msgstr "" - -#: mod/notifications.php:210 -msgid "Fan/Admirer" -msgstr "" - -#: mod/notifications.php:260 -msgid "No introductions." -msgstr "" - -#: mod/notifications.php:299 -msgid "Show unread" -msgstr "" - -#: mod/notifications.php:299 -msgid "Show all" -msgstr "" - -#: mod/notifications.php:305 -#, php-format -msgid "No more %s notifications." -msgstr "" - #: mod/photos.php:101 mod/photos.php:1886 msgid "Recent Photos" msgstr "" @@ -8513,6 +7002,1524 @@ msgstr "" msgid "Map" msgstr "" +#: mod/cal.php:279 mod/events.php:380 +msgid "View" +msgstr "" + +#: mod/cal.php:280 mod/events.php:382 +msgid "Previous" +msgstr "" + +#: mod/cal.php:301 +msgid "User not found" +msgstr "" + +#: mod/cal.php:317 +msgid "This calendar format is not supported" +msgstr "" + +#: mod/cal.php:319 +msgid "No exportable data found" +msgstr "" + +#: mod/cal.php:334 +msgid "calendar" +msgstr "" + +#: mod/events.php:95 mod/events.php:97 +msgid "Event can not end before it has started." +msgstr "" + +#: mod/events.php:104 mod/events.php:106 +msgid "Event title and start time are required." +msgstr "" + +#: mod/events.php:381 +msgid "Create New Event" +msgstr "" + +#: mod/events.php:483 +msgid "Event details" +msgstr "" + +#: mod/events.php:484 +msgid "Starting date and Title are required." +msgstr "" + +#: mod/events.php:485 mod/events.php:486 +msgid "Event Starts:" +msgstr "" + +#: mod/events.php:487 mod/events.php:503 +msgid "Finish date/time is not known or not relevant" +msgstr "" + +#: mod/events.php:489 mod/events.php:490 +msgid "Event Finishes:" +msgstr "" + +#: mod/events.php:491 mod/events.php:504 +msgid "Adjust for viewer timezone" +msgstr "" + +#: mod/events.php:493 +msgid "Description:" +msgstr "" + +#: mod/events.php:497 mod/events.php:499 +msgid "Title:" +msgstr "" + +#: mod/events.php:500 mod/events.php:501 +msgid "Share this event" +msgstr "" + +#: mod/notifications.php:35 +msgid "Invalid request identifier." +msgstr "" + +#: mod/notifications.php:44 mod/notifications.php:180 +#: mod/notifications.php:252 +msgid "Discard" +msgstr "" + +#: mod/notifications.php:105 +msgid "Network Notifications" +msgstr "" + +#: mod/notifications.php:117 +msgid "Personal Notifications" +msgstr "" + +#: mod/notifications.php:123 +msgid "Home Notifications" +msgstr "" + +#: mod/notifications.php:152 +msgid "Show Ignored Requests" +msgstr "" + +#: mod/notifications.php:152 +msgid "Hide Ignored Requests" +msgstr "" + +#: mod/notifications.php:164 mod/notifications.php:222 +msgid "Notification type: " +msgstr "" + +#: mod/notifications.php:167 +#, php-format +msgid "suggested by %s" +msgstr "" + +#: mod/notifications.php:173 mod/notifications.php:240 +msgid "Post a new friend activity" +msgstr "" + +#: mod/notifications.php:173 mod/notifications.php:240 +msgid "if applicable" +msgstr "" + +#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1390 +msgid "Approve" +msgstr "" + +#: mod/notifications.php:195 +msgid "Claims to be known to you: " +msgstr "" + +#: mod/notifications.php:196 +msgid "yes" +msgstr "" + +#: mod/notifications.php:196 +msgid "no" +msgstr "" + +#: mod/notifications.php:197 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " +"you allow to read but you do not want to read theirs. Approve as: " +msgstr "" + +#: mod/notifications.php:200 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Sharer\" means that you " +"allow to read but you do not want to read theirs. Approve as: " +msgstr "" + +#: mod/notifications.php:209 +msgid "Friend" +msgstr "" + +#: mod/notifications.php:210 +msgid "Sharer" +msgstr "" + +#: mod/notifications.php:210 +msgid "Fan/Admirer" +msgstr "" + +#: mod/notifications.php:260 +msgid "No introductions." +msgstr "" + +#: mod/notifications.php:299 +msgid "Show unread" +msgstr "" + +#: mod/notifications.php:299 +msgid "Show all" +msgstr "" + +#: mod/notifications.php:305 +#, php-format +msgid "No more %s notifications." +msgstr "" + +#: mod/ping.php:234 +msgid "{0} wants to be your friend" +msgstr "" + +#: mod/ping.php:249 +msgid "{0} sent you a message" +msgstr "" + +#: mod/ping.php:264 +msgid "{0} requested registration" +msgstr "" + +#: mod/admin.php:92 +msgid "Theme settings updated." +msgstr "" + +#: mod/admin.php:156 mod/admin.php:926 +msgid "Site" +msgstr "" + +#: mod/admin.php:157 mod/admin.php:870 mod/admin.php:1383 mod/admin.php:1398 +msgid "Users" +msgstr "" + +#: mod/admin.php:159 mod/admin.php:1758 mod/admin.php:1808 +msgid "Themes" +msgstr "" + +#: mod/admin.php:161 +msgid "DB updates" +msgstr "" + +#: 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:1882 +msgid "Logs" +msgstr "" + +#: mod/admin.php:178 mod/admin.php:1950 +msgid "View Logs" +msgstr "" + +#: mod/admin.php:179 +msgid "probe address" +msgstr "" + +#: mod/admin.php:180 +msgid "check webfinger" +msgstr "" + +#: mod/admin.php:187 +msgid "Plugin Features" +msgstr "" + +#: mod/admin.php:189 +msgid "diagnostics" +msgstr "" + +#: mod/admin.php:190 +msgid "User registrations waiting for confirmation" +msgstr "" + +#: mod/admin.php: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:925 +#: mod/admin.php:1382 mod/admin.php:1499 mod/admin.php:1559 mod/admin.php:1757 +#: mod/admin.php:1807 mod/admin.php:1881 mod/admin.php:1949 +msgid "Administration" +msgstr "" + +#: mod/admin.php:369 +#, php-format +msgid "Currently this node is aware of %d nodes from the following platforms:" +msgstr "" + +#: mod/admin.php:399 +msgid "ID" +msgstr "" + +#: mod/admin.php:400 +msgid "Recipient Name" +msgstr "" + +#: 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:1331 +msgid "Normal Account" +msgstr "" + +#: mod/admin.php:425 mod/admin.php:1332 +msgid "Soapbox Account" +msgstr "" + +#: mod/admin.php:426 mod/admin.php:1333 +msgid "Community/Celebrity Account" +msgstr "" + +#: mod/admin.php:427 mod/admin.php:1334 +msgid "Automatic Friend Account" +msgstr "" + +#: mod/admin.php:428 +msgid "Blog Account" +msgstr "" + +#: mod/admin.php:429 +msgid "Private Forum" +msgstr "" + +#: mod/admin.php:455 +msgid "Message queues" +msgstr "" + +#: mod/admin.php:461 +msgid "Summary" +msgstr "" + +#: mod/admin.php:464 +msgid "Registered users" +msgstr "" + +#: mod/admin.php:466 +msgid "Pending registrations" +msgstr "" + +#: mod/admin.php:467 +msgid "Version" +msgstr "" + +#: mod/admin.php:472 +msgid "Active plugins" +msgstr "" + +#: mod/admin.php:495 +msgid "Can not parse base url. Must have at least ://" +msgstr "" + +#: mod/admin.php:798 +msgid "RINO2 needs mcrypt php extension to work." +msgstr "" + +#: mod/admin.php:806 +msgid "Site settings updated." +msgstr "" + +#: mod/admin.php:853 +msgid "No community page" +msgstr "" + +#: mod/admin.php:854 +msgid "Public postings from users of this site" +msgstr "" + +#: mod/admin.php:855 +msgid "Global community page" +msgstr "" + +#: mod/admin.php:861 +msgid "At post arrival" +msgstr "" + +#: mod/admin.php:871 +msgid "Users, Global Contacts" +msgstr "" + +#: mod/admin.php:872 +msgid "Users, Global Contacts/fallback" +msgstr "" + +#: mod/admin.php:876 +msgid "One month" +msgstr "" + +#: mod/admin.php:877 +msgid "Three months" +msgstr "" + +#: mod/admin.php:878 +msgid "Half a year" +msgstr "" + +#: mod/admin.php:879 +msgid "One year" +msgstr "" + +#: mod/admin.php:884 +msgid "Multi user instance" +msgstr "" + +#: mod/admin.php:907 +msgid "Closed" +msgstr "" + +#: mod/admin.php:908 +msgid "Requires approval" +msgstr "" + +#: mod/admin.php:909 +msgid "Open" +msgstr "" + +#: mod/admin.php:913 +msgid "No SSL policy, links will track page SSL state" +msgstr "" + +#: mod/admin.php:914 +msgid "Force all links to use SSL" +msgstr "" + +#: mod/admin.php:915 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "" + +#: mod/admin.php:929 +msgid "File upload" +msgstr "" + +#: mod/admin.php:930 +msgid "Policies" +msgstr "" + +#: mod/admin.php:932 +msgid "Auto Discovered Contact Directory" +msgstr "" + +#: mod/admin.php:933 +msgid "Performance" +msgstr "" + +#: mod/admin.php:934 +msgid "Worker" +msgstr "" + +#: mod/admin.php:935 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "" + +#: mod/admin.php:938 +msgid "Site name" +msgstr "" + +#: mod/admin.php:939 +msgid "Host name" +msgstr "" + +#: mod/admin.php:940 +msgid "Sender Email" +msgstr "" + +#: mod/admin.php:940 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "" + +#: mod/admin.php:941 +msgid "Banner/Logo" +msgstr "" + +#: mod/admin.php:942 +msgid "Shortcut icon" +msgstr "" + +#: mod/admin.php:942 +msgid "Link to an icon that will be used for browsers." +msgstr "" + +#: mod/admin.php:943 +msgid "Touch icon" +msgstr "" + +#: mod/admin.php:943 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "" + +#: mod/admin.php:944 +msgid "Additional Info" +msgstr "" + +#: mod/admin.php:944 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/siteinfo." +msgstr "" + +#: mod/admin.php:945 +msgid "System language" +msgstr "" + +#: mod/admin.php:946 +msgid "System theme" +msgstr "" + +#: mod/admin.php:946 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "" + +#: mod/admin.php:947 +msgid "Mobile system theme" +msgstr "" + +#: mod/admin.php:947 +msgid "Theme for mobile devices" +msgstr "" + +#: mod/admin.php:948 +msgid "SSL link policy" +msgstr "" + +#: mod/admin.php:948 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "" + +#: mod/admin.php:949 +msgid "Force SSL" +msgstr "" + +#: mod/admin.php:949 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead " +"to endless loops." +msgstr "" + +#: mod/admin.php:950 +msgid "Old style 'Share'" +msgstr "" + +#: mod/admin.php:950 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "" + +#: mod/admin.php:951 +msgid "Hide help entry from navigation menu" +msgstr "" + +#: mod/admin.php:951 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "" + +#: mod/admin.php:952 +msgid "Single user instance" +msgstr "" + +#: mod/admin.php:952 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "" + +#: mod/admin.php:953 +msgid "Maximum image size" +msgstr "" + +#: mod/admin.php:953 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "" + +#: mod/admin.php:954 +msgid "Maximum image length" +msgstr "" + +#: mod/admin.php:954 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "" + +#: mod/admin.php:955 +msgid "JPEG image quality" +msgstr "" + +#: mod/admin.php:955 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "" + +#: mod/admin.php:957 +msgid "Register policy" +msgstr "" + +#: mod/admin.php:958 +msgid "Maximum Daily Registrations" +msgstr "" + +#: mod/admin.php:958 +msgid "" +"If registration is permitted above, this sets the maximum number of new user " +"registrations to accept per day. If register is set to closed, this setting " +"has no effect." +msgstr "" + +#: mod/admin.php:959 +msgid "Register text" +msgstr "" + +#: mod/admin.php:959 +msgid "Will be displayed prominently on the registration page." +msgstr "" + +#: mod/admin.php:960 +msgid "Accounts abandoned after x days" +msgstr "" + +#: mod/admin.php:960 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "" + +#: mod/admin.php:961 +msgid "Allowed friend domains" +msgstr "" + +#: mod/admin.php:961 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "" + +#: mod/admin.php:962 +msgid "Allowed email domains" +msgstr "" + +#: mod/admin.php:962 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "" + +#: mod/admin.php:963 +msgid "Block public" +msgstr "" + +#: mod/admin.php:963 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "" + +#: mod/admin.php:964 +msgid "Force publish" +msgstr "" + +#: mod/admin.php:964 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "" + +#: mod/admin.php:965 +msgid "Global directory URL" +msgstr "" + +#: mod/admin.php:965 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "" + +#: mod/admin.php:966 +msgid "Allow threaded items" +msgstr "" + +#: mod/admin.php:966 +msgid "Allow infinite level threading for items on this site." +msgstr "" + +#: mod/admin.php:967 +msgid "Private posts by default for new users" +msgstr "" + +#: mod/admin.php:967 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "" + +#: mod/admin.php:968 +msgid "Don't include post content in email notifications" +msgstr "" + +#: mod/admin.php:968 +msgid "" +"Don't include the content of a post/comment/private message/etc. in the " +"email notifications that are sent out from this site, as a privacy measure." +msgstr "" + +#: mod/admin.php:969 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "" + +#: mod/admin.php:969 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "" + +#: mod/admin.php:970 +msgid "Don't embed private images in posts" +msgstr "" + +#: mod/admin.php:970 +msgid "" +"Don't replace locally-hosted private photos in posts with an embedded copy " +"of the image. This means that contacts who receive posts containing private " +"photos will have to authenticate and load each image, which may take a while." +msgstr "" + +#: mod/admin.php:971 +msgid "Allow Users to set remote_self" +msgstr "" + +#: mod/admin.php:971 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." +msgstr "" + +#: mod/admin.php:972 +msgid "Block multiple registrations" +msgstr "" + +#: mod/admin.php:972 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "" + +#: mod/admin.php:973 +msgid "OpenID support" +msgstr "" + +#: mod/admin.php:973 +msgid "OpenID support for registration and logins." +msgstr "" + +#: mod/admin.php:974 +msgid "Fullname check" +msgstr "" + +#: mod/admin.php:974 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "" + +#: mod/admin.php:975 +msgid "UTF-8 Regular expressions" +msgstr "" + +#: mod/admin.php:975 +msgid "Use PHP UTF8 regular expressions" +msgstr "" + +#: mod/admin.php:976 +msgid "Community Page Style" +msgstr "" + +#: mod/admin.php:976 +msgid "" +"Type of community page to show. 'Global community' shows every public " +"posting from an open distributed network that arrived on this server." +msgstr "" + +#: mod/admin.php:977 +msgid "Posts per user on community page" +msgstr "" + +#: mod/admin.php:977 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"'Global Community')" +msgstr "" + +#: mod/admin.php:978 +msgid "Enable OStatus support" +msgstr "" + +#: mod/admin.php:978 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "" + +#: mod/admin.php:979 +msgid "OStatus conversation completion interval" +msgstr "" + +#: mod/admin.php:979 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "" + +#: mod/admin.php:980 +msgid "Only import OStatus threads from our contacts" +msgstr "" + +#: mod/admin.php:980 +msgid "" +"Normally we import every content from our OStatus contacts. With this option " +"we only store threads that are started by a contact that is known on our " +"system." +msgstr "" + +#: mod/admin.php:981 +msgid "OStatus support can only be enabled if threading is enabled." +msgstr "" + +#: mod/admin.php:983 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub " +"directory." +msgstr "" + +#: mod/admin.php:984 +msgid "Enable Diaspora support" +msgstr "" + +#: mod/admin.php:984 +msgid "Provide built-in Diaspora network compatibility." +msgstr "" + +#: mod/admin.php:985 +msgid "Only allow Friendica contacts" +msgstr "" + +#: mod/admin.php:985 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "" + +#: mod/admin.php:986 +msgid "Verify SSL" +msgstr "" + +#: mod/admin.php:986 +msgid "" +"If you wish, you can turn on strict certificate checking. This will mean you " +"cannot connect (at all) to self-signed SSL sites." +msgstr "" + +#: mod/admin.php:987 +msgid "Proxy user" +msgstr "" + +#: mod/admin.php:988 +msgid "Proxy URL" +msgstr "" + +#: mod/admin.php:989 +msgid "Network timeout" +msgstr "" + +#: mod/admin.php:989 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "" + +#: mod/admin.php:990 +msgid "Delivery interval" +msgstr "" + +#: mod/admin.php:990 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "" + +#: mod/admin.php:991 +msgid "Poll interval" +msgstr "" + +#: mod/admin.php:991 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "" + +#: mod/admin.php:992 +msgid "Maximum Load Average" +msgstr "" + +#: mod/admin.php:992 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "" + +#: mod/admin.php:993 +msgid "Maximum Load Average (Frontend)" +msgstr "" + +#: mod/admin.php:993 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "" + +#: mod/admin.php:994 +msgid "Maximum table size for optimization" +msgstr "" + +#: mod/admin.php:994 +msgid "" +"Maximum table size (in MB) for the automatic optimization - default 100 MB. " +"Enter -1 to disable it." +msgstr "" + +#: mod/admin.php:995 +msgid "Minimum level of fragmentation" +msgstr "" + +#: mod/admin.php:995 +msgid "" +"Minimum fragmenation level to start the automatic optimization - default " +"value is 30%." +msgstr "" + +#: mod/admin.php:997 +msgid "Periodical check of global contacts" +msgstr "" + +#: mod/admin.php:997 +msgid "" +"If enabled, the global contacts are checked periodically for missing or " +"outdated data and the vitality of the contacts and servers." +msgstr "" + +#: mod/admin.php:998 +msgid "Days between requery" +msgstr "" + +#: mod/admin.php:998 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "" + +#: mod/admin.php:999 +msgid "Discover contacts from other servers" +msgstr "" + +#: mod/admin.php:999 +msgid "" +"Periodically query other servers for contacts. You can choose between " +"'users': the users on the remote system, 'Global Contacts': active contacts " +"that are known on the system. The fallback is meant for Redmatrix servers " +"and older friendica servers, where global contacts weren't available. The " +"fallback increases the server load, so the recommened setting is 'Users, " +"Global Contacts'." +msgstr "" + +#: mod/admin.php:1000 +msgid "Timeframe for fetching global contacts" +msgstr "" + +#: mod/admin.php:1000 +msgid "" +"When the discovery is activated, this value defines the timeframe for the " +"activity of the global contacts that are fetched from other servers." +msgstr "" + +#: mod/admin.php:1001 +msgid "Search the local directory" +msgstr "" + +#: mod/admin.php:1001 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "" + +#: mod/admin.php:1003 +msgid "Publish server information" +msgstr "" + +#: mod/admin.php:1003 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "" + +#: mod/admin.php:1005 +msgid "Use MySQL full text engine" +msgstr "" + +#: mod/admin.php:1005 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "" + +#: mod/admin.php:1006 +msgid "Suppress Language" +msgstr "" + +#: mod/admin.php:1006 +msgid "Suppress language information in meta information about a posting." +msgstr "" + +#: mod/admin.php:1007 +msgid "Suppress Tags" +msgstr "" + +#: mod/admin.php:1007 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "" + +#: mod/admin.php:1008 +msgid "Path to item cache" +msgstr "" + +#: mod/admin.php:1008 +msgid "The item caches buffers generated bbcode and external images." +msgstr "" + +#: mod/admin.php:1009 +msgid "Cache duration in seconds" +msgstr "" + +#: mod/admin.php:1009 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One " +"day). To disable the item cache, set the value to -1." +msgstr "" + +#: mod/admin.php:1010 +msgid "Maximum numbers of comments per post" +msgstr "" + +#: mod/admin.php:1010 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "" + +#: mod/admin.php:1011 +msgid "Path for lock file" +msgstr "" + +#: mod/admin.php:1011 +msgid "" +"The lock file is used to avoid multiple pollers at one time. Only define a " +"folder here." +msgstr "" + +#: mod/admin.php:1012 +msgid "Temp path" +msgstr "" + +#: mod/admin.php:1012 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "" + +#: mod/admin.php:1013 +msgid "Base path to installation" +msgstr "" + +#: mod/admin.php:1013 +msgid "" +"If the system cannot detect the correct path to your installation, enter the " +"correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "" + +#: mod/admin.php:1014 +msgid "Disable picture proxy" +msgstr "" + +#: mod/admin.php:1014 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on " +"systems with very low bandwith." +msgstr "" + +#: mod/admin.php:1015 +msgid "Enable old style pager" +msgstr "" + +#: mod/admin.php:1015 +msgid "" +"The old style pager has page numbers but slows down massively the page speed." +msgstr "" + +#: mod/admin.php:1016 +msgid "Only search in tags" +msgstr "" + +#: mod/admin.php:1016 +msgid "On large systems the text search can slow down the system extremely." +msgstr "" + +#: mod/admin.php:1018 +msgid "New base url" +msgstr "" + +#: mod/admin.php:1018 +msgid "" +"Change base url for this server. Sends relocate message to all DFRN contacts " +"of all users." +msgstr "" + +#: mod/admin.php:1020 +msgid "RINO Encryption" +msgstr "" + +#: mod/admin.php:1020 +msgid "Encryption layer between nodes." +msgstr "" + +#: mod/admin.php:1021 +msgid "Embedly API key" +msgstr "" + +#: mod/admin.php:1021 +msgid "" +"Embedly is used to fetch additional data for " +"web pages. This is an optional parameter." +msgstr "" + +#: mod/admin.php:1023 +msgid "Enable 'worker' background processing" +msgstr "" + +#: mod/admin.php:1023 +msgid "" +"The worker background processing limits the number of parallel background " +"jobs to a maximum number and respects the system load." +msgstr "" + +#: mod/admin.php:1024 +msgid "Maximum number of parallel workers" +msgstr "" + +#: mod/admin.php:1024 +msgid "" +"On shared hosters set this to 2. On larger systems, values of 10 are great. " +"Default value is 4." +msgstr "" + +#: mod/admin.php:1025 +msgid "Don't use 'proc_open' with the worker" +msgstr "" + +#: mod/admin.php:1025 +msgid "" +"Enable this if your system doesn't allow the use of 'proc_open'. This can " +"happen on shared hosters. If this is enabled you should increase the " +"frequency of poller calls in your crontab." +msgstr "" + +#: mod/admin.php:1026 +msgid "Enable fastlane" +msgstr "" + +#: mod/admin.php:1026 +msgid "" +"When enabed, the fastlane mechanism starts an additional worker if processes " +"with higher priority are blocked by processes of lower priority." +msgstr "" + +#: mod/admin.php:1055 +msgid "Update has been marked successful" +msgstr "" + +#: mod/admin.php:1063 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "" + +#: mod/admin.php:1066 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "" + +#: mod/admin.php:1078 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "" + +#: mod/admin.php:1081 +#, php-format +msgid "Update %s was successfully applied." +msgstr "" + +#: mod/admin.php:1085 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "" + +#: mod/admin.php:1087 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "" + +#: mod/admin.php:1106 +msgid "No failed updates." +msgstr "" + +#: mod/admin.php:1107 +msgid "Check database structure" +msgstr "" + +#: mod/admin.php:1112 +msgid "Failed Updates" +msgstr "" + +#: mod/admin.php:1113 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "" + +#: mod/admin.php:1114 +msgid "Mark success (if update was manually applied)" +msgstr "" + +#: mod/admin.php:1115 +msgid "Attempt to execute this update step automatically" +msgstr "" + +#: mod/admin.php:1147 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "" + +#: mod/admin.php:1150 +#, php-format +msgid "" +"\n" +"\t\t\tThe login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%1$s\n" +"\t\t\tLogin Name:\t\t%2$s\n" +"\t\t\tPassword:\t\t%3$s\n" +"\n" +"\t\t\tYou may change your password from your account \"Settings\" page after " +"logging\n" +"\t\t\tin.\n" +"\n" +"\t\t\tPlease take a few moments to review the other account settings on that " +"page.\n" +"\n" +"\t\t\tYou may also wish to add some basic information to your default " +"profile\n" +"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - " +"and\n" +"\t\t\tperhaps what country you live in; if you do not wish to be more " +"specific\n" +"\t\t\tthan that.\n" +"\n" +"\t\t\tWe fully respect your right to privacy, and none of these items are " +"necessary.\n" +"\t\t\tIf you are new and do not know anybody here, they may help\n" +"\t\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\t\tThank you and welcome to %4$s." +msgstr "" + +#: mod/admin.php:1194 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "" +msgstr[1] "" + +#: mod/admin.php:1201 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "" +msgstr[1] "" + +#: mod/admin.php:1248 +#, php-format +msgid "User '%s' deleted" +msgstr "" + +#: mod/admin.php:1256 +#, php-format +msgid "User '%s' unblocked" +msgstr "" + +#: mod/admin.php:1256 +#, php-format +msgid "User '%s' blocked" +msgstr "" + +#: mod/admin.php:1375 mod/admin.php:1400 +msgid "Register date" +msgstr "" + +#: mod/admin.php:1375 mod/admin.php:1400 +msgid "Last login" +msgstr "" + +#: mod/admin.php:1375 mod/admin.php:1400 +msgid "Last item" +msgstr "" + +#: mod/admin.php:1384 +msgid "Add User" +msgstr "" + +#: mod/admin.php:1385 +msgid "select all" +msgstr "" + +#: mod/admin.php:1386 +msgid "User registrations waiting for confirm" +msgstr "" + +#: mod/admin.php:1387 +msgid "User waiting for permanent deletion" +msgstr "" + +#: mod/admin.php:1388 +msgid "Request date" +msgstr "" + +#: mod/admin.php:1389 +msgid "No registrations." +msgstr "" + +#: mod/admin.php:1391 +msgid "Deny" +msgstr "" + +#: mod/admin.php:1395 +msgid "Site admin" +msgstr "" + +#: mod/admin.php:1396 +msgid "Account expired" +msgstr "" + +#: mod/admin.php:1399 +msgid "New User" +msgstr "" + +#: mod/admin.php:1400 +msgid "Deleted since" +msgstr "" + +#: mod/admin.php:1405 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: mod/admin.php:1406 +msgid "" +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: mod/admin.php:1416 +msgid "Name of the new user." +msgstr "" + +#: mod/admin.php:1417 +msgid "Nickname" +msgstr "" + +#: mod/admin.php:1417 +msgid "Nickname of the new user." +msgstr "" + +#: mod/admin.php:1418 +msgid "Email address of the new user." +msgstr "" + +#: mod/admin.php:1461 +#, php-format +msgid "Plugin %s disabled." +msgstr "" + +#: mod/admin.php:1465 +#, php-format +msgid "Plugin %s enabled." +msgstr "" + +#: mod/admin.php:1476 mod/admin.php:1712 +msgid "Disable" +msgstr "" + +#: mod/admin.php:1478 mod/admin.php:1714 +msgid "Enable" +msgstr "" + +#: mod/admin.php:1501 mod/admin.php:1759 +msgid "Toggle" +msgstr "" + +#: mod/admin.php:1509 mod/admin.php:1768 +msgid "Author: " +msgstr "" + +#: mod/admin.php:1510 mod/admin.php:1769 +msgid "Maintainer: " +msgstr "" + +#: mod/admin.php:1562 +msgid "Reload active plugins" +msgstr "" + +#: mod/admin.php:1567 +#, php-format +msgid "" +"There are currently no plugins available on your node. You can find the " +"official plugin repository at %1$s and might find other interesting plugins " +"in the open plugin registry at %2$s" +msgstr "" + +#: mod/admin.php:1672 +msgid "No themes found." +msgstr "" + +#: mod/admin.php:1750 +msgid "Screenshot" +msgstr "" + +#: mod/admin.php:1810 +msgid "Reload active themes" +msgstr "" + +#: mod/admin.php:1815 +#, php-format +msgid "No themes found on the system. They should be paced in %1$s" +msgstr "" + +#: mod/admin.php:1816 +msgid "[Experimental]" +msgstr "" + +#: mod/admin.php:1817 +msgid "[Unsupported]" +msgstr "" + +#: mod/admin.php:1841 +msgid "Log settings updated." +msgstr "" + +#: mod/admin.php:1873 +msgid "PHP log currently enabled." +msgstr "" + +#: mod/admin.php:1875 +msgid "PHP log currently disabled." +msgstr "" + +#: mod/admin.php:1884 +msgid "Clear" +msgstr "" + +#: mod/admin.php:1889 +msgid "Enable Debugging" +msgstr "" + +#: mod/admin.php:1890 +msgid "Log file" +msgstr "" + +#: mod/admin.php:1890 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "" + +#: mod/admin.php:1891 +msgid "Log level" +msgstr "" + +#: mod/admin.php:1894 +msgid "PHP logging" +msgstr "" + +#: mod/admin.php:1895 +msgid "" +"To enable logging of PHP errors and warnings you can add the following to " +"the .htconfig.php file of your installation. The filename set in the " +"'error_log' line is relative to the friendica top-level directory and must " +"be writeable by the web server. The option '1' for 'log_errors' and " +"'display_errors' is to enable these options, set to '0' to disable them." +msgstr "" + +#: mod/admin.php:2023 +#, php-format +msgid "Lock feature %s" +msgstr "" + +#: mod/admin.php:2031 +msgid "Manage Additional Features" +msgstr "" + #: object/Item.php:370 msgid "via" msgstr "" @@ -8772,55 +8779,55 @@ msgstr "" msgid "Variations" msgstr "" -#: index.php:447 -msgid "toggle mobile" -msgstr "" - -#: boot.php:901 +#: boot.php:902 msgid "Delete this item?" msgstr "" -#: boot.php:904 +#: boot.php:905 msgid "show fewer" msgstr "" -#: boot.php:1518 +#: boot.php:1567 #, php-format msgid "Update %s failed. See error logs." msgstr "" -#: boot.php:1630 +#: boot.php:1679 msgid "Create a New Account" msgstr "" -#: boot.php:1659 +#: boot.php:1708 msgid "Password: " msgstr "" -#: boot.php:1660 +#: boot.php:1709 msgid "Remember me" msgstr "" -#: boot.php:1663 +#: boot.php:1712 msgid "Or login using OpenID: " msgstr "" -#: boot.php:1669 +#: boot.php:1718 msgid "Forgot your password?" msgstr "" -#: boot.php:1672 +#: boot.php:1721 msgid "Website Terms of Service" msgstr "" -#: boot.php:1673 +#: boot.php:1722 msgid "terms of service" msgstr "" -#: boot.php:1675 +#: boot.php:1724 msgid "Website Privacy Policy" msgstr "" -#: boot.php:1676 +#: boot.php:1725 msgid "privacy policy" msgstr "" + +#: index.php:447 +msgid "toggle mobile" +msgstr "" diff --git a/view/de/messages.po b/view/de/messages.po index 1e033f32a7..af4d2aa719 100644 --- a/view/de/messages.po +++ b/view/de/messages.po @@ -35,8 +35,8 @@ 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-08-10 10:19+0000\n" +"POT-Creation-Date: 2016-09-21 12:10+0200\n" +"PO-Revision-Date: 2016-09-22 10:35+0000\n" "Last-Translator: Tobias Diekershoff \n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" @@ -175,8 +175,8 @@ msgstr "Leute finden" msgid "Enter name or interest" msgstr "Name oder Interessen eingeben" -#: include/contact_widgets.php:32 include/conversation.php:978 -#: include/Contact.php:324 mod/match.php:72 mod/allfriends.php:66 +#: include/contact_widgets.php:32 include/Contact.php:324 +#: include/conversation.php:976 mod/match.php:72 mod/allfriends.php:66 #: mod/follow.php:103 mod/suggest.php:83 mod/contacts.php:602 #: mod/dirfind.php:204 msgid "Connect/Follow" @@ -238,7 +238,7 @@ msgstr[1] "%d gemeinsame Kontakte" #: 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 +#: view/theme/vier/theme.php:260 boot.php:904 msgid "show more" msgstr "mehr anzeigen" @@ -548,200 +548,6 @@ msgstr "Foren" msgid "External link to forum" msgstr "Externer Link zum Forum" -#: include/event.php:16 include/bb2diaspora.php:148 mod/localtime.php:12 -msgid "l F d, Y \\@ g:i A" -msgstr "l, d. F Y\\, H:i" - -#: include/event.php:33 include/event.php:51 include/bb2diaspora.php:154 -msgid "Starts:" -msgstr "Beginnt:" - -#: include/event.php:36 include/event.php:57 include/bb2diaspora.php:162 -msgid "Finishes:" -msgstr "Endet:" - -#: 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 "Ort:" - -#: include/event.php:441 -msgid "Sun" -msgstr "So" - -#: include/event.php:442 -msgid "Mon" -msgstr "Mo" - -#: include/event.php:443 -msgid "Tue" -msgstr "Di" - -#: include/event.php:444 -msgid "Wed" -msgstr "Mi" - -#: include/event.php:445 -msgid "Thu" -msgstr "Do" - -#: include/event.php:446 -msgid "Fri" -msgstr "Fr" - -#: include/event.php:447 -msgid "Sat" -msgstr "Sa" - -#: include/event.php:448 include/text.php:1112 mod/settings.php:955 -msgid "Sunday" -msgstr "Sonntag" - -#: include/event.php:449 include/text.php:1112 mod/settings.php:955 -msgid "Monday" -msgstr "Montag" - -#: include/event.php:450 include/text.php:1112 -msgid "Tuesday" -msgstr "Dienstag" - -#: include/event.php:451 include/text.php:1112 -msgid "Wednesday" -msgstr "Mittwoch" - -#: include/event.php:452 include/text.php:1112 -msgid "Thursday" -msgstr "Donnerstag" - -#: include/event.php:453 include/text.php:1112 -msgid "Friday" -msgstr "Freitag" - -#: include/event.php:454 include/text.php:1112 -msgid "Saturday" -msgstr "Samstag" - -#: include/event.php:455 -msgid "Jan" -msgstr "Jan" - -#: include/event.php:456 -msgid "Feb" -msgstr "Feb" - -#: include/event.php:457 -msgid "Mar" -msgstr "März" - -#: include/event.php:458 -msgid "Apr" -msgstr "Apr" - -#: include/event.php:459 include/event.php:471 include/text.php:1116 -msgid "May" -msgstr "Mai" - -#: include/event.php:460 -msgid "Jun" -msgstr "Jun" - -#: include/event.php:461 -msgid "Jul" -msgstr "Juli" - -#: include/event.php:462 -msgid "Aug" -msgstr "Aug" - -#: include/event.php:463 -msgid "Sept" -msgstr "Sep" - -#: include/event.php:464 -msgid "Oct" -msgstr "Okt" - -#: include/event.php:465 -msgid "Nov" -msgstr "Nov" - -#: include/event.php:466 -msgid "Dec" -msgstr "Dez" - -#: include/event.php:467 include/text.php:1116 -msgid "January" -msgstr "Januar" - -#: include/event.php:468 include/text.php:1116 -msgid "February" -msgstr "Februar" - -#: include/event.php:469 include/text.php:1116 -msgid "March" -msgstr "März" - -#: include/event.php:470 include/text.php:1116 -msgid "April" -msgstr "April" - -#: include/event.php:472 include/text.php:1116 -msgid "June" -msgstr "Juni" - -#: include/event.php:473 include/text.php:1116 -msgid "July" -msgstr "Juli" - -#: include/event.php:474 include/text.php:1116 -msgid "August" -msgstr "August" - -#: include/event.php:475 include/text.php:1116 -msgid "September" -msgstr "September" - -#: include/event.php:476 include/text.php:1116 -msgid "October" -msgstr "Oktober" - -#: include/event.php:477 include/text.php:1116 -msgid "November" -msgstr "November" - -#: include/event.php:478 include/text.php:1116 -msgid "December" -msgstr "Dezember" - -#: include/event.php:479 mod/cal.php:286 mod/events.php:388 -msgid "today" -msgstr "Heute" - -#: include/event.php:567 -msgid "l, F j" -msgstr "l, F j" - -#: include/event.php:586 -msgid "Edit event" -msgstr "Veranstaltung bearbeiten" - -#: include/event.php:608 include/text.php:1518 include/text.php:1525 -msgid "link to source" -msgstr "Link zum Originalbeitrag" - -#: include/event.php:843 -msgid "Export" -msgstr "Exportieren" - -#: include/event.php:844 -msgid "Export calendar as ical" -msgstr "Kalender als ical exportieren" - -#: include/event.php:845 -msgid "Export calendar as csv" -msgstr "Kalender als csv exportieren" - #: include/security.php:22 msgid "Welcome " msgstr "Willkommen " @@ -812,7 +618,7 @@ msgstr "Nicht spezifiziert" msgid "Other" msgstr "Andere" -#: include/profile_selectors.php:6 include/conversation.php:1477 +#: include/profile_selectors.php:6 include/conversation.php:1475 msgid "Undecided" msgid_plural "Undecided" msgstr[0] "Unentschieden" @@ -994,6 +800,24 @@ msgstr "Ist mir nicht wichtig" msgid "Ask me" msgstr "Frag mich" +#: include/bb2diaspora.php:148 include/event.php:16 mod/localtime.php:12 +msgid "l F d, Y \\@ g:i A" +msgstr "l, d. F Y\\, H:i" + +#: include/bb2diaspora.php:154 include/event.php:33 include/event.php:51 +msgid "Starts:" +msgstr "Beginnt:" + +#: include/bb2diaspora.php:162 include/event.php:36 include/event.php:57 +msgid "Finishes:" +msgstr "Endet:" + +#: include/bb2diaspora.php:170 include/event.php:39 include/event.php:63 +#: include/identity.php:329 mod/directory.php:145 mod/contacts.php:628 +#: mod/events.php:495 mod/notifications.php:232 +msgid "Location:" +msgstr "Ort:" + #: include/oembed.php:229 msgid "Embedded content" msgstr "Eingebetteter Inhalt" @@ -1002,23 +826,6 @@ msgstr "Eingebetteter Inhalt" msgid "Embedding disabled" msgstr "Einbettungen deaktiviert" -#: include/bbcode.php:349 include/bbcode.php:1054 include/bbcode.php:1055 -msgid "Image/photo" -msgstr "Bild/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 hat geschrieben:" - -#: include/bbcode.php:1063 include/bbcode.php:1064 -msgid "Encrypted content" -msgstr "Verschlüsselter Inhalt" - #: include/dba_pdo.php:72 include/dba.php:56 #, php-format msgid "Cannot locate DNS info for database server '%s'" @@ -1221,7 +1028,7 @@ msgid "" "\t\tThank you and welcome to %2$s." msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3$s\n\tBenutzernamename:\t%1$s\n\tPasswort:\t%5$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2$s." -#: include/user.php:423 mod/admin.php:1181 +#: include/user.php:423 mod/admin.php:1182 #, php-format msgid "Registration details for %s" msgstr "Details der Registration von %s" @@ -1441,7 +1248,7 @@ msgstr "Bereinige Benachrichtigungen" msgid "@name, !forum, #tags, content" msgstr "@name, !forum, #tags, content" -#: include/nav.php:75 view/theme/frio/theme.php:243 boot.php:1655 +#: include/nav.php:75 view/theme/frio/theme.php:243 boot.php:1704 msgid "Logout" msgstr "Abmelden" @@ -1510,7 +1317,7 @@ msgstr "Persönliche Notizen" msgid "Your personal notes" msgstr "Deine persönlichen Notizen" -#: include/nav.php:94 mod/bookmarklet.php:12 boot.php:1656 +#: include/nav.php:94 mod/bookmarklet.php:12 boot.php:1705 msgid "Login" msgstr "Anmeldung" @@ -1527,7 +1334,7 @@ msgstr "Pinnwand" msgid "Home Page" msgstr "Homepage" -#: include/nav.php:111 mod/register.php:280 boot.php:1631 +#: include/nav.php:111 mod/register.php:280 boot.php:1680 msgid "Register" msgstr "Registrieren" @@ -1567,8 +1374,8 @@ msgstr "Volltext" msgid "Tags" msgstr "Tags" -#: include/nav.php:127 include/nav.php:193 include/identity.php:781 -#: include/identity.php:784 include/text.php:1004 mod/viewcontacts.php:116 +#: include/nav.php:127 include/nav.php:193 include/text.php:1004 +#: include/identity.php:781 include/identity.php:784 mod/viewcontacts.php:116 #: mod/contacts.php:790 mod/contacts.php:851 view/theme/frio/theme.php:257 #: view/theme/diabook/theme.php:125 msgid "Contacts" @@ -1685,8 +1492,8 @@ msgstr "Delegationen" msgid "Delegate Page Management" msgstr "Delegiere das Management für die Seite" -#: 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 +#: include/nav.php:188 mod/newmember.php:22 mod/settings.php:111 +#: mod/admin.php:1502 mod/admin.php:1760 view/theme/frio/theme.php:256 #: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:648 msgid "Settings" msgstr "Einstellungen" @@ -1747,19 +1554,19 @@ msgstr "OK, wahrscheinlich harmlos" msgid "Reputable, has my trust" msgstr "Seriös, hat mein Vertrauen" -#: include/contact_selectors.php:56 mod/admin.php:861 +#: include/contact_selectors.php:56 mod/admin.php:862 msgid "Frequently" msgstr "immer wieder" -#: include/contact_selectors.php:57 mod/admin.php:862 +#: include/contact_selectors.php:57 mod/admin.php:863 msgid "Hourly" msgstr "Stündlich" -#: include/contact_selectors.php:58 mod/admin.php:863 +#: include/contact_selectors.php:58 mod/admin.php:864 msgid "Twice daily" msgstr "Zweimal täglich" -#: include/contact_selectors.php:59 mod/admin.php:864 +#: include/contact_selectors.php:59 mod/admin.php:865 msgid "Daily" msgstr "Täglich" @@ -1784,7 +1591,7 @@ 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 +#: mod/admin.php:1375 mod/admin.php:1388 mod/admin.php:1400 mod/admin.php:1418 msgid "Email" msgstr "E-Mail" @@ -1841,486 +1648,49 @@ msgstr "App.net" 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 "Event" - -#: 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 mag %2$ss %3$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 mag %2$ss %3$s nicht" - -#: include/conversation.php:147 -#, php-format -msgid "%1$s attends %2$s's %3$s" -msgstr "%1$s nimmt an %2$ss %3$s teil." - -#: include/conversation.php:150 -#, php-format -msgid "%1$s doesn't attend %2$s's %3$s" -msgstr "%1$s nimmt nicht an %2$ss %3$s teil." - -#: include/conversation.php:153 -#, php-format -msgid "%1$s attends maybe %2$s's %3$s" -msgstr "%1$s nimmt eventuell an %2$ss %3$s teil." - -#: include/conversation.php:185 mod/dfrn_confirm.php:473 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s ist nun mit %2$s befreundet" - -#: include/conversation.php:219 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s stupste %2$s" - -#: include/conversation.php:239 mod/mood.php:62 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s ist momentan %2$s" - -#: include/conversation.php:278 mod/tagger.php:95 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt" - -#: include/conversation.php:303 -msgid "post/item" -msgstr "Nachricht/Beitrag" - -#: include/conversation.php:304 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert" - -#: include/conversation.php:587 mod/content.php:372 mod/profiles.php:345 -#: mod/photos.php:1634 -msgid "Likes" -msgstr "Likes" - -#: include/conversation.php:587 mod/content.php:372 mod/profiles.php:349 -#: mod/photos.php:1634 -msgid "Dislikes" -msgstr "Dislikes" - -#: include/conversation.php:588 include/conversation.php:1471 -#: mod/content.php:373 mod/photos.php:1635 -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Teilnehmend" -msgstr[1] "Teilnehmend" - -#: include/conversation.php:588 mod/content.php:373 mod/photos.php:1635 -msgid "Not attending" -msgstr "Nicht teilnehmend" - -#: include/conversation.php:588 mod/content.php:373 mod/photos.php:1635 -msgid "Might attend" -msgstr "Eventuell teilnehmend" - -#: include/conversation.php:710 mod/content.php:453 mod/content.php:758 -#: mod/photos.php:1709 object/Item.php:133 -msgid "Select" -msgstr "Auswählen" - -#: 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 "Löschen" - -#: 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 "Das Profil von %s auf %s betrachten." - -#: include/conversation.php:767 object/Item.php:355 -msgid "Categories:" -msgstr "Kategorien:" - -#: include/conversation.php:768 object/Item.php:356 -msgid "Filed under:" -msgstr "Abgelegt unter:" - -#: include/conversation.php:775 mod/content.php:497 mod/content.php:923 -#: object/Item.php:381 -#, php-format -msgid "%s from %s" -msgstr "%s von %s" - -#: include/conversation.php:791 mod/content.php:513 -msgid "View in context" -msgstr "Im Zusammenhang betrachten" - -#: 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 "Bitte warten" - -#: include/conversation.php:872 -msgid "remove" -msgstr "löschen" - -#: include/conversation.php:876 -msgid "Delete Selected Items" -msgstr "Lösche die markierten Beiträge" - -#: include/conversation.php:964 -msgid "Follow Thread" -msgstr "Folge der Unterhaltung" - -#: include/conversation.php:965 include/Contact.php:364 -msgid "View Status" -msgstr "Pinnwand anschauen" - -#: 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 "Profil anschauen" - -#: include/conversation.php:967 include/Contact.php:366 -msgid "View Photos" -msgstr "Bilder anschauen" - -#: include/conversation.php:968 include/Contact.php:367 -msgid "Network Posts" -msgstr "Netzwerkbeiträge" - -#: include/conversation.php:969 include/Contact.php:368 -msgid "Edit Contact" -msgstr "Kontakt bearbeiten" - -#: include/conversation.php:970 include/Contact.php:370 -msgid "Send PM" -msgstr "Private Nachricht senden" - -#: include/conversation.php:974 include/Contact.php:371 -msgid "Poke" -msgstr "Anstupsen" - -#: include/conversation.php:1088 -#, php-format -msgid "%s likes this." -msgstr "%s mag das." - -#: include/conversation.php:1091 -#, php-format -msgid "%s doesn't like this." -msgstr "%s mag das nicht." - -#: include/conversation.php:1094 -#, php-format -msgid "%s attends." -msgstr "%s nimmt teil." - -#: include/conversation.php:1097 -#, php-format -msgid "%s doesn't attend." -msgstr "%s nimmt nicht teil." - -#: include/conversation.php:1100 -#, php-format -msgid "%s attends maybe." -msgstr "%s nimmt eventuell teil." - -#: include/conversation.php:1110 -msgid "and" -msgstr "und" - -#: include/conversation.php:1116 -#, php-format -msgid ", and %d other people" -msgstr " und %d andere" - -#: include/conversation.php:1125 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d Personen mögen das" - -#: include/conversation.php:1126 -#, php-format -msgid "%s like this." -msgstr "%s mögen das." - -#: include/conversation.php:1129 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d Personen mögen das nicht" - -#: include/conversation.php:1130 -#, php-format -msgid "%s don't like this." -msgstr "%s mögen dies nicht." - -#: include/conversation.php:1133 -#, php-format -msgid "%2$d people attend" -msgstr "%2$d Personen nehmen teil" - -#: include/conversation.php:1134 -#, php-format -msgid "%s attend." -msgstr "%s nehmen teil." - -#: include/conversation.php:1137 -#, php-format -msgid "%2$d people don't attend" -msgstr "%2$d Personen nehmen nicht teil" - -#: include/conversation.php:1138 -#, php-format -msgid "%s don't attend." -msgstr "%s nehmen nicht teil." - -#: include/conversation.php:1141 -#, php-format -msgid "%2$d people anttend maybe" -msgstr "%2$d Personen nehmen eventuell teil" - -#: include/conversation.php:1142 -#, php-format -msgid "%s anttend maybe." -msgstr "%s nehmen vielleicht teil." - -#: include/conversation.php:1181 include/conversation.php:1199 -msgid "Visible to everybody" -msgstr "Für jedermann sichtbar" - -#: 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 "Bitte gib die URL des Links ein:" - -#: include/conversation.php:1183 include/conversation.php:1201 -msgid "Please enter a video link/URL:" -msgstr "Bitte Link/URL zum Video einfügen:" - -#: include/conversation.php:1184 include/conversation.php:1202 -msgid "Please enter an audio link/URL:" -msgstr "Bitte Link/URL zum Audio einfügen:" - -#: include/conversation.php:1185 include/conversation.php:1203 -msgid "Tag term:" -msgstr "Tag:" - -#: include/conversation.php:1186 include/conversation.php:1204 -#: mod/filer.php:30 -msgid "Save to Folder:" -msgstr "In diesem Ordner speichern:" - -#: include/conversation.php:1187 include/conversation.php:1205 -msgid "Where are you right now?" -msgstr "Wo hältst Du Dich jetzt gerade auf?" - -#: include/conversation.php:1188 -msgid "Delete item(s)?" -msgstr "Einträge löschen?" - -#: include/conversation.php:1236 mod/photos.php:1596 -msgid "Share" -msgstr "Teilen" - -#: include/conversation.php:1237 mod/editpost.php:110 mod/wallmessage.php:154 -#: mod/message.php:354 mod/message.php:545 -msgid "Upload photo" -msgstr "Foto hochladen" - -#: include/conversation.php:1238 mod/editpost.php:111 -msgid "upload photo" -msgstr "Bild hochladen" - -#: include/conversation.php:1239 mod/editpost.php:112 -msgid "Attach file" -msgstr "Datei anhängen" - -#: include/conversation.php:1240 mod/editpost.php:113 -msgid "attach file" -msgstr "Datei anhängen" - -#: 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 "Einen Link einfügen" - -#: include/conversation.php:1242 mod/editpost.php:115 -msgid "web link" -msgstr "Weblink" - -#: include/conversation.php:1243 mod/editpost.php:116 -msgid "Insert video link" -msgstr "Video-Adresse einfügen" - -#: include/conversation.php:1244 mod/editpost.php:117 -msgid "video link" -msgstr "Video-Link" - -#: include/conversation.php:1245 mod/editpost.php:118 -msgid "Insert audio link" -msgstr "Audio-Adresse einfügen" - -#: include/conversation.php:1246 mod/editpost.php:119 -msgid "audio link" -msgstr "Audio-Link" - -#: include/conversation.php:1247 mod/editpost.php:120 -msgid "Set your location" -msgstr "Deinen Standort festlegen" - -#: include/conversation.php:1248 mod/editpost.php:121 -msgid "set location" -msgstr "Ort setzen" - -#: include/conversation.php:1249 mod/editpost.php:122 -msgid "Clear browser location" -msgstr "Browser-Standort leeren" - -#: include/conversation.php:1250 mod/editpost.php:123 -msgid "clear location" -msgstr "Ort löschen" - -#: include/conversation.php:1252 mod/editpost.php:137 -msgid "Set title" -msgstr "Titel setzen" - -#: include/conversation.php:1254 mod/editpost.php:139 -msgid "Categories (comma-separated list)" -msgstr "Kategorien (kommasepariert)" - -#: include/conversation.php:1256 mod/editpost.php:125 -msgid "Permission settings" -msgstr "Berechtigungseinstellungen" - -#: include/conversation.php:1257 mod/editpost.php:154 -msgid "permissions" -msgstr "Zugriffsrechte" - -#: include/conversation.php:1265 mod/editpost.php:134 -msgid "Public post" -msgstr "Öffentlicher Beitrag" - -#: 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 "Vorschau" - -#: 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 "Abbrechen" - -#: include/conversation.php:1280 -msgid "Post to Groups" -msgstr "Poste an Gruppe" - -#: include/conversation.php:1281 -msgid "Post to Contacts" -msgstr "Poste an Kontakte" - -#: include/conversation.php:1282 -msgid "Private post" -msgstr "Privater Beitrag" - -#: include/conversation.php:1287 include/identity.php:250 mod/editpost.php:152 -msgid "Message" -msgstr "Nachricht" - -#: include/conversation.php:1288 mod/editpost.php:153 -msgid "Browser" -msgstr "Browser" - -#: include/conversation.php:1443 -msgid "View all" -msgstr "Zeige alle" - -#: include/conversation.php:1465 -msgid "Like" -msgid_plural "Likes" -msgstr[0] "mag ich" -msgstr[1] "Mag ich" - -#: include/conversation.php:1468 -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "mag ich nicht" -msgstr[1] "Mag ich nicht" - -#: include/conversation.php:1474 -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Nicht teilnehmend " -msgstr[1] "Nicht teilnehmend" - #: include/network.php:595 msgid "view full size" msgstr "Volle Größe anzeigen" -#: include/dbstructure.php:26 -#, php-format -msgid "" -"\n" -"\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." -msgstr "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein." - -#: include/dbstructure.php:31 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]" - -#: include/dbstructure.php:153 -msgid "Errors encountered creating database tables." -msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen." - -#: include/dbstructure.php:230 -msgid "Errors encountered performing database changes." -msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten." - #: include/Contact.php:119 msgid "stopped following" msgstr "wird nicht mehr gefolgt" +#: include/Contact.php:310 include/Contact.php:323 include/Contact.php:365 +#: include/conversation.php:964 include/conversation.php:978 +#: mod/directory.php:163 mod/match.php:71 mod/allfriends.php:65 +#: mod/suggest.php:82 mod/dirfind.php:203 +msgid "View Profile" +msgstr "Profil anschauen" + +#: include/Contact.php:364 include/conversation.php:963 +msgid "View Status" +msgstr "Pinnwand anschauen" + +#: include/Contact.php:366 include/conversation.php:965 +msgid "View Photos" +msgstr "Bilder anschauen" + +#: include/Contact.php:367 include/conversation.php:966 +msgid "Network Posts" +msgstr "Netzwerkbeiträge" + +#: include/Contact.php:368 include/conversation.php:967 +msgid "Edit Contact" +msgstr "Kontakt bearbeiten" + #: include/Contact.php:369 msgid "Drop Contact" msgstr "Kontakt löschen" +#: include/Contact.php:370 include/conversation.php:968 +msgid "Send PM" +msgstr "Private Nachricht senden" + +#: include/Contact.php:371 include/conversation.php:972 +msgid "Poke" +msgstr "Anstupsen" + #: include/acl_selectors.php:327 msgid "Post to Email" msgstr "An E-Mail senden" @@ -2357,6 +1727,7 @@ msgid "Example: bob@example.com, mary@example.com" msgstr "Z.B.: bob@example.com, mary@example.com" #: include/acl_selectors.php:349 mod/photos.php:1178 mod/photos.php:1562 +#: mod/events.php:510 msgid "Permissions" msgstr "Berechtigungen" @@ -2364,34 +1735,11 @@ msgstr "Berechtigungen" msgid "Close" msgstr "Schließen" -#: include/api.php:975 -#, 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:995 -#, 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:1016 -#, 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/dfrn.php:1110 #, php-format msgid "%s\\'s birthday" msgstr "%ss Geburtstag" -#: include/diaspora.php:1954 -msgid "Sharing notification from Diaspora network" -msgstr "Freigabe-Benachrichtigung von Diaspora" - -#: include/diaspora.php:2854 -msgid "Attachments:" -msgstr "Anhänge:" - #: include/follow.php:77 mod/dfrn_request.php:507 msgid "Disallowed profile URL." msgstr "Nicht erlaubte Profil-URL." @@ -2451,235 +1799,13 @@ msgstr "Konnte die Kontaktinformationen nicht empfangen." msgid "following" msgstr "folgen" -#: include/identity.php:42 -msgid "Requested account is not available." -msgstr "Das angefragte Profil ist nicht vorhanden." - -#: include/identity.php:51 mod/profile.php:21 -msgid "Requested profile is not available." -msgstr "Das angefragte Profil ist nicht vorhanden." - -#: include/identity.php:95 include/identity.php:305 include/identity.php:686 -msgid "Edit profile" -msgstr "Profil bearbeiten" - -#: include/identity.php:245 -msgid "Atom feed" -msgstr "Atom-Feed" - -#: include/identity.php:276 -msgid "Manage/edit profiles" -msgstr "Profile verwalten/editieren" - -#: include/identity.php:281 include/identity.php:307 mod/profiles.php:787 -msgid "Change profile photo" -msgstr "Profilbild ändern" - -#: include/identity.php:282 mod/profiles.php:788 -msgid "Create New Profile" -msgstr "Neues Profil anlegen" - -#: include/identity.php:292 mod/profiles.php:777 -msgid "Profile Image" -msgstr "Profilbild" - -#: include/identity.php:295 mod/profiles.php:779 -msgid "visible to everybody" -msgstr "sichtbar für jeden" - -#: include/identity.php:296 mod/profiles.php:684 mod/profiles.php:780 -msgid "Edit visibility" -msgstr "Sichtbarkeit bearbeiten" - -#: 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 "Forum" - -#: include/identity.php:331 include/identity.php:614 mod/directory.php:147 -#: mod/notifications.php:238 -msgid "Gender:" -msgstr "Geschlecht:" - -#: include/identity.php:334 include/identity.php:634 mod/directory.php:149 -msgid "Status:" -msgstr "Status:" - -#: include/identity.php:336 include/identity.php:645 mod/directory.php:151 -msgid "Homepage:" -msgstr "Homepage:" - -#: include/identity.php:338 include/identity.php:655 mod/directory.php:153 -#: mod/contacts.php:630 mod/notifications.php:234 -msgid "About:" -msgstr "Über:" - -#: include/identity.php:420 mod/contacts.php:50 mod/notifications.php:246 -msgid "Network:" -msgstr "Netzwerk:" - -#: include/identity.php:449 include/identity.php:533 -msgid "g A l F d" -msgstr "l, d. F G \\U\\h\\r" - -#: include/identity.php:450 include/identity.php:534 -msgid "F d" -msgstr "d. F" - -#: include/identity.php:495 include/identity.php:580 -msgid "[today]" -msgstr "[heute]" - -#: include/identity.php:507 -msgid "Birthday Reminders" -msgstr "Geburtstagserinnerungen" - -#: include/identity.php:508 -msgid "Birthdays this week:" -msgstr "Geburtstage diese Woche:" - -#: include/identity.php:567 -msgid "[No description]" -msgstr "[keine Beschreibung]" - -#: include/identity.php:591 -msgid "Event Reminders" -msgstr "Veranstaltungserinnerungen" - -#: include/identity.php:592 -msgid "Events this week:" -msgstr "Veranstaltungen diese Woche" - -#: include/identity.php:612 mod/settings.php:1229 -msgid "Full Name:" -msgstr "Kompletter Name:" - -#: include/identity.php:619 -msgid "j F, Y" -msgstr "j F, Y" - -#: include/identity.php:620 -msgid "j F" -msgstr "j F" - -#: include/identity.php:631 -msgid "Age:" -msgstr "Alter:" - -#: include/identity.php:640 -#, php-format -msgid "for %1$d %2$s" -msgstr "für %1$d %2$s" - -#: include/identity.php:643 mod/profiles.php:703 -msgid "Sexual Preference:" -msgstr "Sexuelle Vorlieben:" - -#: include/identity.php:647 mod/profiles.php:729 -msgid "Hometown:" -msgstr "Heimatort:" - -#: include/identity.php:649 mod/follow.php:134 mod/contacts.php:632 -#: mod/notifications.php:236 -msgid "Tags:" -msgstr "Tags:" - -#: include/identity.php:651 mod/profiles.php:730 -msgid "Political Views:" -msgstr "Politische Ansichten:" - -#: include/identity.php:653 -msgid "Religion:" -msgstr "Religion:" - -#: include/identity.php:657 -msgid "Hobbies/Interests:" -msgstr "Hobbies/Interessen:" - -#: include/identity.php:659 mod/profiles.php:734 -msgid "Likes:" -msgstr "Likes:" - -#: include/identity.php:661 mod/profiles.php:735 -msgid "Dislikes:" -msgstr "Dislikes:" - -#: include/identity.php:664 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformationen und Soziale Netzwerke:" - -#: include/identity.php:666 -msgid "Musical interests:" -msgstr "Musikalische Interessen:" - -#: include/identity.php:668 -msgid "Books, literature:" -msgstr "Literatur/Bücher:" - -#: include/identity.php:670 -msgid "Television:" -msgstr "Fernsehen:" - -#: include/identity.php:672 -msgid "Film/dance/culture/entertainment:" -msgstr "Filme/Tänze/Kultur/Unterhaltung:" - -#: include/identity.php:674 -msgid "Love/Romance:" -msgstr "Liebesleben:" - -#: include/identity.php:676 -msgid "Work/employment:" -msgstr "Arbeit/Beschäftigung:" - -#: include/identity.php:678 -msgid "School/education:" -msgstr "Schule/Ausbildung:" - -#: include/identity.php:682 -msgid "Forums:" -msgstr "Foren:" - -#: include/identity.php:690 mod/events.php:508 -msgid "Basic" -msgstr "Allgemein" - -#: include/identity.php:691 mod/admin.php:930 mod/contacts.php:868 -#: mod/events.php:509 -msgid "Advanced" -msgstr "Erweitert" - -#: include/identity.php:715 mod/follow.php:143 mod/contacts.php:834 -msgid "Status Messages and Posts" -msgstr "Statusnachrichten und Beiträge" - -#: include/identity.php:723 mod/contacts.php:842 -msgid "Profile Details" -msgstr "Profildetails" - -#: include/identity.php:731 mod/photos.php:100 -msgid "Photo Albums" -msgstr "Fotoalben" - -#: include/identity.php:770 mod/notes.php:46 -msgid "Personal Notes" -msgstr "Persönliche Notizen" - -#: include/identity.php:773 -msgid "Only You Can See This" -msgstr "Nur Du kannst das sehen" - #: include/items.php:1447 mod/dfrn_request.php:745 mod/dfrn_confirm.php:726 msgid "[Name Withheld]" msgstr "[Name unterdrückt]" #: 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 +#: mod/admin.php:1449 mod/admin.php:1683 msgid "Item not found." msgstr "Beitrag nicht gefunden." @@ -2698,25 +1824,34 @@ msgstr "Möchtest Du wirklich dieses Item löschen?" msgid "Yes" msgstr "Ja" +#: include/items.php:1849 include/conversation.php:1272 mod/fbrowser.php:101 +#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:121 +#: mod/suggest.php:32 mod/editpost.php:148 mod/message.php:220 +#: mod/dfrn_request.php:875 mod/contacts.php:445 mod/settings.php:664 +#: mod/settings.php:690 mod/videos.php:131 mod/photos.php:248 +#: mod/photos.php:337 +msgid "Cancel" +msgstr "Abbrechen" + #: 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 +#: mod/wall_attach.php:70 mod/allfriends.php:12 mod/repair_ostatus.php:9 +#: mod/delegate.php:12 mod/attach.php:33 mod/follow.php:11 mod/follow.php:73 +#: mod/follow.php:155 mod/suggest.php:58 mod/display.php:474 mod/common.php:18 +#: mod/editpost.php:10 mod/network.php:4 mod/group.php:19 +#: mod/wallmessage.php:9 mod/wallmessage.php:33 mod/wallmessage.php:79 +#: mod/wallmessage.php:103 mod/api.php:26 mod/api.php:31 +#: mod/ostatus_subscribe.php:9 mod/message.php:46 mod/message.php:182 +#: mod/manage.php:96 mod/crepair.php:100 mod/contacts.php:350 +#: mod/dfrn_confirm.php:57 mod/dirfind.php:11 mod/fsuggest.php:78 +#: mod/item.php:185 mod/item.php:197 mod/mood.php:114 mod/poke.php:150 +#: mod/profile_photo.php:19 mod/profile_photo.php:175 +#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/profiles.php:166 +#: mod/profiles.php:598 mod/register.php:42 mod/regmod.php:110 +#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:650 +#: mod/photos.php:172 mod/photos.php:1093 mod/cal.php:308 mod/events.php:190 +#: mod/notifications.php:71 index.php:397 msgid "Permission denied." msgstr "Zugriff verweigert." @@ -2724,6 +1859,36 @@ msgstr "Zugriff verweigert." msgid "Archives" msgstr "Archiv" +#: include/like.php:163 include/text.php:1790 include/conversation.php:130 +#: include/conversation.php:266 mod/subthread.php:87 mod/tagger.php:62 +#: view/theme/diabook/theme.php:471 +msgid "photo" +msgstr "Foto" + +#: include/like.php:163 include/conversation.php:125 +#: include/conversation.php:134 include/conversation.php:261 +#: include/conversation.php:270 include/diaspora.php:1402 mod/subthread.php:87 +#: mod/tagger.php:62 view/theme/diabook/theme.php:466 +#: view/theme/diabook/theme.php:475 +msgid "status" +msgstr "Status" + +#: include/like.php:165 include/text.php:1788 include/conversation.php:122 +#: include/conversation.php:258 view/theme/diabook/theme.php:463 +msgid "event" +msgstr "Event" + +#: include/like.php:182 include/conversation.php:141 include/diaspora.php:1398 +#: view/theme/diabook/theme.php:480 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s mag %2$ss %3$s" + +#: include/like.php:184 include/conversation.php:144 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s mag %2$ss %3$s nicht" + #: include/like.php:186 #, php-format msgid "%1$s is attending %2$s's %3$s" @@ -2934,6 +2099,82 @@ msgstr "entspannt" msgid "surprised" msgstr "überrascht" +#: include/text.php:1112 include/event.php:449 mod/settings.php:955 +msgid "Monday" +msgstr "Montag" + +#: include/text.php:1112 include/event.php:450 +msgid "Tuesday" +msgstr "Dienstag" + +#: include/text.php:1112 include/event.php:451 +msgid "Wednesday" +msgstr "Mittwoch" + +#: include/text.php:1112 include/event.php:452 +msgid "Thursday" +msgstr "Donnerstag" + +#: include/text.php:1112 include/event.php:453 +msgid "Friday" +msgstr "Freitag" + +#: include/text.php:1112 include/event.php:454 +msgid "Saturday" +msgstr "Samstag" + +#: include/text.php:1112 include/event.php:448 mod/settings.php:955 +msgid "Sunday" +msgstr "Sonntag" + +#: include/text.php:1116 include/event.php:467 +msgid "January" +msgstr "Januar" + +#: include/text.php:1116 include/event.php:468 +msgid "February" +msgstr "Februar" + +#: include/text.php:1116 include/event.php:469 +msgid "March" +msgstr "März" + +#: include/text.php:1116 include/event.php:470 +msgid "April" +msgstr "April" + +#: include/text.php:1116 include/event.php:459 include/event.php:471 +msgid "May" +msgstr "Mai" + +#: include/text.php:1116 include/event.php:472 +msgid "June" +msgstr "Juni" + +#: include/text.php:1116 include/event.php:473 +msgid "July" +msgstr "Juli" + +#: include/text.php:1116 include/event.php:474 +msgid "August" +msgstr "August" + +#: include/text.php:1116 include/event.php:475 +msgid "September" +msgstr "September" + +#: include/text.php:1116 include/event.php:476 +msgid "October" +msgstr "Oktober" + +#: include/text.php:1116 include/event.php:477 +msgid "November" +msgstr "November" + +#: include/text.php:1116 include/event.php:478 +msgid "December" +msgstr "Dezember" + #: include/text.php:1310 mod/videos.php:383 msgid "View Video" msgstr "Video ansehen" @@ -2954,6 +2195,10 @@ msgstr "Auf separater Seite ansehen" msgid "view on separate page" msgstr "auf separater Seite ansehen" +#: include/text.php:1518 include/text.php:1525 include/event.php:608 +msgid "link to source" +msgstr "Link zum Originalbeitrag" + #: include/text.php:1792 msgid "activity" msgstr "Aktivität" @@ -3070,6 +2315,761 @@ msgstr "Kontakt-/Freundschaftsanfrage" msgid "New Follower" msgstr "Neuer Bewunderer" +#: include/api.php:975 +#, 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:995 +#, 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:1016 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen." + +#: include/bbcode.php:348 include/bbcode.php:1056 include/bbcode.php:1057 +msgid "Image/photo" +msgstr "Bild/Foto" + +#: include/bbcode.php:465 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" + +#: include/bbcode.php:1016 include/bbcode.php:1036 +msgid "$1 wrote:" +msgstr "$1 hat geschrieben:" + +#: include/bbcode.php:1065 include/bbcode.php:1066 +msgid "Encrypted content" +msgstr "Verschlüsselter Inhalt" + +#: include/conversation.php:147 +#, php-format +msgid "%1$s attends %2$s's %3$s" +msgstr "%1$s nimmt an %2$ss %3$s teil." + +#: include/conversation.php:150 +#, php-format +msgid "%1$s doesn't attend %2$s's %3$s" +msgstr "%1$s nimmt nicht an %2$ss %3$s teil." + +#: include/conversation.php:153 +#, php-format +msgid "%1$s attends maybe %2$s's %3$s" +msgstr "%1$s nimmt eventuell an %2$ss %3$s teil." + +#: include/conversation.php:185 mod/dfrn_confirm.php:473 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s ist nun mit %2$s befreundet" + +#: include/conversation.php:219 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s stupste %2$s" + +#: include/conversation.php:239 mod/mood.php:62 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s ist momentan %2$s" + +#: include/conversation.php:278 mod/tagger.php:95 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt" + +#: include/conversation.php:303 +msgid "post/item" +msgstr "Nachricht/Beitrag" + +#: include/conversation.php:304 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert" + +#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:345 +#: mod/photos.php:1634 +msgid "Likes" +msgstr "Likes" + +#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:349 +#: mod/photos.php:1634 +msgid "Dislikes" +msgstr "Dislikes" + +#: include/conversation.php:586 include/conversation.php:1469 +#: mod/content.php:373 mod/photos.php:1635 +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Teilnehmend" +msgstr[1] "Teilnehmend" + +#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1635 +msgid "Not attending" +msgstr "Nicht teilnehmend" + +#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1635 +msgid "Might attend" +msgstr "Eventuell teilnehmend" + +#: include/conversation.php:708 mod/content.php:453 mod/content.php:758 +#: mod/photos.php:1709 object/Item.php:133 +msgid "Select" +msgstr "Auswählen" + +#: include/conversation.php:709 mod/group.php:171 mod/content.php:454 +#: mod/content.php:759 mod/contacts.php:806 mod/contacts.php:1021 +#: mod/settings.php:726 mod/photos.php:1710 mod/admin.php:1392 +#: object/Item.php:134 +msgid "Delete" +msgstr "Löschen" + +#: include/conversation.php:753 mod/content.php:487 mod/content.php:910 +#: mod/content.php:911 object/Item.php:367 object/Item.php:368 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Das Profil von %s auf %s betrachten." + +#: include/conversation.php:765 object/Item.php:355 +msgid "Categories:" +msgstr "Kategorien:" + +#: include/conversation.php:766 object/Item.php:356 +msgid "Filed under:" +msgstr "Abgelegt unter:" + +#: include/conversation.php:773 mod/content.php:497 mod/content.php:923 +#: object/Item.php:381 +#, php-format +msgid "%s from %s" +msgstr "%s von %s" + +#: include/conversation.php:789 mod/content.php:513 +msgid "View in context" +msgstr "Im Zusammenhang betrachten" + +#: include/conversation.php:791 include/conversation.php:1253 +#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356 +#: mod/message.php:548 mod/content.php:515 mod/content.php:948 +#: mod/photos.php:1597 object/Item.php:406 +msgid "Please wait" +msgstr "Bitte warten" + +#: include/conversation.php:870 +msgid "remove" +msgstr "löschen" + +#: include/conversation.php:874 +msgid "Delete Selected Items" +msgstr "Lösche die markierten Beiträge" + +#: include/conversation.php:962 +msgid "Follow Thread" +msgstr "Folge der Unterhaltung" + +#: include/conversation.php:1086 +#, php-format +msgid "%s likes this." +msgstr "%s mag das." + +#: include/conversation.php:1089 +#, php-format +msgid "%s doesn't like this." +msgstr "%s mag das nicht." + +#: include/conversation.php:1092 +#, php-format +msgid "%s attends." +msgstr "%s nimmt teil." + +#: include/conversation.php:1095 +#, php-format +msgid "%s doesn't attend." +msgstr "%s nimmt nicht teil." + +#: include/conversation.php:1098 +#, php-format +msgid "%s attends maybe." +msgstr "%s nimmt eventuell teil." + +#: include/conversation.php:1108 +msgid "and" +msgstr "und" + +#: include/conversation.php:1114 +#, php-format +msgid ", and %d other people" +msgstr " und %d andere" + +#: include/conversation.php:1123 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d Personen mögen das" + +#: include/conversation.php:1124 +#, php-format +msgid "%s like this." +msgstr "%s mögen das." + +#: include/conversation.php:1127 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d Personen mögen das nicht" + +#: include/conversation.php:1128 +#, php-format +msgid "%s don't like this." +msgstr "%s mögen dies nicht." + +#: include/conversation.php:1131 +#, php-format +msgid "%2$d people attend" +msgstr "%2$d Personen nehmen teil" + +#: include/conversation.php:1132 +#, php-format +msgid "%s attend." +msgstr "%s nehmen teil." + +#: include/conversation.php:1135 +#, php-format +msgid "%2$d people don't attend" +msgstr "%2$d Personen nehmen nicht teil" + +#: include/conversation.php:1136 +#, php-format +msgid "%s don't attend." +msgstr "%s nehmen nicht teil." + +#: include/conversation.php:1139 +#, php-format +msgid "%2$d people anttend maybe" +msgstr "%2$d Personen nehmen eventuell teil" + +#: include/conversation.php:1140 +#, php-format +msgid "%s anttend maybe." +msgstr "%s nehmen vielleicht teil." + +#: include/conversation.php:1179 include/conversation.php:1197 +msgid "Visible to everybody" +msgstr "Für jedermann sichtbar" + +#: include/conversation.php:1180 include/conversation.php:1198 +#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291 +#: mod/message.php:299 mod/message.php:442 mod/message.php:450 +msgid "Please enter a link URL:" +msgstr "Bitte gib die URL des Links ein:" + +#: include/conversation.php:1181 include/conversation.php:1199 +msgid "Please enter a video link/URL:" +msgstr "Bitte Link/URL zum Video einfügen:" + +#: include/conversation.php:1182 include/conversation.php:1200 +msgid "Please enter an audio link/URL:" +msgstr "Bitte Link/URL zum Audio einfügen:" + +#: include/conversation.php:1183 include/conversation.php:1201 +msgid "Tag term:" +msgstr "Tag:" + +#: include/conversation.php:1184 include/conversation.php:1202 +#: mod/filer.php:30 +msgid "Save to Folder:" +msgstr "In diesem Ordner speichern:" + +#: include/conversation.php:1185 include/conversation.php:1203 +msgid "Where are you right now?" +msgstr "Wo hältst Du Dich jetzt gerade auf?" + +#: include/conversation.php:1186 +msgid "Delete item(s)?" +msgstr "Einträge löschen?" + +#: include/conversation.php:1234 mod/photos.php:1596 +msgid "Share" +msgstr "Teilen" + +#: include/conversation.php:1235 mod/editpost.php:110 mod/wallmessage.php:154 +#: mod/message.php:354 mod/message.php:545 +msgid "Upload photo" +msgstr "Foto hochladen" + +#: include/conversation.php:1236 mod/editpost.php:111 +msgid "upload photo" +msgstr "Bild hochladen" + +#: include/conversation.php:1237 mod/editpost.php:112 +msgid "Attach file" +msgstr "Datei anhängen" + +#: include/conversation.php:1238 mod/editpost.php:113 +msgid "attach file" +msgstr "Datei anhängen" + +#: include/conversation.php:1239 mod/editpost.php:114 mod/wallmessage.php:155 +#: mod/message.php:355 mod/message.php:546 +msgid "Insert web link" +msgstr "Einen Link einfügen" + +#: include/conversation.php:1240 mod/editpost.php:115 +msgid "web link" +msgstr "Weblink" + +#: include/conversation.php:1241 mod/editpost.php:116 +msgid "Insert video link" +msgstr "Video-Adresse einfügen" + +#: include/conversation.php:1242 mod/editpost.php:117 +msgid "video link" +msgstr "Video-Link" + +#: include/conversation.php:1243 mod/editpost.php:118 +msgid "Insert audio link" +msgstr "Audio-Adresse einfügen" + +#: include/conversation.php:1244 mod/editpost.php:119 +msgid "audio link" +msgstr "Audio-Link" + +#: include/conversation.php:1245 mod/editpost.php:120 +msgid "Set your location" +msgstr "Deinen Standort festlegen" + +#: include/conversation.php:1246 mod/editpost.php:121 +msgid "set location" +msgstr "Ort setzen" + +#: include/conversation.php:1247 mod/editpost.php:122 +msgid "Clear browser location" +msgstr "Browser-Standort leeren" + +#: include/conversation.php:1248 mod/editpost.php:123 +msgid "clear location" +msgstr "Ort löschen" + +#: include/conversation.php:1250 mod/editpost.php:137 +msgid "Set title" +msgstr "Titel setzen" + +#: include/conversation.php:1252 mod/editpost.php:139 +msgid "Categories (comma-separated list)" +msgstr "Kategorien (kommasepariert)" + +#: include/conversation.php:1254 mod/editpost.php:125 +msgid "Permission settings" +msgstr "Berechtigungseinstellungen" + +#: include/conversation.php:1255 mod/editpost.php:154 +msgid "permissions" +msgstr "Zugriffsrechte" + +#: include/conversation.php:1263 mod/editpost.php:134 +msgid "Public post" +msgstr "Öffentlicher Beitrag" + +#: include/conversation.php:1268 mod/editpost.php:145 mod/content.php:737 +#: mod/photos.php:1618 mod/photos.php:1666 mod/photos.php:1754 +#: mod/events.php:505 object/Item.php:729 +msgid "Preview" +msgstr "Vorschau" + +#: include/conversation.php:1278 +msgid "Post to Groups" +msgstr "Poste an Gruppe" + +#: include/conversation.php:1279 +msgid "Post to Contacts" +msgstr "Poste an Kontakte" + +#: include/conversation.php:1280 +msgid "Private post" +msgstr "Privater Beitrag" + +#: include/conversation.php:1285 include/identity.php:250 mod/editpost.php:152 +msgid "Message" +msgstr "Nachricht" + +#: include/conversation.php:1286 mod/editpost.php:153 +msgid "Browser" +msgstr "Browser" + +#: include/conversation.php:1441 +msgid "View all" +msgstr "Zeige alle" + +#: include/conversation.php:1463 +msgid "Like" +msgid_plural "Likes" +msgstr[0] "mag ich" +msgstr[1] "Mag ich" + +#: include/conversation.php:1466 +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "mag ich nicht" +msgstr[1] "Mag ich nicht" + +#: include/conversation.php:1472 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Nicht teilnehmend " +msgstr[1] "Nicht teilnehmend" + +#: include/dbstructure.php:26 +#, php-format +msgid "" +"\n" +"\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." +msgstr "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein." + +#: include/dbstructure.php:31 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]" + +#: include/dbstructure.php:153 +msgid "Errors encountered creating database tables." +msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen." + +#: include/dbstructure.php:230 +msgid "Errors encountered performing database changes." +msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten." + +#: include/diaspora.php:1954 +msgid "Sharing notification from Diaspora network" +msgstr "Freigabe-Benachrichtigung von Diaspora" + +#: include/diaspora.php:2854 +msgid "Attachments:" +msgstr "Anhänge:" + +#: include/event.php:441 +msgid "Sun" +msgstr "So" + +#: include/event.php:442 +msgid "Mon" +msgstr "Mo" + +#: include/event.php:443 +msgid "Tue" +msgstr "Di" + +#: include/event.php:444 +msgid "Wed" +msgstr "Mi" + +#: include/event.php:445 +msgid "Thu" +msgstr "Do" + +#: include/event.php:446 +msgid "Fri" +msgstr "Fr" + +#: include/event.php:447 +msgid "Sat" +msgstr "Sa" + +#: include/event.php:455 +msgid "Jan" +msgstr "Jan" + +#: include/event.php:456 +msgid "Feb" +msgstr "Feb" + +#: include/event.php:457 +msgid "Mar" +msgstr "März" + +#: include/event.php:458 +msgid "Apr" +msgstr "Apr" + +#: include/event.php:460 +msgid "Jun" +msgstr "Jun" + +#: include/event.php:461 +msgid "Jul" +msgstr "Juli" + +#: include/event.php:462 +msgid "Aug" +msgstr "Aug" + +#: include/event.php:463 +msgid "Sept" +msgstr "Sep" + +#: include/event.php:464 +msgid "Oct" +msgstr "Okt" + +#: include/event.php:465 +msgid "Nov" +msgstr "Nov" + +#: include/event.php:466 +msgid "Dec" +msgstr "Dez" + +#: include/event.php:479 mod/cal.php:286 mod/events.php:388 +msgid "today" +msgstr "Heute" + +#: include/event.php:567 +msgid "l, F j" +msgstr "l, F j" + +#: include/event.php:586 +msgid "Edit event" +msgstr "Veranstaltung bearbeiten" + +#: include/event.php:843 +msgid "Export" +msgstr "Exportieren" + +#: include/event.php:844 +msgid "Export calendar as ical" +msgstr "Kalender als ical exportieren" + +#: include/event.php:845 +msgid "Export calendar as csv" +msgstr "Kalender als csv exportieren" + +#: include/identity.php:42 +msgid "Requested account is not available." +msgstr "Das angefragte Profil ist nicht vorhanden." + +#: include/identity.php:51 mod/profile.php:21 +msgid "Requested profile is not available." +msgstr "Das angefragte Profil ist nicht vorhanden." + +#: include/identity.php:95 include/identity.php:305 include/identity.php:686 +msgid "Edit profile" +msgstr "Profil bearbeiten" + +#: include/identity.php:245 +msgid "Atom feed" +msgstr "Atom-Feed" + +#: include/identity.php:276 +msgid "Manage/edit profiles" +msgstr "Profile verwalten/editieren" + +#: include/identity.php:281 include/identity.php:307 mod/profiles.php:787 +msgid "Change profile photo" +msgstr "Profilbild ändern" + +#: include/identity.php:282 mod/profiles.php:788 +msgid "Create New Profile" +msgstr "Neues Profil anlegen" + +#: include/identity.php:292 mod/profiles.php:777 +msgid "Profile Image" +msgstr "Profilbild" + +#: include/identity.php:295 mod/profiles.php:779 +msgid "visible to everybody" +msgstr "sichtbar für jeden" + +#: include/identity.php:296 mod/profiles.php:684 mod/profiles.php:780 +msgid "Edit visibility" +msgstr "Sichtbarkeit bearbeiten" + +#: include/identity.php:319 mod/directory.php:174 mod/match.php:84 +#: mod/viewcontacts.php:105 mod/allfriends.php:79 mod/suggest.php:98 +#: mod/hovercard.php:80 mod/common.php:123 mod/network.php:517 +#: mod/contacts.php:51 mod/contacts.php:626 mod/contacts.php:953 +#: mod/dirfind.php:223 mod/videos.php:37 mod/photos.php:42 mod/cal.php:44 +msgid "Forum" +msgstr "Forum" + +#: include/identity.php:331 include/identity.php:614 mod/directory.php:147 +#: mod/notifications.php:238 +msgid "Gender:" +msgstr "Geschlecht:" + +#: include/identity.php:334 include/identity.php:634 mod/directory.php:149 +msgid "Status:" +msgstr "Status:" + +#: include/identity.php:336 include/identity.php:645 mod/directory.php:151 +msgid "Homepage:" +msgstr "Homepage:" + +#: include/identity.php:338 include/identity.php:655 mod/directory.php:153 +#: mod/contacts.php:630 mod/notifications.php:234 +msgid "About:" +msgstr "Über:" + +#: include/identity.php:420 mod/contacts.php:50 mod/notifications.php:246 +msgid "Network:" +msgstr "Netzwerk:" + +#: include/identity.php:449 include/identity.php:533 +msgid "g A l F d" +msgstr "l, d. F G \\U\\h\\r" + +#: include/identity.php:450 include/identity.php:534 +msgid "F d" +msgstr "d. F" + +#: include/identity.php:495 include/identity.php:580 +msgid "[today]" +msgstr "[heute]" + +#: include/identity.php:507 +msgid "Birthday Reminders" +msgstr "Geburtstagserinnerungen" + +#: include/identity.php:508 +msgid "Birthdays this week:" +msgstr "Geburtstage diese Woche:" + +#: include/identity.php:567 +msgid "[No description]" +msgstr "[keine Beschreibung]" + +#: include/identity.php:591 +msgid "Event Reminders" +msgstr "Veranstaltungserinnerungen" + +#: include/identity.php:592 +msgid "Events this week:" +msgstr "Veranstaltungen diese Woche" + +#: include/identity.php:612 mod/settings.php:1229 +msgid "Full Name:" +msgstr "Kompletter Name:" + +#: include/identity.php:619 +msgid "j F, Y" +msgstr "j F, Y" + +#: include/identity.php:620 +msgid "j F" +msgstr "j F" + +#: include/identity.php:631 +msgid "Age:" +msgstr "Alter:" + +#: include/identity.php:640 +#, php-format +msgid "for %1$d %2$s" +msgstr "für %1$d %2$s" + +#: include/identity.php:643 mod/profiles.php:703 +msgid "Sexual Preference:" +msgstr "Sexuelle Vorlieben:" + +#: include/identity.php:647 mod/profiles.php:729 +msgid "Hometown:" +msgstr "Heimatort:" + +#: include/identity.php:649 mod/follow.php:134 mod/contacts.php:632 +#: mod/notifications.php:236 +msgid "Tags:" +msgstr "Tags:" + +#: include/identity.php:651 mod/profiles.php:730 +msgid "Political Views:" +msgstr "Politische Ansichten:" + +#: include/identity.php:653 +msgid "Religion:" +msgstr "Religion:" + +#: include/identity.php:657 +msgid "Hobbies/Interests:" +msgstr "Hobbies/Interessen:" + +#: include/identity.php:659 mod/profiles.php:734 +msgid "Likes:" +msgstr "Likes:" + +#: include/identity.php:661 mod/profiles.php:735 +msgid "Dislikes:" +msgstr "Dislikes:" + +#: include/identity.php:664 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformationen und Soziale Netzwerke:" + +#: include/identity.php:666 +msgid "Musical interests:" +msgstr "Musikalische Interessen:" + +#: include/identity.php:668 +msgid "Books, literature:" +msgstr "Literatur/Bücher:" + +#: include/identity.php:670 +msgid "Television:" +msgstr "Fernsehen:" + +#: include/identity.php:672 +msgid "Film/dance/culture/entertainment:" +msgstr "Filme/Tänze/Kultur/Unterhaltung:" + +#: include/identity.php:674 +msgid "Love/Romance:" +msgstr "Liebesleben:" + +#: include/identity.php:676 +msgid "Work/employment:" +msgstr "Arbeit/Beschäftigung:" + +#: include/identity.php:678 +msgid "School/education:" +msgstr "Schule/Ausbildung:" + +#: include/identity.php:682 +msgid "Forums:" +msgstr "Foren:" + +#: include/identity.php:690 mod/events.php:508 +msgid "Basic" +msgstr "Allgemein" + +#: include/identity.php:691 mod/contacts.php:868 mod/events.php:509 +#: mod/admin.php:931 +msgid "Advanced" +msgstr "Erweitert" + +#: include/identity.php:715 mod/follow.php:143 mod/contacts.php:834 +msgid "Status Messages and Posts" +msgstr "Statusnachrichten und Beiträge" + +#: include/identity.php:723 mod/contacts.php:842 +msgid "Profile Details" +msgstr "Profildetails" + +#: include/identity.php:731 mod/photos.php:100 +msgid "Photo Albums" +msgstr "Fotoalben" + +#: include/identity.php:770 mod/notes.php:46 +msgid "Personal Notes" +msgstr "Persönliche Notizen" + +#: include/identity.php:773 +msgid "Only You Can See This" +msgstr "Nur Du kannst das sehen" + #: mod/oexchange.php:25 msgid "Post successful." msgstr "Beitrag erfolgreich veröffentlicht." @@ -3221,7 +3221,7 @@ msgid "" "Password reset failed." msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert." -#: mod/lostpass.php:109 boot.php:1670 +#: mod/lostpass.php:109 boot.php:1719 msgid "Password Reset" msgstr "Passwort zurücksetzen" @@ -3287,7 +3287,7 @@ msgid "" "your email for further instructions." msgstr "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet." -#: mod/lostpass.php:161 boot.php:1658 +#: mod/lostpass.php:161 boot.php:1707 msgid "Nickname or Email: " msgstr "Spitzname oder E-Mail:" @@ -3564,11 +3564,11 @@ msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es #: 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 +#: mod/content.php:728 mod/contacts.php:577 mod/fsuggest.php:107 +#: mod/mood.php:137 mod/poke.php:199 mod/profiles.php:681 mod/install.php:272 +#: mod/install.php:312 mod/photos.php:1125 mod/photos.php:1249 +#: mod/photos.php:1566 mod/photos.php:1617 mod/photos.php:1665 +#: mod/photos.php:1753 mod/events.php:507 object/Item.php:720 #: view/theme/frio/config.php:59 view/theme/cleanzero/config.php:80 #: view/theme/quattro/config.php:64 view/theme/dispy/config.php:70 #: view/theme/vier/config.php:107 view/theme/diabook/theme.php:633 @@ -3635,18 +3635,6 @@ msgstr "Wähle ein Tag zum Entfernen aus: " msgid "Remove" msgstr "Entfernen" -#: mod/ping.php:272 -msgid "{0} wants to be your friend" -msgstr "{0} möchte mit Dir in Kontakt treten" - -#: mod/ping.php:287 -msgid "{0} sent you a message" -msgstr "{0} schickte Dir eine Nachricht" - -#: mod/ping.php:302 -msgid "{0} requested registration" -msgstr "{0} möchte sich registrieren" - #: mod/wall_attach.php:94 msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" msgstr "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt." @@ -3668,38 +3656,6 @@ msgstr "Hochladen der Datei fehlgeschlagen." msgid "No friends to display." msgstr "Keine Kontakte zum Anzeigen." -#: mod/cal.php:152 mod/display.php:328 mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt." - -#: mod/cal.php:279 mod/events.php:380 -msgid "View" -msgstr "Ansehen" - -#: mod/cal.php:280 mod/events.php:382 -msgid "Previous" -msgstr "Vorherige" - -#: mod/cal.php:281 mod/events.php:383 mod/install.php:231 -msgid "Next" -msgstr "Nächste" - -#: mod/cal.php:301 -msgid "User not found" -msgstr "Nutzer nicht gefunden" - -#: mod/cal.php:317 -msgid "This calendar format is not supported" -msgstr "Dieses Kalenderformat wird nicht unterstützt." - -#: mod/cal.php:319 -msgid "No exportable data found" -msgstr "Keine exportierbaren Daten gefunden" - -#: mod/cal.php:327 -msgid "calendar" -msgstr "Kalender" - #: mod/repair_ostatus.php:14 msgid "Resubscribing to OStatus contacts" msgstr "Erneuern der OStatus Abonements" @@ -3860,6 +3816,10 @@ msgstr "Ignorieren/Verbergen" msgid "Not Extended" msgstr "Nicht erweitert." +#: mod/display.php:328 mod/profile.php:155 mod/cal.php:152 +msgid "Access to this profile has been restricted." +msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt." + #: mod/display.php:471 msgid "Item has been removed." msgstr "Eintrag wurde entfernt." @@ -4517,9 +4477,8 @@ msgid "" "entries from this contact." msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden." -#: mod/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 +#: mod/crepair.php:165 mod/settings.php:665 mod/settings.php:691 +#: mod/admin.php:1375 mod/admin.php:1388 mod/admin.php:1400 mod/admin.php:1416 msgid "Name" msgstr "Name" @@ -4751,7 +4710,7 @@ msgstr "Das bist Du" #: 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 +#: object/Item.php:719 boot.php:903 msgid "Comment" msgstr "Kommentar" @@ -4852,1380 +4811,6 @@ msgstr "Wall-to-Wall" msgid "via Wall-To-Wall:" msgstr "via Wall-To-Wall:" -#: mod/admin.php:92 -msgid "Theme settings updated." -msgstr "Themeneinstellungen aktualisiert." - -#: mod/admin.php:156 mod/admin.php:925 -msgid "Site" -msgstr "Seite" - -#: mod/admin.php:157 mod/admin.php:869 mod/admin.php:1382 mod/admin.php:1397 -msgid "Users" -msgstr "Nutzer" - -#: 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 "Themen" - -#: mod/admin.php:160 mod/settings.php:52 -msgid "Additional features" -msgstr "Zusätzliche Features" - -#: mod/admin.php:161 -msgid "DB updates" -msgstr "DB Updates" - -#: mod/admin.php:162 mod/admin.php:397 -msgid "Inspect Queue" -msgstr "Warteschlange Inspizieren" - -#: mod/admin.php:163 mod/admin.php:363 -msgid "Federation Statistics" -msgstr "Federation Statistik" - -#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1875 -msgid "Logs" -msgstr "Protokolle" - -#: mod/admin.php:178 mod/admin.php:1942 -msgid "View Logs" -msgstr "Protokolle anzeigen" - -#: mod/admin.php:179 -msgid "probe address" -msgstr "Adresse untersuchen" - -#: mod/admin.php:180 -msgid "check webfinger" -msgstr "Webfinger überprüfen" - -#: mod/admin.php:187 -msgid "Plugin Features" -msgstr "Plugin Features" - -#: mod/admin.php:189 -msgid "diagnostics" -msgstr "Diagnose" - -#: mod/admin.php:190 -msgid "User registrations waiting for confirmation" -msgstr "Nutzeranmeldungen die auf Bestätigung warten" - -#: 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 "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:357 -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: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 "Administration" - -#: mod/admin.php:369 -#, 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:399 -msgid "ID" -msgstr "ID" - -#: mod/admin.php:400 -msgid "Recipient Name" -msgstr "Empfänger Name" - -#: mod/admin.php:401 -msgid "Recipient Profile" -msgstr "Empfänger Profil" - -#: mod/admin.php:403 -msgid "Created" -msgstr "Erstellt" - -#: mod/admin.php:404 -msgid "Last Tried" -msgstr "Zuletzt versucht" - -#: 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 "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:424 mod/admin.php:1330 -msgid "Normal Account" -msgstr "Normales Konto" - -#: mod/admin.php:425 mod/admin.php:1331 -msgid "Soapbox Account" -msgstr "Marktschreier-Konto" - -#: mod/admin.php:426 mod/admin.php:1332 -msgid "Community/Celebrity Account" -msgstr "Forum/Promi-Konto" - -#: mod/admin.php:427 mod/admin.php:1333 -msgid "Automatic Friend Account" -msgstr "Automatisches Freundekonto" - -#: mod/admin.php:428 -msgid "Blog Account" -msgstr "Blog-Konto" - -#: mod/admin.php:429 -msgid "Private Forum" -msgstr "Privates Forum" - -#: mod/admin.php:455 -msgid "Message queues" -msgstr "Nachrichten-Warteschlangen" - -#: mod/admin.php:461 -msgid "Summary" -msgstr "Zusammenfassung" - -#: mod/admin.php:463 -msgid "Registered users" -msgstr "Registrierte Nutzer" - -#: mod/admin.php:465 -msgid "Pending registrations" -msgstr "Anstehende Anmeldungen" - -#: mod/admin.php:466 -msgid "Version" -msgstr "Version" - -#: mod/admin.php:471 -msgid "Active plugins" -msgstr "Aktive Plugins" - -#: mod/admin.php:494 -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:797 -msgid "RINO2 needs mcrypt php extension to work." -msgstr "RINO2 benötigt die PHP Extension mcrypt." - -#: mod/admin.php:805 -msgid "Site settings updated." -msgstr "Seiteneinstellungen aktualisiert." - -#: mod/admin.php:833 mod/settings.php:919 -msgid "No special theme for mobile devices" -msgstr "Kein spezielles Theme für mobile Geräte verwenden." - -#: mod/admin.php:852 -msgid "No community page" -msgstr "Keine Gemeinschaftsseite" - -#: mod/admin.php:853 -msgid "Public postings from users of this site" -msgstr "Öffentliche Beiträge von Nutzer_innen dieser Seite" - -#: mod/admin.php:854 -msgid "Global community page" -msgstr "Globale Gemeinschaftsseite" - -#: mod/admin.php:859 mod/contacts.php:530 -msgid "Never" -msgstr "Niemals" - -#: mod/admin.php:860 -msgid "At post arrival" -msgstr "Beim Empfang von Nachrichten" - -#: mod/admin.php:868 mod/contacts.php:557 -msgid "Disabled" -msgstr "Deaktiviert" - -#: mod/admin.php:870 -msgid "Users, Global Contacts" -msgstr "Nutzer, globale Kontakte" - -#: mod/admin.php:871 -msgid "Users, Global Contacts/fallback" -msgstr "Nutzer, globale Kontakte / Fallback" - -#: mod/admin.php:875 -msgid "One month" -msgstr "ein Monat" - -#: mod/admin.php:876 -msgid "Three months" -msgstr "drei Monate" - -#: mod/admin.php:877 -msgid "Half a year" -msgstr "ein halbes Jahr" - -#: mod/admin.php:878 -msgid "One year" -msgstr "ein Jahr" - -#: mod/admin.php:883 -msgid "Multi user instance" -msgstr "Mehrbenutzer Instanz" - -#: mod/admin.php:906 -msgid "Closed" -msgstr "Geschlossen" - -#: mod/admin.php:907 -msgid "Requires approval" -msgstr "Bedarf der Zustimmung" - -#: mod/admin.php:908 -msgid "Open" -msgstr "Offen" - -#: mod/admin.php:912 -msgid "No SSL policy, links will track page SSL state" -msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten" - -#: mod/admin.php:913 -msgid "Force all links to use SSL" -msgstr "SSL für alle Links erzwingen" - -#: mod/admin.php:914 -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: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 "Einstellungen speichern" - -#: mod/admin.php:927 mod/register.php:263 -msgid "Registration" -msgstr "Registrierung" - -#: mod/admin.php:928 -msgid "File upload" -msgstr "Datei hochladen" - -#: mod/admin.php:929 -msgid "Policies" -msgstr "Regeln" - -#: mod/admin.php:931 -msgid "Auto Discovered Contact Directory" -msgstr "Automatisch ein Kontaktverzeichnis erstellen" - -#: mod/admin.php:932 -msgid "Performance" -msgstr "Performance" - -#: mod/admin.php:933 -msgid "Worker" -msgstr "Worker" - -#: mod/admin.php:934 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen." - -#: mod/admin.php:937 -msgid "Site name" -msgstr "Seitenname" - -#: mod/admin.php:938 -msgid "Host name" -msgstr "Host Name" - -#: mod/admin.php:939 -msgid "Sender Email" -msgstr "Absender für Emails" - -#: mod/admin.php:939 -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:940 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: mod/admin.php:941 -msgid "Shortcut icon" -msgstr "Shortcut Icon" - -#: mod/admin.php:941 -msgid "Link to an icon that will be used for browsers." -msgstr "Link zu einem Icon, das Browser verwenden werden." - -#: mod/admin.php:942 -msgid "Touch icon" -msgstr "Touch Icon" - -#: mod/admin.php:942 -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:943 -msgid "Additional Info" -msgstr "Zusätzliche Informationen" - -#: mod/admin.php:943 -#, 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:944 -msgid "System language" -msgstr "Systemsprache" - -#: mod/admin.php:945 -msgid "System theme" -msgstr "Systemweites Theme" - -#: mod/admin.php:945 -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:946 -msgid "Mobile system theme" -msgstr "Systemweites mobiles Theme" - -#: mod/admin.php:946 -msgid "Theme for mobile devices" -msgstr "Thema für mobile Geräte" - -#: mod/admin.php:947 -msgid "SSL link policy" -msgstr "Regeln für SSL Links" - -#: mod/admin.php:947 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Bestimmt, ob generierte Links SSL verwenden müssen" - -#: mod/admin.php:948 -msgid "Force SSL" -msgstr "Erzwinge SSL" - -#: mod/admin.php:948 -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:949 -msgid "Old style 'Share'" -msgstr "Altes \"Teilen\" Element" - -#: mod/admin.php:949 -msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen." - -#: mod/admin.php:950 -msgid "Hide help entry from navigation menu" -msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü" - -#: 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 "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden." - -#: mod/admin.php:951 -msgid "Single user instance" -msgstr "Ein-Nutzer Instanz" - -#: mod/admin.php:951 -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:952 -msgid "Maximum image size" -msgstr "Maximale Bildgröße" - -#: mod/admin.php:952 -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:953 -msgid "Maximum image length" -msgstr "Maximale Bildlänge" - -#: mod/admin.php:953 -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:954 -msgid "JPEG image quality" -msgstr "Qualität des JPEG Bildes" - -#: mod/admin.php:954 -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:956 -msgid "Register policy" -msgstr "Registrierungsmethode" - -#: mod/admin.php:957 -msgid "Maximum Daily Registrations" -msgstr "Maximum täglicher Registrierungen" - -#: 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 "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:958 -msgid "Register text" -msgstr "Registrierungstext" - -#: mod/admin.php:958 -msgid "Will be displayed prominently on the registration page." -msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt." - -#: mod/admin.php:959 -msgid "Accounts abandoned after x days" -msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt" - -#: mod/admin.php:959 -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:960 -msgid "Allowed friend domains" -msgstr "Erlaubte Domains für Kontakte" - -#: 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 "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:961 -msgid "Allowed email domains" -msgstr "Erlaubte Domains für E-Mails" - -#: 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 "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:962 -msgid "Block public" -msgstr "Öffentlichen Zugriff blockieren" - -#: 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 "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist." - -#: mod/admin.php:963 -msgid "Force publish" -msgstr "Erzwinge Veröffentlichung" - -#: mod/admin.php:963 -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:964 -msgid "Global directory URL" -msgstr "URL des weltweiten Verzeichnisses" - -#: 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 "URL des weltweiten Verzeichnisses. Wenn diese nicht gesetzt ist, ist das Verzeichnis für die Applikation nicht erreichbar." - -#: mod/admin.php:965 -msgid "Allow threaded items" -msgstr "Erlaube Threads in Diskussionen" - -#: mod/admin.php:965 -msgid "Allow infinite level threading for items on this site." -msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite." - -#: mod/admin.php:966 -msgid "Private posts by default for new users" -msgstr "Private Beiträge als Standard für neue Nutzer" - -#: mod/admin.php:966 -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:967 -msgid "Don't include post content in email notifications" -msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden" - -#: 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 "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz nicht in E-Mail-Benachrichtigungen einbinden." - -#: mod/admin.php:968 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten." - -#: mod/admin.php:968 -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:969 -msgid "Don't embed private images in posts" -msgstr "Private Bilder nicht in Beiträgen einbetten." - -#: 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 "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:970 -msgid "Allow Users to set remote_self" -msgstr "Nutzern erlauben das remote_self Flag zu setzen" - -#: 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 "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:971 -msgid "Block multiple registrations" -msgstr "Unterbinde Mehrfachregistrierung" - -#: mod/admin.php:971 -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:972 -msgid "OpenID support" -msgstr "OpenID Unterstützung" - -#: mod/admin.php:972 -msgid "OpenID support for registration and logins." -msgstr "OpenID-Unterstützung für Registrierung und Login." - -#: mod/admin.php:973 -msgid "Fullname check" -msgstr "Namen auf Vollständigkeit überprüfen" - -#: mod/admin.php:973 -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:974 -msgid "UTF-8 Regular expressions" -msgstr "UTF-8 Reguläre Ausdrücke" - -#: mod/admin.php:974 -msgid "Use PHP UTF8 regular expressions" -msgstr "PHP UTF8 Ausdrücke verwenden" - -#: mod/admin.php:975 -msgid "Community Page Style" -msgstr "Art der Gemeinschaftsseite" - -#: 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 "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:976 -msgid "Posts per user on community page" -msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite" - -#: mod/admin.php:976 -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:977 -msgid "Enable OStatus support" -msgstr "OStatus Unterstützung aktivieren" - -#: 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 "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:978 -msgid "OStatus conversation completion interval" -msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen" - -#: 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 "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:979 -msgid "Only import OStatus threads from our contacts" -msgstr "Nur OStatus Konversationen unserer Kontakte importieren" - -#: 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 "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:980 -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:982 -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:983 -msgid "Enable Diaspora support" -msgstr "Diaspora Unterstützung aktivieren" - -#: mod/admin.php:983 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Verwende die eingebaute Diaspora-Verknüpfung." - -#: mod/admin.php:984 -msgid "Only allow Friendica contacts" -msgstr "Nur Friendica-Kontakte erlauben" - -#: mod/admin.php:984 -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:985 -msgid "Verify SSL" -msgstr "SSL Überprüfen" - -#: 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 "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:986 -msgid "Proxy user" -msgstr "Proxy Nutzer" - -#: mod/admin.php:987 -msgid "Proxy URL" -msgstr "Proxy URL" - -#: mod/admin.php:988 -msgid "Network timeout" -msgstr "Netzwerk Wartezeit" - -#: mod/admin.php:988 -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:989 -msgid "Delivery interval" -msgstr "Zustellungsintervall" - -#: 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 "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl an Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared-Hosts, 2-3 für VPS, 0-1 für große dedizierte Server." - -#: mod/admin.php:990 -msgid "Poll interval" -msgstr "Abfrageintervall" - -#: mod/admin.php:990 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Verzögere Hintergrundprozesse um diese Anzahl an Sekunden, um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet." - -#: mod/admin.php:991 -msgid "Maximum Load Average" -msgstr "Maximum Load Average" - -#: mod/admin.php:991 -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:992 -msgid "Maximum Load Average (Frontend)" -msgstr "Maximum Load Average (Frontend)" - -#: mod/admin.php:992 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50." - -#: mod/admin.php:993 -msgid "Maximum table size for optimization" -msgstr "Maximale Tabellengröße zur Optimierung" - -#: mod/admin.php:993 -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:994 -msgid "Minimum level of fragmentation" -msgstr "Minimaler Fragmentationsgrad" - -#: mod/admin.php:994 -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:996 -msgid "Periodical check of global contacts" -msgstr "Regelmäßig globale Kontakte überprüfen" - -#: 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 "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:997 -msgid "Days between requery" -msgstr "Tage zwischen erneuten Abfragen" - -#: mod/admin.php:997 -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:998 -msgid "Discover contacts from other servers" -msgstr "Neue Kontakte auf anderen Servern entdecken" - -#: 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 "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:999 -msgid "Timeframe for fetching global contacts" -msgstr "Zeitfenster für globale Kontakte" - -#: 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 "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:1000 -msgid "Search the local directory" -msgstr "Lokales Verzeichnis durchsuchen" - -#: 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 "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:1002 -msgid "Publish server information" -msgstr "Server Informationen veröffentlichen" - -#: 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 "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:1004 -msgid "Use MySQL full text engine" -msgstr "Nutze MySQL full text engine" - -#: mod/admin.php:1004 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "Aktiviert die 'full text engine'. Beschleunigt die Suche - aber es kann nur nach vier oder mehr Zeichen gesucht werden." - -#: mod/admin.php:1005 -msgid "Suppress Language" -msgstr "Sprachinformation unterdrücken" - -#: mod/admin.php:1005 -msgid "Suppress language information in meta information about a posting." -msgstr "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags." - -#: mod/admin.php:1006 -msgid "Suppress Tags" -msgstr "Tags Unterdrücken" - -#: mod/admin.php:1006 -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:1007 -msgid "Path to item cache" -msgstr "Pfad zum Eintrag Cache" - -#: mod/admin.php:1007 -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:1008 -msgid "Cache duration in seconds" -msgstr "Cache-Dauer in Sekunden" - -#: 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 "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:1009 -msgid "Maximum numbers of comments per post" -msgstr "Maximale Anzahl von Kommentaren pro Beitrag" - -#: mod/admin.php:1009 -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:1010 -msgid "Path for lock file" -msgstr "Pfad für die Sperrdatei" - -#: mod/admin.php:1010 -msgid "" -"The lock file is used to avoid multiple pollers at one time. Only define a " -"folder here." -msgstr "Die lock-Datei wird benutzt, damit nicht mehrere poller auf einmal laufen. Definiere hier einen Dateiverzeichnis." - -#: mod/admin.php:1011 -msgid "Temp path" -msgstr "Temp Pfad" - -#: 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 "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:1012 -msgid "Base path to installation" -msgstr "Basis-Pfad zur Installation" - -#: 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 "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:1013 -msgid "Disable picture proxy" -msgstr "Bilder Proxy deaktivieren" - -#: mod/admin.php:1013 -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:1014 -msgid "Enable old style pager" -msgstr "Den Old-Style Pager aktiviren" - -#: mod/admin.php:1014 -msgid "" -"The old style pager has page numbers but slows down massively the page " -"speed." -msgstr "Der Old-Style Pager zeigt Seitennummern an, verlangsamt aber auch drastisch das Laden einer Seite." - -#: mod/admin.php:1015 -msgid "Only search in tags" -msgstr "Nur in Tags suchen" - -#: mod/admin.php:1015 -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:1017 -msgid "New base url" -msgstr "Neue Basis-URL" - -#: mod/admin.php:1017 -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:1019 -msgid "RINO Encryption" -msgstr "RINO Verschlüsselung" - -#: mod/admin.php:1019 -msgid "Encryption layer between nodes." -msgstr "Verschlüsselung zwischen Friendica Instanzen" - -#: mod/admin.php:1020 -msgid "Embedly API key" -msgstr "Embedly API Schlüssel" - -#: mod/admin.php:1020 -msgid "" -"Embedly is used to fetch additional data for " -"web pages. This is an optional parameter." -msgstr "Embedly wird verwendet um zusätzliche Informationen von Webseiten zu laden. Dies ist ein optionaler Parameter." - -#: mod/admin.php:1022 -msgid "Enable 'worker' background processing" -msgstr "Aktiviere die 'Worker' Hintergrundprozesse" - -#: 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 "Der 'background worker' Prozess begrenzt die Zahl der Prozesse, die im Hintergrund parallel laufen und beachtet dabei die Systemlast." - -#: mod/admin.php:1023 -msgid "Maximum number of parallel workers" -msgstr "Maximale Anzahl parallel laufender Worker" - -#: 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 "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:1024 -msgid "Don't use 'proc_open' with the worker" -msgstr "'proc_open' nicht mit den Workern verwenden" - -#: 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 "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:1025 -msgid "Enable fastlane" -msgstr "Aktiviere Fastlane" - -#: 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 "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:1054 -msgid "Update has been marked successful" -msgstr "Update wurde als erfolgreich markiert" - -#: mod/admin.php:1062 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt." - -#: mod/admin.php:1065 -#, 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:1077 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s" - -#: mod/admin.php:1080 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Update %s war erfolgreich." - -#: mod/admin.php:1084 -#, 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:1086 -#, 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:1105 -msgid "No failed updates." -msgstr "Keine fehlgeschlagenen Updates." - -#: mod/admin.php:1106 -msgid "Check database structure" -msgstr "Datenbank Struktur überprüfen" - -#: mod/admin.php:1111 -msgid "Failed Updates" -msgstr "Fehlgeschlagene Updates" - -#: mod/admin.php:1112 -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:1113 -msgid "Mark success (if update was manually applied)" -msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)" - -#: mod/admin.php:1114 -msgid "Attempt to execute this update step automatically" -msgstr "Versuchen, diesen Schritt automatisch auszuführen" - -#: 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 "\nHallo %1$s,\n\nauf %2$s wurde ein Account für Dich angelegt." - -#: 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 "\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:1193 -#, 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:1200 -#, 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:1247 -#, php-format -msgid "User '%s' deleted" -msgstr "Nutzer '%s' gelöscht" - -#: mod/admin.php:1255 -#, php-format -msgid "User '%s' unblocked" -msgstr "Nutzer '%s' entsperrt" - -#: mod/admin.php:1255 -#, php-format -msgid "User '%s' blocked" -msgstr "Nutzer '%s' gesperrt" - -#: mod/admin.php:1374 mod/admin.php:1399 -msgid "Register date" -msgstr "Anmeldedatum" - -#: mod/admin.php:1374 mod/admin.php:1399 -msgid "Last login" -msgstr "Letzte Anmeldung" - -#: mod/admin.php:1374 mod/admin.php:1399 -msgid "Last item" -msgstr "Letzter Beitrag" - -#: mod/admin.php:1374 mod/settings.php:43 -msgid "Account" -msgstr "Nutzerkonto" - -#: mod/admin.php:1383 -msgid "Add User" -msgstr "Nutzer hinzufügen" - -#: mod/admin.php:1384 -msgid "select all" -msgstr "Alle auswählen" - -#: mod/admin.php:1385 -msgid "User registrations waiting for confirm" -msgstr "Neuanmeldungen, die auf Deine Bestätigung warten" - -#: mod/admin.php:1386 -msgid "User waiting for permanent deletion" -msgstr "Nutzer wartet auf permanente Löschung" - -#: mod/admin.php:1387 -msgid "Request date" -msgstr "Anfragedatum" - -#: mod/admin.php:1388 -msgid "No registrations." -msgstr "Keine Neuanmeldungen." - -#: mod/admin.php:1389 mod/notifications.php:176 mod/notifications.php:249 -msgid "Approve" -msgstr "Genehmigen" - -#: mod/admin.php:1390 -msgid "Deny" -msgstr "Verwehren" - -#: mod/admin.php:1392 mod/contacts.php:605 mod/contacts.php:803 -#: mod/contacts.php:997 -msgid "Block" -msgstr "Sperren" - -#: mod/admin.php:1393 mod/contacts.php:605 mod/contacts.php:803 -#: mod/contacts.php:997 -msgid "Unblock" -msgstr "Entsperren" - -#: mod/admin.php:1394 -msgid "Site admin" -msgstr "Seitenadministrator" - -#: mod/admin.php:1395 -msgid "Account expired" -msgstr "Account ist abgelaufen" - -#: mod/admin.php:1398 -msgid "New User" -msgstr "Neuer Nutzer" - -#: mod/admin.php:1399 -msgid "Deleted since" -msgstr "Gelöscht seit" - -#: 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 "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: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 "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:1415 -msgid "Name of the new user." -msgstr "Name des neuen Nutzers" - -#: mod/admin.php:1416 -msgid "Nickname" -msgstr "Spitzname" - -#: mod/admin.php:1416 -msgid "Nickname of the new user." -msgstr "Spitznamen für den neuen Nutzer" - -#: mod/admin.php:1417 -msgid "Email address of the new user." -msgstr "Email Adresse des neuen Nutzers" - -#: mod/admin.php:1460 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s deaktiviert." - -#: mod/admin.php:1464 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s aktiviert." - -#: mod/admin.php:1475 mod/admin.php:1711 -msgid "Disable" -msgstr "Ausschalten" - -#: mod/admin.php:1477 mod/admin.php:1713 -msgid "Enable" -msgstr "Einschalten" - -#: mod/admin.php:1500 mod/admin.php:1758 -msgid "Toggle" -msgstr "Umschalten" - -#: mod/admin.php:1508 mod/admin.php:1767 -msgid "Author: " -msgstr "Autor:" - -#: mod/admin.php:1509 mod/admin.php:1768 -msgid "Maintainer: " -msgstr "Betreuer:" - -#: mod/admin.php:1561 -msgid "Reload active plugins" -msgstr "Aktive Plugins neu laden" - -#: 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 "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:1671 -msgid "No themes found." -msgstr "Keine Themen gefunden." - -#: mod/admin.php:1749 -msgid "Screenshot" -msgstr "Bildschirmfoto" - -#: mod/admin.php:1809 -msgid "Reload active themes" -msgstr "Aktives Theme neu laden" - -#: mod/admin.php:1814 -#, 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:1815 -msgid "[Experimental]" -msgstr "[Experimentell]" - -#: mod/admin.php:1816 -msgid "[Unsupported]" -msgstr "[Nicht unterstützt]" - -#: mod/admin.php:1840 -msgid "Log settings updated." -msgstr "Protokolleinstellungen aktualisiert." - -#: mod/admin.php:1877 -msgid "Clear" -msgstr "löschen" - -#: mod/admin.php:1882 -msgid "Enable Debugging" -msgstr "Protokoll führen" - -#: mod/admin.php:1883 -msgid "Log file" -msgstr "Protokolldatei" - -#: mod/admin.php:1883 -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:1884 -msgid "Log level" -msgstr "Protokoll-Level" - -#: mod/admin.php:1887 -msgid "PHP logging" -msgstr "PHP Protokollieren" - -#: 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 "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:2014 mod/admin.php:2015 mod/settings.php:763 -msgid "Off" -msgstr "Aus" - -#: mod/admin.php:2014 mod/admin.php:2015 mod/settings.php:763 -msgid "On" -msgstr "An" - -#: mod/admin.php:2015 -#, php-format -msgid "Lock feature %s" -msgstr "Feature festlegen: %s" - -#: mod/admin.php:2023 -msgid "Manage Additional Features" -msgstr "Zusätzliche Features Verwalten" - #: mod/contacts.php:128 #, php-format msgid "%d contact edited." @@ -6300,6 +4885,10 @@ msgstr "%s teilt mit Dir" msgid "Private communications are not available for this contact." msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar." +#: mod/contacts.php:530 mod/admin.php:860 +msgid "Never" +msgstr "Niemals" + #: mod/contacts.php:534 msgid "(Update was successful)" msgstr "(Aktualisierung war erfolgreich)" @@ -6325,6 +4914,10 @@ msgstr "Verbindungen mit diesem Kontakt verloren!" msgid "Fetch further information for feeds" msgstr "Weitere Informationen zu Feeds holen" +#: mod/contacts.php:557 mod/admin.php:869 +msgid "Disabled" +msgstr "Deaktiviert" + #: mod/contacts.php:557 msgid "Fetch information" msgstr "Beziehe Information" @@ -6384,6 +4977,16 @@ msgstr "Öffentliche Beiträge aktualisieren" msgid "Update now" msgstr "Jetzt aktualisieren" +#: mod/contacts.php:605 mod/contacts.php:803 mod/contacts.php:997 +#: mod/admin.php:1394 +msgid "Unblock" +msgstr "Entsperren" + +#: mod/contacts.php:605 mod/contacts.php:803 mod/contacts.php:997 +#: mod/admin.php:1393 +msgid "Block" +msgstr "Sperren" + #: mod/contacts.php:606 mod/contacts.php:804 mod/contacts.php:1005 msgid "Unignore" msgstr "Ignorieren aufheben" @@ -6643,58 +5246,6 @@ msgstr "Personensuche - %s" msgid "Forum Search - %s" msgstr "Forensuche - %s" -#: mod/events.php:95 mod/events.php:97 -msgid "Event can not end before it has started." -msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt." - -#: mod/events.php:104 mod/events.php:106 -msgid "Event title and start time are required." -msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden." - -#: mod/events.php:381 -msgid "Create New Event" -msgstr "Neue Veranstaltung erstellen" - -#: mod/events.php:483 -msgid "Event details" -msgstr "Veranstaltungsdetails" - -#: mod/events.php:484 -msgid "Starting date and Title are required." -msgstr "Anfangszeitpunkt und Titel werden benötigt" - -#: mod/events.php:485 mod/events.php:486 -msgid "Event Starts:" -msgstr "Veranstaltungsbeginn:" - -#: mod/events.php:485 mod/events.php:497 mod/profiles.php:709 -msgid "Required" -msgstr "Benötigt" - -#: mod/events.php:487 mod/events.php:503 -msgid "Finish date/time is not known or not relevant" -msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant" - -#: mod/events.php:489 mod/events.php:490 -msgid "Event Finishes:" -msgstr "Veranstaltungsende:" - -#: mod/events.php:491 mod/events.php:504 -msgid "Adjust for viewer timezone" -msgstr "An Zeitzone des Betrachters anpassen" - -#: mod/events.php:493 -msgid "Description:" -msgstr "Beschreibung" - -#: mod/events.php:497 mod/events.php:499 -msgid "Title:" -msgstr "Titel:" - -#: mod/events.php:500 mod/events.php:501 -msgid "Share this event" -msgstr "Veranstaltung teilen" - #: mod/fsuggest.php:63 msgid "Friend suggestion sent." msgstr "Kontaktvorschlag gesendet." @@ -7002,6 +5553,10 @@ msgstr "Beispiel: Fischen Fotografie Software" msgid "Profile Name:" msgstr "Profilname:" +#: mod/profiles.php:709 mod/events.php:485 mod/events.php:497 +msgid "Required" +msgstr "Benötigt" + #: mod/profiles.php:711 msgid "" "This is your public profile.
It may " @@ -7168,6 +5723,10 @@ msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung mögli msgid "Your invitation ID: " msgstr "ID Deiner Einladung: " +#: mod/register.php:263 mod/admin.php:928 +msgid "Registration" +msgstr "Registrierung" + #: mod/register.php:271 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):" @@ -7220,6 +5779,14 @@ msgstr "Bitte melde Dich an." msgid "everybody" msgstr "jeder" +#: mod/settings.php:43 mod/admin.php:1375 +msgid "Account" +msgstr "Nutzerkonto" + +#: mod/settings.php:52 mod/admin.php:160 +msgid "Additional features" +msgstr "Zusätzliche Features" + #: mod/settings.php:60 msgid "Display" msgstr "Anzeige" @@ -7228,6 +5795,10 @@ msgstr "Anzeige" msgid "Social Networks" msgstr "Soziale Netzwerke" +#: mod/settings.php:74 mod/admin.php:158 mod/admin.php:1500 mod/admin.php:1560 +msgid "Plugins" +msgstr "Plugins" + #: mod/settings.php:88 msgid "Connected apps" msgstr "Verbundene Programme" @@ -7308,6 +5879,13 @@ msgstr "Einstellungen aktualisiert." msgid "Add application" msgstr "Programm hinzufügen" +#: mod/settings.php:663 mod/settings.php:773 mod/settings.php:820 +#: mod/settings.php:889 mod/settings.php:976 mod/settings.php:1214 +#: mod/admin.php:927 mod/admin.php:1561 mod/admin.php:1809 mod/admin.php:1883 +#: mod/admin.php:2033 +msgid "Save Settings" +msgstr "Einstellungen speichern" + #: mod/settings.php:666 mod/settings.php:692 msgid "Consumer Key" msgstr "Consumer Key" @@ -7352,6 +5930,14 @@ msgstr "Keine Plugin-Einstellungen konfiguriert" msgid "Plugin Settings" msgstr "Plugin-Einstellungen" +#: mod/settings.php:763 mod/admin.php:2022 mod/admin.php:2023 +msgid "Off" +msgstr "Aus" + +#: mod/settings.php:763 mod/admin.php:2022 mod/admin.php:2023 +msgid "On" +msgstr "An" + #: mod/settings.php:771 msgid "Additional Features" msgstr "Zusätzliche Features" @@ -7480,6 +6066,10 @@ msgstr "In einen Ordner verschieben" msgid "Move to folder:" msgstr "In diesen Ordner verschieben:" +#: mod/settings.php:919 mod/admin.php:834 +msgid "No special theme for mobile devices" +msgstr "Kein spezielles Theme für mobile Geräte verwenden." + #: mod/settings.php:974 msgid "Display Settings" msgstr "Anzeige-Einstellungen" @@ -7945,6 +6535,10 @@ msgstr "Die Datenbank wird bereits verwendet." msgid "System check" msgstr "Systemtest" +#: mod/install.php:231 mod/cal.php:281 mod/events.php:383 +msgid "Next" +msgstr "Nächste" + #: mod/install.php:232 msgid "Check again" msgstr "Noch einmal testen" @@ -8264,107 +6858,6 @@ msgid "" "poller." msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten." -#: mod/notifications.php:35 -msgid "Invalid request identifier." -msgstr "Invalid request identifier." - -#: mod/notifications.php:44 mod/notifications.php:180 -#: mod/notifications.php:252 -msgid "Discard" -msgstr "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:222 -msgid "Notification type: " -msgstr "Benachrichtigungstyp: " - -#: mod/notifications.php:167 -#, php-format -msgid "suggested by %s" -msgstr "vorgeschlagen von %s" - -#: mod/notifications.php:173 mod/notifications.php:240 -msgid "Post a new friend activity" -msgstr "Neue-Kontakt Nachricht senden" - -#: mod/notifications.php:173 mod/notifications.php:240 -msgid "if applicable" -msgstr "falls anwendbar" - -#: mod/notifications.php:195 -msgid "Claims to be known to you: " -msgstr "Behauptet Dich zu kennen: " - -#: mod/notifications.php:196 -msgid "yes" -msgstr "ja" - -#: mod/notifications.php:196 -msgid "no" -msgstr "nein" - -#: mod/notifications.php:197 -msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " -"you allow to read but you do not want to read theirs. Approve as: " -msgstr "Soll Deine Beziehung beidseitig sein oder nicht? \"Kontakt\" bedeutet, ihr könnt gegenseitig die Beiträge des Anderen lesen dürft. \"Fan/Verehrer\", dass du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:" - -#: mod/notifications.php:200 -msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Sharer\" means that you " -"allow to read but you do not want to read theirs. Approve as: " -msgstr "Soll Deine Beziehung beidseitig sein oder nicht? \"Freund\" bedeutet, ihr gegenseitig die Beiträge des Anderen lesen dürft. \"Teilenden\", das du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:" - -#: mod/notifications.php:209 -msgid "Friend" -msgstr "Kontakt" - -#: mod/notifications.php:210 -msgid "Sharer" -msgstr "Teilenden" - -#: mod/notifications.php:210 -msgid "Fan/Admirer" -msgstr "Fan/Verehrer" - -#: mod/notifications.php:260 -msgid "No introductions." -msgstr "Keine Kontaktanfragen." - -#: mod/notifications.php:299 -msgid "Show unread" -msgstr "Ungelesene anzeigen" - -#: mod/notifications.php:299 -msgid "Show all" -msgstr "Alle anzeigen" - -#: mod/notifications.php:305 -#, php-format -msgid "No more %s notifications." -msgstr "Keine weiteren %s Benachrichtigungen" - #: mod/photos.php:101 mod/photos.php:1886 msgid "Recent Photos" msgstr "Neueste Fotos" @@ -8532,6 +7025,1520 @@ msgstr "Öffentliches Foto" msgid "Map" msgstr "Karte" +#: mod/cal.php:279 mod/events.php:380 +msgid "View" +msgstr "Ansehen" + +#: mod/cal.php:280 mod/events.php:382 +msgid "Previous" +msgstr "Vorherige" + +#: mod/cal.php:301 +msgid "User not found" +msgstr "Nutzer nicht gefunden" + +#: mod/cal.php:317 +msgid "This calendar format is not supported" +msgstr "Dieses Kalenderformat wird nicht unterstützt." + +#: mod/cal.php:319 +msgid "No exportable data found" +msgstr "Keine exportierbaren Daten gefunden" + +#: mod/cal.php:334 +msgid "calendar" +msgstr "Kalender" + +#: mod/events.php:95 mod/events.php:97 +msgid "Event can not end before it has started." +msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt." + +#: mod/events.php:104 mod/events.php:106 +msgid "Event title and start time are required." +msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden." + +#: mod/events.php:381 +msgid "Create New Event" +msgstr "Neue Veranstaltung erstellen" + +#: mod/events.php:483 +msgid "Event details" +msgstr "Veranstaltungsdetails" + +#: mod/events.php:484 +msgid "Starting date and Title are required." +msgstr "Anfangszeitpunkt und Titel werden benötigt" + +#: mod/events.php:485 mod/events.php:486 +msgid "Event Starts:" +msgstr "Veranstaltungsbeginn:" + +#: mod/events.php:487 mod/events.php:503 +msgid "Finish date/time is not known or not relevant" +msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant" + +#: mod/events.php:489 mod/events.php:490 +msgid "Event Finishes:" +msgstr "Veranstaltungsende:" + +#: mod/events.php:491 mod/events.php:504 +msgid "Adjust for viewer timezone" +msgstr "An Zeitzone des Betrachters anpassen" + +#: mod/events.php:493 +msgid "Description:" +msgstr "Beschreibung" + +#: mod/events.php:497 mod/events.php:499 +msgid "Title:" +msgstr "Titel:" + +#: mod/events.php:500 mod/events.php:501 +msgid "Share this event" +msgstr "Veranstaltung teilen" + +#: mod/notifications.php:35 +msgid "Invalid request identifier." +msgstr "Invalid request identifier." + +#: mod/notifications.php:44 mod/notifications.php:180 +#: mod/notifications.php:252 +msgid "Discard" +msgstr "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:222 +msgid "Notification type: " +msgstr "Benachrichtigungstyp: " + +#: mod/notifications.php:167 +#, php-format +msgid "suggested by %s" +msgstr "vorgeschlagen von %s" + +#: mod/notifications.php:173 mod/notifications.php:240 +msgid "Post a new friend activity" +msgstr "Neue-Kontakt Nachricht senden" + +#: mod/notifications.php:173 mod/notifications.php:240 +msgid "if applicable" +msgstr "falls anwendbar" + +#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1390 +msgid "Approve" +msgstr "Genehmigen" + +#: mod/notifications.php:195 +msgid "Claims to be known to you: " +msgstr "Behauptet Dich zu kennen: " + +#: mod/notifications.php:196 +msgid "yes" +msgstr "ja" + +#: mod/notifications.php:196 +msgid "no" +msgstr "nein" + +#: mod/notifications.php:197 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " +"you allow to read but you do not want to read theirs. Approve as: " +msgstr "Soll Deine Beziehung beidseitig sein oder nicht? \"Kontakt\" bedeutet, ihr könnt gegenseitig die Beiträge des Anderen lesen dürft. \"Fan/Verehrer\", dass du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:" + +#: mod/notifications.php:200 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Sharer\" means that you " +"allow to read but you do not want to read theirs. Approve as: " +msgstr "Soll Deine Beziehung beidseitig sein oder nicht? \"Freund\" bedeutet, ihr gegenseitig die Beiträge des Anderen lesen dürft. \"Teilenden\", das du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:" + +#: mod/notifications.php:209 +msgid "Friend" +msgstr "Kontakt" + +#: mod/notifications.php:210 +msgid "Sharer" +msgstr "Teilenden" + +#: mod/notifications.php:210 +msgid "Fan/Admirer" +msgstr "Fan/Verehrer" + +#: mod/notifications.php:260 +msgid "No introductions." +msgstr "Keine Kontaktanfragen." + +#: mod/notifications.php:299 +msgid "Show unread" +msgstr "Ungelesene anzeigen" + +#: mod/notifications.php:299 +msgid "Show all" +msgstr "Alle anzeigen" + +#: mod/notifications.php:305 +#, php-format +msgid "No more %s notifications." +msgstr "Keine weiteren %s Benachrichtigungen" + +#: mod/ping.php:234 +msgid "{0} wants to be your friend" +msgstr "{0} möchte mit Dir in Kontakt treten" + +#: mod/ping.php:249 +msgid "{0} sent you a message" +msgstr "{0} schickte Dir eine Nachricht" + +#: mod/ping.php:264 +msgid "{0} requested registration" +msgstr "{0} möchte sich registrieren" + +#: mod/admin.php:92 +msgid "Theme settings updated." +msgstr "Themeneinstellungen aktualisiert." + +#: mod/admin.php:156 mod/admin.php:926 +msgid "Site" +msgstr "Seite" + +#: mod/admin.php:157 mod/admin.php:870 mod/admin.php:1383 mod/admin.php:1398 +msgid "Users" +msgstr "Nutzer" + +#: mod/admin.php:159 mod/admin.php:1758 mod/admin.php:1808 +msgid "Themes" +msgstr "Themen" + +#: mod/admin.php:161 +msgid "DB updates" +msgstr "DB Updates" + +#: mod/admin.php:162 mod/admin.php:397 +msgid "Inspect Queue" +msgstr "Warteschlange Inspizieren" + +#: mod/admin.php:163 mod/admin.php:363 +msgid "Federation Statistics" +msgstr "Federation Statistik" + +#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1882 +msgid "Logs" +msgstr "Protokolle" + +#: mod/admin.php:178 mod/admin.php:1950 +msgid "View Logs" +msgstr "Protokolle anzeigen" + +#: mod/admin.php:179 +msgid "probe address" +msgstr "Adresse untersuchen" + +#: mod/admin.php:180 +msgid "check webfinger" +msgstr "Webfinger überprüfen" + +#: mod/admin.php:187 +msgid "Plugin Features" +msgstr "Plugin Features" + +#: mod/admin.php:189 +msgid "diagnostics" +msgstr "Diagnose" + +#: mod/admin.php:190 +msgid "User registrations waiting for confirmation" +msgstr "Nutzeranmeldungen die auf Bestätigung warten" + +#: 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 "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:357 +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:362 mod/admin.php:396 mod/admin.php:460 mod/admin.php:925 +#: mod/admin.php:1382 mod/admin.php:1499 mod/admin.php:1559 mod/admin.php:1757 +#: mod/admin.php:1807 mod/admin.php:1881 mod/admin.php:1949 +msgid "Administration" +msgstr "Administration" + +#: mod/admin.php:369 +#, php-format +msgid "Currently this node is aware of %d nodes from the following platforms:" +msgstr "Momentan kennt dieser Knoten %d andere Knoten der folgenden Plattformen:" + +#: mod/admin.php:399 +msgid "ID" +msgstr "ID" + +#: mod/admin.php:400 +msgid "Recipient Name" +msgstr "Empfänger Name" + +#: mod/admin.php:401 +msgid "Recipient Profile" +msgstr "Empfänger Profil" + +#: mod/admin.php:403 +msgid "Created" +msgstr "Erstellt" + +#: mod/admin.php:404 +msgid "Last Tried" +msgstr "Zuletzt versucht" + +#: 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 "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:424 mod/admin.php:1331 +msgid "Normal Account" +msgstr "Normales Konto" + +#: mod/admin.php:425 mod/admin.php:1332 +msgid "Soapbox Account" +msgstr "Marktschreier-Konto" + +#: mod/admin.php:426 mod/admin.php:1333 +msgid "Community/Celebrity Account" +msgstr "Forum/Promi-Konto" + +#: mod/admin.php:427 mod/admin.php:1334 +msgid "Automatic Friend Account" +msgstr "Automatisches Freundekonto" + +#: mod/admin.php:428 +msgid "Blog Account" +msgstr "Blog-Konto" + +#: mod/admin.php:429 +msgid "Private Forum" +msgstr "Privates Forum" + +#: mod/admin.php:455 +msgid "Message queues" +msgstr "Nachrichten-Warteschlangen" + +#: mod/admin.php:461 +msgid "Summary" +msgstr "Zusammenfassung" + +#: mod/admin.php:464 +msgid "Registered users" +msgstr "Registrierte Nutzer" + +#: mod/admin.php:466 +msgid "Pending registrations" +msgstr "Anstehende Anmeldungen" + +#: mod/admin.php:467 +msgid "Version" +msgstr "Version" + +#: mod/admin.php:472 +msgid "Active plugins" +msgstr "Aktive Plugins" + +#: mod/admin.php:495 +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:798 +msgid "RINO2 needs mcrypt php extension to work." +msgstr "RINO2 benötigt die PHP Extension mcrypt." + +#: mod/admin.php:806 +msgid "Site settings updated." +msgstr "Seiteneinstellungen aktualisiert." + +#: mod/admin.php:853 +msgid "No community page" +msgstr "Keine Gemeinschaftsseite" + +#: mod/admin.php:854 +msgid "Public postings from users of this site" +msgstr "Öffentliche Beiträge von Nutzer_innen dieser Seite" + +#: mod/admin.php:855 +msgid "Global community page" +msgstr "Globale Gemeinschaftsseite" + +#: mod/admin.php:861 +msgid "At post arrival" +msgstr "Beim Empfang von Nachrichten" + +#: mod/admin.php:871 +msgid "Users, Global Contacts" +msgstr "Nutzer, globale Kontakte" + +#: mod/admin.php:872 +msgid "Users, Global Contacts/fallback" +msgstr "Nutzer, globale Kontakte / Fallback" + +#: mod/admin.php:876 +msgid "One month" +msgstr "ein Monat" + +#: mod/admin.php:877 +msgid "Three months" +msgstr "drei Monate" + +#: mod/admin.php:878 +msgid "Half a year" +msgstr "ein halbes Jahr" + +#: mod/admin.php:879 +msgid "One year" +msgstr "ein Jahr" + +#: mod/admin.php:884 +msgid "Multi user instance" +msgstr "Mehrbenutzer Instanz" + +#: mod/admin.php:907 +msgid "Closed" +msgstr "Geschlossen" + +#: mod/admin.php:908 +msgid "Requires approval" +msgstr "Bedarf der Zustimmung" + +#: mod/admin.php:909 +msgid "Open" +msgstr "Offen" + +#: mod/admin.php:913 +msgid "No SSL policy, links will track page SSL state" +msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten" + +#: mod/admin.php:914 +msgid "Force all links to use SSL" +msgstr "SSL für alle Links erzwingen" + +#: mod/admin.php:915 +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:929 +msgid "File upload" +msgstr "Datei hochladen" + +#: mod/admin.php:930 +msgid "Policies" +msgstr "Regeln" + +#: mod/admin.php:932 +msgid "Auto Discovered Contact Directory" +msgstr "Automatisch ein Kontaktverzeichnis erstellen" + +#: mod/admin.php:933 +msgid "Performance" +msgstr "Performance" + +#: mod/admin.php:934 +msgid "Worker" +msgstr "Worker" + +#: mod/admin.php:935 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen." + +#: mod/admin.php:938 +msgid "Site name" +msgstr "Seitenname" + +#: mod/admin.php:939 +msgid "Host name" +msgstr "Host Name" + +#: mod/admin.php:940 +msgid "Sender Email" +msgstr "Absender für Emails" + +#: mod/admin.php:940 +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:941 +msgid "Banner/Logo" +msgstr "Banner/Logo" + +#: mod/admin.php:942 +msgid "Shortcut icon" +msgstr "Shortcut Icon" + +#: mod/admin.php:942 +msgid "Link to an icon that will be used for browsers." +msgstr "Link zu einem Icon, das Browser verwenden werden." + +#: mod/admin.php:943 +msgid "Touch icon" +msgstr "Touch Icon" + +#: mod/admin.php:943 +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:944 +msgid "Additional Info" +msgstr "Zusätzliche Informationen" + +#: mod/admin.php:944 +#, 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:945 +msgid "System language" +msgstr "Systemsprache" + +#: mod/admin.php:946 +msgid "System theme" +msgstr "Systemweites Theme" + +#: mod/admin.php:946 +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:947 +msgid "Mobile system theme" +msgstr "Systemweites mobiles Theme" + +#: mod/admin.php:947 +msgid "Theme for mobile devices" +msgstr "Thema für mobile Geräte" + +#: mod/admin.php:948 +msgid "SSL link policy" +msgstr "Regeln für SSL Links" + +#: mod/admin.php:948 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Bestimmt, ob generierte Links SSL verwenden müssen" + +#: mod/admin.php:949 +msgid "Force SSL" +msgstr "Erzwinge SSL" + +#: mod/admin.php:949 +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:950 +msgid "Old style 'Share'" +msgstr "Altes \"Teilen\" Element" + +#: mod/admin.php:950 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen." + +#: mod/admin.php:951 +msgid "Hide help entry from navigation menu" +msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü" + +#: mod/admin.php:951 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden." + +#: mod/admin.php:952 +msgid "Single user instance" +msgstr "Ein-Nutzer Instanz" + +#: mod/admin.php:952 +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:953 +msgid "Maximum image size" +msgstr "Maximale Bildgröße" + +#: mod/admin.php:953 +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:954 +msgid "Maximum image length" +msgstr "Maximale Bildlänge" + +#: mod/admin.php:954 +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:955 +msgid "JPEG image quality" +msgstr "Qualität des JPEG Bildes" + +#: mod/admin.php:955 +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:957 +msgid "Register policy" +msgstr "Registrierungsmethode" + +#: mod/admin.php:958 +msgid "Maximum Daily Registrations" +msgstr "Maximum täglicher Registrierungen" + +#: mod/admin.php:958 +msgid "" +"If registration is permitted above, this sets the maximum number of new user" +" registrations to accept per day. If register is set to closed, this " +"setting has no effect." +msgstr "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:959 +msgid "Register text" +msgstr "Registrierungstext" + +#: mod/admin.php:959 +msgid "Will be displayed prominently on the registration page." +msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt." + +#: mod/admin.php:960 +msgid "Accounts abandoned after x days" +msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt" + +#: mod/admin.php:960 +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:961 +msgid "Allowed friend domains" +msgstr "Erlaubte Domains für Kontakte" + +#: mod/admin.php:961 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "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:962 +msgid "Allowed email domains" +msgstr "Erlaubte Domains für E-Mails" + +#: mod/admin.php:962 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Liste 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:963 +msgid "Block public" +msgstr "Öffentlichen Zugriff blockieren" + +#: mod/admin.php:963 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist." + +#: mod/admin.php:964 +msgid "Force publish" +msgstr "Erzwinge Veröffentlichung" + +#: mod/admin.php:964 +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:965 +msgid "Global directory URL" +msgstr "URL des weltweiten Verzeichnisses" + +#: mod/admin.php:965 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "URL des weltweiten Verzeichnisses. Wenn diese nicht gesetzt ist, ist das Verzeichnis für die Applikation nicht erreichbar." + +#: mod/admin.php:966 +msgid "Allow threaded items" +msgstr "Erlaube Threads in Diskussionen" + +#: mod/admin.php:966 +msgid "Allow infinite level threading for items on this site." +msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite." + +#: mod/admin.php:967 +msgid "Private posts by default for new users" +msgstr "Private Beiträge als Standard für neue Nutzer" + +#: mod/admin.php:967 +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:968 +msgid "Don't include post content in email notifications" +msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden" + +#: mod/admin.php:968 +msgid "" +"Don't include the content of a post/comment/private message/etc. in the " +"email notifications that are sent out from this site, as a privacy measure." +msgstr "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz nicht in E-Mail-Benachrichtigungen einbinden." + +#: mod/admin.php:969 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten." + +#: mod/admin.php:969 +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:970 +msgid "Don't embed private images in posts" +msgstr "Private Bilder nicht in Beiträgen einbetten." + +#: mod/admin.php:970 +msgid "" +"Don't replace locally-hosted private photos in posts with an embedded copy " +"of the image. This means that contacts who receive posts containing private " +"photos will have to authenticate and load each image, which may take a " +"while." +msgstr "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:971 +msgid "Allow Users to set remote_self" +msgstr "Nutzern erlauben das remote_self Flag zu setzen" + +#: mod/admin.php:971 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." +msgstr "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:972 +msgid "Block multiple registrations" +msgstr "Unterbinde Mehrfachregistrierung" + +#: mod/admin.php:972 +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:973 +msgid "OpenID support" +msgstr "OpenID Unterstützung" + +#: mod/admin.php:973 +msgid "OpenID support for registration and logins." +msgstr "OpenID-Unterstützung für Registrierung und Login." + +#: mod/admin.php:974 +msgid "Fullname check" +msgstr "Namen auf Vollständigkeit überprüfen" + +#: mod/admin.php:974 +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:975 +msgid "UTF-8 Regular expressions" +msgstr "UTF-8 Reguläre Ausdrücke" + +#: mod/admin.php:975 +msgid "Use PHP UTF8 regular expressions" +msgstr "PHP UTF8 Ausdrücke verwenden" + +#: mod/admin.php:976 +msgid "Community Page Style" +msgstr "Art der Gemeinschaftsseite" + +#: mod/admin.php:976 +msgid "" +"Type of community page to show. 'Global community' shows every public " +"posting from an open distributed network that arrived on this server." +msgstr "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:977 +msgid "Posts per user on community page" +msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite" + +#: mod/admin.php:977 +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:978 +msgid "Enable OStatus support" +msgstr "OStatus Unterstützung aktivieren" + +#: mod/admin.php:978 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "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:979 +msgid "OStatus conversation completion interval" +msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen" + +#: mod/admin.php:979 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "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:980 +msgid "Only import OStatus threads from our contacts" +msgstr "Nur OStatus Konversationen unserer Kontakte importieren" + +#: mod/admin.php:980 +msgid "" +"Normally we import every content from our OStatus contacts. With this option" +" we only store threads that are started by a contact that is known on our " +"system." +msgstr "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:981 +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:983 +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:984 +msgid "Enable Diaspora support" +msgstr "Diaspora Unterstützung aktivieren" + +#: mod/admin.php:984 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Verwende die eingebaute Diaspora-Verknüpfung." + +#: mod/admin.php:985 +msgid "Only allow Friendica contacts" +msgstr "Nur Friendica-Kontakte erlauben" + +#: mod/admin.php:985 +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:986 +msgid "Verify SSL" +msgstr "SSL Überprüfen" + +#: mod/admin.php:986 +msgid "" +"If you wish, you can turn on strict certificate checking. This will mean you" +" cannot connect (at all) to self-signed SSL sites." +msgstr "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:987 +msgid "Proxy user" +msgstr "Proxy Nutzer" + +#: mod/admin.php:988 +msgid "Proxy URL" +msgstr "Proxy URL" + +#: mod/admin.php:989 +msgid "Network timeout" +msgstr "Netzwerk Wartezeit" + +#: mod/admin.php:989 +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:990 +msgid "Delivery interval" +msgstr "Zustellungsintervall" + +#: mod/admin.php:990 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl an Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared-Hosts, 2-3 für VPS, 0-1 für große dedizierte Server." + +#: mod/admin.php:991 +msgid "Poll interval" +msgstr "Abfrageintervall" + +#: mod/admin.php:991 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Verzögere Hintergrundprozesse um diese Anzahl an Sekunden, um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet." + +#: mod/admin.php:992 +msgid "Maximum Load Average" +msgstr "Maximum Load Average" + +#: mod/admin.php:992 +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:993 +msgid "Maximum Load Average (Frontend)" +msgstr "Maximum Load Average (Frontend)" + +#: mod/admin.php:993 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50." + +#: mod/admin.php:994 +msgid "Maximum table size for optimization" +msgstr "Maximale Tabellengröße zur Optimierung" + +#: mod/admin.php:994 +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:995 +msgid "Minimum level of fragmentation" +msgstr "Minimaler Fragmentationsgrad" + +#: mod/admin.php:995 +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:997 +msgid "Periodical check of global contacts" +msgstr "Regelmäßig globale Kontakte überprüfen" + +#: mod/admin.php:997 +msgid "" +"If enabled, the global contacts are checked periodically for missing or " +"outdated data and the vitality of the contacts and servers." +msgstr "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:998 +msgid "Days between requery" +msgstr "Tage zwischen erneuten Abfragen" + +#: mod/admin.php:998 +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:999 +msgid "Discover contacts from other servers" +msgstr "Neue Kontakte auf anderen Servern entdecken" + +#: mod/admin.php:999 +msgid "" +"Periodically query other servers for contacts. You can choose between " +"'users': the users on the remote system, 'Global Contacts': active contacts " +"that are known on the system. The fallback is meant for Redmatrix servers " +"and older friendica servers, where global contacts weren't available. The " +"fallback increases the server load, so the recommened setting is 'Users, " +"Global Contacts'." +msgstr "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:1000 +msgid "Timeframe for fetching global contacts" +msgstr "Zeitfenster für globale Kontakte" + +#: mod/admin.php:1000 +msgid "" +"When the discovery is activated, this value defines the timeframe for the " +"activity of the global contacts that are fetched from other servers." +msgstr "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:1001 +msgid "Search the local directory" +msgstr "Lokales Verzeichnis durchsuchen" + +#: mod/admin.php:1001 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "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:1003 +msgid "Publish server information" +msgstr "Server Informationen veröffentlichen" + +#: mod/admin.php:1003 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "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:1005 +msgid "Use MySQL full text engine" +msgstr "Nutze MySQL full text engine" + +#: mod/admin.php:1005 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "Aktiviert die 'full text engine'. Beschleunigt die Suche - aber es kann nur nach vier oder mehr Zeichen gesucht werden." + +#: mod/admin.php:1006 +msgid "Suppress Language" +msgstr "Sprachinformation unterdrücken" + +#: mod/admin.php:1006 +msgid "Suppress language information in meta information about a posting." +msgstr "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags." + +#: mod/admin.php:1007 +msgid "Suppress Tags" +msgstr "Tags Unterdrücken" + +#: mod/admin.php:1007 +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:1008 +msgid "Path to item cache" +msgstr "Pfad zum Eintrag Cache" + +#: mod/admin.php:1008 +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:1009 +msgid "Cache duration in seconds" +msgstr "Cache-Dauer in Sekunden" + +#: mod/admin.php:1009 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day). To disable the item cache, set the value to -1." +msgstr "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:1010 +msgid "Maximum numbers of comments per post" +msgstr "Maximale Anzahl von Kommentaren pro Beitrag" + +#: mod/admin.php:1010 +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:1011 +msgid "Path for lock file" +msgstr "Pfad für die Sperrdatei" + +#: mod/admin.php:1011 +msgid "" +"The lock file is used to avoid multiple pollers at one time. Only define a " +"folder here." +msgstr "Die lock-Datei wird benutzt, damit nicht mehrere poller auf einmal laufen. Definiere hier einen Dateiverzeichnis." + +#: mod/admin.php:1012 +msgid "Temp path" +msgstr "Temp Pfad" + +#: mod/admin.php:1012 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "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:1013 +msgid "Base path to installation" +msgstr "Basis-Pfad zur Installation" + +#: mod/admin.php:1013 +msgid "" +"If the system cannot detect the correct path to your installation, enter the" +" correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "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:1014 +msgid "Disable picture proxy" +msgstr "Bilder Proxy deaktivieren" + +#: mod/admin.php:1014 +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:1015 +msgid "Enable old style pager" +msgstr "Den Old-Style Pager aktiviren" + +#: mod/admin.php:1015 +msgid "" +"The old style pager has page numbers but slows down massively the page " +"speed." +msgstr "Der Old-Style Pager zeigt Seitennummern an, verlangsamt aber auch drastisch das Laden einer Seite." + +#: mod/admin.php:1016 +msgid "Only search in tags" +msgstr "Nur in Tags suchen" + +#: mod/admin.php:1016 +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:1018 +msgid "New base url" +msgstr "Neue Basis-URL" + +#: mod/admin.php:1018 +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:1020 +msgid "RINO Encryption" +msgstr "RINO Verschlüsselung" + +#: mod/admin.php:1020 +msgid "Encryption layer between nodes." +msgstr "Verschlüsselung zwischen Friendica Instanzen" + +#: mod/admin.php:1021 +msgid "Embedly API key" +msgstr "Embedly API Schlüssel" + +#: mod/admin.php:1021 +msgid "" +"Embedly is used to fetch additional data for " +"web pages. This is an optional parameter." +msgstr "Embedly wird verwendet um zusätzliche Informationen von Webseiten zu laden. Dies ist ein optionaler Parameter." + +#: mod/admin.php:1023 +msgid "Enable 'worker' background processing" +msgstr "Aktiviere die 'Worker' Hintergrundprozesse" + +#: mod/admin.php:1023 +msgid "" +"The worker background processing limits the number of parallel background " +"jobs to a maximum number and respects the system load." +msgstr "Der 'background worker' Prozess begrenzt die Zahl der Prozesse, die im Hintergrund parallel laufen und beachtet dabei die Systemlast." + +#: mod/admin.php:1024 +msgid "Maximum number of parallel workers" +msgstr "Maximale Anzahl parallel laufender Worker" + +#: mod/admin.php:1024 +msgid "" +"On shared hosters set this to 2. On larger systems, values of 10 are great. " +"Default value is 4." +msgstr "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:1025 +msgid "Don't use 'proc_open' with the worker" +msgstr "'proc_open' nicht mit den Workern verwenden" + +#: mod/admin.php:1025 +msgid "" +"Enable this if your system doesn't allow the use of 'proc_open'. This can " +"happen on shared hosters. If this is enabled you should increase the " +"frequency of poller calls in your crontab." +msgstr "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:1026 +msgid "Enable fastlane" +msgstr "Aktiviere Fastlane" + +#: mod/admin.php:1026 +msgid "" +"When enabed, the fastlane mechanism starts an additional worker if processes" +" with higher priority are blocked by processes of lower priority." +msgstr "Wenn aktiviert, wird der Fastlane-Mechanismus einen weiteren Worker-Prozeß starten wenn Prozesse mit höherer Priorität von Prozessen mit niedrigerer Priorität blockiert werden." + +#: mod/admin.php:1055 +msgid "Update has been marked successful" +msgstr "Update wurde als erfolgreich markiert" + +#: mod/admin.php:1063 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt." + +#: mod/admin.php:1066 +#, 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:1078 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s" + +#: mod/admin.php:1081 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Update %s war erfolgreich." + +#: mod/admin.php:1085 +#, 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:1087 +#, 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:1106 +msgid "No failed updates." +msgstr "Keine fehlgeschlagenen Updates." + +#: mod/admin.php:1107 +msgid "Check database structure" +msgstr "Datenbank Struktur überprüfen" + +#: mod/admin.php:1112 +msgid "Failed Updates" +msgstr "Fehlgeschlagene Updates" + +#: mod/admin.php:1113 +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:1114 +msgid "Mark success (if update was manually applied)" +msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)" + +#: mod/admin.php:1115 +msgid "Attempt to execute this update step automatically" +msgstr "Versuchen, diesen Schritt automatisch auszuführen" + +#: mod/admin.php:1147 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "\nHallo %1$s,\n\nauf %2$s wurde ein Account für Dich angelegt." + +#: mod/admin.php:1150 +#, php-format +msgid "" +"\n" +"\t\t\tThe login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%1$s\n" +"\t\t\tLogin Name:\t\t%2$s\n" +"\t\t\tPassword:\t\t%3$s\n" +"\n" +"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\t\tin.\n" +"\n" +"\t\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\t\tthan that.\n" +"\n" +"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\t\tIf you are new and do not know anybody here, they may help\n" +"\t\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\t\tThank you and welcome to %4$s." +msgstr "\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:1194 +#, 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:1201 +#, 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:1248 +#, php-format +msgid "User '%s' deleted" +msgstr "Nutzer '%s' gelöscht" + +#: mod/admin.php:1256 +#, php-format +msgid "User '%s' unblocked" +msgstr "Nutzer '%s' entsperrt" + +#: mod/admin.php:1256 +#, php-format +msgid "User '%s' blocked" +msgstr "Nutzer '%s' gesperrt" + +#: mod/admin.php:1375 mod/admin.php:1400 +msgid "Register date" +msgstr "Anmeldedatum" + +#: mod/admin.php:1375 mod/admin.php:1400 +msgid "Last login" +msgstr "Letzte Anmeldung" + +#: mod/admin.php:1375 mod/admin.php:1400 +msgid "Last item" +msgstr "Letzter Beitrag" + +#: mod/admin.php:1384 +msgid "Add User" +msgstr "Nutzer hinzufügen" + +#: mod/admin.php:1385 +msgid "select all" +msgstr "Alle auswählen" + +#: mod/admin.php:1386 +msgid "User registrations waiting for confirm" +msgstr "Neuanmeldungen, die auf Deine Bestätigung warten" + +#: mod/admin.php:1387 +msgid "User waiting for permanent deletion" +msgstr "Nutzer wartet auf permanente Löschung" + +#: mod/admin.php:1388 +msgid "Request date" +msgstr "Anfragedatum" + +#: mod/admin.php:1389 +msgid "No registrations." +msgstr "Keine Neuanmeldungen." + +#: mod/admin.php:1391 +msgid "Deny" +msgstr "Verwehren" + +#: mod/admin.php:1395 +msgid "Site admin" +msgstr "Seitenadministrator" + +#: mod/admin.php:1396 +msgid "Account expired" +msgstr "Account ist abgelaufen" + +#: mod/admin.php:1399 +msgid "New User" +msgstr "Neuer Nutzer" + +#: mod/admin.php:1400 +msgid "Deleted since" +msgstr "Gelöscht seit" + +#: mod/admin.php:1405 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "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:1406 +msgid "" +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" +msgstr "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:1416 +msgid "Name of the new user." +msgstr "Name des neuen Nutzers" + +#: mod/admin.php:1417 +msgid "Nickname" +msgstr "Spitzname" + +#: mod/admin.php:1417 +msgid "Nickname of the new user." +msgstr "Spitznamen für den neuen Nutzer" + +#: mod/admin.php:1418 +msgid "Email address of the new user." +msgstr "Email Adresse des neuen Nutzers" + +#: mod/admin.php:1461 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s deaktiviert." + +#: mod/admin.php:1465 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s aktiviert." + +#: mod/admin.php:1476 mod/admin.php:1712 +msgid "Disable" +msgstr "Ausschalten" + +#: mod/admin.php:1478 mod/admin.php:1714 +msgid "Enable" +msgstr "Einschalten" + +#: mod/admin.php:1501 mod/admin.php:1759 +msgid "Toggle" +msgstr "Umschalten" + +#: mod/admin.php:1509 mod/admin.php:1768 +msgid "Author: " +msgstr "Autor:" + +#: mod/admin.php:1510 mod/admin.php:1769 +msgid "Maintainer: " +msgstr "Betreuer:" + +#: mod/admin.php:1562 +msgid "Reload active plugins" +msgstr "Aktive Plugins neu laden" + +#: mod/admin.php:1567 +#, php-format +msgid "" +"There are currently no plugins available on your node. You can find the " +"official plugin repository at %1$s and might find other interesting plugins " +"in the open plugin registry at %2$s" +msgstr "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:1672 +msgid "No themes found." +msgstr "Keine Themen gefunden." + +#: mod/admin.php:1750 +msgid "Screenshot" +msgstr "Bildschirmfoto" + +#: mod/admin.php:1810 +msgid "Reload active themes" +msgstr "Aktives Theme neu laden" + +#: mod/admin.php:1815 +#, 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:1816 +msgid "[Experimental]" +msgstr "[Experimentell]" + +#: mod/admin.php:1817 +msgid "[Unsupported]" +msgstr "[Nicht unterstützt]" + +#: mod/admin.php:1841 +msgid "Log settings updated." +msgstr "Protokolleinstellungen aktualisiert." + +#: mod/admin.php:1873 +msgid "PHP log currently enabled." +msgstr "PHP Protokollierung ist derzeit aktiviert." + +#: mod/admin.php:1875 +msgid "PHP log currently disabled." +msgstr "PHP Protokollierung ist derzeit nicht aktiviert." + +#: mod/admin.php:1884 +msgid "Clear" +msgstr "löschen" + +#: mod/admin.php:1889 +msgid "Enable Debugging" +msgstr "Protokoll führen" + +#: mod/admin.php:1890 +msgid "Log file" +msgstr "Protokolldatei" + +#: mod/admin.php:1890 +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:1891 +msgid "Log level" +msgstr "Protokoll-Level" + +#: mod/admin.php:1894 +msgid "PHP logging" +msgstr "PHP Protokollieren" + +#: mod/admin.php:1895 +msgid "" +"To enable logging of PHP errors and warnings you can add the following to " +"the .htconfig.php file of your installation. The filename set in the " +"'error_log' line is relative to the friendica top-level directory and must " +"be writeable by the web server. The option '1' for 'log_errors' and " +"'display_errors' is to enable these options, set to '0' to disable them." +msgstr "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:2023 +#, php-format +msgid "Lock feature %s" +msgstr "Feature festlegen: %s" + +#: mod/admin.php:2031 +msgid "Manage Additional Features" +msgstr "Zusätzliche Features Verwalten" + #: object/Item.php:370 msgid "via" msgstr "via" @@ -8791,55 +8798,55 @@ msgstr "slackr" msgid "Variations" msgstr "Variationen" -#: index.php:447 -msgid "toggle mobile" -msgstr "auf/von Mobile Ansicht wechseln" - -#: boot.php:901 +#: boot.php:902 msgid "Delete this item?" msgstr "Diesen Beitrag löschen?" -#: boot.php:904 +#: boot.php:905 msgid "show fewer" msgstr "weniger anzeigen" -#: boot.php:1518 +#: boot.php:1567 #, php-format msgid "Update %s failed. See error logs." msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen." -#: boot.php:1630 +#: boot.php:1679 msgid "Create a New Account" msgstr "Neues Konto erstellen" -#: boot.php:1659 +#: boot.php:1708 msgid "Password: " msgstr "Passwort: " -#: boot.php:1660 +#: boot.php:1709 msgid "Remember me" msgstr "Anmeldedaten merken" -#: boot.php:1663 +#: boot.php:1712 msgid "Or login using OpenID: " msgstr "Oder melde Dich mit Deiner OpenID an: " -#: boot.php:1669 +#: boot.php:1718 msgid "Forgot your password?" msgstr "Passwort vergessen?" -#: boot.php:1672 +#: boot.php:1721 msgid "Website Terms of Service" msgstr "Website Nutzungsbedingungen" -#: boot.php:1673 +#: boot.php:1722 msgid "terms of service" msgstr "Nutzungsbedingungen" -#: boot.php:1675 +#: boot.php:1724 msgid "Website Privacy Policy" msgstr "Website Datenschutzerklärung" -#: boot.php:1676 +#: boot.php:1725 msgid "privacy policy" msgstr "Datenschutzerklärung" + +#: index.php:447 +msgid "toggle mobile" +msgstr "auf/von Mobile Ansicht wechseln" diff --git a/view/de/strings.php b/view/de/strings.php index 2a2331d99a..b680315d21 100644 --- a/view/de/strings.php +++ b/view/de/strings.php @@ -117,54 +117,6 @@ $a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\ $a->strings["Please visit %s to approve or reject the request."] = "Bitte besuche %s um die Anfrage zu bearbeiten."; $a->strings["Forums"] = "Foren"; $a->strings["External link to forum"] = "Externer Link zum Forum"; -$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i"; -$a->strings["Starts:"] = "Beginnt:"; -$a->strings["Finishes:"] = "Endet:"; -$a->strings["Location:"] = "Ort:"; -$a->strings["Sun"] = "So"; -$a->strings["Mon"] = "Mo"; -$a->strings["Tue"] = "Di"; -$a->strings["Wed"] = "Mi"; -$a->strings["Thu"] = "Do"; -$a->strings["Fri"] = "Fr"; -$a->strings["Sat"] = "Sa"; -$a->strings["Sunday"] = "Sonntag"; -$a->strings["Monday"] = "Montag"; -$a->strings["Tuesday"] = "Dienstag"; -$a->strings["Wednesday"] = "Mittwoch"; -$a->strings["Thursday"] = "Donnerstag"; -$a->strings["Friday"] = "Freitag"; -$a->strings["Saturday"] = "Samstag"; -$a->strings["Jan"] = "Jan"; -$a->strings["Feb"] = "Feb"; -$a->strings["Mar"] = "März"; -$a->strings["Apr"] = "Apr"; -$a->strings["May"] = "Mai"; -$a->strings["Jun"] = "Jun"; -$a->strings["Jul"] = "Juli"; -$a->strings["Aug"] = "Aug"; -$a->strings["Sept"] = "Sep"; -$a->strings["Oct"] = "Okt"; -$a->strings["Nov"] = "Nov"; -$a->strings["Dec"] = "Dez"; -$a->strings["January"] = "Januar"; -$a->strings["February"] = "Februar"; -$a->strings["March"] = "März"; -$a->strings["April"] = "April"; -$a->strings["June"] = "Juni"; -$a->strings["July"] = "Juli"; -$a->strings["August"] = "August"; -$a->strings["September"] = "September"; -$a->strings["October"] = "Oktober"; -$a->strings["November"] = "November"; -$a->strings["December"] = "Dezember"; -$a->strings["today"] = "Heute"; -$a->strings["l, F j"] = "l, F j"; -$a->strings["Edit event"] = "Veranstaltung bearbeiten"; -$a->strings["link to source"] = "Link zum Originalbeitrag"; -$a->strings["Export"] = "Exportieren"; -$a->strings["Export calendar as ical"] = "Kalender als ical exportieren"; -$a->strings["Export calendar as csv"] = "Kalender als csv exportieren"; $a->strings["Welcome "] = "Willkommen "; $a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch."; $a->strings["Welcome back "] = "Willkommen zurück "; @@ -230,12 +182,12 @@ $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["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["Embedded content"] = "Eingebetteter Inhalt"; $a->strings["Embedding disabled"] = "Einbettungen deaktiviert"; -$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["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."; $a->strings["Logged out."] = "Abgemeldet."; $a->strings["Login failed."] = "Anmeldung fehlgeschlagen."; @@ -423,118 +375,16 @@ $a->strings["Diaspora Connector"] = "Diaspora"; $a->strings["GNU Social"] = "GNU Social"; $a->strings["App.net"] = "App.net"; $a->strings["Hubzilla/Redmatrix"] = "Hubzilla/Redmatrix"; -$a->strings["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."; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ist nun mit %2\$s befreundet"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s"; -$a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s getaggt"; -$a->strings["post/item"] = "Nachricht/Beitrag"; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$s als Favorit markiert"; -$a->strings["Likes"] = "Likes"; -$a->strings["Dislikes"] = "Dislikes"; -$a->strings["Attending"] = array( - 0 => "Teilnehmend", - 1 => "Teilnehmend", -); -$a->strings["Not attending"] = "Nicht teilnehmend"; -$a->strings["Might attend"] = "Eventuell teilnehmend"; -$a->strings["Select"] = "Auswählen"; -$a->strings["Delete"] = "Löschen"; -$a->strings["View %s's profile @ %s"] = "Das Profil von %s auf %s betrachten."; -$a->strings["Categories:"] = "Kategorien:"; -$a->strings["Filed under:"] = "Abgelegt unter:"; -$a->strings["%s from %s"] = "%s von %s"; -$a->strings["View in context"] = "Im Zusammenhang betrachten"; -$a->strings["Please wait"] = "Bitte warten"; -$a->strings["remove"] = "löschen"; -$a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge"; -$a->strings["Follow Thread"] = "Folge der Unterhaltung"; -$a->strings["View Status"] = "Pinnwand anschauen"; +$a->strings["view full size"] = "Volle Größe anzeigen"; +$a->strings["stopped following"] = "wird nicht mehr gefolgt"; $a->strings["View Profile"] = "Profil anschauen"; +$a->strings["View Status"] = "Pinnwand anschauen"; $a->strings["View Photos"] = "Bilder anschauen"; $a->strings["Network Posts"] = "Netzwerkbeiträge"; $a->strings["Edit Contact"] = "Kontakt bearbeiten"; +$a->strings["Drop Contact"] = "Kontakt löschen"; $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."; -$a->strings["%s doesn't attend."] = "%s nimmt nicht teil."; -$a->strings["%s attends maybe."] = "%s nimmt eventuell teil."; -$a->strings["and"] = "und"; -$a->strings[", and %d other people"] = " und %d andere"; -$a->strings["%2\$d people like this"] = "%2\$d Personen mögen das"; -$a->strings["%s like this."] = "%s mögen das."; -$a->strings["%2\$d people don't like this"] = "%2\$d Personen mögen das nicht"; -$a->strings["%s don't like this."] = "%s mögen dies nicht."; -$a->strings["%2\$d people attend"] = "%2\$d Personen nehmen teil"; -$a->strings["%s attend."] = "%s nehmen teil."; -$a->strings["%2\$d people don't attend"] = "%2\$d Personen nehmen nicht teil"; -$a->strings["%s don't attend."] = "%s nehmen nicht teil."; -$a->strings["%2\$d people anttend maybe"] = "%2\$d Personen nehmen eventuell teil"; -$a->strings["%s anttend maybe."] = "%s nehmen vielleicht teil."; -$a->strings["Visible to everybody"] = "Für jedermann sichtbar"; -$a->strings["Please enter a link URL:"] = "Bitte gib die URL des Links ein:"; -$a->strings["Please enter a video link/URL:"] = "Bitte Link/URL zum Video einfügen:"; -$a->strings["Please enter an audio link/URL:"] = "Bitte Link/URL zum Audio einfügen:"; -$a->strings["Tag term:"] = "Tag:"; -$a->strings["Save to Folder:"] = "In diesem Ordner speichern:"; -$a->strings["Where are you right now?"] = "Wo hältst Du Dich jetzt gerade auf?"; -$a->strings["Delete item(s)?"] = "Einträge löschen?"; -$a->strings["Share"] = "Teilen"; -$a->strings["Upload photo"] = "Foto hochladen"; -$a->strings["upload photo"] = "Bild hochladen"; -$a->strings["Attach file"] = "Datei anhängen"; -$a->strings["attach file"] = "Datei anhängen"; -$a->strings["Insert web link"] = "Einen Link einfügen"; -$a->strings["web link"] = "Weblink"; -$a->strings["Insert video link"] = "Video-Adresse einfügen"; -$a->strings["video link"] = "Video-Link"; -$a->strings["Insert audio link"] = "Audio-Adresse einfügen"; -$a->strings["audio link"] = "Audio-Link"; -$a->strings["Set your location"] = "Deinen Standort festlegen"; -$a->strings["set location"] = "Ort setzen"; -$a->strings["Clear browser location"] = "Browser-Standort leeren"; -$a->strings["clear location"] = "Ort löschen"; -$a->strings["Set title"] = "Titel setzen"; -$a->strings["Categories (comma-separated list)"] = "Kategorien (kommasepariert)"; -$a->strings["Permission settings"] = "Berechtigungseinstellungen"; -$a->strings["permissions"] = "Zugriffsrechte"; -$a->strings["Public post"] = "Öffentlicher Beitrag"; -$a->strings["Preview"] = "Vorschau"; -$a->strings["Cancel"] = "Abbrechen"; -$a->strings["Post to Groups"] = "Poste an Gruppe"; -$a->strings["Post to Contacts"] = "Poste an Kontakte"; -$a->strings["Private post"] = "Privater Beitrag"; -$a->strings["Message"] = "Nachricht"; -$a->strings["Browser"] = "Browser"; -$a->strings["View all"] = "Zeige alle"; -$a->strings["Like"] = array( - 0 => "mag ich", - 1 => "Mag ich", -); -$a->strings["Dislike"] = array( - 0 => "mag ich nicht", - 1 => "Mag ich nicht", -); -$a->strings["Not Attending"] = array( - 0 => "Nicht teilnehmend ", - 1 => "Nicht teilnehmend", -); -$a->strings["view full size"] = "Volle Größe anzeigen"; -$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein."; -$a->strings["The error message is\n[pre]%s[/pre]"] = "Die Fehlermeldung lautet\n[pre]%s[/pre]"; -$a->strings["Errors encountered creating database tables."] = "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."; -$a->strings["Errors encountered performing database changes."] = "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten."; -$a->strings["stopped following"] = "wird nicht mehr gefolgt"; -$a->strings["Drop Contact"] = "Kontakt löschen"; $a->strings["Post to Email"] = "An E-Mail senden"; $a->strings["Connectors disabled, since \"%s\" is enabled."] = "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."; $a->strings["Hide your profile details from unknown viewers?"] = "Profil-Details vor unbekannten Betrachtern verbergen?"; @@ -545,12 +395,7 @@ $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["%s\\'s birthday"] = "%ss Geburtstag"; -$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora"; -$a->strings["Attachments:"] = "Anhänge:"; $a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL."; $a->strings["Connect URL missing."] = "Connect-URL fehlt"; $a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."; @@ -564,65 +409,18 @@ $a->strings["The profile address specified belongs to a network which has been d $a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können."; $a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen."; $a->strings["following"] = "folgen"; -$a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden."; -$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden."; -$a->strings["Edit profile"] = "Profil bearbeiten"; -$a->strings["Atom feed"] = "Atom-Feed"; -$a->strings["Manage/edit profiles"] = "Profile verwalten/editieren"; -$a->strings["Change profile photo"] = "Profilbild ändern"; -$a->strings["Create New Profile"] = "Neues Profil anlegen"; -$a->strings["Profile Image"] = "Profilbild"; -$a->strings["visible to everybody"] = "sichtbar für jeden"; -$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten"; -$a->strings["Forum"] = "Forum"; -$a->strings["Gender:"] = "Geschlecht:"; -$a->strings["Status:"] = "Status:"; -$a->strings["Homepage:"] = "Homepage:"; -$a->strings["About:"] = "Über:"; -$a->strings["Network:"] = "Netzwerk:"; -$a->strings["g A l F d"] = "l, d. F G \\U\\h\\r"; -$a->strings["F d"] = "d. F"; -$a->strings["[today]"] = "[heute]"; -$a->strings["Birthday Reminders"] = "Geburtstagserinnerungen"; -$a->strings["Birthdays this week:"] = "Geburtstage diese Woche:"; -$a->strings["[No description]"] = "[keine Beschreibung]"; -$a->strings["Event Reminders"] = "Veranstaltungserinnerungen"; -$a->strings["Events this week:"] = "Veranstaltungen diese Woche"; -$a->strings["Full Name:"] = "Kompletter Name:"; -$a->strings["j F, Y"] = "j F, Y"; -$a->strings["j F"] = "j F"; -$a->strings["Age:"] = "Alter:"; -$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s"; -$a->strings["Sexual Preference:"] = "Sexuelle Vorlieben:"; -$a->strings["Hometown:"] = "Heimatort:"; -$a->strings["Tags:"] = "Tags:"; -$a->strings["Political Views:"] = "Politische Ansichten:"; -$a->strings["Religion:"] = "Religion:"; -$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:"; -$a->strings["Likes:"] = "Likes:"; -$a->strings["Dislikes:"] = "Dislikes:"; -$a->strings["Contact information and Social Networks:"] = "Kontaktinformationen und Soziale Netzwerke:"; -$a->strings["Musical interests:"] = "Musikalische Interessen:"; -$a->strings["Books, literature:"] = "Literatur/Bücher:"; -$a->strings["Television:"] = "Fernsehen:"; -$a->strings["Film/dance/culture/entertainment:"] = "Filme/Tänze/Kultur/Unterhaltung:"; -$a->strings["Love/Romance:"] = "Liebesleben:"; -$a->strings["Work/employment:"] = "Arbeit/Beschäftigung:"; -$a->strings["School/education:"] = "Schule/Ausbildung:"; -$a->strings["Forums:"] = "Foren:"; -$a->strings["Basic"] = "Allgemein"; -$a->strings["Advanced"] = "Erweitert"; -$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; -$a->strings["Profile Details"] = "Profildetails"; -$a->strings["Photo Albums"] = "Fotoalben"; -$a->strings["Personal Notes"] = "Persönliche Notizen"; -$a->strings["Only You Can See This"] = "Nur Du kannst das sehen"; $a->strings["[Name Withheld]"] = "[Name unterdrückt]"; $a->strings["Item not found."] = "Beitrag nicht gefunden."; $a->strings["Do you really want to delete this item?"] = "Möchtest Du wirklich dieses Item löschen?"; $a->strings["Yes"] = "Ja"; +$a->strings["Cancel"] = "Abbrechen"; $a->strings["Permission denied."] = "Zugriff verweigert."; $a->strings["Archives"] = "Archiv"; +$a->strings["photo"] = "Foto"; +$a->strings["status"] = "Status"; +$a->strings["event"] = "Event"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht"; $a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil."; $a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nimmt nicht an %2\$ss %3\$s teil."; $a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s nimmt eventuell an %2\$ss %3\$s teil."; @@ -677,11 +475,31 @@ $a->strings["frustrated"] = "frustriert"; $a->strings["motivated"] = "motiviert"; $a->strings["relaxed"] = "entspannt"; $a->strings["surprised"] = "überrascht"; +$a->strings["Monday"] = "Montag"; +$a->strings["Tuesday"] = "Dienstag"; +$a->strings["Wednesday"] = "Mittwoch"; +$a->strings["Thursday"] = "Donnerstag"; +$a->strings["Friday"] = "Freitag"; +$a->strings["Saturday"] = "Samstag"; +$a->strings["Sunday"] = "Sonntag"; +$a->strings["January"] = "Januar"; +$a->strings["February"] = "Februar"; +$a->strings["March"] = "März"; +$a->strings["April"] = "April"; +$a->strings["May"] = "Mai"; +$a->strings["June"] = "Juni"; +$a->strings["July"] = "Juli"; +$a->strings["August"] = "August"; +$a->strings["September"] = "September"; +$a->strings["October"] = "Oktober"; +$a->strings["November"] = "November"; +$a->strings["December"] = "Dezember"; $a->strings["View Video"] = "Video ansehen"; $a->strings["bytes"] = "Byte"; $a->strings["Click to open/close"] = "Zum öffnen/schließen klicken"; $a->strings["View on separate page"] = "Auf separater Seite ansehen"; $a->strings["view on separate page"] = "auf separater Seite ansehen"; +$a->strings["link to source"] = "Link zum Originalbeitrag"; $a->strings["activity"] = "Aktivität"; $a->strings["comment"] = array( 0 => "Kommentar", @@ -713,6 +531,188 @@ $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["Daily posting limit of %d posts reached. The post was rejected."] = "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."; +$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."; +$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."; +$a->strings["Image/photo"] = "Bild/Foto"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["$1 wrote:"] = "$1 hat geschrieben:"; +$a->strings["Encrypted content"] = "Verschlüsselter Inhalt"; +$a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil."; +$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s nimmt nicht an %2\$ss %3\$s teil."; +$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s nimmt eventuell an %2\$ss %3\$s teil."; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ist nun mit %2\$s befreundet"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s"; +$a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s getaggt"; +$a->strings["post/item"] = "Nachricht/Beitrag"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$s als Favorit markiert"; +$a->strings["Likes"] = "Likes"; +$a->strings["Dislikes"] = "Dislikes"; +$a->strings["Attending"] = array( + 0 => "Teilnehmend", + 1 => "Teilnehmend", +); +$a->strings["Not attending"] = "Nicht teilnehmend"; +$a->strings["Might attend"] = "Eventuell teilnehmend"; +$a->strings["Select"] = "Auswählen"; +$a->strings["Delete"] = "Löschen"; +$a->strings["View %s's profile @ %s"] = "Das Profil von %s auf %s betrachten."; +$a->strings["Categories:"] = "Kategorien:"; +$a->strings["Filed under:"] = "Abgelegt unter:"; +$a->strings["%s from %s"] = "%s von %s"; +$a->strings["View in context"] = "Im Zusammenhang betrachten"; +$a->strings["Please wait"] = "Bitte warten"; +$a->strings["remove"] = "löschen"; +$a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge"; +$a->strings["Follow Thread"] = "Folge der Unterhaltung"; +$a->strings["%s likes this."] = "%s mag das."; +$a->strings["%s doesn't like this."] = "%s mag das nicht."; +$a->strings["%s attends."] = "%s nimmt teil."; +$a->strings["%s doesn't attend."] = "%s nimmt nicht teil."; +$a->strings["%s attends maybe."] = "%s nimmt eventuell teil."; +$a->strings["and"] = "und"; +$a->strings[", and %d other people"] = " und %d andere"; +$a->strings["%2\$d people like this"] = "%2\$d Personen mögen das"; +$a->strings["%s like this."] = "%s mögen das."; +$a->strings["%2\$d people don't like this"] = "%2\$d Personen mögen das nicht"; +$a->strings["%s don't like this."] = "%s mögen dies nicht."; +$a->strings["%2\$d people attend"] = "%2\$d Personen nehmen teil"; +$a->strings["%s attend."] = "%s nehmen teil."; +$a->strings["%2\$d people don't attend"] = "%2\$d Personen nehmen nicht teil"; +$a->strings["%s don't attend."] = "%s nehmen nicht teil."; +$a->strings["%2\$d people anttend maybe"] = "%2\$d Personen nehmen eventuell teil"; +$a->strings["%s anttend maybe."] = "%s nehmen vielleicht teil."; +$a->strings["Visible to everybody"] = "Für jedermann sichtbar"; +$a->strings["Please enter a link URL:"] = "Bitte gib die URL des Links ein:"; +$a->strings["Please enter a video link/URL:"] = "Bitte Link/URL zum Video einfügen:"; +$a->strings["Please enter an audio link/URL:"] = "Bitte Link/URL zum Audio einfügen:"; +$a->strings["Tag term:"] = "Tag:"; +$a->strings["Save to Folder:"] = "In diesem Ordner speichern:"; +$a->strings["Where are you right now?"] = "Wo hältst Du Dich jetzt gerade auf?"; +$a->strings["Delete item(s)?"] = "Einträge löschen?"; +$a->strings["Share"] = "Teilen"; +$a->strings["Upload photo"] = "Foto hochladen"; +$a->strings["upload photo"] = "Bild hochladen"; +$a->strings["Attach file"] = "Datei anhängen"; +$a->strings["attach file"] = "Datei anhängen"; +$a->strings["Insert web link"] = "Einen Link einfügen"; +$a->strings["web link"] = "Weblink"; +$a->strings["Insert video link"] = "Video-Adresse einfügen"; +$a->strings["video link"] = "Video-Link"; +$a->strings["Insert audio link"] = "Audio-Adresse einfügen"; +$a->strings["audio link"] = "Audio-Link"; +$a->strings["Set your location"] = "Deinen Standort festlegen"; +$a->strings["set location"] = "Ort setzen"; +$a->strings["Clear browser location"] = "Browser-Standort leeren"; +$a->strings["clear location"] = "Ort löschen"; +$a->strings["Set title"] = "Titel setzen"; +$a->strings["Categories (comma-separated list)"] = "Kategorien (kommasepariert)"; +$a->strings["Permission settings"] = "Berechtigungseinstellungen"; +$a->strings["permissions"] = "Zugriffsrechte"; +$a->strings["Public post"] = "Öffentlicher Beitrag"; +$a->strings["Preview"] = "Vorschau"; +$a->strings["Post to Groups"] = "Poste an Gruppe"; +$a->strings["Post to Contacts"] = "Poste an Kontakte"; +$a->strings["Private post"] = "Privater Beitrag"; +$a->strings["Message"] = "Nachricht"; +$a->strings["Browser"] = "Browser"; +$a->strings["View all"] = "Zeige alle"; +$a->strings["Like"] = array( + 0 => "mag ich", + 1 => "Mag ich", +); +$a->strings["Dislike"] = array( + 0 => "mag ich nicht", + 1 => "Mag ich nicht", +); +$a->strings["Not Attending"] = array( + 0 => "Nicht teilnehmend ", + 1 => "Nicht teilnehmend", +); +$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein."; +$a->strings["The error message is\n[pre]%s[/pre]"] = "Die Fehlermeldung lautet\n[pre]%s[/pre]"; +$a->strings["Errors encountered creating database tables."] = "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."; +$a->strings["Errors encountered performing database changes."] = "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten."; +$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora"; +$a->strings["Attachments:"] = "Anhänge:"; +$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["Jan"] = "Jan"; +$a->strings["Feb"] = "Feb"; +$a->strings["Mar"] = "März"; +$a->strings["Apr"] = "Apr"; +$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["today"] = "Heute"; +$a->strings["l, F j"] = "l, F j"; +$a->strings["Edit event"] = "Veranstaltung bearbeiten"; +$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["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden."; +$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden."; +$a->strings["Edit profile"] = "Profil bearbeiten"; +$a->strings["Atom feed"] = "Atom-Feed"; +$a->strings["Manage/edit profiles"] = "Profile verwalten/editieren"; +$a->strings["Change profile photo"] = "Profilbild ändern"; +$a->strings["Create New Profile"] = "Neues Profil anlegen"; +$a->strings["Profile Image"] = "Profilbild"; +$a->strings["visible to everybody"] = "sichtbar für jeden"; +$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten"; +$a->strings["Forum"] = "Forum"; +$a->strings["Gender:"] = "Geschlecht:"; +$a->strings["Status:"] = "Status:"; +$a->strings["Homepage:"] = "Homepage:"; +$a->strings["About:"] = "Über:"; +$a->strings["Network:"] = "Netzwerk:"; +$a->strings["g A l F d"] = "l, d. F G \\U\\h\\r"; +$a->strings["F d"] = "d. F"; +$a->strings["[today]"] = "[heute]"; +$a->strings["Birthday Reminders"] = "Geburtstagserinnerungen"; +$a->strings["Birthdays this week:"] = "Geburtstage diese Woche:"; +$a->strings["[No description]"] = "[keine Beschreibung]"; +$a->strings["Event Reminders"] = "Veranstaltungserinnerungen"; +$a->strings["Events this week:"] = "Veranstaltungen diese Woche"; +$a->strings["Full Name:"] = "Kompletter Name:"; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$a->strings["Age:"] = "Alter:"; +$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s"; +$a->strings["Sexual Preference:"] = "Sexuelle Vorlieben:"; +$a->strings["Hometown:"] = "Heimatort:"; +$a->strings["Tags:"] = "Tags:"; +$a->strings["Political Views:"] = "Politische Ansichten:"; +$a->strings["Religion:"] = "Religion:"; +$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:"; +$a->strings["Likes:"] = "Likes:"; +$a->strings["Dislikes:"] = "Dislikes:"; +$a->strings["Contact information and Social Networks:"] = "Kontaktinformationen und Soziale Netzwerke:"; +$a->strings["Musical interests:"] = "Musikalische Interessen:"; +$a->strings["Books, literature:"] = "Literatur/Bücher:"; +$a->strings["Television:"] = "Fernsehen:"; +$a->strings["Film/dance/culture/entertainment:"] = "Filme/Tänze/Kultur/Unterhaltung:"; +$a->strings["Love/Romance:"] = "Liebesleben:"; +$a->strings["Work/employment:"] = "Arbeit/Beschäftigung:"; +$a->strings["School/education:"] = "Schule/Ausbildung:"; +$a->strings["Forums:"] = "Foren:"; +$a->strings["Basic"] = "Allgemein"; +$a->strings["Advanced"] = "Erweitert"; +$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; +$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["Post successful."] = "Beitrag erfolgreich veröffentlicht."; $a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"; $a->strings["Access denied."] = "Zugriff verweigert."; @@ -827,22 +827,11 @@ $a->strings["Tag removed"] = "Tag entfernt"; $a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen"; $a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: "; $a->strings["Remove"] = "Entfernen"; -$a->strings["{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["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["No friends to display."] = "Keine Kontakte zum Anzeigen."; -$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt."; -$a->strings["View"] = "Ansehen"; -$a->strings["Previous"] = "Vorherige"; -$a->strings["Next"] = "Nächste"; -$a->strings["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["Resubscribing to OStatus contacts"] = "Erneuern der OStatus Abonements"; $a->strings["Error"] = "Fehler"; $a->strings["Done"] = "Erledigt"; @@ -879,6 +868,7 @@ $a->strings["Do you really want to delete this suggestion?"] = "Möchtest Du wir $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["Not Extended"] = "Nicht erweitert."; +$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["No contacts in common."] = "Keine gemeinsamen Kontakte."; $a->strings["Common Friends"] = "Gemeinsame Kontakte"; @@ -1111,12 +1101,577 @@ $a->strings["I might attend"] = "Ich werde eventuell teilnehmen"; $a->strings["to"] = "zu"; $a->strings["Wall-to-Wall"] = "Wall-to-Wall"; $a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:"; +$a->strings["%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["Never"] = "Niemals"; +$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)"; +$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)"; +$a->strings["Suggest friends"] = "Kontakte vorschlagen"; +$a->strings["Network type: %s"] = "Netzwerktyp: %s"; +$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!"; +$a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen"; +$a->strings["Disabled"] = "Deaktiviert"; +$a->strings["Fetch information"] = "Beziehe Information"; +$a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte"; +$a->strings["Contact"] = "Kontakt: "; +$a->strings["Profile Visibility"] = "Profil-Sichtbarkeit"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft."; +$a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen"; +$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbeiten"; +$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freischalten"; +$a->strings["Ignore contact"] = "Ignoriere den Kontakt"; +$a->strings["Repair URL settings"] = "URL Einstellungen reparieren"; +$a->strings["View conversations"] = "Unterhaltungen anzeigen"; +$a->strings["Last update:"] = "Letzte Aktualisierung: "; +$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren"; +$a->strings["Update now"] = "Jetzt aktualisieren"; +$a->strings["Unblock"] = "Entsperren"; +$a->strings["Block"] = "Sperren"; +$a->strings["Unignore"] = "Ignorieren aufheben"; +$a->strings["Ignore"] = "Ignorieren"; +$a->strings["Currently blocked"] = "Derzeit geblockt"; +$a->strings["Currently ignored"] = "Derzeit ignoriert"; +$a->strings["Currently archived"] = "Momentan archiviert"; +$a->strings["Hide this contact from others"] = "Verbirg diesen Kontakt vor andere"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein"; +$a->strings["Notification for new posts"] = "Benachrichtigung bei neuen Beiträgen"; +$a->strings["Send a notification of every new post of this contact"] = "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt."; +$a->strings["Blacklisted keywords"] = "Blacklistete Schlüsselworte "; +$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde"; +$a->strings["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["Profile not found."] = "Profil nicht gefunden."; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."; +$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich."; +$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: "; +$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen."; +$a->strings["Remote site reported: "] = "Gegenstelle meldet: "; +$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."; +$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen."; +$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern."; +$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden"; +$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."; +$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."; +$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."; +$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."; +$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für Dein Profil konnten nicht gespeichert werden"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten"; +$a->strings["People Search - %s"] = "Personensuche - %s"; +$a->strings["Forum Search - %s"] = "Forensuche - %s"; +$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["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["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["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["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["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["Required"] = "Benötigt"; +$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["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["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["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["everybody"] = "jeder"; +$a->strings["Account"] = "Nutzerkonto"; +$a->strings["Additional features"] = "Zusätzliche Features"; +$a->strings["Display"] = "Anzeige"; +$a->strings["Social Networks"] = "Soziale Netzwerke"; +$a->strings["Plugins"] = "Plugins"; +$a->strings["Connected apps"] = "Verbundene Programme"; +$a->strings["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["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren"; +$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimum sind 10 Sekeunden. Gib -1 ein um abzuschalten."; +$a->strings["Number of items to display per page:"] = "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "; +$a->strings["Maximum of 100 items"] = "Maximal 100 Beiträge"; +$a->strings["Number of items to display per page when viewed from mobile device:"] = "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:"; +$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["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["User Types"] = "Nutzer Art"; +$a->strings["Community Types"] = "Gemeinschafts Art"; +$a->strings["Normal Account Page"] = "Normales Konto"; +$a->strings["This account is a normal personal profile"] = "Dieses Konto ist ein normales persönliches Profil"; +$a->strings["Soapbox Page"] = "Marktschreier-Konto"; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"; +$a->strings["Community Forum/Celebrity Account"] = "Forum/Promi-Konto"; +$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert"; +$a->strings["Automatic Friend Page"] = "Automatische Freunde Seite"; +$a->strings["Automatically approve all connection/friend requests as friends"] = "Kontaktanfragen werden automatisch als Freund akzeptiert"; +$a->strings["Private Forum [Experimental]"] = "Privates Forum [Versuchsstadium]"; +$a->strings["Private forum - approved members only"] = "Privates Forum, nur für Mitglieder"; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID."; +$a->strings["Publish your default profile in your local site directory?"] = "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"; +$a->strings["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["Show to Groups"] = "Zeige den Gruppen"; +$a->strings["Show to Contacts"] = "Zeige den Kontakten"; +$a->strings["Default Private Post"] = "Privater Standardbeitrag"; +$a->strings["Default Public Post"] = "Öffentlicher Standardbeitrag"; +$a->strings["Default Permissions for New Posts"] = "Standardberechtigungen für neue Beiträge"; +$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"; +$a->strings["Notification Settings"] = "Benachrichtigungseinstellungen"; +$a->strings["By default post a status message when:"] = "Standardmäßig eine Statusnachricht posten, wenn:"; +$a->strings["accepting a friend request"] = "– Du eine Kontaktanfrage akzeptierst"; +$a->strings["joining a forum/community"] = "– Du einem Forum/einer Gemeinschaftsseite beitrittst"; +$a->strings["making an interesting profile change"] = "– Du eine interessante Änderung an Deinem Profil durchführst"; +$a->strings["Send a notification email when:"] = "Benachrichtigungs-E-Mail senden wenn:"; +$a->strings["You receive an introduction"] = "– Du eine Kontaktanfrage erhältst"; +$a->strings["Your introductions are confirmed"] = "– eine Deiner Kontaktanfragen akzeptiert wurde"; +$a->strings["Someone writes on your profile wall"] = "– jemand etwas auf Deine Pinnwand schreibt"; +$a->strings["Someone writes a followup comment"] = "– jemand auch einen Kommentar verfasst"; +$a->strings["You receive a private message"] = "– Du eine private Nachricht erhältst"; +$a->strings["You receive a friend suggestion"] = "– Du eine Empfehlung erhältst"; +$a->strings["You are tagged in a post"] = "– Du in einem Beitrag erwähnt wirst"; +$a->strings["You are poked/prodded/etc. in a post"] = "– Du von jemandem angestupst oder sonstwie behandelt wirst"; +$a->strings["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["Do you really want to delete this video?"] = "Möchtest Du dieses Video wirklich löschen?"; +$a->strings["Delete Video"] = "Video Löschen"; +$a->strings["No videos selected"] = "Keine Videos ausgewählt"; +$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt."; +$a->strings["View Album"] = "Album betrachten"; +$a->strings["Recent Videos"] = "Neueste Videos"; +$a->strings["Upload New Videos"] = "Neues Video hochladen"; +$a->strings["Friendica Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke – Setup"; +$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert."; +$a->strings["Could not create table."] = "Tabelle konnte nicht angelegt werden."; +$a->strings["Your Friendica site database has been installed."] = "Die Datenbank Deiner Friendicaseite wurde installiert."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Lies bitte die \"INSTALL.txt\"."; +$a->strings["Database already in use."] = "Die Datenbank wird bereits verwendet."; +$a->strings["System check"] = "Systemtest"; +$a->strings["Next"] = "Nächste"; +$a->strings["Check again"] = "Noch einmal testen"; +$a->strings["Database connection"] = "Datenbankverbindung"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst."; +$a->strings["Database Server Name"] = "Datenbank-Server"; +$a->strings["Database Login Name"] = "Datenbank-Nutzer"; +$a->strings["Database Login Password"] = "Datenbank-Passwort"; +$a->strings["Database Name"] = "Datenbank-Name"; +$a->strings["Site administrator email address"] = "E-Mail-Adresse des Administrators"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst."; +$a->strings["Please select a default timezone for your website"] = "Bitte wähle die Standardzeitzone Deiner Webseite"; +$a->strings["Site settings"] = "Server-Einstellungen"; +$a->strings["System Language:"] = "Systemsprache:"; +$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Setup the poller'"] = "Wenn Du keine Kommandozeilen-Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe 'Setup the poller'"; +$a->strings["PHP executable path"] = "Pfad zu PHP"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."; +$a->strings["Command line PHP"] = "Kommandozeilen-PHP"; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"; +$a->strings["Found PHP version: "] = "Gefundene PHP Version:"; +$a->strings["PHP cli binary"] = "PHP CLI Binary"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert."; +$a->strings["This is required for message delivery to work."] = "Dies wird für die Auslieferung von Nachrichten benötigt."; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."; +$a->strings["Generate encryption keys"] = "Schlüssel erzeugen"; +$a->strings["libCurl PHP module"] = "PHP: libCurl-Modul"; +$a->strings["GD graphics PHP module"] = "PHP: GD-Grafikmodul"; +$a->strings["OpenSSL PHP module"] = "PHP: OpenSSL-Modul"; +$a->strings["mysqli PHP module"] = "PHP: mysqli-Modul"; +$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul"; +$a->strings["mcrypt PHP module"] = "PHP mcrypt Modul"; +$a->strings["XML PHP module"] = "XML PHP Modul"; +$a->strings["iconv module"] = "iconv module"; +$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."; +$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."; +$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das openssl-Modul von PHP ist nicht installiert."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: Das mysqli-Modul von PHP ist nicht installiert."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."; +$a->strings["Error: mcrypt PHP module required but not installed."] = "Fehler: Das mcrypt Modul von PHP ist nicht installiert"; +$a->strings["Error: iconv PHP module required but not installed."] = "Fehler: Das iconv-Modul von PHP ist nicht installiert."; +$a->strings["If you are using php_cli, please make sure that mcrypt module is enabled in its config file"] = "Wenn du das Modul \"php_cli\" benutzt dann versichere dich, daß das mcrypt Modul in seiner Konfigurationsdatei aktiviert ist. "; +$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = "Die Funktion mcrypt_create_iv() ist nicht festgelegt. Dies ist notwendig um den RINO2-Encryption-Layer zu aktivieren."; +$a->strings["mcrypt_create_iv() function"] = "mcrypt_create_iv() function"; +$a->strings["Error, XML PHP module required but not installed."] = "Fehler: XML PHP Modul erforderlich aber nicht installiert."; +$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."; +$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast."; +$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt."; +$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php"; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat."; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."; +$a->strings["view/smarty3 is writable"] = "view/smarty3 ist schreibbar"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."; +$a->strings["Url rewrite is working"] = "URL rewrite funktioniert"; +$a->strings["ImageMagick PHP extension is installed"] = "ImageMagick PHP Erweiterung ist installiert"; +$a->strings["ImageMagick supports GIF"] = "ImageMagick unterstützt GIF"; +$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen."; +$a->strings["

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["Recent Photos"] = "Neueste Fotos"; +$a->strings["Upload New Photos"] = "Neue Fotos hochladen"; +$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar"; +$a->strings["Album not found."] = "Album nicht gefunden."; +$a->strings["Delete Album"] = "Album löschen"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?"; +$a->strings["Delete Photo"] = "Foto löschen"; +$a->strings["Do you really want to delete this photo?"] = "Möchtest Du wirklich dieses Foto löschen?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt"; +$a->strings["a photo"] = "einem Foto"; +$a->strings["Image file is empty."] = "Bilddatei ist leer."; +$a->strings["No photos selected"] = "Keine Bilder ausgewählt"; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."; +$a->strings["Upload Photos"] = "Bilder hochladen"; +$a->strings["New album name: "] = "Name des neuen Albums: "; +$a->strings["or existing album name: "] = "oder existierender Albumname: "; +$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen"; +$a->strings["Private Photo"] = "Privates Foto"; +$a->strings["Public Photo"] = "Öffentliches Foto"; +$a->strings["Edit Album"] = "Album bearbeiten"; +$a->strings["Show Newest First"] = "Zeige neueste zuerst"; +$a->strings["Show Oldest First"] = "Zeige älteste zuerst"; +$a->strings["View Photo"] = "Foto betrachten"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."; +$a->strings["Photo not available"] = "Foto nicht verfügbar"; +$a->strings["View photo"] = "Fotos ansehen"; +$a->strings["Edit photo"] = "Foto bearbeiten"; +$a->strings["Use as profile photo"] = "Als Profilbild verwenden"; +$a->strings["View Full Size"] = "Betrachte Originalgröße"; +$a->strings["Tags: "] = "Tags: "; +$a->strings["[Remove any tag]"] = "[Tag entfernen]"; +$a->strings["New album name"] = "Name des neuen Albums"; +$a->strings["Caption"] = "Bildunterschrift"; +$a->strings["Add a Tag"] = "Tag hinzufügen"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; +$a->strings["Do not rotate"] = "Nicht rotieren"; +$a->strings["Rotate CW (right)"] = "Drehen US (rechts)"; +$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)"; +$a->strings["Private photo"] = "Privates Foto"; +$a->strings["Public photo"] = "Öffentliches Foto"; +$a->strings["Map"] = "Karte"; +$a->strings["View"] = "Ansehen"; +$a->strings["Previous"] = "Vorherige"; +$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["Event can not end before it has started."] = "Die Veranstaltung kann nicht enden bevor sie beginnt."; +$a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."; +$a->strings["Create New Event"] = "Neue Veranstaltung erstellen"; +$a->strings["Event details"] = "Veranstaltungsdetails"; +$a->strings["Starting date and Title are required."] = "Anfangszeitpunkt und Titel werden benötigt"; +$a->strings["Event Starts:"] = "Veranstaltungsbeginn:"; +$a->strings["Finish date/time is not known or not relevant"] = "Enddatum/-zeit ist nicht bekannt oder nicht relevant"; +$a->strings["Event Finishes:"] = "Veranstaltungsende:"; +$a->strings["Adjust for viewer timezone"] = "An Zeitzone des Betrachters anpassen"; +$a->strings["Description:"] = "Beschreibung"; +$a->strings["Title:"] = "Titel:"; +$a->strings["Share this event"] = "Veranstaltung teilen"; +$a->strings["Invalid request identifier."] = "Invalid request identifier."; +$a->strings["Discard"] = "Verwerfen"; +$a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen"; +$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen"; +$a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen"; +$a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen"; +$a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen"; +$a->strings["Notification type: "] = "Benachrichtigungstyp: "; +$a->strings["suggested by %s"] = "vorgeschlagen von %s"; +$a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden"; +$a->strings["if applicable"] = "falls anwendbar"; +$a->strings["Approve"] = "Genehmigen"; +$a->strings["Claims to be known to you: "] = "Behauptet Dich zu kennen: "; +$a->strings["yes"] = "ja"; +$a->strings["no"] = "nein"; +$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Fan/Admirer\" means that you allow to read but you do not want to read theirs. Approve as: "] = "Soll Deine Beziehung beidseitig sein oder nicht? \"Kontakt\" bedeutet, ihr könnt gegenseitig die Beiträge des Anderen lesen dürft. \"Fan/Verehrer\", dass du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:"; +$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Sharer\" means that you allow to read but you do not want to read theirs. Approve as: "] = "Soll Deine Beziehung beidseitig sein oder nicht? \"Freund\" bedeutet, ihr gegenseitig die Beiträge des Anderen lesen dürft. \"Teilenden\", das du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:"; +$a->strings["Friend"] = "Kontakt"; +$a->strings["Sharer"] = "Teilenden"; +$a->strings["Fan/Admirer"] = "Fan/Verehrer"; +$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["{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["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["Federation Statistics"] = "Federation Statistik"; @@ -1152,13 +1707,10 @@ $a->strings["Active plugins"] = "Aktive Plugins"; $a->strings["Can not parse base url. Must have at least ://"] = "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus :// bestehen"; $a->strings["RINO2 needs mcrypt php extension to work."] = "RINO2 benötigt die PHP Extension mcrypt."; $a->strings["Site settings updated."] = "Seiteneinstellungen aktualisiert."; -$a->strings["No special theme for mobile devices"] = "Kein spezielles Theme für mobile Geräte verwenden."; $a->strings["No community page"] = "Keine Gemeinschaftsseite"; $a->strings["Public postings from users of this site"] = "Öffentliche Beiträge von Nutzer_innen dieser Seite"; $a->strings["Global community page"] = "Globale Gemeinschaftsseite"; -$a->strings["Never"] = "Niemals"; $a->strings["At post arrival"] = "Beim Empfang von Nachrichten"; -$a->strings["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"; @@ -1172,8 +1724,6 @@ $a->strings["Open"] = "Offen"; $a->strings["No SSL policy, links will track page SSL state"] = "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"; $a->strings["Force all links to use SSL"] = "SSL für alle Links erzwingen"; $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)"; -$a->strings["Save Settings"] = "Einstellungen speichern"; -$a->strings["Registration"] = "Registrierung"; $a->strings["File upload"] = "Datei hochladen"; $a->strings["Policies"] = "Regeln"; $a->strings["Auto Discovered Contact Directory"] = "Automatisch ein Kontaktverzeichnis erstellen"; @@ -1362,17 +1912,13 @@ $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"; $a->strings["User waiting for permanent deletion"] = "Nutzer wartet auf permanente Löschung"; $a->strings["Request date"] = "Anfragedatum"; $a->strings["No registrations."] = "Keine Neuanmeldungen."; -$a->strings["Approve"] = "Genehmigen"; $a->strings["Deny"] = "Verwehren"; -$a->strings["Block"] = "Sperren"; -$a->strings["Unblock"] = "Entsperren"; $a->strings["Site admin"] = "Seitenadministrator"; $a->strings["Account expired"] = "Account ist abgelaufen"; $a->strings["New User"] = "Neuer Nutzer"; @@ -1399,6 +1945,8 @@ $a->strings["No themes found on the system. They should be paced in %1\$s"] = "E $a->strings["[Experimental]"] = "[Experimentell]"; $a->strings["[Unsupported]"] = "[Nicht unterstützt]"; $a->strings["Log settings updated."] = "Protokolleinstellungen aktualisiert."; +$a->strings["PHP log currently enabled."] = "PHP Protokollierung ist derzeit aktiviert."; +$a->strings["PHP log currently disabled."] = "PHP Protokollierung ist derzeit nicht aktiviert."; $a->strings["Clear"] = "löschen"; $a->strings["Enable Debugging"] = "Protokoll führen"; $a->strings["Log file"] = "Protokolldatei"; @@ -1406,554 +1954,8 @@ $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["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 andere"; -$a->strings["Replies/likes to your public posts may still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein"; -$a->strings["Notification for new posts"] = "Benachrichtigung bei neuen Beiträgen"; -$a->strings["Send a notification of every new post of this contact"] = "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt."; -$a->strings["Blacklisted keywords"] = "Blacklistete Schlüsselworte "; -$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde"; -$a->strings["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["Profile not found."] = "Profil nicht gefunden."; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."; -$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich."; -$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: "; -$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen."; -$a->strings["Remote site reported: "] = "Gegenstelle meldet: "; -$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."; -$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen."; -$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern."; -$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden"; -$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."; -$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."; -$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."; -$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."; -$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für Dein Profil konnten nicht gespeichert werden"; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten"; -$a->strings["People Search - %s"] = "Personensuche - %s"; -$a->strings["Forum Search - %s"] = "Forensuche - %s"; -$a->strings["Event can not end before it has started."] = "Die Veranstaltung kann nicht enden bevor sie beginnt."; -$a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."; -$a->strings["Create New Event"] = "Neue Veranstaltung erstellen"; -$a->strings["Event details"] = "Veranstaltungsdetails"; -$a->strings["Starting date and Title are required."] = "Anfangszeitpunkt und Titel werden benötigt"; -$a->strings["Event Starts:"] = "Veranstaltungsbeginn:"; -$a->strings["Required"] = "Benötigt"; -$a->strings["Finish date/time is not known or not relevant"] = "Enddatum/-zeit ist nicht bekannt oder nicht relevant"; -$a->strings["Event Finishes:"] = "Veranstaltungsende:"; -$a->strings["Adjust for viewer timezone"] = "An Zeitzone des Betrachters anpassen"; -$a->strings["Description:"] = "Beschreibung"; -$a->strings["Title:"] = "Titel:"; -$a->strings["Share this event"] = "Veranstaltung teilen"; -$a->strings["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["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["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["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["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["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["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["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; -$a->strings["Your invitation ID: "] = "ID Deiner Einladung: "; -$a->strings["Your Full Name (e.g. Joe Smith, 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["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["everybody"] = "jeder"; -$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["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren"; -$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimum sind 10 Sekeunden. Gib -1 ein um abzuschalten."; -$a->strings["Number of items to display per page:"] = "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "; -$a->strings["Maximum of 100 items"] = "Maximal 100 Beiträge"; -$a->strings["Number of items to display per page when viewed from mobile device:"] = "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:"; -$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["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["User Types"] = "Nutzer Art"; -$a->strings["Community Types"] = "Gemeinschafts Art"; -$a->strings["Normal Account Page"] = "Normales Konto"; -$a->strings["This account is a normal personal profile"] = "Dieses Konto ist ein normales persönliches Profil"; -$a->strings["Soapbox Page"] = "Marktschreier-Konto"; -$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"; -$a->strings["Community Forum/Celebrity Account"] = "Forum/Promi-Konto"; -$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert"; -$a->strings["Automatic Friend Page"] = "Automatische Freunde Seite"; -$a->strings["Automatically approve all connection/friend requests as friends"] = "Kontaktanfragen werden automatisch als Freund akzeptiert"; -$a->strings["Private Forum [Experimental]"] = "Privates Forum [Versuchsstadium]"; -$a->strings["Private forum - approved members only"] = "Privates Forum, nur für Mitglieder"; -$a->strings["OpenID:"] = "OpenID:"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID."; -$a->strings["Publish your default profile in your local site directory?"] = "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"; -$a->strings["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["Show to Groups"] = "Zeige den Gruppen"; -$a->strings["Show to Contacts"] = "Zeige den Kontakten"; -$a->strings["Default Private Post"] = "Privater Standardbeitrag"; -$a->strings["Default Public Post"] = "Öffentlicher Standardbeitrag"; -$a->strings["Default Permissions for New Posts"] = "Standardberechtigungen für neue Beiträge"; -$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"; -$a->strings["Notification Settings"] = "Benachrichtigungseinstellungen"; -$a->strings["By default post a status message when:"] = "Standardmäßig eine Statusnachricht posten, wenn:"; -$a->strings["accepting a friend request"] = "– Du eine Kontaktanfrage akzeptierst"; -$a->strings["joining a forum/community"] = "– Du einem Forum/einer Gemeinschaftsseite beitrittst"; -$a->strings["making an interesting profile change"] = "– Du eine interessante Änderung an Deinem Profil durchführst"; -$a->strings["Send a notification email when:"] = "Benachrichtigungs-E-Mail senden wenn:"; -$a->strings["You receive an introduction"] = "– Du eine Kontaktanfrage erhältst"; -$a->strings["Your introductions are confirmed"] = "– eine Deiner Kontaktanfragen akzeptiert wurde"; -$a->strings["Someone writes on your profile wall"] = "– jemand etwas auf Deine Pinnwand schreibt"; -$a->strings["Someone writes a followup comment"] = "– jemand auch einen Kommentar verfasst"; -$a->strings["You receive a private message"] = "– Du eine private Nachricht erhältst"; -$a->strings["You receive a friend suggestion"] = "– Du eine Empfehlung erhältst"; -$a->strings["You are tagged in a post"] = "– Du in einem Beitrag erwähnt wirst"; -$a->strings["You are poked/prodded/etc. in a post"] = "– Du von jemandem angestupst oder sonstwie behandelt wirst"; -$a->strings["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["Do you really want to delete this video?"] = "Möchtest Du dieses Video wirklich löschen?"; -$a->strings["Delete Video"] = "Video Löschen"; -$a->strings["No videos selected"] = "Keine Videos ausgewählt"; -$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt."; -$a->strings["View Album"] = "Album betrachten"; -$a->strings["Recent Videos"] = "Neueste Videos"; -$a->strings["Upload New Videos"] = "Neues Video hochladen"; -$a->strings["Friendica Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke – Setup"; -$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert."; -$a->strings["Could not create table."] = "Tabelle konnte nicht angelegt werden."; -$a->strings["Your Friendica site database has been installed."] = "Die Datenbank Deiner Friendicaseite wurde installiert."; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Lies bitte die \"INSTALL.txt\"."; -$a->strings["Database already in use."] = "Die Datenbank wird bereits verwendet."; -$a->strings["System check"] = "Systemtest"; -$a->strings["Check again"] = "Noch einmal testen"; -$a->strings["Database connection"] = "Datenbankverbindung"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst."; -$a->strings["Database Server Name"] = "Datenbank-Server"; -$a->strings["Database Login Name"] = "Datenbank-Nutzer"; -$a->strings["Database Login Password"] = "Datenbank-Passwort"; -$a->strings["Database Name"] = "Datenbank-Name"; -$a->strings["Site administrator email address"] = "E-Mail-Adresse des Administrators"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst."; -$a->strings["Please select a default timezone for your website"] = "Bitte wähle die Standardzeitzone Deiner Webseite"; -$a->strings["Site settings"] = "Server-Einstellungen"; -$a->strings["System Language:"] = "Systemsprache:"; -$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."; -$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Setup the poller'"] = "Wenn Du keine Kommandozeilen-Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe 'Setup the poller'"; -$a->strings["PHP executable path"] = "Pfad zu PHP"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."; -$a->strings["Command line PHP"] = "Kommandozeilen-PHP"; -$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"; -$a->strings["Found PHP version: "] = "Gefundene PHP Version:"; -$a->strings["PHP cli binary"] = "PHP CLI Binary"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert."; -$a->strings["This is required for message delivery to work."] = "Dies wird für die Auslieferung von Nachrichten benötigt."; -$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."; -$a->strings["Generate encryption keys"] = "Schlüssel erzeugen"; -$a->strings["libCurl PHP module"] = "PHP: libCurl-Modul"; -$a->strings["GD graphics PHP module"] = "PHP: GD-Grafikmodul"; -$a->strings["OpenSSL PHP module"] = "PHP: OpenSSL-Modul"; -$a->strings["mysqli PHP module"] = "PHP: mysqli-Modul"; -$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul"; -$a->strings["mcrypt PHP module"] = "PHP mcrypt Modul"; -$a->strings["XML PHP module"] = "XML PHP Modul"; -$a->strings["iconv module"] = "iconv module"; -$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."; -$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."; -$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das openssl-Modul von PHP ist nicht installiert."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: Das mysqli-Modul von PHP ist nicht installiert."; -$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."; -$a->strings["Error: mcrypt PHP module required but not installed."] = "Fehler: Das mcrypt Modul von PHP ist nicht installiert"; -$a->strings["Error: iconv PHP module required but not installed."] = "Fehler: Das iconv-Modul von PHP ist nicht installiert."; -$a->strings["If you are using php_cli, please make sure that mcrypt module is enabled in its config file"] = "Wenn du das Modul \"php_cli\" benutzt dann versichere dich, daß das mcrypt Modul in seiner Konfigurationsdatei aktiviert ist. "; -$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = "Die Funktion mcrypt_create_iv() ist nicht festgelegt. Dies ist notwendig um den RINO2-Encryption-Layer zu aktivieren."; -$a->strings["mcrypt_create_iv() function"] = "mcrypt_create_iv() function"; -$a->strings["Error, XML PHP module required but not installed."] = "Fehler: XML PHP Modul erforderlich aber nicht installiert."; -$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."; -$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast."; -$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt."; -$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php"; -$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen."; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat."; -$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."; -$a->strings["view/smarty3 is writable"] = "view/smarty3 ist schreibbar"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."; -$a->strings["Url rewrite is working"] = "URL rewrite funktioniert"; -$a->strings["ImageMagick PHP extension is installed"] = "ImageMagick PHP Erweiterung ist installiert"; -$a->strings["ImageMagick supports GIF"] = "ImageMagick unterstützt GIF"; -$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen."; -$a->strings["

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["Invalid request identifier."] = "Invalid request identifier."; -$a->strings["Discard"] = "Verwerfen"; -$a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen"; -$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen"; -$a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen"; -$a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen"; -$a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen"; -$a->strings["Notification type: "] = "Benachrichtigungstyp: "; -$a->strings["suggested by %s"] = "vorgeschlagen von %s"; -$a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden"; -$a->strings["if applicable"] = "falls anwendbar"; -$a->strings["Claims to be known to you: "] = "Behauptet Dich zu kennen: "; -$a->strings["yes"] = "ja"; -$a->strings["no"] = "nein"; -$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Fan/Admirer\" means that you allow to read but you do not want to read theirs. Approve as: "] = "Soll Deine Beziehung beidseitig sein oder nicht? \"Kontakt\" bedeutet, ihr könnt gegenseitig die Beiträge des Anderen lesen dürft. \"Fan/Verehrer\", dass du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:"; -$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Sharer\" means that you allow to read but you do not want to read theirs. Approve as: "] = "Soll Deine Beziehung beidseitig sein oder nicht? \"Freund\" bedeutet, ihr gegenseitig die Beiträge des Anderen lesen dürft. \"Teilenden\", das du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:"; -$a->strings["Friend"] = "Kontakt"; -$a->strings["Sharer"] = "Teilenden"; -$a->strings["Fan/Admirer"] = "Fan/Verehrer"; -$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["Recent Photos"] = "Neueste Fotos"; -$a->strings["Upload New Photos"] = "Neue Fotos hochladen"; -$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar"; -$a->strings["Album not found."] = "Album nicht gefunden."; -$a->strings["Delete Album"] = "Album löschen"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?"; -$a->strings["Delete Photo"] = "Foto löschen"; -$a->strings["Do you really want to delete this photo?"] = "Möchtest Du wirklich dieses Foto löschen?"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt"; -$a->strings["a photo"] = "einem Foto"; -$a->strings["Image file is empty."] = "Bilddatei ist leer."; -$a->strings["No photos selected"] = "Keine Bilder ausgewählt"; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."; -$a->strings["Upload Photos"] = "Bilder hochladen"; -$a->strings["New album name: "] = "Name des neuen Albums: "; -$a->strings["or existing album name: "] = "oder existierender Albumname: "; -$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen"; -$a->strings["Private Photo"] = "Privates Foto"; -$a->strings["Public Photo"] = "Öffentliches Foto"; -$a->strings["Edit Album"] = "Album bearbeiten"; -$a->strings["Show Newest First"] = "Zeige neueste zuerst"; -$a->strings["Show Oldest First"] = "Zeige älteste zuerst"; -$a->strings["View Photo"] = "Foto betrachten"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."; -$a->strings["Photo not available"] = "Foto nicht verfügbar"; -$a->strings["View photo"] = "Fotos ansehen"; -$a->strings["Edit photo"] = "Foto bearbeiten"; -$a->strings["Use as profile photo"] = "Als Profilbild verwenden"; -$a->strings["View Full Size"] = "Betrachte Originalgröße"; -$a->strings["Tags: "] = "Tags: "; -$a->strings["[Remove any tag]"] = "[Tag entfernen]"; -$a->strings["New album name"] = "Name des neuen Albums"; -$a->strings["Caption"] = "Bildunterschrift"; -$a->strings["Add a Tag"] = "Tag hinzufügen"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; -$a->strings["Do not rotate"] = "Nicht rotieren"; -$a->strings["Rotate CW (right)"] = "Drehen US (rechts)"; -$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)"; -$a->strings["Private photo"] = "Privates Foto"; -$a->strings["Public photo"] = "Öffentliches Foto"; -$a->strings["Map"] = "Karte"; $a->strings["via"] = "via"; $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."; @@ -2015,7 +2017,6 @@ $a->strings["darkzero"] = "darkzero"; $a->strings["comix"] = "comix"; $a->strings["slackr"] = "slackr"; $a->strings["Variations"] = "Variationen"; -$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln"; $a->strings["Delete this item?"] = "Diesen Beitrag löschen?"; $a->strings["show fewer"] = "weniger anzeigen"; $a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."; @@ -2028,3 +2029,4 @@ $a->strings["Website Terms of Service"] = "Website Nutzungsbedingungen"; $a->strings["terms of service"] = "Nutzungsbedingungen"; $a->strings["Website Privacy Policy"] = "Website Datenschutzerklärung"; $a->strings["privacy policy"] = "Datenschutzerklärung"; +$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln"; diff --git a/view/pt-br/messages.po b/view/pt-br/messages.po index 5574390c5c..2dfb52fc92 100644 --- a/view/pt-br/messages.po +++ b/view/pt-br/messages.po @@ -5,8 +5,10 @@ # Translators: # abinoam , 2013 # abinoam , 2012 +# André Alves , 2016 # Frederico Gonçalves Guimarães , 2011 # Frederico Gonçalves Guimarães , 2011 +# Beatriz Vital , 2016 # Calango Jr , 2014 # Frederico Gonçalves Guimarães , 2011-2013 # Frederico Gonçalves Guimarães , 2011 @@ -22,1255 +24,466 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-04 17:54+0200\n" -"PO-Revision-Date: 2015-05-15 20:48+0000\n" -"Last-Translator: Sérgio Lima \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/friendica/language/pt_BR/)\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" +"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" "Content-Transfer-Encoding: 8bit\n" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../view/theme/cleanzero/config.php:80 -#: ../../view/theme/vier/config.php:56 -#: ../../view/theme/duepuntozero/config.php:59 -#: ../../view/theme/diabook/config.php:148 -#: ../../view/theme/diabook/theme.php:633 -#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70 -#: ../../object/Item.php:678 ../../mod/contacts.php:492 -#: ../../mod/manage.php:110 ../../mod/fsuggest.php:107 -#: ../../mod/photos.php:1084 ../../mod/photos.php:1203 -#: ../../mod/photos.php:1514 ../../mod/photos.php:1565 -#: ../../mod/photos.php:1609 ../../mod/photos.php:1697 -#: ../../mod/invite.php:140 ../../mod/events.php:478 ../../mod/mood.php:137 -#: ../../mod/message.php:335 ../../mod/message.php:564 -#: ../../mod/profiles.php:686 ../../mod/install.php:248 -#: ../../mod/install.php:286 ../../mod/crepair.php:186 -#: ../../mod/content.php:710 ../../mod/poke.php:199 ../../mod/localtime.php:45 -msgid "Submit" -msgstr "Enviar" +#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:698 +msgid "Miscellaneous" +msgstr "Miscelânea" -#: ../../view/theme/cleanzero/config.php:82 -#: ../../view/theme/vier/config.php:58 -#: ../../view/theme/duepuntozero/config.php:61 -#: ../../view/theme/diabook/config.php:150 -#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72 -msgid "Theme settings" -msgstr "Configurações do tema" +#: include/datetime.php:183 include/identity.php:627 +msgid "Birthday:" +msgstr "Aniversário:" -#: ../../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)" +#: include/datetime.php:185 mod/profiles.php:721 +msgid "Age: " +msgstr "Idade: " -#: ../../view/theme/cleanzero/config.php:84 -#: ../../view/theme/diabook/config.php:151 -#: ../../view/theme/dispy/config.php:73 -msgid "Set font-size for posts and comments" -msgstr "Escolha o tamanho da fonte para publicações e comentários" +#: include/datetime.php:187 +msgid "YYYY-MM-DD or MM-DD" +msgstr "AAAA-MM-DD ou MM-DD" -#: ../../view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Configure a largura do tema" +#: include/datetime.php:341 +msgid "never" +msgstr "nunca" -#: ../../view/theme/cleanzero/config.php:86 -#: ../../view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "Esquema de cores" +#: include/datetime.php:347 +msgid "less than a second ago" +msgstr "menos de um segundo atrás" -#: ../../view/theme/vier/config.php:59 -msgid "Set style" -msgstr "escolha estilo" +#: include/datetime.php:357 +msgid "year" +msgstr "ano" -#: ../../view/theme/duepuntozero/config.php:44 ../../include/text.php:1719 -#: ../../include/user.php:247 -msgid "default" -msgstr "padrão" +#: include/datetime.php:357 +msgid "years" +msgstr "anos" -#: ../../view/theme/duepuntozero/config.php:45 -msgid "greenzero" -msgstr "greenzero" +#: include/datetime.php:358 include/event.php:480 mod/cal.php:287 +#: mod/events.php:389 +msgid "month" +msgstr "mês" -#: ../../view/theme/duepuntozero/config.php:46 -msgid "purplezero" -msgstr "purplezero" +#: include/datetime.php:358 +msgid "months" +msgstr "meses" -#: ../../view/theme/duepuntozero/config.php:47 -msgid "easterbunny" -msgstr "easterbunny" +#: include/datetime.php:359 include/event.php:481 mod/cal.php:288 +#: mod/events.php:390 +msgid "week" +msgstr "semana" -#: ../../view/theme/duepuntozero/config.php:48 -msgid "darkzero" -msgstr "darkzero" +#: include/datetime.php:359 +msgid "weeks" +msgstr "semanas" -#: ../../view/theme/duepuntozero/config.php:49 -msgid "comix" -msgstr "comix" +#: include/datetime.php:360 include/event.php:482 mod/cal.php:289 +#: mod/events.php:391 +msgid "day" +msgstr "dia" -#: ../../view/theme/duepuntozero/config.php:50 -msgid "slackr" -msgstr "slackr" +#: include/datetime.php:360 +msgid "days" +msgstr "dias" -#: ../../view/theme/duepuntozero/config.php:62 -msgid "Variations" -msgstr "Variações" +#: include/datetime.php:361 +msgid "hour" +msgstr "hora" -#: ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:335 -msgid "don't show" -msgstr "não exibir" +#: include/datetime.php:361 +msgid "hours" +msgstr "horas" -#: ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:334 -msgid "show" -msgstr "exibir" +#: include/datetime.php:362 +msgid "minute" +msgstr "minuto" -#: ../../view/theme/diabook/config.php:152 -#: ../../view/theme/dispy/config.php:74 -msgid "Set line-height for posts and comments" -msgstr "Escolha comprimento da linha para publicações e comentários" +#: include/datetime.php:362 +msgid "minutes" +msgstr "minutos" -#: ../../view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "Escolha a resolução para a coluna do meio" +#: include/datetime.php:363 +msgid "second" +msgstr "segundo" -#: ../../view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Configure o esquema de cores" +#: include/datetime.php:363 +msgid "seconds" +msgstr "segundos" -#: ../../view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "Configure o zoom para Camadas da Terra" - -#: ../../view/theme/diabook/config.php:156 -#: ../../view/theme/diabook/theme.php:585 -msgid "Set longitude (X) for Earth Layers" -msgstr "Configure longitude (X) para Camadas da Terra" - -#: ../../view/theme/diabook/config.php:157 -#: ../../view/theme/diabook/theme.php:586 -msgid "Set latitude (Y) for Earth Layers" -msgstr "Configure latitude (Y) para Camadas da Terra" - -#: ../../view/theme/diabook/config.php:158 -#: ../../view/theme/diabook/theme.php:130 -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:624 -msgid "Community Pages" -msgstr "Páginas da Comunidade" - -#: ../../view/theme/diabook/config.php:159 -#: ../../view/theme/diabook/theme.php:579 -#: ../../view/theme/diabook/theme.php:625 -msgid "Earth Layers" -msgstr "Camadas da Terra" - -#: ../../view/theme/diabook/config.php:160 -#: ../../view/theme/diabook/theme.php:391 -#: ../../view/theme/diabook/theme.php:626 -msgid "Community Profiles" -msgstr "Profiles Comunitários" - -#: ../../view/theme/diabook/config.php:161 -#: ../../view/theme/diabook/theme.php:599 -#: ../../view/theme/diabook/theme.php:627 -msgid "Help or @NewHere ?" -msgstr "Ajuda ou @NewHere ?" - -#: ../../view/theme/diabook/config.php:162 -#: ../../view/theme/diabook/theme.php:606 -#: ../../view/theme/diabook/theme.php:628 -msgid "Connect Services" -msgstr "Conectar serviços" - -#: ../../view/theme/diabook/config.php:163 -#: ../../view/theme/diabook/theme.php:523 -#: ../../view/theme/diabook/theme.php:629 -msgid "Find Friends" -msgstr "Encontrar amigos" - -#: ../../view/theme/diabook/config.php:164 -#: ../../view/theme/diabook/theme.php:412 -#: ../../view/theme/diabook/theme.php:630 -msgid "Last users" -msgstr "Últimos usuários" - -#: ../../view/theme/diabook/config.php:165 -#: ../../view/theme/diabook/theme.php:486 -#: ../../view/theme/diabook/theme.php:631 -msgid "Last photos" -msgstr "Últimas fotos" - -#: ../../view/theme/diabook/config.php:166 -#: ../../view/theme/diabook/theme.php:441 -#: ../../view/theme/diabook/theme.php:632 -msgid "Last likes" -msgstr "Últimas gostadas" - -#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:105 -#: ../../include/nav.php:148 ../../mod/notifications.php:93 -msgid "Home" -msgstr "Pessoal" - -#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 -#: ../../include/nav.php:148 -msgid "Your posts and conversations" -msgstr "Suas publicações e conversas" - -#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2133 -#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87 -#: ../../include/nav.php:77 ../../mod/profperm.php:103 -#: ../../mod/newmember.php:32 -msgid "Profile" -msgstr "Perfil " - -#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77 -msgid "Your profile page" -msgstr "Sua página de perfil" - -#: ../../view/theme/diabook/theme.php:125 ../../include/nav.php:177 -#: ../../mod/contacts.php:718 -msgid "Contacts" -msgstr "Contatos" - -#: ../../view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "Seus contatos" - -#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2140 -#: ../../include/nav.php:78 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Fotos" - -#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78 -msgid "Your photos" -msgstr "Suas fotos" - -#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2157 -#: ../../include/nav.php:80 ../../mod/events.php:370 -msgid "Events" -msgstr "Eventos" - -#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:80 -msgid "Your events" -msgstr "Seus eventos" - -#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:81 -msgid "Personal notes" -msgstr "Suas anotações pessoais" - -#: ../../view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "Suas fotos pessoais" - -#: ../../view/theme/diabook/theme.php:129 ../../include/nav.php:129 -#: ../../include/nav.php:131 ../../mod/community.php:32 -msgid "Community" -msgstr "Comunidade" - -#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 -#: ../../include/conversation.php:245 ../../include/text.php:1983 -msgid "event" -msgstr "evento" - -#: ../../view/theme/diabook/theme.php:466 -#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:2011 -#: ../../include/conversation.php:121 ../../include/conversation.php:130 -#: ../../include/conversation.php:248 ../../include/conversation.php:257 -#: ../../mod/like.php:149 ../../mod/like.php:319 ../../mod/subthread.php:87 -#: ../../mod/tagger.php:62 -msgid "status" -msgstr "status" - -#: ../../view/theme/diabook/theme.php:471 ../../include/diaspora.php:2011 -#: ../../include/conversation.php:126 ../../include/conversation.php:253 -#: ../../include/text.php:1985 ../../mod/like.php:149 -#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 -msgid "photo" -msgstr "foto" - -#: ../../view/theme/diabook/theme.php:480 ../../include/diaspora.php:2027 -#: ../../include/conversation.php:137 ../../mod/like.php:166 +#: include/datetime.php:372 #, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s gosta de %3$s de %2$s" +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s atrás" -#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60 -#: ../../mod/photos.php:155 ../../mod/photos.php:1064 -#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 -#: ../../mod/photos.php:1760 ../../mod/photos.php:1772 -msgid "Contact Photos" -msgstr "Fotos dos contatos" - -#: ../../view/theme/diabook/theme.php:500 ../../include/user.php:335 -#: ../../include/user.php:342 ../../include/user.php:349 -#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187 -#: ../../mod/photos.php:1210 ../../mod/profile_photo.php:74 -#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 -#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 -#: ../../mod/profile_photo.php:305 -msgid "Profile Photos" -msgstr "Fotos do perfil" - -#: ../../view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "Diretório Local" - -#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:51 -msgid "Global Directory" -msgstr "Diretório global" - -#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:36 -msgid "Similar Interests" -msgstr "Interesses Parecidos" - -#: ../../view/theme/diabook/theme.php:527 ../../include/contact_widgets.php:35 -#: ../../mod/suggest.php:68 -msgid "Friend Suggestions" -msgstr "Sugestões de amigos" - -#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:38 -msgid "Invite Friends" -msgstr "Convidar amigos" - -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:172 -#: ../../mod/settings.php:90 ../../mod/admin.php:1104 ../../mod/admin.php:1325 -#: ../../mod/newmember.php:22 -msgid "Settings" -msgstr "Configurações" - -#: ../../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:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "Mostre/esconda caixas na coluna à direita:" - -#: ../../view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Alinhamento" - -#: ../../view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Esquerda" - -#: ../../view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Centro" - -#: ../../view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "Tamanho da fonte para publicações" - -#: ../../view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "Tamanho da fonte para campos texto" - -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Configure o esquema de cores" - -#: ../../index.php:211 ../../mod/apps.php:7 -msgid "You must be logged in to use addons. " -msgstr "Você precisa estar logado para usar os addons." - -#: ../../index.php:255 ../../mod/help.php:42 -msgid "Not Found" -msgstr "Não encontrada" - -#: ../../index.php:258 ../../mod/help.php:45 -msgid "Page not found." -msgstr "Página não encontrada." - -#: ../../index.php:367 ../../mod/group.php:72 ../../mod/profperm.php:19 -msgid "Permission denied" -msgstr "Permissão negada" - -#: ../../index.php:368 ../../include/items.php:4815 ../../mod/attach.php:33 -#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33 -#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103 -#: ../../mod/group.php:19 ../../mod/delegate.php:12 -#: ../../mod/notifications.php:66 ../../mod/settings.php:20 -#: ../../mod/settings.php:107 ../../mod/settings.php:606 -#: ../../mod/contacts.php:258 ../../mod/wall_attach.php:55 -#: ../../mod/register.php:42 ../../mod/manage.php:96 ../../mod/editpost.php:10 -#: ../../mod/regmod.php:110 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/suggest.php:58 ../../mod/nogroup.php:25 ../../mod/fsuggest.php:78 -#: ../../mod/viewcontacts.php:24 ../../mod/wall_upload.php:66 -#: ../../mod/notes.php:20 ../../mod/network.php:4 ../../mod/photos.php:134 -#: ../../mod/photos.php:1050 ../../mod/follow.php:9 ../../mod/uimport.php:23 -#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/events.php:140 -#: ../../mod/mood.php:114 ../../mod/message.php:38 ../../mod/message.php:174 -#: ../../mod/profiles.php:165 ../../mod/profiles.php:618 -#: ../../mod/install.php:151 ../../mod/crepair.php:119 ../../mod/poke.php:135 -#: ../../mod/display.php:499 ../../mod/dfrn_confirm.php:55 -#: ../../mod/item.php:169 ../../mod/item.php:185 -#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 -#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 -#: ../../mod/allfriends.php:9 -msgid "Permission denied." -msgstr "Permissão negada." - -#: ../../index.php:427 -msgid "toggle mobile" -msgstr "habilita mobile" - -#: ../../addon-wrk/openidserver/lib/render/trust.php:30 -#, php-format -msgid "Do you wish to confirm your identity (%s) with %s" -msgstr "Você deseja confirmar sua identidade (%s) com %s" - -#: ../../addon-wrk/openidserver/lib/render/trust.php:43 -#: ../../mod/dfrn_request.php:676 -msgid "Confirm" -msgstr "Confirmar" - -#: ../../addon-wrk/openidserver/lib/render/trust.php:44 -msgid "Do not confirm" -msgstr "Não confirma" - -#: ../../addon-wrk/openidserver/lib/render/trust.php:48 -msgid "Trust This Site" -msgstr "Confia neste site" - -#: ../../addon-wrk/openidserver/lib/render/trust.php:53 -msgid "No Identifier Sent" -msgstr "Nenhum identificador enviado" - -#: ../../addon-wrk/openidserver/lib/render/wronguser.php:5 -msgid "Requested identity don't match logged in user." -msgstr "Identidade solicitada não corresponde ao usuário conectado" - -#: ../../addon-wrk/openidserver/lib/render.php:27 -#, php-format -msgid "Please wait; you are being redirected to <%s>" -msgstr "Por favor aguarde; você será redirecionado para <%s>" - -#: ../../boot.php:749 -msgid "Delete this item?" -msgstr "Excluir este item?" - -#: ../../boot.php:750 ../../object/Item.php:361 ../../object/Item.php:677 -#: ../../mod/photos.php:1564 ../../mod/photos.php:1608 -#: ../../mod/photos.php:1696 ../../mod/content.php:709 -msgid "Comment" -msgstr "Comentar" - -#: ../../boot.php:751 ../../include/contact_widgets.php:205 -#: ../../object/Item.php:390 ../../mod/content.php:606 -msgid "show more" -msgstr "exibir mais" - -#: ../../boot.php:752 -msgid "show fewer" -msgstr "exibir menos" - -#: ../../boot.php:1122 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Atualização %s falhou. Vide registro de erros (log)." - -#: ../../boot.php:1229 -msgid "Create a New Account" -msgstr "Criar uma nova conta" - -#: ../../boot.php:1230 ../../include/nav.php:109 ../../mod/register.php:269 -msgid "Register" -msgstr "Registrar" - -#: ../../boot.php:1254 ../../include/nav.php:73 -msgid "Logout" -msgstr "Sair" - -#: ../../boot.php:1255 ../../include/nav.php:92 ../../mod/bookmarklet.php:12 -msgid "Login" -msgstr "Entrar" - -#: ../../boot.php:1257 -msgid "Nickname or Email address: " -msgstr "Identificação ou endereço de e-mail: " - -#: ../../boot.php:1258 -msgid "Password: " -msgstr "Senha: " - -#: ../../boot.php:1259 -msgid "Remember me" -msgstr "Lembre-se de mim" - -#: ../../boot.php:1262 -msgid "Or login using OpenID: " -msgstr "Ou login usando OpendID:" - -#: ../../boot.php:1268 -msgid "Forgot your password?" -msgstr "Esqueceu a sua senha?" - -#: ../../boot.php:1269 ../../mod/lostpass.php:109 -msgid "Password Reset" -msgstr "Redifinir a senha" - -#: ../../boot.php:1271 -msgid "Website Terms of Service" -msgstr "Termos de Serviço do Website" - -#: ../../boot.php:1272 -msgid "terms of service" -msgstr "termos de serviço" - -#: ../../boot.php:1274 -msgid "Website Privacy Policy" -msgstr "Política de Privacidade do Website" - -#: ../../boot.php:1275 -msgid "privacy policy" -msgstr "política de privacidade" - -#: ../../boot.php:1408 -msgid "Requested account is not available." -msgstr "Conta solicitada não disponível" - -#: ../../boot.php:1447 ../../mod/profile.php:21 -msgid "Requested profile is not available." -msgstr "Perfil solicitado não está disponível." - -#: ../../boot.php:1490 ../../boot.php:1624 -#: ../../include/profile_advanced.php:84 -msgid "Edit profile" -msgstr "Editar perfil" - -#: ../../boot.php:1557 ../../include/contact_widgets.php:10 -#: ../../mod/suggest.php:90 ../../mod/match.php:58 -msgid "Connect" -msgstr "Conectar" - -#: ../../boot.php:1589 -msgid "Message" -msgstr "Mensagem" - -#: ../../boot.php:1595 ../../include/nav.php:175 -msgid "Profiles" -msgstr "Perfis" - -#: ../../boot.php:1595 -msgid "Manage/edit profiles" -msgstr "Gerenciar/editar perfis" - -#: ../../boot.php:1600 ../../boot.php:1626 ../../mod/profiles.php:804 -msgid "Change profile photo" -msgstr "Mudar a foto do perfil" - -#: ../../boot.php:1601 ../../mod/profiles.php:805 -msgid "Create New Profile" -msgstr "Criar um novo perfil" - -#: ../../boot.php:1611 ../../mod/profiles.php:816 -msgid "Profile Image" -msgstr "Imagem do perfil" - -#: ../../boot.php:1614 ../../mod/profiles.php:818 -msgid "visible to everybody" -msgstr "visível para todos" - -#: ../../boot.php:1615 ../../mod/profiles.php:819 -msgid "Edit visibility" -msgstr "Editar a visibilidade" - -#: ../../boot.php:1637 ../../include/event.php:40 -#: ../../include/bb2diaspora.php:155 ../../mod/events.php:471 -#: ../../mod/directory.php:136 -msgid "Location:" -msgstr "Localização:" - -#: ../../boot.php:1639 ../../include/profile_advanced.php:17 -#: ../../mod/directory.php:138 -msgid "Gender:" -msgstr "Gênero:" - -#: ../../boot.php:1642 ../../include/profile_advanced.php:37 -#: ../../mod/directory.php:140 -msgid "Status:" -msgstr "Situação:" - -#: ../../boot.php:1644 ../../include/profile_advanced.php:48 -#: ../../mod/directory.php:142 -msgid "Homepage:" -msgstr "Página web:" - -#: ../../boot.php:1646 ../../include/profile_advanced.php:58 -#: ../../mod/directory.php:144 -msgid "About:" -msgstr "Sobre:" - -#: ../../boot.php:1711 -msgid "Network:" -msgstr "Rede:" - -#: ../../boot.php:1743 ../../boot.php:1829 -msgid "g A l F d" -msgstr "G l d F" - -#: ../../boot.php:1744 ../../boot.php:1830 -msgid "F d" -msgstr "F d" - -#: ../../boot.php:1789 ../../boot.php:1877 -msgid "[today]" -msgstr "[hoje]" - -#: ../../boot.php:1801 -msgid "Birthday Reminders" -msgstr "Lembretes de aniversário" - -#: ../../boot.php:1802 -msgid "Birthdays this week:" -msgstr "Aniversários nesta semana:" - -#: ../../boot.php:1864 -msgid "[No description]" -msgstr "[Sem descrição]" - -#: ../../boot.php:1888 -msgid "Event Reminders" -msgstr "Lembretes de eventos" - -#: ../../boot.php:1889 -msgid "Events this week:" -msgstr "Eventos esta semana:" - -#: ../../boot.php:2126 ../../include/nav.php:76 -msgid "Status" -msgstr "Status" - -#: ../../boot.php:2129 -msgid "Status Messages and Posts" -msgstr "Mensagem de Estado (status) e Publicações" - -#: ../../boot.php:2136 -msgid "Profile Details" -msgstr "Detalhe do Perfil" - -#: ../../boot.php:2143 ../../mod/photos.php:52 -msgid "Photo Albums" -msgstr "Álbuns de fotos" - -#: ../../boot.php:2147 ../../boot.php:2150 ../../include/nav.php:79 -msgid "Videos" -msgstr "Vídeos" - -#: ../../boot.php:2160 -msgid "Events and Calendar" -msgstr "Eventos e Agenda" - -#: ../../boot.php:2164 ../../mod/notes.php:44 -msgid "Personal Notes" -msgstr "Notas pessoais" - -#: ../../boot.php:2167 -msgid "Only You Can See This" -msgstr "Somente Você Pode Ver Isso" - -#: ../../include/features.php:23 -msgid "General Features" -msgstr "Funcionalidades Gerais" - -#: ../../include/features.php:25 -msgid "Multiple Profiles" -msgstr "Perfís Múltiplos" - -#: ../../include/features.php:25 -msgid "Ability to create multiple profiles" -msgstr "Capacidade de criar perfis múltiplos" - -#: ../../include/features.php:30 -msgid "Post Composition Features" -msgstr "Funcionalidades de Composição de Publicações" - -#: ../../include/features.php:31 -msgid "Richtext Editor" -msgstr "Editor Richtext" - -#: ../../include/features.php:31 -msgid "Enable richtext editor" -msgstr "Habilite editor richtext" - -#: ../../include/features.php:32 -msgid "Post Preview" -msgstr "Pré-visualização da Publicação" - -#: ../../include/features.php:32 -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:33 -msgid "Auto-mention Forums" -msgstr "Auto-menção Fóruns" - -#: ../../include/features.php:33 -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:38 -msgid "Network Sidebar Widgets" -msgstr "Widgets da Barra Lateral da Rede" - -#: ../../include/features.php:39 -msgid "Search by Date" -msgstr "Buscar por Data" - -#: ../../include/features.php:39 -msgid "Ability to select posts by date ranges" -msgstr "Capacidade de selecionar publicações por intervalos de data" - -#: ../../include/features.php:40 -msgid "Group Filter" -msgstr "Filtrar Grupo" - -#: ../../include/features.php:40 -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:41 -msgid "Network Filter" -msgstr "Filtrar Rede" - -#: ../../include/features.php:41 -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:42 ../../mod/network.php:194 -#: ../../mod/search.php:30 -msgid "Saved Searches" -msgstr "Pesquisas salvas" - -#: ../../include/features.php:42 -msgid "Save search terms for re-use" -msgstr "Guarde as palavras-chaves para reuso" - -#: ../../include/features.php:47 -msgid "Network Tabs" -msgstr "Abas da Rede" - -#: ../../include/features.php:48 -msgid "Network Personal Tab" -msgstr "Aba Pessoal da Rede" - -#: ../../include/features.php:48 -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:49 -msgid "Network New Tab" -msgstr "Aba Nova da Rede" - -#: ../../include/features.php:49 -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:50 -msgid "Network Shared Links Tab" -msgstr "Aba de Links Compartilhados da Rede" - -#: ../../include/features.php:50 -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:55 -msgid "Post/Comment Tools" -msgstr "Ferramentas de Publicação/Comentário" - -#: ../../include/features.php:56 -msgid "Multiple Deletion" -msgstr "Deleção Multipla" - -#: ../../include/features.php:56 -msgid "Select and delete multiple posts/comments at once" -msgstr "Selecione e delete múltiplas publicações/comentário imediatamente" - -#: ../../include/features.php:57 -msgid "Edit Sent Posts" -msgstr "Editar Publicações Enviadas" - -#: ../../include/features.php:57 -msgid "Edit and correct posts and comments after sending" -msgstr "Editar e corrigir publicações e comentários após envio" - -#: ../../include/features.php:58 -msgid "Tagging" -msgstr "Etiquetagem" - -#: ../../include/features.php:58 -msgid "Ability to tag existing posts" -msgstr "Capacidade de colocar etiquetas em publicações existentes" - -#: ../../include/features.php:59 -msgid "Post Categories" -msgstr "Categorias de Publicações" - -#: ../../include/features.php:59 -msgid "Add categories to your posts" -msgstr "Adicione Categorias ás Publicações" - -#: ../../include/features.php:60 ../../include/contact_widgets.php:104 -msgid "Saved Folders" -msgstr "Pastas salvas" - -#: ../../include/features.php:60 -msgid "Ability to file posts under folders" -msgstr "Capacidade de arquivar publicações em pastas" - -#: ../../include/features.php:61 -msgid "Dislike Posts" -msgstr "Desgostar de publicações" - -#: ../../include/features.php:61 -msgid "Ability to dislike posts/comments" -msgstr "Capacidade de desgostar de publicações/comentários" - -#: ../../include/features.php:62 -msgid "Star Posts" -msgstr "Destacar publicações" - -#: ../../include/features.php:62 -msgid "Ability to mark special posts with a star indicator" -msgstr "Capacidade de marcar publicações especiais com uma estrela indicadora" - -#: ../../include/features.php:63 -msgid "Mute Post Notifications" -msgstr "Silenciar Notificações de Postagem" - -#: ../../include/features.php:63 -msgid "Ability to mute notifications for a thread" -msgstr "Habilitar notificação silenciosa para a tarefa" - -#: ../../include/items.php:2307 ../../include/datetime.php:477 +#: include/datetime.php:578 #, php-format msgid "%s's birthday" -msgstr "aniversários de %s's" +msgstr "aniversário de %s" -#: ../../include/items.php:2308 ../../include/datetime.php:478 +#: include/datetime.php:579 include/dfrn.php:1111 #, php-format msgid "Happy Birthday %s" -msgstr "Feliz Aniversário %s" +msgstr "Feliz aniversário, %s" -#: ../../include/items.php:4111 ../../mod/dfrn_request.php:717 -#: ../../mod/dfrn_confirm.php:752 -msgid "[Name Withheld]" -msgstr "[Nome não revelado]" - -#: ../../include/items.php:4619 ../../mod/admin.php:169 -#: ../../mod/admin.php:1052 ../../mod/admin.php:1265 ../../mod/viewsrc.php:15 -#: ../../mod/notice.php:15 ../../mod/display.php:82 ../../mod/display.php:284 -#: ../../mod/display.php:503 -msgid "Item not found." -msgstr "O item não foi encontrado." - -#: ../../include/items.php:4658 -msgid "Do you really want to delete this item?" -msgstr "Você realmente deseja deletar esse item?" - -#: ../../include/items.php:4660 ../../mod/settings.php:1015 -#: ../../mod/settings.php:1021 ../../mod/settings.php:1029 -#: ../../mod/settings.php:1033 ../../mod/settings.php:1038 -#: ../../mod/settings.php:1044 ../../mod/settings.php:1050 -#: ../../mod/settings.php:1056 ../../mod/settings.php:1086 -#: ../../mod/settings.php:1087 ../../mod/settings.php:1088 -#: ../../mod/settings.php:1089 ../../mod/settings.php:1090 -#: ../../mod/contacts.php:341 ../../mod/register.php:233 -#: ../../mod/dfrn_request.php:830 ../../mod/api.php:105 -#: ../../mod/suggest.php:29 ../../mod/message.php:209 -#: ../../mod/profiles.php:661 ../../mod/profiles.php:664 -msgid "Yes" -msgstr "Sim" - -#: ../../include/items.php:4663 ../../include/conversation.php:1128 -#: ../../mod/settings.php:620 ../../mod/settings.php:646 -#: ../../mod/contacts.php:344 ../../mod/editpost.php:148 -#: ../../mod/dfrn_request.php:844 ../../mod/fbrowser.php:81 -#: ../../mod/fbrowser.php:116 ../../mod/suggest.php:32 -#: ../../mod/photos.php:203 ../../mod/photos.php:292 ../../mod/tagrm.php:11 -#: ../../mod/tagrm.php:94 ../../mod/message.php:212 -msgid "Cancel" -msgstr "Cancelar" - -#: ../../include/items.php:4881 -msgid "Archives" -msgstr "Arquivos" - -#: ../../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 "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:207 -msgid "Default privacy group for new contacts" -msgstr "Grupo de privacidade padrão para novos contatos" - -#: ../../include/group.php:226 -msgid "Everybody" -msgstr "Todos" - -#: ../../include/group.php:249 -msgid "edit" -msgstr "editar" - -#: ../../include/group.php:270 ../../mod/newmember.php:66 -msgid "Groups" -msgstr "Grupos" - -#: ../../include/group.php:271 -msgid "Edit group" -msgstr "Editar grupo" - -#: ../../include/group.php:272 -msgid "Create a new group" -msgstr "Criar um novo grupo" - -#: ../../include/group.php:273 -msgid "Contacts not in any group" -msgstr "Contatos não estão dentro de nenhum grupo" - -#: ../../include/group.php:275 ../../mod/network.php:195 -msgid "add" -msgstr "adicionar" - -#: ../../include/Photo_old.php:911 ../../include/Photo_old.php:926 -#: ../../include/Photo_old.php:933 ../../include/Photo_old.php:955 -#: ../../include/Photo.php:933 ../../include/Photo.php:948 -#: ../../include/Photo.php:955 ../../include/Photo.php:977 -#: ../../include/message.php:144 ../../mod/wall_upload.php:169 -#: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185 -#: ../../mod/item.php:485 -msgid "Wall Photos" -msgstr "Fotos do mural" - -#: ../../include/dba.php:56 ../../include/dba_pdo.php:72 -#, 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/contact_widgets.php:6 +#: include/contact_widgets.php:6 msgid "Add New Contact" msgstr "Adicionar Contato Novo" -#: ../../include/contact_widgets.php:7 +#: include/contact_widgets.php:7 msgid "Enter address or web location" msgstr "Forneça endereço ou localização web" -#: ../../include/contact_widgets.php:8 +#: include/contact_widgets.php:8 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Por exemplo: joao@exemplo.com, http://exemplo.com/maria" -#: ../../include/contact_widgets.php:24 +#: 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 +msgid "Connect" +msgstr "Conectar" + +#: include/contact_widgets.php:24 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" msgstr[0] "%d convite disponível" msgstr[1] "%d convites disponíveis" -#: ../../include/contact_widgets.php:30 +#: include/contact_widgets.php:30 msgid "Find People" msgstr "Pesquisar por pessoas" -#: ../../include/contact_widgets.php:31 +#: include/contact_widgets.php:31 msgid "Enter name or interest" msgstr "Fornecer nome ou interesse" -#: ../../include/contact_widgets.php:32 +#: 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 +#: include/contact_widgets.php:33 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Examplos: Robert Morgenstein, Fishing" -#: ../../include/contact_widgets.php:34 ../../mod/contacts.php:724 -#: ../../mod/directory.php:63 +#: include/contact_widgets.php:34 mod/directory.php:212 mod/contacts.php:796 msgid "Find" msgstr "Pesquisar" -#: ../../include/contact_widgets.php:37 +#: include/contact_widgets.php:35 mod/suggest.php:114 +#: view/theme/vier/theme.php:203 view/theme/diabook/theme.php:527 +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 +msgid "Similar Interests" +msgstr "Interesses Parecidos" + +#: include/contact_widgets.php:37 msgid "Random Profile" msgstr "Perfil Randômico" -#: ../../include/contact_widgets.php:71 +#: include/contact_widgets.php:38 view/theme/vier/theme.php:204 +#: view/theme/diabook/theme.php:528 +msgid "Invite Friends" +msgstr "Convidar amigos" + +#: include/contact_widgets.php:108 msgid "Networks" msgstr "Redes" -#: ../../include/contact_widgets.php:74 +#: include/contact_widgets.php:111 msgid "All Networks" msgstr "Todas as redes" -#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139 +#: include/contact_widgets.php:141 include/features.php:103 +msgid "Saved Folders" +msgstr "Pastas salvas" + +#: include/contact_widgets.php:144 include/contact_widgets.php:176 msgid "Everything" msgstr "Tudo" -#: ../../include/contact_widgets.php:136 +#: include/contact_widgets.php:173 msgid "Categories" msgstr "Categorias" -#: ../../include/contact_widgets.php:200 ../../mod/contacts.php:439 +#: include/contact_widgets.php:237 #, 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/enotify.php:18 +#: 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/enotify.php:24 msgid "Friendica Notification" msgstr "Notificação Friendica" -#: ../../include/enotify.php:21 +#: include/enotify.php:27 msgid "Thank You," msgstr "Obrigado," -#: ../../include/enotify.php:23 +#: include/enotify.php:30 #, php-format msgid "%s Administrator" msgstr "%s Administrador" -#: ../../include/enotify.php:33 ../../include/delivery.php:467 -#: ../../include/notifier.php:796 +#: include/enotify.php:32 +#, php-format +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:64 +#: include/enotify.php:70 #, php-format msgid "%s " msgstr "%s " -#: ../../include/enotify.php:68 +#: include/enotify.php:83 #, php-format msgid "[Friendica:Notify] New mail received at %s" msgstr "[Friendica:Notify] Nova mensagem recebida em %s" -#: ../../include/enotify.php:70 +#: include/enotify.php:85 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s lhe enviou uma mensagem privativa em %2$s." -#: ../../include/enotify.php:71 +#: include/enotify.php:86 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s lhe enviou %2$s." -#: ../../include/enotify.php:71 +#: include/enotify.php:86 msgid "a private message" msgstr "uma mensagem privada" -#: ../../include/enotify.php:72 +#: include/enotify.php:88 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Favor visitar %s para ver e/ou responder às suas mensagens privadas." -#: ../../include/enotify.php:124 +#: include/enotify.php:134 #, php-format msgid "%1$s commented on [url=%2$s]a %3$s[/url]" msgstr "%1$s comentou uma [url=%2$s] %3$s[/url]" -#: ../../include/enotify.php:131 +#: include/enotify.php:141 #, php-format msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" msgstr "%1$s comentou na %4$s de [url=%2$s]%3$s [/url]" -#: ../../include/enotify.php:139 +#: include/enotify.php:149 #, php-format msgid "%1$s commented on [url=%2$s]your %3$s[/url]" msgstr "%1$s comentou [url=%2$s]sua %3$s[/url]" -#: ../../include/enotify.php:149 +#: include/enotify.php:159 #, php-format msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" msgstr "[Friendica:Notify] Comentário na conversa #%1$d por %2$s" -#: ../../include/enotify.php:150 +#: include/enotify.php:161 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s comentou um item/conversa que você está seguindo." -#: ../../include/enotify.php:153 ../../include/enotify.php:168 -#: ../../include/enotify.php:181 ../../include/enotify.php:194 -#: ../../include/enotify.php:212 ../../include/enotify.php:225 +#: include/enotify.php: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 "Favor visitar %s para ver e/ou responder à conversa." -#: ../../include/enotify.php:160 +#: include/enotify.php:171 #, php-format msgid "[Friendica:Notify] %s posted to your profile wall" msgstr "[Friendica:Notify] %s publicou no mural do seu perfil" -#: ../../include/enotify.php:162 +#: include/enotify.php:173 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s publicou no mural do seu perfil em %2$s" -#: ../../include/enotify.php:164 +#: include/enotify.php:174 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s publicou para [url=%2$s]seu mural[/url]" -#: ../../include/enotify.php:175 +#: include/enotify.php:185 #, php-format msgid "[Friendica:Notify] %s tagged you" msgstr "[Friendica:Notify] %s etiquetou você" -#: ../../include/enotify.php:176 +#: include/enotify.php:187 #, php-format msgid "%1$s tagged you at %2$s" msgstr "%1$s etiquetou você em %2$s" -#: ../../include/enotify.php:177 +#: include/enotify.php:188 #, php-format msgid "%1$s [url=%2$s]tagged you[/url]." msgstr "%1$s [url=%2$s]etiquetou você[/url]." -#: ../../include/enotify.php:188 +#: include/enotify.php:199 #, php-format msgid "[Friendica:Notify] %s shared a new post" msgstr "[Friendica:Notify] %s compartilhado uma nova publicação" -#: ../../include/enotify.php:189 +#: include/enotify.php:201 #, php-format msgid "%1$s shared a new post at %2$s" msgstr "%1$s compartilhou uma nova publicação em %2$s" -#: ../../include/enotify.php:190 +#: include/enotify.php:202 #, php-format msgid "%1$s [url=%2$s]shared a post[/url]." msgstr "%1$s [url=%2$s]compartilhou uma publicação[/url]." -#: ../../include/enotify.php:202 +#: include/enotify.php:213 #, php-format msgid "[Friendica:Notify] %1$s poked you" msgstr "[Friendica:Notify] %1$s cutucou você" -#: ../../include/enotify.php:203 +#: include/enotify.php:215 #, php-format msgid "%1$s poked you at %2$s" msgstr "%1$s cutucou você em %2$s" -#: ../../include/enotify.php:204 +#: include/enotify.php:216 #, php-format msgid "%1$s [url=%2$s]poked you[/url]." msgstr "%1$s [url=%2$s]cutucou você[/url]." -#: ../../include/enotify.php:219 +#: include/enotify.php:231 #, php-format msgid "[Friendica:Notify] %s tagged your post" msgstr "[Friendica:Notify] %s etiquetou sua publicação" -#: ../../include/enotify.php:220 +#: include/enotify.php:233 #, php-format msgid "%1$s tagged your post at %2$s" msgstr "%1$s etiquetou sua publicação em %2$s" -#: ../../include/enotify.php:221 +#: include/enotify.php:234 #, php-format msgid "%1$s tagged [url=%2$s]your post[/url]" msgstr "%1$s etiquetou [url=%2$s]sua publicação[/url]" -#: ../../include/enotify.php:232 +#: include/enotify.php:245 msgid "[Friendica:Notify] Introduction received" msgstr "[Friendica:Notify] Você recebeu uma apresentação" -#: ../../include/enotify.php:233 +#: include/enotify.php:247 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Você recebeu uma apresentação de '%1$s' em %2$s" -#: ../../include/enotify.php:234 +#: include/enotify.php:248 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Você recebeu [url=%1$s]uma apresentação[/url] de %2$s." -#: ../../include/enotify.php:237 ../../include/enotify.php:279 +#: include/enotify.php:252 include/enotify.php:295 #, php-format msgid "You may visit their profile at %s" msgstr "Você pode visitar o perfil deles em %s" -#: ../../include/enotify.php:239 +#: include/enotify.php:254 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Favor visitar %s para aprovar ou rejeitar a apresentação." -#: ../../include/enotify.php:247 +#: include/enotify.php:262 msgid "[Friendica:Notify] A new person is sharing with you" msgstr "[Friendica:Notificação] Uma nova pessoa está compartilhando com você" -#: ../../include/enotify.php:248 ../../include/enotify.php:249 +#: include/enotify.php:264 include/enotify.php:265 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s está compartilhando com você via %2$s" -#: ../../include/enotify.php:255 +#: include/enotify.php:271 msgid "[Friendica:Notify] You have a new follower" msgstr "[Friendica:Notificação] Você tem um novo seguidor" -#: ../../include/enotify.php:256 ../../include/enotify.php:257 +#: include/enotify.php:273 include/enotify.php:274 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "Você tem um novo seguidor em %2$s : %1$s" -#: ../../include/enotify.php:270 +#: include/enotify.php:285 msgid "[Friendica:Notify] Friend suggestion received" msgstr "[Friendica:Notify] Você recebeu uma sugestão de amigo" -#: ../../include/enotify.php:271 +#: include/enotify.php:287 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Você recebeu uma sugestão de amigo de '%1$s' em %2$s" -#: ../../include/enotify.php:272 +#: include/enotify.php:288 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Você recebeu [url=%1$s]uma sugestão de amigo[/url] de %2$s em %3$s" -#: ../../include/enotify.php:277 +#: include/enotify.php:293 msgid "Name:" msgstr "Nome:" -#: ../../include/enotify.php:278 +#: include/enotify.php:294 msgid "Photo:" msgstr "Foto:" -#: ../../include/enotify.php:281 +#: include/enotify.php:297 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Favor visitar %s para aprovar ou rejeitar a sugestão." -#: ../../include/enotify.php:289 ../../include/enotify.php:302 +#: include/enotify.php:305 include/enotify.php:319 msgid "[Friendica:Notify] Connection accepted" msgstr "[Friendica:Notificação] Conexão aceita" -#: ../../include/enotify.php:290 ../../include/enotify.php:303 +#: include/enotify.php:307 include/enotify.php:321 #, php-format -msgid "'%1$s' has acepted your connection request at %2$s" -msgstr "'%1$s' sua solicitação de conexão foi aceita em %2$s" +msgid "'%1$s' has accepted your connection request at %2$s" +msgstr "'%1$s' aceitou o seu pedido de conexão no %2$s" -#: ../../include/enotify.php:291 ../../include/enotify.php:304 +#: 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 Foi aceita [url=%1$s] a conexão solicitada[/url]." -#: ../../include/enotify.php:294 +#: include/enotify.php:312 msgid "" -"You are now mutual friends and may exchange status updates, photos, and email\n" -"\twithout restriction." -msgstr "Você agora são amigos em comum e podem trocar atualizações de status, fotos e e-mail\n\tsem restrições." +"You are now mutual friends and may exchange status updates, photos, and " +"email without restriction." +msgstr "Vocês agora são amigos mútuos e podem trocar atualizações de status, fotos e e-mails livremente." -#: ../../include/enotify.php:297 ../../include/enotify.php:311 +#: 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 se você desejar fazer quaisquer alterações a este relacionamento." +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "" -#: ../../include/enotify.php:307 +#: include/enotify.php:326 #, php-format msgid "" "'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " @@ -1279,1710 +492,686 @@ msgid "" "automatically." msgstr "'%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." -#: ../../include/enotify.php:309 +#: 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' pode optar no futuro por estender isso para um relacionamento bidirecional ou superior permissivo." +"relationship in the future." +msgstr "" -#: ../../include/enotify.php:322 +#: include/enotify.php:330 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "Por favor, visite %s se você desejar fazer quaisquer alterações a este relacionamento." + +#: include/enotify.php:340 msgid "[Friendica System:Notify] registration request" msgstr "[Friendica: Notificação do Sistema] solicitação de cadastro" -#: ../../include/enotify.php:323 +#: include/enotify.php:342 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "Você recebeu um pedido de cadastro de '%1$s' em %2$s" -#: ../../include/enotify.php:324 +#: include/enotify.php:343 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "Você recebeu uma [url=%1$s]solicitação de cadastro[/url] de %2$s." -#: ../../include/enotify.php:327 +#: include/enotify.php:347 #, php-format msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" msgstr "Nome completo:\t%1$s\\nLocal do Site:\t%2$s\\nNome de Login:\t%3$s (%4$s)" -#: ../../include/enotify.php:330 +#: include/enotify.php:350 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Por favor, visite %s para aprovar ou rejeitar a solicitação." -#: ../../include/api.php:304 ../../include/api.php:315 -#: ../../include/api.php:416 ../../include/api.php:1063 -#: ../../include/api.php:1065 -msgid "User not found." -msgstr "Usuário não encontrado." +#: include/ForumManager.php:114 include/nav.php:130 include/text.php:1007 +#: view/theme/vier/theme.php:255 +msgid "Forums" +msgstr "Fóruns" -#: ../../include/api.php:770 -#, 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/ForumManager.php:116 view/theme/vier/theme.php:257 +msgid "External link to forum" +msgstr "Link externo para fórum" -#: ../../include/api.php:789 -#, 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:808 -#, 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/api.php:1271 -msgid "There is no status with this id." -msgstr "Não existe status com esse id." - -#: ../../include/api.php:1341 -msgid "There is no conversation with this id." -msgstr "Não existe conversas com esse id." - -#: ../../include/api.php:1613 -msgid "Invalid request." -msgstr "Solicitação inválida." - -#: ../../include/api.php:1624 -msgid "Invalid item." -msgstr "Ítem inválido." - -#: ../../include/api.php:1634 -msgid "Invalid action. " -msgstr "Ação inválida." - -#: ../../include/api.php:1642 -msgid "DB error" -msgstr "Erro do Banco de Dados" - -#: ../../include/network.php:890 -msgid "view full size" -msgstr "ver na tela inteira" - -#: ../../include/Scrape.php:608 -msgid " on Last.fm" -msgstr "na Last.fm" - -#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1133 -msgid "Full Name:" -msgstr "Nome completo:" - -#: ../../include/profile_advanced.php:22 -msgid "j F, Y" -msgstr "j de F, Y" - -#: ../../include/profile_advanced.php:23 -msgid "j F" -msgstr "j de F" - -#: ../../include/profile_advanced.php:30 -msgid "Birthday:" -msgstr "Aniversário:" - -#: ../../include/profile_advanced.php:34 -msgid "Age:" -msgstr "Idade:" - -#: ../../include/profile_advanced.php:43 -#, php-format -msgid "for %1$d %2$s" -msgstr "para %1$d %2$s" - -#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:714 -msgid "Sexual Preference:" -msgstr "Preferência sexual:" - -#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:716 -msgid "Hometown:" -msgstr "Cidade:" - -#: ../../include/profile_advanced.php:52 -msgid "Tags:" -msgstr "Etiquetas:" - -#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:717 -msgid "Political Views:" -msgstr "Posição política:" - -#: ../../include/profile_advanced.php:56 -msgid "Religion:" -msgstr "Religião:" - -#: ../../include/profile_advanced.php:60 -msgid "Hobbies/Interests:" -msgstr "Passatempos/Interesses:" - -#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:721 -msgid "Likes:" -msgstr "Gosta de:" - -#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:722 -msgid "Dislikes:" -msgstr "Não gosta de:" - -#: ../../include/profile_advanced.php:67 -msgid "Contact information and Social Networks:" -msgstr "Informações de contato e redes sociais:" - -#: ../../include/profile_advanced.php:69 -msgid "Musical interests:" -msgstr "Preferências musicais:" - -#: ../../include/profile_advanced.php:71 -msgid "Books, literature:" -msgstr "Livros, literatura:" - -#: ../../include/profile_advanced.php:73 -msgid "Television:" -msgstr "Televisão:" - -#: ../../include/profile_advanced.php:75 -msgid "Film/dance/culture/entertainment:" -msgstr "Filmes/dança/cultura/entretenimento:" - -#: ../../include/profile_advanced.php:77 -msgid "Love/Romance:" -msgstr "Amor/romance:" - -#: ../../include/profile_advanced.php:79 -msgid "Work/employment:" -msgstr "Trabalho/emprego:" - -#: ../../include/profile_advanced.php:81 -msgid "School/education:" -msgstr "Escola/educação:" - -#: ../../include/nav.php:34 ../../mod/navigation.php:20 -msgid "Nothing new here" -msgstr "Nada de novo aqui" - -#: ../../include/nav.php:38 ../../mod/navigation.php:24 -msgid "Clear notifications" -msgstr "Descartar notificações" - -#: ../../include/nav.php:73 -msgid "End this session" -msgstr "Terminar esta sessão" - -#: ../../include/nav.php:79 -msgid "Your videos" -msgstr "Seus vídeos" - -#: ../../include/nav.php:81 -msgid "Your personal notes" -msgstr "Suas anotações pessoais" - -#: ../../include/nav.php:92 -msgid "Sign in" -msgstr "Entrar" - -#: ../../include/nav.php:105 -msgid "Home Page" -msgstr "Página pessoal" - -#: ../../include/nav.php:109 -msgid "Create an account" -msgstr "Criar uma conta" - -#: ../../include/nav.php:114 ../../mod/help.php:36 -msgid "Help" -msgstr "Ajuda" - -#: ../../include/nav.php:114 -msgid "Help and documentation" -msgstr "Ajuda e documentação" - -#: ../../include/nav.php:117 -msgid "Apps" -msgstr "Aplicativos" - -#: ../../include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "Complementos, utilitários, jogos" - -#: ../../include/nav.php:119 ../../include/text.php:968 -#: ../../include/text.php:969 ../../mod/search.php:99 -msgid "Search" -msgstr "Pesquisar" - -#: ../../include/nav.php:119 -msgid "Search site content" -msgstr "Pesquisar conteúdo no site" - -#: ../../include/nav.php:129 -msgid "Conversations on this site" -msgstr "Conversas neste site" - -#: ../../include/nav.php:131 -msgid "Conversations on the network" -msgstr "Conversas na rede" - -#: ../../include/nav.php:133 -msgid "Directory" -msgstr "Diretório" - -#: ../../include/nav.php:133 -msgid "People directory" -msgstr "Diretório de pessoas" - -#: ../../include/nav.php:135 -msgid "Information" -msgstr "Informação" - -#: ../../include/nav.php:135 -msgid "Information about this friendica instance" -msgstr "Informação sobre esta instância do friendica" - -#: ../../include/nav.php:145 ../../mod/notifications.php:83 -msgid "Network" -msgstr "Rede" - -#: ../../include/nav.php:145 -msgid "Conversations from your friends" -msgstr "Conversas dos seus amigos" - -#: ../../include/nav.php:146 -msgid "Network Reset" -msgstr "Reiniciar Rede" - -#: ../../include/nav.php:146 -msgid "Load Network page with no filters" -msgstr "Carregar página Rede sem filtros" - -#: ../../include/nav.php:154 ../../mod/notifications.php:98 -msgid "Introductions" -msgstr "Apresentações" - -#: ../../include/nav.php:154 -msgid "Friend Requests" -msgstr "Requisições de Amizade" - -#: ../../include/nav.php:155 ../../mod/notifications.php:224 -msgid "Notifications" -msgstr "Notificações" - -#: ../../include/nav.php:156 -msgid "See all notifications" -msgstr "Ver todas notificações" - -#: ../../include/nav.php:157 -msgid "Mark all system notifications seen" -msgstr "Marcar todas as notificações de sistema como vistas" - -#: ../../include/nav.php:161 ../../mod/message.php:182 -msgid "Messages" -msgstr "Mensagens" - -#: ../../include/nav.php:161 -msgid "Private mail" -msgstr "Mensagem privada" - -#: ../../include/nav.php:162 -msgid "Inbox" -msgstr "Recebidas" - -#: ../../include/nav.php:163 -msgid "Outbox" -msgstr "Enviadas" - -#: ../../include/nav.php:164 ../../mod/message.php:9 -msgid "New Message" -msgstr "Nova mensagem" - -#: ../../include/nav.php:167 -msgid "Manage" -msgstr "Gerenciar" - -#: ../../include/nav.php:167 -msgid "Manage other pages" -msgstr "Gerenciar outras páginas" - -#: ../../include/nav.php:170 ../../mod/settings.php:67 -msgid "Delegations" -msgstr "Delegações" - -#: ../../include/nav.php:170 ../../mod/delegate.php:130 -msgid "Delegate Page Management" -msgstr "Delegar Administração de Página" - -#: ../../include/nav.php:172 -msgid "Account settings" -msgstr "Configurações da conta" - -#: ../../include/nav.php:175 -msgid "Manage/Edit Profiles" -msgstr "Administrar/Editar Perfis" - -#: ../../include/nav.php:177 -msgid "Manage/edit friends and contacts" -msgstr "Gerenciar/editar amigos e contatos" - -#: ../../include/nav.php:184 ../../mod/admin.php:130 -msgid "Admin" -msgstr "Admin" - -#: ../../include/nav.php:184 -msgid "Site setup and configuration" -msgstr "Configurações do site" - -#: ../../include/nav.php:188 -msgid "Navigation" -msgstr "Navegação" - -#: ../../include/nav.php:188 -msgid "Site map" -msgstr "Mapa do Site" - -#: ../../include/plugin.php:455 ../../include/plugin.php:457 -msgid "Click here to upgrade." -msgstr "Clique aqui para atualização (upgrade)." - -#: ../../include/plugin.php:463 -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:468 -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/follow.php:27 ../../mod/dfrn_request.php:507 -msgid "Disallowed profile URL." -msgstr "URL de perfil não permitida." - -#: ../../include/follow.php:32 -msgid "Connect URL missing." -msgstr "URL de conexão faltando." - -#: ../../include/follow.php:59 -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:60 ../../include/follow.php:80 -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:78 -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:82 -msgid "An author or name was not found." -msgstr "Não foi encontrado nenhum autor ou nome." - -#: ../../include/follow.php:84 -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:86 -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:87 -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:93 -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:103 -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:205 -msgid "Unable to retrieve contact information." -msgstr "Não foi possível recuperar a informação do contato." - -#: ../../include/follow.php:258 -msgid "following" -msgstr "acompanhando" - -#: ../../include/uimport.php:94 -msgid "Error decoding account file" -msgstr "Erro ao decodificar arquivo de conta" - -#: ../../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?" - -#: ../../include/uimport.php:116 ../../include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "Erro! Não consigo conferir o apelido (nickname)" - -#: ../../include/uimport.php:120 ../../include/uimport.php:131 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "User '%s' já existe nesse servidor!" - -#: ../../include/uimport.php:153 -msgid "User creation error" -msgstr "Erro na criação do usuário" - -#: ../../include/uimport.php:171 -msgid "User profile creation error" -msgstr "Erro na criação do perfil do Usuário" - -#: ../../include/uimport.php:220 -#, 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:290 -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/event.php:11 ../../include/bb2diaspora.php:133 -#: ../../mod/localtime.php:12 +#: 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:20 ../../include/bb2diaspora.php:139 +#: include/event.php:33 include/event.php:51 include/bb2diaspora.php:154 msgid "Starts:" msgstr "Início:" -#: ../../include/event.php:30 ../../include/bb2diaspora.php:147 +#: include/event.php:36 include/event.php:57 include/bb2diaspora.php:162 msgid "Finishes:" msgstr "Término:" -#: ../../include/Contact.php:119 -msgid "stopped following" -msgstr "parou de acompanhar" +#: 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/Contact.php:232 ../../include/conversation.php:881 -msgid "Poke" -msgstr "Cutucar" +#: include/event.php:441 +msgid "Sun" +msgstr "Dom" -#: ../../include/Contact.php:233 ../../include/conversation.php:875 -msgid "View Status" -msgstr "Ver Status" +#: include/event.php:442 +msgid "Mon" +msgstr "Seg" -#: ../../include/Contact.php:234 ../../include/conversation.php:876 -msgid "View Profile" -msgstr "Ver Perfil" +#: include/event.php:443 +msgid "Tue" +msgstr "Ter" -#: ../../include/Contact.php:235 ../../include/conversation.php:877 -msgid "View Photos" -msgstr "Ver Fotos" +#: include/event.php:444 +msgid "Wed" +msgstr "Qua" -#: ../../include/Contact.php:236 ../../include/Contact.php:259 -#: ../../include/conversation.php:878 -msgid "Network Posts" -msgstr "Publicações da Rede" +#: include/event.php:445 +msgid "Thu" +msgstr "Qui" -#: ../../include/Contact.php:237 ../../include/Contact.php:259 -#: ../../include/conversation.php:879 -msgid "Edit Contact" -msgstr "Editar Contato" +#: include/event.php:446 +msgid "Fri" +msgstr "Sex" -#: ../../include/Contact.php:238 -msgid "Drop Contact" -msgstr "Excluir o contato" +#: include/event.php:447 +msgid "Sat" +msgstr "Sáb" -#: ../../include/Contact.php:239 ../../include/Contact.php:259 -#: ../../include/conversation.php:880 -msgid "Send PM" -msgstr "Enviar MP" - -#: ../../include/dbstructure.php:26 -#, php-format -msgid "" -"\n" -"\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." -msgstr "\n\t\t\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 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "A mensagem de erro é\n[pre]%s[/pre]" - -#: ../../include/dbstructure.php:150 -msgid "Errors encountered creating database tables." -msgstr "Foram encontrados erros durante a criação das tabelas do banco de dados." - -#: ../../include/dbstructure.php:208 -msgid "Errors encountered performing database changes." -msgstr "Erros encontrados realizando mudanças no banco de dados." - -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Miscelânea" - -#: ../../include/datetime.php:153 ../../include/datetime.php:290 -msgid "year" -msgstr "ano" - -#: ../../include/datetime.php:158 ../../include/datetime.php:291 -msgid "month" -msgstr "mês" - -#: ../../include/datetime.php:163 ../../include/datetime.php:293 -msgid "day" -msgstr "dia" - -#: ../../include/datetime.php:276 -msgid "never" -msgstr "nunca" - -#: ../../include/datetime.php:282 -msgid "less than a second ago" -msgstr "menos de um segundo atrás" - -#: ../../include/datetime.php:290 -msgid "years" -msgstr "anos" - -#: ../../include/datetime.php:291 -msgid "months" -msgstr "meses" - -#: ../../include/datetime.php:292 -msgid "week" -msgstr "semana" - -#: ../../include/datetime.php:292 -msgid "weeks" -msgstr "semanas" - -#: ../../include/datetime.php:293 -msgid "days" -msgstr "dias" - -#: ../../include/datetime.php:294 -msgid "hour" -msgstr "hora" - -#: ../../include/datetime.php:294 -msgid "hours" -msgstr "horas" - -#: ../../include/datetime.php:295 -msgid "minute" -msgstr "minuto" - -#: ../../include/datetime.php:295 -msgid "minutes" -msgstr "minutos" - -#: ../../include/datetime.php:296 -msgid "second" -msgstr "segundo" - -#: ../../include/datetime.php:296 -msgid "seconds" -msgstr "segundos" - -#: ../../include/datetime.php:305 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s atrás" - -#: ../../include/message.php:15 ../../include/message.php:172 -msgid "[no subject]" -msgstr "[sem assunto]" - -#: ../../include/delivery.php:456 ../../include/notifier.php:786 -msgid "(no subject)" -msgstr "(sem assunto)" - -#: ../../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:571 -msgid "Frequently" -msgstr "Frequentemente" - -#: ../../include/contact_selectors.php:57 ../../mod/admin.php:572 -msgid "Hourly" -msgstr "De hora em hora" - -#: ../../include/contact_selectors.php:58 ../../mod/admin.php:573 -msgid "Twice daily" -msgstr "Duas vezes ao dia" - -#: ../../include/contact_selectors.php:59 ../../mod/admin.php:574 -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:836 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/contact_selectors.php:79 -#: ../../include/contact_selectors.php:86 ../../mod/admin.php:1003 -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 ../../mod/admin.php:1031 -msgid "Email" -msgstr "E-mail" - -#: ../../include/contact_selectors.php:80 ../../mod/settings.php:741 -#: ../../mod/dfrn_request.php:838 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49 -#: ../../mod/newmember.php:51 -msgid "Facebook" -msgstr "Facebook" - -#: ../../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 "Statusnet" -msgstr "Statusnet" - -#: ../../include/contact_selectors.php:92 -msgid "App.net" -msgstr "App.net" - -#: ../../include/diaspora.php:621 ../../include/conversation.php:172 -#: ../../mod/dfrn_confirm.php:486 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s agora é amigo de %2$s" - -#: ../../include/diaspora.php:704 -msgid "Sharing notification from Diaspora network" -msgstr "Notificação de compartilhamento da rede Diaspora" - -#: ../../include/diaspora.php:2444 -msgid "Attachments:" -msgstr "Anexos:" - -#: ../../include/conversation.php:140 ../../mod/like.php:168 -#, 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:206 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s cutucou %2$s" - -#: ../../include/conversation.php:226 ../../mod/mood.php:62 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s atualmente está %2$s" - -#: ../../include/conversation.php:265 ../../mod/tagger.php:95 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s etiquetou %3$s de %2$s com %4$s" - -#: ../../include/conversation.php:290 -msgid "post/item" -msgstr "postagem/item" - -#: ../../include/conversation.php:291 -#, 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:612 ../../object/Item.php:129 -#: ../../mod/photos.php:1653 ../../mod/content.php:437 -#: ../../mod/content.php:740 -msgid "Select" -msgstr "Selecionar" - -#: ../../include/conversation.php:613 ../../object/Item.php:130 -#: ../../mod/group.php:171 ../../mod/settings.php:682 -#: ../../mod/contacts.php:733 ../../mod/admin.php:1007 -#: ../../mod/photos.php:1654 ../../mod/content.php:438 -#: ../../mod/content.php:741 -msgid "Delete" -msgstr "Excluir" - -#: ../../include/conversation.php:653 ../../object/Item.php:326 -#: ../../object/Item.php:327 ../../mod/content.php:471 -#: ../../mod/content.php:852 ../../mod/content.php:853 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Ver o perfil de %s @ %s" - -#: ../../include/conversation.php:665 ../../object/Item.php:316 -msgid "Categories:" -msgstr "Categorias:" - -#: ../../include/conversation.php:666 ../../object/Item.php:317 -msgid "Filed under:" -msgstr "Arquivado sob:" - -#: ../../include/conversation.php:673 ../../object/Item.php:340 -#: ../../mod/content.php:481 ../../mod/content.php:864 -#, php-format -msgid "%s from %s" -msgstr "%s de %s" - -#: ../../include/conversation.php:689 ../../mod/content.php:497 -msgid "View in context" -msgstr "Ver no contexto" - -#: ../../include/conversation.php:691 ../../include/conversation.php:1108 -#: ../../object/Item.php:364 ../../mod/wallmessage.php:156 -#: ../../mod/editpost.php:124 ../../mod/photos.php:1545 -#: ../../mod/message.php:334 ../../mod/message.php:565 -#: ../../mod/content.php:499 ../../mod/content.php:883 -msgid "Please wait" -msgstr "Por favor, espere" - -#: ../../include/conversation.php:771 -msgid "remove" -msgstr "remover" - -#: ../../include/conversation.php:775 -msgid "Delete Selected Items" -msgstr "Excluir os itens selecionados" - -#: ../../include/conversation.php:874 -msgid "Follow Thread" -msgstr "Seguir o Thread" - -#: ../../include/conversation.php:943 -#, php-format -msgid "%s likes this." -msgstr "%s gostou disso." - -#: ../../include/conversation.php:943 -#, php-format -msgid "%s doesn't like this." -msgstr "%s não gostou disso." - -#: ../../include/conversation.php:948 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d pessoas gostaram disso" - -#: ../../include/conversation.php:951 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d pessoas não gostaram disso" - -#: ../../include/conversation.php:965 -msgid "and" -msgstr "e" - -#: ../../include/conversation.php:971 -#, php-format -msgid ", and %d other people" -msgstr ", e mais %d outras pessoas" - -#: ../../include/conversation.php:973 -#, php-format -msgid "%s like this." -msgstr "%s gostaram disso." - -#: ../../include/conversation.php:973 -#, php-format -msgid "%s don't like this." -msgstr "%s não gostaram disso." - -#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 -msgid "Visible to everybody" -msgstr "Visível para todos" - -#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 -#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 -#: ../../mod/message.php:283 ../../mod/message.php:291 -#: ../../mod/message.php:466 ../../mod/message.php:474 -msgid "Please enter a link URL:" -msgstr "Por favor, digite uma URL:" - -#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 -msgid "Please enter a video link/URL:" -msgstr "Favor fornecer um link/URL de vídeo" - -#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 -msgid "Please enter an audio link/URL:" -msgstr "Favor fornecer um link/URL de áudio" - -#: ../../include/conversation.php:1004 ../../include/conversation.php:1022 -msgid "Tag term:" -msgstr "Etiqueta:" - -#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 -#: ../../mod/filer.php:30 -msgid "Save to Folder:" -msgstr "Salvar na pasta:" - -#: ../../include/conversation.php:1006 ../../include/conversation.php:1024 -msgid "Where are you right now?" -msgstr "Onde você está agora?" - -#: ../../include/conversation.php:1007 -msgid "Delete item(s)?" -msgstr "Deletar item(s)?" - -#: ../../include/conversation.php:1050 -msgid "Post to Email" -msgstr "Enviar por e-mail" - -#: ../../include/conversation.php:1055 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "Conectores desabilitados, desde \"%s\" está habilitado." - -#: ../../include/conversation.php:1056 ../../mod/settings.php:1033 -msgid "Hide your profile details from unknown viewers?" -msgstr "Ocultar os detalhes do seu perfil para pessoas desconhecidas?" - -#: ../../include/conversation.php:1089 ../../mod/photos.php:1544 -msgid "Share" -msgstr "Compartilhar" - -#: ../../include/conversation.php:1090 ../../mod/wallmessage.php:154 -#: ../../mod/editpost.php:110 ../../mod/message.php:332 -#: ../../mod/message.php:562 -msgid "Upload photo" -msgstr "Enviar foto" - -#: ../../include/conversation.php:1091 ../../mod/editpost.php:111 -msgid "upload photo" -msgstr "upload de foto" - -#: ../../include/conversation.php:1092 ../../mod/editpost.php:112 -msgid "Attach file" -msgstr "Anexar arquivo" - -#: ../../include/conversation.php:1093 ../../mod/editpost.php:113 -msgid "attach file" -msgstr "anexar arquivo" - -#: ../../include/conversation.php:1094 ../../mod/wallmessage.php:155 -#: ../../mod/editpost.php:114 ../../mod/message.php:333 -#: ../../mod/message.php:563 -msgid "Insert web link" -msgstr "Inserir link web" - -#: ../../include/conversation.php:1095 ../../mod/editpost.php:115 -msgid "web link" -msgstr "link web" - -#: ../../include/conversation.php:1096 ../../mod/editpost.php:116 -msgid "Insert video link" -msgstr "Inserir link de vídeo" - -#: ../../include/conversation.php:1097 ../../mod/editpost.php:117 -msgid "video link" -msgstr "link de vídeo" - -#: ../../include/conversation.php:1098 ../../mod/editpost.php:118 -msgid "Insert audio link" -msgstr "Inserir link de áudio" - -#: ../../include/conversation.php:1099 ../../mod/editpost.php:119 -msgid "audio link" -msgstr "link de áudio" - -#: ../../include/conversation.php:1100 ../../mod/editpost.php:120 -msgid "Set your location" -msgstr "Definir sua localização" - -#: ../../include/conversation.php:1101 ../../mod/editpost.php:121 -msgid "set location" -msgstr "configure localização" - -#: ../../include/conversation.php:1102 ../../mod/editpost.php:122 -msgid "Clear browser location" -msgstr "Limpar a localização do navegador" - -#: ../../include/conversation.php:1103 ../../mod/editpost.php:123 -msgid "clear location" -msgstr "apague localização" - -#: ../../include/conversation.php:1105 ../../mod/editpost.php:137 -msgid "Set title" -msgstr "Definir o título" - -#: ../../include/conversation.php:1107 ../../mod/editpost.php:139 -msgid "Categories (comma-separated list)" -msgstr "Categorias (lista separada por vírgulas)" - -#: ../../include/conversation.php:1109 ../../mod/editpost.php:125 -msgid "Permission settings" -msgstr "Configurações de permissão" - -#: ../../include/conversation.php:1110 -msgid "permissions" -msgstr "permissões" - -#: ../../include/conversation.php:1118 ../../mod/editpost.php:133 -msgid "CC: email addresses" -msgstr "CC: endereço de e-mail" - -#: ../../include/conversation.php:1119 ../../mod/editpost.php:134 -msgid "Public post" -msgstr "Publicação pública" - -#: ../../include/conversation.php:1121 ../../mod/editpost.php:140 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Por exemplo: joao@exemplo.com, maria@exemplo.com" - -#: ../../include/conversation.php:1125 ../../object/Item.php:687 -#: ../../mod/editpost.php:145 ../../mod/photos.php:1566 -#: ../../mod/photos.php:1610 ../../mod/photos.php:1698 -#: ../../mod/content.php:719 -msgid "Preview" -msgstr "Pré-visualização" - -#: ../../include/conversation.php:1134 -msgid "Post to Groups" -msgstr "Postar em Grupos" - -#: ../../include/conversation.php:1135 -msgid "Post to Contacts" -msgstr "Publique para Contatos" - -#: ../../include/conversation.php:1136 -msgid "Private post" -msgstr "Publicação privada" - -#: ../../include/text.php:297 -msgid "newer" -msgstr "mais recente" - -#: ../../include/text.php:299 -msgid "older" -msgstr "antigo" - -#: ../../include/text.php:304 -msgid "prev" -msgstr "anterior" - -#: ../../include/text.php:306 -msgid "first" -msgstr "primeiro" - -#: ../../include/text.php:338 -msgid "last" -msgstr "último" - -#: ../../include/text.php:341 -msgid "next" -msgstr "próximo" - -#: ../../include/text.php:396 -msgid "Loading more entries..." -msgstr "Baixando mais entradas..." - -#: ../../include/text.php:397 -msgid "The end" -msgstr "Fim" - -#: ../../include/text.php:870 -msgid "No contacts" -msgstr "Nenhum contato" - -#: ../../include/text.php:879 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d contato" -msgstr[1] "%d contatos" - -#: ../../include/text.php:891 ../../mod/viewcontacts.php:78 -msgid "View Contacts" -msgstr "Ver contatos" - -#: ../../include/text.php:971 ../../mod/editpost.php:109 -#: ../../mod/notes.php:63 ../../mod/filer.php:31 -msgid "Save" -msgstr "Salvar" - -#: ../../include/text.php:1020 -msgid "poke" -msgstr "cutucar" - -#: ../../include/text.php:1020 -msgid "poked" -msgstr "cutucado" - -#: ../../include/text.php:1021 -msgid "ping" -msgstr "ping" - -#: ../../include/text.php:1021 -msgid "pinged" -msgstr "pingado" - -#: ../../include/text.php:1022 -msgid "prod" -msgstr "incentivar" - -#: ../../include/text.php:1022 -msgid "prodded" -msgstr "incentivado" - -#: ../../include/text.php:1023 -msgid "slap" -msgstr "bater" - -#: ../../include/text.php:1023 -msgid "slapped" -msgstr "batido" - -#: ../../include/text.php:1024 -msgid "finger" -msgstr "apontar" - -#: ../../include/text.php:1024 -msgid "fingered" -msgstr "apontado" - -#: ../../include/text.php:1025 -msgid "rebuff" -msgstr "rejeite" - -#: ../../include/text.php:1025 -msgid "rebuffed" -msgstr "rejeitado" - -#: ../../include/text.php:1039 -msgid "happy" -msgstr "feliz" - -#: ../../include/text.php:1040 -msgid "sad" -msgstr "triste" - -#: ../../include/text.php:1041 -msgid "mellow" -msgstr "desencanado" - -#: ../../include/text.php:1042 -msgid "tired" -msgstr "cansado" - -#: ../../include/text.php:1043 -msgid "perky" -msgstr "audacioso" - -#: ../../include/text.php:1044 -msgid "angry" -msgstr "chateado" - -#: ../../include/text.php:1045 -msgid "stupified" -msgstr "estupefato" - -#: ../../include/text.php:1046 -msgid "puzzled" -msgstr "confuso" - -#: ../../include/text.php:1047 -msgid "interested" -msgstr "interessado" - -#: ../../include/text.php:1048 -msgid "bitter" -msgstr "rancoroso" - -#: ../../include/text.php:1049 -msgid "cheerful" -msgstr "jovial" - -#: ../../include/text.php:1050 -msgid "alive" -msgstr "vivo" - -#: ../../include/text.php:1051 -msgid "annoyed" -msgstr "incomodado" - -#: ../../include/text.php:1052 -msgid "anxious" -msgstr "ansioso" - -#: ../../include/text.php:1053 -msgid "cranky" -msgstr "excêntrico" - -#: ../../include/text.php:1054 -msgid "disturbed" -msgstr "perturbado" - -#: ../../include/text.php:1055 -msgid "frustrated" -msgstr "frustrado" - -#: ../../include/text.php:1056 -msgid "motivated" -msgstr "motivado" - -#: ../../include/text.php:1057 -msgid "relaxed" -msgstr "relaxado" - -#: ../../include/text.php:1058 -msgid "surprised" -msgstr "surpreso" - -#: ../../include/text.php:1228 -msgid "Monday" -msgstr "Segunda" - -#: ../../include/text.php:1228 -msgid "Tuesday" -msgstr "Terça" - -#: ../../include/text.php:1228 -msgid "Wednesday" -msgstr "Quarta" - -#: ../../include/text.php:1228 -msgid "Thursday" -msgstr "Quinta" - -#: ../../include/text.php:1228 -msgid "Friday" -msgstr "Sexta" - -#: ../../include/text.php:1228 -msgid "Saturday" -msgstr "Sábado" - -#: ../../include/text.php:1228 +#: include/event.php:448 include/text.php:1112 mod/settings.php:955 msgid "Sunday" msgstr "Domingo" -#: ../../include/text.php:1232 -msgid "January" -msgstr "Janeiro" +#: include/event.php:449 include/text.php:1112 mod/settings.php:955 +msgid "Monday" +msgstr "Segunda" -#: ../../include/text.php:1232 -msgid "February" -msgstr "Fevereiro" +#: include/event.php:450 include/text.php:1112 +msgid "Tuesday" +msgstr "Terça" -#: ../../include/text.php:1232 -msgid "March" -msgstr "Março" +#: include/event.php:451 include/text.php:1112 +msgid "Wednesday" +msgstr "Quarta" -#: ../../include/text.php:1232 -msgid "April" -msgstr "Abril" +#: include/event.php:452 include/text.php:1112 +msgid "Thursday" +msgstr "Quinta" -#: ../../include/text.php:1232 +#: include/event.php:453 include/text.php:1112 +msgid "Friday" +msgstr "Sexta" + +#: include/event.php:454 include/text.php:1112 +msgid "Saturday" +msgstr "Sábado" + +#: include/event.php:455 +msgid "Jan" +msgstr "Jan" + +#: include/event.php:456 +msgid "Feb" +msgstr "Fev" + +#: include/event.php:457 +msgid "Mar" +msgstr "Mar" + +#: include/event.php:458 +msgid "Apr" +msgstr "Abr" + +#: include/event.php:459 include/event.php:471 include/text.php:1116 msgid "May" msgstr "Maio" -#: ../../include/text.php:1232 +#: include/event.php:460 +msgid "Jun" +msgstr "Jun" + +#: include/event.php:461 +msgid "Jul" +msgstr "Jul" + +#: include/event.php:462 +msgid "Aug" +msgstr "Ago" + +#: include/event.php:463 +msgid "Sept" +msgstr "Set" + +#: include/event.php:464 +msgid "Oct" +msgstr "Out" + +#: include/event.php:465 +msgid "Nov" +msgstr "Nov" + +#: include/event.php:466 +msgid "Dec" +msgstr "Dez" + +#: include/event.php:467 include/text.php:1116 +msgid "January" +msgstr "Janeiro" + +#: include/event.php:468 include/text.php:1116 +msgid "February" +msgstr "Fevereiro" + +#: include/event.php:469 include/text.php:1116 +msgid "March" +msgstr "Março" + +#: include/event.php:470 include/text.php:1116 +msgid "April" +msgstr "Abril" + +#: include/event.php:472 include/text.php:1116 msgid "June" msgstr "Junho" -#: ../../include/text.php:1232 +#: include/event.php:473 include/text.php:1116 msgid "July" msgstr "Julho" -#: ../../include/text.php:1232 +#: include/event.php:474 include/text.php:1116 msgid "August" msgstr "Agosto" -#: ../../include/text.php:1232 +#: include/event.php:475 include/text.php:1116 msgid "September" msgstr "Setembro" -#: ../../include/text.php:1232 +#: include/event.php:476 include/text.php:1116 msgid "October" msgstr "Outubro" -#: ../../include/text.php:1232 +#: include/event.php:477 include/text.php:1116 msgid "November" msgstr "Novembro" -#: ../../include/text.php:1232 +#: include/event.php:478 include/text.php:1116 msgid "December" msgstr "Dezembro" -#: ../../include/text.php:1422 ../../mod/videos.php:301 -msgid "View Video" -msgstr "Ver Vídeo" +#: include/event.php:479 mod/cal.php:286 mod/events.php:388 +msgid "today" +msgstr "hoje" -#: ../../include/text.php:1454 -msgid "bytes" -msgstr "bytes" +#: include/event.php:567 +msgid "l, F j" +msgstr "l, F j" -#: ../../include/text.php:1478 ../../include/text.php:1490 -msgid "Click to open/close" -msgstr "Clique para abrir/fechar" +#: include/event.php:586 +msgid "Edit event" +msgstr "Editar o evento" -#: ../../include/text.php:1664 ../../include/text.php:1674 -#: ../../mod/events.php:335 +#: include/event.php:608 include/text.php:1518 include/text.php:1525 msgid "link to source" msgstr "exibir a origem" -#: ../../include/text.php:1731 -msgid "Select an alternate language" -msgstr "Selecione um idioma alternativo" +#: include/event.php:843 +msgid "Export" +msgstr "Exportar" -#: ../../include/text.php:1987 -msgid "activity" -msgstr "atividade" +#: include/event.php:844 +msgid "Export calendar as ical" +msgstr "Exportar a agenda como iCal" -#: ../../include/text.php:1989 ../../object/Item.php:389 -#: ../../object/Item.php:402 ../../mod/content.php:605 -msgid "comment" -msgid_plural "comments" -msgstr[0] "comentário" -msgstr[1] "comentários" +#: include/event.php:845 +msgid "Export calendar as csv" +msgstr "Exportar a agenda como CSV" -#: ../../include/text.php:1990 -msgid "post" -msgstr "publicação" - -#: ../../include/text.php:2158 -msgid "Item filed" -msgstr "O item foi arquivado" - -#: ../../include/auth.php:38 -msgid "Logged out." -msgstr "Saiu." - -#: ../../include/auth.php:112 ../../include/auth.php:175 -#: ../../mod/openid.php:93 -msgid "Login failed." -msgstr "Não foi possível autenticar." - -#: ../../include/auth.php:128 ../../include/user.php:67 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "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:128 ../../include/user.php:67 -msgid "The error message was:" -msgstr "A mensagem de erro foi:" - -#: ../../include/bbcode.php:433 ../../include/bbcode.php:1066 -#: ../../include/bbcode.php:1067 -msgid "Image/photo" -msgstr "Imagem/foto" - -#: ../../include/bbcode.php:531 -#, php-format -msgid "%2$s %3$s" -msgstr "%2$s %3$s" - -#: ../../include/bbcode.php:565 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "%s escreveu a seguinte publicação" - -#: ../../include/bbcode.php:1030 ../../include/bbcode.php:1050 -msgid "$1 wrote:" -msgstr "$1 escreveu:" - -#: ../../include/bbcode.php:1075 ../../include/bbcode.php:1076 -msgid "Encrypted content" -msgstr "Conteúdo criptografado" - -#: ../../include/security.php:22 +#: include/security.php:22 msgid "Welcome " msgstr "Bem-vindo(a) " -#: ../../include/security.php:23 +#: include/security.php:23 msgid "Please upload a profile photo." msgstr "Por favor, envie uma foto para o perfil." -#: ../../include/security.php:26 +#: include/security.php:26 msgid "Welcome back " msgstr "Bem-vindo(a) de volta " -#: ../../include/security.php:366 +#: include/security.php:375 msgid "" "The form security token was not correct. This probably happened because the " "form has been opened for too long (>3 hours) before submitting it." msgstr "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/oembed.php:213 -msgid "Embedded content" -msgstr "Conteúdo incorporado" - -#: ../../include/oembed.php:222 -msgid "Embedding disabled" -msgstr "A incorporação está desabilitada" - -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Male" msgstr "Masculino" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Female" msgstr "Feminino" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Currently Male" msgstr "Atualmente masculino" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Currently Female" msgstr "Atualmente feminino" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Mostly Male" msgstr "Masculino a maior parte do tempo" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Mostly Female" msgstr "Feminino a maior parte do tempo" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Transgender" msgstr "Transgênero" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Intersex" msgstr "Intersexual" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Transsexual" msgstr "Transexual" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Hermaphrodite" msgstr "Hermafrodita" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Neuter" msgstr "Neutro" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Non-specific" msgstr "Não específico" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Other" msgstr "Outro" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 include/conversation.php:1477 msgid "Undecided" -msgstr "Indeciso" +msgid_plural "Undecided" +msgstr[0] "" +msgstr[1] "" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "Males" msgstr "Homens" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "Females" msgstr "Mulheres" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "Gay" msgstr "Gays" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "Lesbian" msgstr "Lésbicas" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "No Preference" msgstr "Sem preferência" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "Bisexual" msgstr "Bissexuais" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "Autosexual" msgstr "Autossexuais" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "Abstinent" msgstr "Abstêmios" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "Virgin" msgstr "Virgens" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "Deviant" msgstr "Desviantes" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "Fetish" msgstr "Fetiches" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "Oodles" msgstr "Insaciável" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "Nonsexual" msgstr "Não sexual" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Single" msgstr "Solteiro(a)" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Lonely" msgstr "Solitário(a)" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Available" msgstr "Disponível" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Unavailable" msgstr "Não disponível" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Has crush" msgstr "Tem uma paixão" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Infatuated" msgstr "Apaixonado" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Dating" msgstr "Saindo com alguém" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Unfaithful" msgstr "Infiel" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Sex Addict" msgstr "Viciado(a) em sexo" -#: ../../include/profile_selectors.php:42 ../../include/user.php:289 -#: ../../include/user.php:293 +#: include/profile_selectors.php:42 include/user.php:299 include/user.php:303 msgid "Friends" msgstr "Amigos" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Friends/Benefits" msgstr "Amigos/Benefícios" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Casual" msgstr "Casual" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Engaged" msgstr "Envolvido(a)" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Married" msgstr "Casado(a)" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Imaginarily married" msgstr "Casado imaginariamente" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Partners" msgstr "Parceiros" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Cohabiting" msgstr "Coabitando" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Common law" msgstr "Direito comum" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Happy" msgstr "Feliz" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Not looking" msgstr "Não estou procurando" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Swinger" msgstr "Swinger" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Betrayed" msgstr "Traído(a)" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Separated" msgstr "Separado(a)" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Unstable" msgstr "Instável" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Divorced" msgstr "Divorciado(a)" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Imaginarily divorced" msgstr "Divorciado imaginariamente" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Widowed" msgstr "Viúvo(a)" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Uncertain" msgstr "Incerto(a)" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "It's complicated" msgstr "É complicado" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Don't care" msgstr "Não importa" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Ask me" msgstr "Pergunte-me" -#: ../../include/user.php:40 +#: 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 +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:132 include/user.php:75 +msgid "The error message was:" +msgstr "A mensagem de erro foi:" + +#: 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 "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 +msgid "Default privacy group for new contacts" +msgstr "Grupo de privacidade padrão para novos contatos" + +#: include/group.php:242 +msgid "Everybody" +msgstr "Todos" + +#: include/group.php:265 +msgid "edit" +msgstr "editar" + +#: include/group.php:286 mod/newmember.php:61 +msgid "Groups" +msgstr "Grupos" + +#: include/group.php:288 +msgid "Edit groups" +msgstr "Editar grupos" + +#: include/group.php:290 +msgid "Edit group" +msgstr "Editar grupo" + +#: include/group.php:291 +msgid "Create a new group" +msgstr "Criar um novo grupo" + +#: include/group.php:292 mod/group.php:94 mod/group.php:178 +msgid "Group Name: " +msgstr "Nome do grupo: " + +#: include/group.php:294 +msgid "Contacts not in any group" +msgstr "Contatos não estão dentro de nenhum grupo" + +#: include/group.php:296 mod/network.php:201 +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/delivery.php:439 +msgid "(no subject)" +msgstr "(sem assunto)" + +#: include/user.php:39 mod/settings.php:370 +msgid "Passwords do not match. Password unchanged." +msgstr "As senhas não correspondem. A senha não foi modificada." + +#: include/user.php:48 msgid "An invitation is required." msgstr "É necessário um convite." -#: ../../include/user.php:45 +#: include/user.php:53 msgid "Invitation could not be verified." msgstr "Não foi possível verificar o convite." -#: ../../include/user.php:53 +#: include/user.php:61 msgid "Invalid OpenID url" msgstr "A URL do OpenID é inválida" -#: ../../include/user.php:74 +#: include/user.php:82 msgid "Please enter the required information." msgstr "Por favor, forneça a informação solicitada." -#: ../../include/user.php:88 +#: include/user.php:96 msgid "Please use a shorter name." msgstr "Por favor, use um nome mais curto." -#: ../../include/user.php:90 +#: include/user.php:98 msgid "Name too short." msgstr "O nome é muito curto." -#: ../../include/user.php:105 +#: include/user.php:113 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:110 +#: include/user.php:118 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:113 +#: include/user.php:121 msgid "Not a valid email address." msgstr "Não é um endereço de e-mail válido." -#: ../../include/user.php:126 +#: include/user.php:134 msgid "Cannot use that email." msgstr "Não é possível usar esse e-mail." -#: ../../include/user.php:132 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "A sua identificação pode conter somente os caracteres \"a-z\", \"0-9\", \"-\", e \"_\", além disso, deve começar com uma letra." +#: include/user.php:140 +msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." +msgstr "" -#: ../../include/user.php:138 ../../include/user.php:236 +#: include/user.php:147 include/user.php:245 msgid "Nickname is already registered. Please choose another." msgstr "Esta identificação já foi registrada. Por favor, escolha outra." -#: ../../include/user.php:148 +#: include/user.php:157 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:164 +#: include/user.php:173 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:222 +#: include/user.php:231 msgid "An error occurred during registration. Please try again." msgstr "Ocorreu um erro durante o registro. Por favor, tente novamente." -#: ../../include/user.php:257 +#: include/user.php:256 view/theme/duepuntozero/config.php:44 +msgid "default" +msgstr "padrão" + +#: include/user.php:266 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:377 +#: 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 +msgid "Profile Photos" +msgstr "Fotos do perfil" + +#: include/user.php:387 #, php-format msgid "" "\n" @@ -2991,7 +1180,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:381 +#: include/user.php:391 #, php-format msgid "" "\n" @@ -3021,2359 +1210,4198 @@ 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:413 ../../mod/admin.php:838 +#: include/user.php:423 mod/admin.php:1181 #, php-format msgid "Registration details for %s" msgstr "Detalhes do registro de %s" -#: ../../include/acl_selectors.php:333 +#: 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" +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 +#, 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\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 +#, 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 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Conectores desabilitados, desde \"%s\" está habilitado." + +#: 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/acl_selectors.php:338 msgid "Visible to everybody" msgstr "Visível para todos" -#: ../../object/Item.php:94 -msgid "This entry was edited" -msgstr "Essa entrada foi editada" +#: 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" -#: ../../object/Item.php:116 ../../mod/photos.php:1359 -#: ../../mod/content.php:620 -msgid "Private Message" -msgstr "Mensagem privada" +#: 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" -#: ../../object/Item.php:120 ../../mod/settings.php:681 -#: ../../mod/content.php:728 -msgid "Edit" -msgstr "Editar" +#: include/acl_selectors.php:346 mod/editpost.php:133 +msgid "CC: email addresses" +msgstr "CC: endereço de e-mail" -#: ../../object/Item.php:133 ../../mod/content.php:763 -msgid "save to folder" -msgstr "salvar na pasta" +#: 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" -#: ../../object/Item.php:195 ../../mod/content.php:753 -msgid "add star" -msgstr "destacar" +#: include/acl_selectors.php:349 mod/photos.php:1178 mod/photos.php:1562 +msgid "Permissions" +msgstr "Permissões" -#: ../../object/Item.php:196 ../../mod/content.php:754 -msgid "remove star" -msgstr "remover o destaque" +#: include/acl_selectors.php:350 +msgid "Close" +msgstr "Fechar" -#: ../../object/Item.php:197 ../../mod/content.php:755 -msgid "toggle star status" -msgstr "ativa/desativa o destaque" - -#: ../../object/Item.php:200 ../../mod/content.php:758 -msgid "starred" -msgstr "marcado com estrela" - -#: ../../object/Item.php:208 -msgid "ignore thread" -msgstr "ignorar tópico" - -#: ../../object/Item.php:209 -msgid "unignore thread" -msgstr "deixar de ignorar tópico" - -#: ../../object/Item.php:210 -msgid "toggle ignore status" -msgstr "alternar status ignorar" - -#: ../../object/Item.php:213 -msgid "ignored" -msgstr "Ignorado" - -#: ../../object/Item.php:220 ../../mod/content.php:759 -msgid "add tag" -msgstr "adicionar etiqueta" - -#: ../../object/Item.php:231 ../../mod/photos.php:1542 -#: ../../mod/content.php:684 -msgid "I like this (toggle)" -msgstr "Eu gostei disso (alternar)" - -#: ../../object/Item.php:231 ../../mod/content.php:684 -msgid "like" -msgstr "gostei" - -#: ../../object/Item.php:232 ../../mod/photos.php:1543 -#: ../../mod/content.php:685 -msgid "I don't like this (toggle)" -msgstr "Eu não gostei disso (alternar)" - -#: ../../object/Item.php:232 ../../mod/content.php:685 -msgid "dislike" -msgstr "desgostar" - -#: ../../object/Item.php:234 ../../mod/content.php:687 -msgid "Share this" -msgstr "Compartilhar isso" - -#: ../../object/Item.php:234 ../../mod/content.php:687 -msgid "share" -msgstr "compartilhar" - -#: ../../object/Item.php:328 ../../mod/content.php:854 -msgid "to" -msgstr "para" - -#: ../../object/Item.php:329 -msgid "via" -msgstr "via" - -#: ../../object/Item.php:330 ../../mod/content.php:855 -msgid "Wall-to-Wall" -msgstr "Mural-para-mural" - -#: ../../object/Item.php:331 ../../mod/content.php:856 -msgid "via Wall-To-Wall:" -msgstr "via Mural-para-mural" - -#: ../../object/Item.php:387 ../../mod/content.php:603 +#: include/api.php:975 #, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d comentário" -msgstr[1] "%d comentários" +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." -#: ../../object/Item.php:675 ../../mod/photos.php:1562 -#: ../../mod/photos.php:1606 ../../mod/photos.php:1694 -#: ../../mod/content.php:707 -msgid "This is you" -msgstr "Este(a) é você" +#: 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." -#: ../../object/Item.php:679 ../../mod/content.php:711 -msgid "Bold" -msgstr "Negrito" +#: 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." -#: ../../object/Item.php:680 ../../mod/content.php:712 -msgid "Italic" -msgstr "Itálico" +#: include/dfrn.php:1110 +#, php-format +msgid "%s\\'s birthday" +msgstr "Aniversário de %s\\" -#: ../../object/Item.php:681 ../../mod/content.php:713 -msgid "Underline" -msgstr "Sublinhado" +#: include/diaspora.php:1954 +msgid "Sharing notification from Diaspora network" +msgstr "Notificação de compartilhamento da rede Diaspora" -#: ../../object/Item.php:682 ../../mod/content.php:714 -msgid "Quote" -msgstr "Citação" +#: include/diaspora.php:2854 +msgid "Attachments:" +msgstr "Anexos:" -#: ../../object/Item.php:683 ../../mod/content.php:715 -msgid "Code" -msgstr "Código" +#: include/follow.php:77 mod/dfrn_request.php:507 +msgid "Disallowed profile URL." +msgstr "URL de perfil não permitida." -#: ../../object/Item.php:684 ../../mod/content.php:716 -msgid "Image" -msgstr "Imagem" +#: include/follow.php:82 +msgid "Connect URL missing." +msgstr "URL de conexão faltando." -#: ../../object/Item.php:685 ../../mod/content.php:717 -msgid "Link" -msgstr "Link" +#: 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." -#: ../../object/Item.php:686 ../../mod/content.php:718 -msgid "Video" -msgstr "Vídeo" +#: 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." -#: ../../mod/attach.php:8 -msgid "Item not available." -msgstr "O item não está disponí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." -#: ../../mod/attach.php:20 -msgid "Item was not found." +#: 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 +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 +msgid "Item not found." msgstr "O item não foi encontrado." -#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 +#: include/items.php:1844 +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 +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 +msgid "Permission denied." +msgstr "Permissão negada." + +#: include/items.php:2116 +msgid "Archives" +msgstr "Arquivos" + +#: include/like.php:186 #, 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." +msgid "%1$s is attending %2$s's %3$s" +msgstr "%1$s vai a %3$s de %2$s" -#: ../../mod/wallmessage.php:56 ../../mod/message.php:63 -msgid "No recipient selected." -msgstr "Não foi selecionado nenhum destinatário." - -#: ../../mod/wallmessage.php:59 -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:70 -msgid "Message could not be sent." -msgstr "Não foi possível enviar a mensagem." - -#: ../../mod/wallmessage.php:65 ../../mod/message.php:73 -msgid "Message collection failure." -msgstr "Falha na coleta de mensagens." - -#: ../../mod/wallmessage.php:68 ../../mod/message.php:76 -msgid "Message sent." -msgstr "A mensagem foi enviada." - -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Nenhum destinatário." - -#: ../../mod/wallmessage.php:142 ../../mod/message.php:319 -msgid "Send Private Message" -msgstr "Enviar mensagem privada" - -#: ../../mod/wallmessage.php:143 +#: include/like.php:188 #, 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." +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%1$s não vai a %3$s de %2$s" -#: ../../mod/wallmessage.php:144 ../../mod/message.php:320 -#: ../../mod/message.php:553 -msgid "To:" -msgstr "Para:" +#: 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" -#: ../../mod/wallmessage.php:145 ../../mod/message.php:325 -#: ../../mod/message.php:555 -msgid "Subject:" -msgstr "Assunto:" +#: include/message.php:15 include/message.php:173 +msgid "[no subject]" +msgstr "[sem assunto]" -#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 -#: ../../mod/message.php:329 ../../mod/message.php:558 -msgid "Your message:" -msgstr "Sua mensagem:" +#: include/plugin.php:526 include/plugin.php:528 +msgid "Click here to upgrade." +msgstr "Clique aqui para atualização (upgrade)." -#: ../../mod/group.php:29 -msgid "Group created." -msgstr "O grupo foi criado." +#: 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." -#: ../../mod/group.php:35 -msgid "Could not create group." -msgstr "Não foi possível criar o grupo." +#: 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." -#: ../../mod/group.php:47 ../../mod/group.php:140 -msgid "Group not found." -msgstr "O grupo não foi encontrado." +#: include/text.php:304 +msgid "newer" +msgstr "mais recente" -#: ../../mod/group.php:60 -msgid "Group name changed." -msgstr "O nome do grupo foi alterado." +#: include/text.php:306 +msgid "older" +msgstr "antigo" -#: ../../mod/group.php:87 -msgid "Save Group" -msgstr "Salvar o grupo" +#: include/text.php:311 +msgid "prev" +msgstr "anterior" -#: ../../mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Criar um grupo de contatos/amigos." +#: include/text.php:313 +msgid "first" +msgstr "primeiro" -#: ../../mod/group.php:94 ../../mod/group.php:180 -msgid "Group Name: " -msgstr "Nome do grupo: " +#: include/text.php:345 +msgid "last" +msgstr "último" -#: ../../mod/group.php:113 -msgid "Group removed." -msgstr "O grupo foi removido." +#: include/text.php:348 +msgid "next" +msgstr "próximo" -#: ../../mod/group.php:115 -msgid "Unable to remove group." -msgstr "Não foi possível remover o grupo." +#: include/text.php:403 +msgid "Loading more entries..." +msgstr "Baixando mais entradas..." -#: ../../mod/group.php:179 -msgid "Group Editor" -msgstr "Editor de grupo" +#: include/text.php:404 +msgid "The end" +msgstr "Fim" -#: ../../mod/group.php:192 -msgid "Members" -msgstr "Membros" +#: include/text.php:871 +msgid "No contacts" +msgstr "Nenhum contato" -#: ../../mod/group.php:194 ../../mod/contacts.php:586 -msgid "All Contacts" -msgstr "Todos os contatos" +#: include/text.php:894 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d contato" +msgstr[1] "%d contatos" -#: ../../mod/group.php:224 ../../mod/profperm.php:105 -msgid "Click on a contact to add or remove." -msgstr "Clique em um contato para adicionar ou remover." +#: include/text.php:907 +msgid "View Contacts" +msgstr "Ver contatos" -#: ../../mod/delegate.php:101 -msgid "No potential page delegates located." -msgstr "Nenhuma página delegada potencial localizada." +#: include/text.php:995 mod/notes.php:61 mod/filer.php:31 mod/editpost.php:109 +msgid "Save" +msgstr "Salvar" -#: ../../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." +#: include/text.php:1058 +msgid "poke" +msgstr "cutucar" -#: ../../mod/delegate.php:133 -msgid "Existing Page Managers" -msgstr "Administradores de Páginas Existentes" +#: include/text.php:1058 +msgid "poked" +msgstr "cutucado" -#: ../../mod/delegate.php:135 -msgid "Existing Page Delegates" -msgstr "Delegados de Páginas Existentes" +#: include/text.php:1059 +msgid "ping" +msgstr "ping" -#: ../../mod/delegate.php:137 -msgid "Potential Delegates" -msgstr "Delegados Potenciais" +#: include/text.php:1059 +msgid "pinged" +msgstr "pingado" -#: ../../mod/delegate.php:139 ../../mod/tagrm.php:93 -msgid "Remove" -msgstr "Remover" +#: include/text.php:1060 +msgid "prod" +msgstr "incentivar" -#: ../../mod/delegate.php:140 -msgid "Add" -msgstr "Adicionar" +#: include/text.php:1060 +msgid "prodded" +msgstr "incentivado" -#: ../../mod/delegate.php:141 -msgid "No entries." -msgstr "Sem entradas." +#: include/text.php:1061 +msgid "slap" +msgstr "bater" -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Identificador de solicitação inválido" +#: include/text.php:1061 +msgid "slapped" +msgstr "batido" -#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 -#: ../../mod/notifications.php:215 -msgid "Discard" -msgstr "Descartar" +#: include/text.php:1062 +msgid "finger" +msgstr "apontar" -#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 -#: ../../mod/notifications.php:214 ../../mod/contacts.php:455 -#: ../../mod/contacts.php:519 ../../mod/contacts.php:731 -msgid "Ignore" -msgstr "Ignorar" +#: include/text.php:1062 +msgid "fingered" +msgstr "apontado" -#: ../../mod/notifications.php:78 +#: include/text.php:1063 +msgid "rebuff" +msgstr "rejeite" + +#: include/text.php:1063 +msgid "rebuffed" +msgstr "rejeitado" + +#: include/text.php:1077 +msgid "happy" +msgstr "feliz" + +#: include/text.php:1078 +msgid "sad" +msgstr "triste" + +#: include/text.php:1079 +msgid "mellow" +msgstr "desencanado" + +#: include/text.php:1080 +msgid "tired" +msgstr "cansado" + +#: include/text.php:1081 +msgid "perky" +msgstr "audacioso" + +#: include/text.php:1082 +msgid "angry" +msgstr "chateado" + +#: include/text.php:1083 +msgid "stupified" +msgstr "estupefato" + +#: include/text.php:1084 +msgid "puzzled" +msgstr "confuso" + +#: include/text.php:1085 +msgid "interested" +msgstr "interessado" + +#: include/text.php:1086 +msgid "bitter" +msgstr "rancoroso" + +#: include/text.php:1087 +msgid "cheerful" +msgstr "jovial" + +#: include/text.php:1088 +msgid "alive" +msgstr "vivo" + +#: include/text.php:1089 +msgid "annoyed" +msgstr "incomodado" + +#: include/text.php:1090 +msgid "anxious" +msgstr "ansioso" + +#: include/text.php:1091 +msgid "cranky" +msgstr "excêntrico" + +#: include/text.php:1092 +msgid "disturbed" +msgstr "perturbado" + +#: include/text.php:1093 +msgid "frustrated" +msgstr "frustrado" + +#: include/text.php:1094 +msgid "motivated" +msgstr "motivado" + +#: include/text.php:1095 +msgid "relaxed" +msgstr "relaxado" + +#: include/text.php:1096 +msgid "surprised" +msgstr "surpreso" + +#: include/text.php:1310 mod/videos.php:383 +msgid "View Video" +msgstr "Ver Vídeo" + +#: include/text.php:1342 +msgid "bytes" +msgstr "bytes" + +#: include/text.php:1374 include/text.php:1386 +msgid "Click to open/close" +msgstr "Clique para abrir/fechar" + +#: include/text.php:1512 +msgid "View on separate page" +msgstr "Ver em uma página separada" + +#: include/text.php:1513 +msgid "view on separate page" +msgstr "ver em uma página separada" + +#: include/text.php:1792 +msgid "activity" +msgstr "atividade" + +#: include/text.php:1794 mod/content.php:623 object/Item.php:431 +#: object/Item.php:444 +msgid "comment" +msgid_plural "comments" +msgstr[0] "comentário" +msgstr[1] "comentários" + +#: include/text.php:1795 +msgid "post" +msgstr "publicação" + +#: include/text.php:1963 +msgid "Item filed" +msgstr "O item foi arquivado" + +#: include/uimport.php:94 +msgid "Error decoding account file" +msgstr "Erro ao decodificar arquivo de conta" + +#: 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?" + +#: include/uimport.php:116 include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "Erro! Não consigo conferir o apelido (nickname)" + +#: include/uimport.php:120 include/uimport.php:131 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "User '%s' já existe nesse servidor!" + +#: include/uimport.php:153 +msgid "User creation error" +msgstr "Erro na criação do usuário" + +#: include/uimport.php:173 +msgid "User profile creation error" +msgstr "Erro na criação do perfil do Usuário" + +#: 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" + +#: 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." + +#: include/NotificationsManager.php:153 msgid "System" msgstr "Sistema" -#: ../../mod/notifications.php:88 ../../mod/network.php:371 +#: include/NotificationsManager.php:167 mod/network.php:844 +#: mod/profiles.php:696 msgid "Personal" msgstr "Pessoal" -#: ../../mod/notifications.php:122 -msgid "Show Ignored Requests" -msgstr "Exibir solicitações ignoradas" - -#: ../../mod/notifications.php:122 -msgid "Hide Ignored Requests" -msgstr "Ocultar solicitações ignoradas" - -#: ../../mod/notifications.php:149 ../../mod/notifications.php:199 -msgid "Notification type: " -msgstr "Tipo de notificação:" - -#: ../../mod/notifications.php:150 -msgid "Friend Suggestion" -msgstr "Sugestão de amigo" - -#: ../../mod/notifications.php:152 -#, php-format -msgid "suggested by %s" -msgstr "sugerido por %s" - -#: ../../mod/notifications.php:157 ../../mod/notifications.php:208 -#: ../../mod/contacts.php:525 -msgid "Hide this contact from others" -msgstr "Ocultar este contato dos outros" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:209 -msgid "Post a new friend activity" -msgstr "Publicar a adição de amigo" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:209 -msgid "if applicable" -msgstr "se aplicável" - -#: ../../mod/notifications.php:161 ../../mod/notifications.php:212 -#: ../../mod/admin.php:1005 -msgid "Approve" -msgstr "Aprovar" - -#: ../../mod/notifications.php:181 -msgid "Claims to be known to you: " -msgstr "Alega ser conhecido por você: " - -#: ../../mod/notifications.php:181 -msgid "yes" -msgstr "sim" - -#: ../../mod/notifications.php:181 -msgid "no" -msgstr "não" - -#: ../../mod/notifications.php:182 -msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " -"you allow to read but you do not want to read theirs. Approve as: " -msgstr "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:185 -msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Sharer\" means that you " -"allow to read but you do not want to read theirs. Approve as: " -msgstr "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:" - -#: ../../mod/notifications.php:193 -msgid "Friend" -msgstr "Amigo" - -#: ../../mod/notifications.php:194 -msgid "Sharer" -msgstr "Compartilhador" - -#: ../../mod/notifications.php:194 -msgid "Fan/Admirer" -msgstr "Fã/Admirador" - -#: ../../mod/notifications.php:200 -msgid "Friend/Connect Request" -msgstr "Solicitação de amizade/conexão" - -#: ../../mod/notifications.php:200 -msgid "New Follower" -msgstr "Novo acompanhante" - -#: ../../mod/notifications.php:221 -msgid "No introductions." -msgstr "Sem apresentações." - -#: ../../mod/notifications.php:262 ../../mod/notifications.php:391 -#: ../../mod/notifications.php:482 -#, php-format -msgid "%s liked %s's post" -msgstr "%s gostou da publicação de %s" - -#: ../../mod/notifications.php:272 ../../mod/notifications.php:401 -#: ../../mod/notifications.php:492 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s desgostou da publicação de %s" - -#: ../../mod/notifications.php:287 ../../mod/notifications.php:416 -#: ../../mod/notifications.php:507 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s agora é amigo de %s" - -#: ../../mod/notifications.php:294 ../../mod/notifications.php:423 -#, php-format -msgid "%s created a new post" -msgstr "%s criou uma nova publicação" - -#: ../../mod/notifications.php:295 ../../mod/notifications.php:424 -#: ../../mod/notifications.php:517 +#: 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/notifications.php:310 -msgid "No more network notifications." -msgstr "Nenhuma notificação de rede." +#: include/NotificationsManager.php:244 +#, php-format +msgid "%s created a new post" +msgstr "%s criou uma nova publicação" -#: ../../mod/notifications.php:314 -msgid "Network Notifications" -msgstr "Notificações de rede" +#: include/NotificationsManager.php:258 +#, php-format +msgid "%s liked %s's post" +msgstr "%s gostou da publicação de %s" -#: ../../mod/notifications.php:340 ../../mod/notify.php:75 +#: include/NotificationsManager.php:269 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s desgostou da publicação de %s" + +#: 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/notifications.php:344 ../../mod/notify.php:79 +#: mod/notify.php:64 mod/notifications.php:111 msgid "System Notifications" msgstr "Notificações de sistema" -#: ../../mod/notifications.php:439 -msgid "No more personal notifications." -msgstr "Nenhuma notificação pessoal." +#: mod/search.php:25 mod/network.php:191 +msgid "Remove term" +msgstr "Remover o termo" -#: ../../mod/notifications.php:443 -msgid "Personal Notifications" -msgstr "Notificações pessoais" +#: 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/notifications.php:524 -msgid "No more home notifications." -msgstr "Não existe mais nenhuma notificação pessoal." +#: mod/search.php:100 +msgid "Only logged in users are permitted to perform a search." +msgstr "" -#: ../../mod/notifications.php:528 -msgid "Home Notifications" -msgstr "Notificações pessoais" +#: mod/search.php:124 +msgid "Too Many Requests" +msgstr "" -#: ../../mod/hcard.php:10 +#: mod/search.php:125 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "" + +#: mod/search.php:224 mod/community.php:66 mod/community.php:75 +msgid "No results." +msgstr "Nenhum resultado." + +#: mod/search.php:230 +#, php-format +msgid "Items tagged with: %s" +msgstr "" + +#: mod/search.php:232 mod/network.php:146 mod/contacts.php:795 +#, php-format +msgid "Results for: %s" +msgstr "" + +#: mod/friendica.php:70 +msgid "This is Friendica, version" +msgstr "Este é o Friendica, versão" + +#: mod/friendica.php:71 +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:75 +msgid "Bug reports and issues: please visit" +msgstr "Relate ou acompanhe um erro no" + +#: mod/friendica.php:75 +msgid "the bugtracker at github" +msgstr "GitHub" + +#: mod/friendica.php:76 +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:90 +msgid "Installed plugins/addons/apps:" +msgstr "Plugins/complementos/aplicações instaladas:" + +#: mod/friendica.php:103 +msgid "No installed plugins/addons/apps" +msgstr "Nenhum plugin/complemento/aplicativo instalado" + +#: mod/lostpass.php:19 +msgid "No valid account found." +msgstr "Não foi encontrada nenhuma conta válida." + +#: mod/lostpass.php:35 +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 +#, 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\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 +#, 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 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 +#, 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 +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 +msgid "Password Reset" +msgstr "Redifinir a senha" + +#: mod/lostpass.php:110 +msgid "Your password has been reset as requested." +msgstr "Sua senha foi reiniciada, conforme solicitado." + +#: mod/lostpass.php:111 +msgid "Your new password is" +msgstr "Sua nova senha é" + +#: mod/lostpass.php:112 +msgid "Save or copy your new password - and then" +msgstr "Grave ou copie a sua nova senha e, então" + +#: mod/lostpass.php:113 +msgid "click here to login" +msgstr "clique aqui para entrar" + +#: mod/lostpass.php:114 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Sua senha pode ser alterada na página de Configurações após você entrar em seu perfil." + +#: 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\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" + +#: 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\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" + +#: mod/lostpass.php:147 +#, php-format +msgid "Your password has been changed at %s" +msgstr "Sua senha foi modifica às %s" + +#: mod/lostpass.php:159 +msgid "Forgot your Password?" +msgstr "Esqueceu a sua senha?" + +#: mod/lostpass.php:160 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"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 +msgid "Nickname or Email: " +msgstr "Identificação ou e-mail: " + +#: mod/lostpass.php:162 +msgid "Reset" +msgstr "Reiniciar" + +#: mod/hcard.php:10 msgid "No profile" msgstr "Nenhum perfil" -#: ../../mod/settings.php:34 ../../mod/photos.php:80 -msgid "everybody" -msgstr "todos" +#: mod/help.php:41 +msgid "Help:" +msgstr "Ajuda:" -#: ../../mod/settings.php:41 ../../mod/admin.php:1016 -msgid "Account" -msgstr "Conta" +#: 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/settings.php:46 -msgid "Additional features" -msgstr "Funcionalidades adicionais" +#: mod/help.php:56 index.php:287 +msgid "Page not found." +msgstr "Página não encontrada." -#: ../../mod/settings.php:51 -msgid "Display" -msgstr "Tela" +#: 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/settings.php:57 ../../mod/settings.php:785 -msgid "Social Networks" -msgstr "Redes Sociais" - -#: ../../mod/settings.php:62 ../../mod/admin.php:106 ../../mod/admin.php:1102 -#: ../../mod/admin.php:1155 -msgid "Plugins" -msgstr "Plugins" - -#: ../../mod/settings.php:72 -msgid "Connected apps" -msgstr "Aplicações conectadas" - -#: ../../mod/settings.php:77 ../../mod/uexport.php:85 -msgid "Export personal data" -msgstr "Exportar dados pessoais" - -#: ../../mod/settings.php:82 -msgid "Remove account" -msgstr "Remover a conta" - -#: ../../mod/settings.php:134 -msgid "Missing some important data!" -msgstr "Está faltando algum dado importante!" - -#: ../../mod/settings.php:137 ../../mod/settings.php:645 -#: ../../mod/contacts.php:729 -msgid "Update" -msgstr "Atualizar" - -#: ../../mod/settings.php:243 -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:248 -msgid "Email settings updated." -msgstr "As configurações de e-mail foram atualizadas." - -#: ../../mod/settings.php:263 -msgid "Features updated" -msgstr "Funcionalidades atualizadas" - -#: ../../mod/settings.php:326 -msgid "Relocate message has been send to your contacts" -msgstr "A mensagem de relocação foi enviada para seus contatos" - -#: ../../mod/settings.php:340 -msgid "Passwords do not match. Password unchanged." -msgstr "As senhas não correspondem. A senha não foi modificada." - -#: ../../mod/settings.php:345 -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:353 -msgid "Wrong password." -msgstr "Senha errada." - -#: ../../mod/settings.php:364 -msgid "Password changed." -msgstr "A senha foi modificada." - -#: ../../mod/settings.php:366 -msgid "Password update failed. Please try again." -msgstr "Não foi possível atualizar a senha. Por favor, tente novamente." - -#: ../../mod/settings.php:433 -msgid " Please use a shorter name." -msgstr " Por favor, use um nome mais curto." - -#: ../../mod/settings.php:435 -msgid " Name too short." -msgstr " O nome é muito curto." - -#: ../../mod/settings.php:444 -msgid "Wrong Password" -msgstr "Senha Errada" - -#: ../../mod/settings.php:449 -msgid " Not valid email." -msgstr " Não é um e-mail válido." - -#: ../../mod/settings.php:455 -msgid " Cannot change to that email." -msgstr " Não foi possível alterar para esse e-mail." - -#: ../../mod/settings.php:511 -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:515 -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:545 -msgid "Settings updated." -msgstr "As configurações foram atualizadas." - -#: ../../mod/settings.php:618 ../../mod/settings.php:644 -#: ../../mod/settings.php:680 -msgid "Add application" -msgstr "Adicionar aplicação" - -#: ../../mod/settings.php:619 ../../mod/settings.php:729 -#: ../../mod/settings.php:803 ../../mod/settings.php:885 -#: ../../mod/settings.php:1118 ../../mod/admin.php:620 -#: ../../mod/admin.php:1156 ../../mod/admin.php:1358 ../../mod/admin.php:1445 -msgid "Save Settings" -msgstr "Salvar configurações" - -#: ../../mod/settings.php:621 ../../mod/settings.php:647 -#: ../../mod/admin.php:1003 ../../mod/admin.php:1015 ../../mod/admin.php:1016 -#: ../../mod/admin.php:1029 ../../mod/crepair.php:165 -msgid "Name" -msgstr "Nome" - -#: ../../mod/settings.php:622 ../../mod/settings.php:648 -msgid "Consumer Key" -msgstr "Chave do consumidor" - -#: ../../mod/settings.php:623 ../../mod/settings.php:649 -msgid "Consumer Secret" -msgstr "Segredo do consumidor" - -#: ../../mod/settings.php:624 ../../mod/settings.php:650 -msgid "Redirect" -msgstr "Redirecionar" - -#: ../../mod/settings.php:625 ../../mod/settings.php:651 -msgid "Icon url" -msgstr "URL do ícone" - -#: ../../mod/settings.php:636 -msgid "You can't edit this application." -msgstr "Você não pode editar esta aplicação." - -#: ../../mod/settings.php:679 -msgid "Connected Apps" -msgstr "Aplicações conectadas" - -#: ../../mod/settings.php:683 -msgid "Client key starts with" -msgstr "A chave do cliente inicia com" - -#: ../../mod/settings.php:684 -msgid "No name" -msgstr "Sem nome" - -#: ../../mod/settings.php:685 -msgid "Remove authorization" -msgstr "Remover autorização" - -#: ../../mod/settings.php:697 -msgid "No Plugin settings configured" -msgstr "Não foi definida nenhuma configuração de plugin" - -#: ../../mod/settings.php:705 -msgid "Plugin Settings" -msgstr "Configurações do plugin" - -#: ../../mod/settings.php:719 -msgid "Off" -msgstr "Off" - -#: ../../mod/settings.php:719 -msgid "On" -msgstr "On" - -#: ../../mod/settings.php:727 -msgid "Additional Features" -msgstr "Funcionalidades Adicionais" - -#: ../../mod/settings.php:741 ../../mod/settings.php:742 +#: mod/wall_upload.php:151 mod/profile_photo.php:150 mod/photos.php:806 #, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "O suporte interno para conectividade de %s está %s" +msgid "Image exceeds size limit of %s" +msgstr "" -#: ../../mod/settings.php:741 ../../mod/settings.php:742 -msgid "enabled" -msgstr "habilitado" +#: 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/settings.php:741 ../../mod/settings.php:742 -msgid "disabled" -msgstr "desabilitado" +#: 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/settings.php:742 -msgid "StatusNet" -msgstr "StatusNet" - -#: ../../mod/settings.php:778 -msgid "Email access is disabled on this site." -msgstr "O acesso ao e-mail está desabilitado neste site." - -#: ../../mod/settings.php:790 -msgid "Email/Mailbox Setup" -msgstr "Configurações do e-mail/caixa postal" - -#: ../../mod/settings.php:791 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "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:792 -msgid "Last successful email check:" -msgstr "Última checagem bem sucedida de e-mail:" - -#: ../../mod/settings.php:794 -msgid "IMAP server name:" -msgstr "Nome do servidor IMAP:" - -#: ../../mod/settings.php:795 -msgid "IMAP port:" -msgstr "Porta do IMAP:" - -#: ../../mod/settings.php:796 -msgid "Security:" -msgstr "Segurança:" - -#: ../../mod/settings.php:796 ../../mod/settings.php:801 -msgid "None" -msgstr "Nenhuma" - -#: ../../mod/settings.php:797 -msgid "Email login name:" -msgstr "Nome de usuário do e-mail:" - -#: ../../mod/settings.php:798 -msgid "Email password:" -msgstr "Senha do e-mail:" - -#: ../../mod/settings.php:799 -msgid "Reply-to address:" -msgstr "Endereço de resposta (Reply-to):" - -#: ../../mod/settings.php:800 -msgid "Send public posts to all email contacts:" -msgstr "Enviar publicações públicas para todos os contatos de e-mail:" - -#: ../../mod/settings.php:801 -msgid "Action after import:" -msgstr "Ação após a importação:" - -#: ../../mod/settings.php:801 -msgid "Mark as seen" -msgstr "Marcar como visto" - -#: ../../mod/settings.php:801 -msgid "Move to folder" -msgstr "Mover para pasta" - -#: ../../mod/settings.php:802 -msgid "Move to folder:" -msgstr "Mover para pasta:" - -#: ../../mod/settings.php:833 ../../mod/admin.php:545 -msgid "No special theme for mobile devices" -msgstr "Nenhum tema especial para dispositivos móveis" - -#: ../../mod/settings.php:883 -msgid "Display Settings" -msgstr "Configurações de exibição" - -#: ../../mod/settings.php:889 ../../mod/settings.php:904 -msgid "Display Theme:" -msgstr "Tema do perfil:" - -#: ../../mod/settings.php:890 -msgid "Mobile Theme:" -msgstr "Tema para dispositivos móveis:" - -#: ../../mod/settings.php:891 -msgid "Update browser every xx seconds" -msgstr "Atualizar o navegador a cada xx segundos" - -#: ../../mod/settings.php:891 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Mínimo de 10 segundos, não possui máximo" - -#: ../../mod/settings.php:892 -msgid "Number of items to display per page:" -msgstr "Número de itens a serem exibidos por página:" - -#: ../../mod/settings.php:892 ../../mod/settings.php:893 -msgid "Maximum of 100 items" -msgstr "Máximo de 100 itens" - -#: ../../mod/settings.php:893 -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:894 -msgid "Don't show emoticons" -msgstr "Não exibir emoticons" - -#: ../../mod/settings.php:895 -msgid "Don't show notices" -msgstr "Não mostra avisos" - -#: ../../mod/settings.php:896 -msgid "Infinite scroll" -msgstr "rolamento infinito" - -#: ../../mod/settings.php:897 -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:974 -msgid "User Types" -msgstr "Tipos de Usuários" - -#: ../../mod/settings.php:975 -msgid "Community Types" -msgstr "Tipos de Comunidades" - -#: ../../mod/settings.php:976 -msgid "Normal Account Page" -msgstr "Página de conta normal" - -#: ../../mod/settings.php:977 -msgid "This account is a normal personal profile" -msgstr "Essa conta é um perfil pessoal normal" - -#: ../../mod/settings.php:980 -msgid "Soapbox Page" -msgstr "Página de vitrine" - -#: ../../mod/settings.php:981 -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:984 -msgid "Community Forum/Celebrity Account" -msgstr "Conta de fórum de comunidade/celebridade" - -#: ../../mod/settings.php:985 -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:988 -msgid "Automatic Friend Page" -msgstr "Página de amigo automático" - -#: ../../mod/settings.php:989 -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:992 -msgid "Private Forum [Experimental]" -msgstr "Fórum privado [Experimental]" - -#: ../../mod/settings.php:993 -msgid "Private forum - approved members only" -msgstr "Fórum privado - somente membros aprovados" - -#: ../../mod/settings.php:1005 -msgid "OpenID:" -msgstr "OpenID:" - -#: ../../mod/settings.php:1005 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Opcional) Permitir o uso deste OpenID para entrar nesta conta" - -#: ../../mod/settings.php:1015 -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:1015 ../../mod/settings.php:1021 -#: ../../mod/settings.php:1029 ../../mod/settings.php:1033 -#: ../../mod/settings.php:1038 ../../mod/settings.php:1044 -#: ../../mod/settings.php:1050 ../../mod/settings.php:1056 -#: ../../mod/settings.php:1086 ../../mod/settings.php:1087 -#: ../../mod/settings.php:1088 ../../mod/settings.php:1089 -#: ../../mod/settings.php:1090 ../../mod/register.php:234 -#: ../../mod/dfrn_request.php:830 ../../mod/api.php:106 -#: ../../mod/profiles.php:661 ../../mod/profiles.php:665 -msgid "No" -msgstr "Não" - -#: ../../mod/settings.php:1021 -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:1029 -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:1033 -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:1038 -msgid "Allow friends to post to your profile page?" -msgstr "Permitir aos amigos publicarem na sua página de perfil?" - -#: ../../mod/settings.php:1044 -msgid "Allow friends to tag your posts?" -msgstr "Permitir aos amigos etiquetarem suas publicações?" - -#: ../../mod/settings.php:1050 -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:1056 -msgid "Permit unknown people to send you private mail?" -msgstr "Permitir que pessoas desconhecidas lhe enviem mensagens privadas?" - -#: ../../mod/settings.php:1064 -msgid "Profile is not published." -msgstr "O perfil não está publicado." - -#: ../../mod/settings.php:1067 ../../mod/profile_photo.php:248 -msgid "or" -msgstr "ou" - -#: ../../mod/settings.php:1072 -msgid "Your Identity Address is" -msgstr "O endereço da sua identidade é" - -#: ../../mod/settings.php:1083 -msgid "Automatically expire posts after this many days:" -msgstr "Expirar automaticamente publicações após tantos dias:" - -#: ../../mod/settings.php:1083 -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:1084 -msgid "Advanced expiration settings" -msgstr "Configurações avançadas de expiração" - -#: ../../mod/settings.php:1085 -msgid "Advanced Expiration" -msgstr "Expiração avançada" - -#: ../../mod/settings.php:1086 -msgid "Expire posts:" -msgstr "Expirar publicações:" - -#: ../../mod/settings.php:1087 -msgid "Expire personal notes:" -msgstr "Expirar notas pessoais:" - -#: ../../mod/settings.php:1088 -msgid "Expire starred posts:" -msgstr "Expirar publicações destacadas:" - -#: ../../mod/settings.php:1089 -msgid "Expire photos:" -msgstr "Expirar fotos:" - -#: ../../mod/settings.php:1090 -msgid "Only expire posts by others:" -msgstr "Expirar somente as publicações de outras pessoas:" - -#: ../../mod/settings.php:1116 -msgid "Account Settings" -msgstr "Configurações da conta" - -#: ../../mod/settings.php:1124 -msgid "Password Settings" -msgstr "Configurações da senha" - -#: ../../mod/settings.php:1125 -msgid "New Password:" -msgstr "Nova senha:" - -#: ../../mod/settings.php:1126 -msgid "Confirm:" -msgstr "Confirme:" - -#: ../../mod/settings.php:1126 -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:1127 -msgid "Current Password:" -msgstr "Senha Atual:" - -#: ../../mod/settings.php:1127 ../../mod/settings.php:1128 -msgid "Your current password to confirm the changes" -msgstr "Sua senha atual para confirmar as mudanças" - -#: ../../mod/settings.php:1128 -msgid "Password:" -msgstr "Senha:" - -#: ../../mod/settings.php:1132 -msgid "Basic Settings" -msgstr "Configurações básicas" - -#: ../../mod/settings.php:1134 -msgid "Email Address:" -msgstr "Endereço de e-mail:" - -#: ../../mod/settings.php:1135 -msgid "Your Timezone:" -msgstr "Seu fuso horário:" - -#: ../../mod/settings.php:1136 -msgid "Default Post Location:" -msgstr "Localização padrão de suas publicações:" - -#: ../../mod/settings.php:1137 -msgid "Use Browser Location:" -msgstr "Usar localizador do navegador:" - -#: ../../mod/settings.php:1140 -msgid "Security and Privacy Settings" -msgstr "Configurações de segurança e privacidade" - -#: ../../mod/settings.php:1142 -msgid "Maximum Friend Requests/Day:" -msgstr "Número máximo de requisições de amizade por dia:" - -#: ../../mod/settings.php:1142 ../../mod/settings.php:1172 -msgid "(to prevent spam abuse)" -msgstr "(para prevenir abuso de spammers)" - -#: ../../mod/settings.php:1143 -msgid "Default Post Permissions" -msgstr "Permissões padrão de publicação" - -#: ../../mod/settings.php:1144 -msgid "(click to open/close)" -msgstr "(clique para abrir/fechar)" - -#: ../../mod/settings.php:1153 ../../mod/photos.php:1146 -#: ../../mod/photos.php:1519 -msgid "Show to Groups" -msgstr "Mostre para Grupos" - -#: ../../mod/settings.php:1154 ../../mod/photos.php:1147 -#: ../../mod/photos.php:1520 -msgid "Show to Contacts" -msgstr "Mostre para Contatos" - -#: ../../mod/settings.php:1155 -msgid "Default Private Post" -msgstr "Publicação Privada Padrão" - -#: ../../mod/settings.php:1156 -msgid "Default Public Post" -msgstr "Publicação Pública Padrão" - -#: ../../mod/settings.php:1160 -msgid "Default Permissions for New Posts" -msgstr "Permissões Padrão para Publicações Novas" - -#: ../../mod/settings.php:1172 -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:1175 -msgid "Notification Settings" -msgstr "Configurações de notificação" - -#: ../../mod/settings.php:1176 -msgid "By default post a status message when:" -msgstr "Por padrão, publicar uma mensagem de status quando:" - -#: ../../mod/settings.php:1177 -msgid "accepting a friend request" -msgstr "aceitar uma requisição de amizade" - -#: ../../mod/settings.php:1178 -msgid "joining a forum/community" -msgstr "associar-se a um fórum/comunidade" - -#: ../../mod/settings.php:1179 -msgid "making an interesting profile change" -msgstr "fazer uma modificação interessante em seu perfil" - -#: ../../mod/settings.php:1180 -msgid "Send a notification email when:" -msgstr "Enviar um e-mail de notificação sempre que:" - -#: ../../mod/settings.php:1181 -msgid "You receive an introduction" -msgstr "Você recebeu uma apresentação" - -#: ../../mod/settings.php:1182 -msgid "Your introductions are confirmed" -msgstr "Suas apresentações forem confirmadas" - -#: ../../mod/settings.php:1183 -msgid "Someone writes on your profile wall" -msgstr "Alguém escrever no mural do seu perfil" - -#: ../../mod/settings.php:1184 -msgid "Someone writes a followup comment" -msgstr "Alguém comentar a sua mensagem" - -#: ../../mod/settings.php:1185 -msgid "You receive a private message" -msgstr "Você recebeu uma mensagem privada" - -#: ../../mod/settings.php:1186 -msgid "You receive a friend suggestion" -msgstr "Você recebe uma suggestão de amigo" - -#: ../../mod/settings.php:1187 -msgid "You are tagged in a post" -msgstr "Você foi etiquetado em uma publicação" - -#: ../../mod/settings.php:1188 -msgid "You are poked/prodded/etc. in a post" -msgstr "Você está cutucado/incitado/etc. em uma publicação" - -#: ../../mod/settings.php:1190 -msgid "Text-only notification emails" -msgstr "Emails de notificação apenas de texto" - -#: ../../mod/settings.php:1192 -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:1194 -msgid "Advanced Account/Page Type Settings" -msgstr "Conta avançada/Configurações do tipo de página" - -#: ../../mod/settings.php:1195 -msgid "Change the behaviour of this account for special situations" -msgstr "Modificar o comportamento desta conta em situações especiais" - -#: ../../mod/settings.php:1198 -msgid "Relocate" -msgstr "Relocação" - -#: ../../mod/settings.php:1199 -msgid "" -"If you have moved this profile from another server, and some of your " -"contacts don't receive your updates, try pushing this button." -msgstr "Se você moveu esse perfil de outro servidor e algum dos seus contatos não recebe atualizações, pressione esse botão." - -#: ../../mod/settings.php:1200 -msgid "Resend relocate message to contacts" -msgstr "Reenviar mensagem de relocação para os contatos" - -#: ../../mod/common.php:42 -msgid "Common Friends" -msgstr "Amigos em Comum" - -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "Nenhum contato em comum." - -#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 +#: 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 +#: mod/lockview.php:48 msgid "Visible to:" msgstr "Visível para:" -#: ../../mod/contacts.php:112 -#, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited" -msgstr[0] "%d contato editado" -msgstr[1] "%d contatos editados" +#: mod/directory.php:205 view/theme/vier/theme.php:201 +#: view/theme/diabook/theme.php:525 +msgid "Global Directory" +msgstr "Diretório global" -#: ../../mod/contacts.php:143 ../../mod/contacts.php:276 -msgid "Could not access contact record." -msgstr "Não foi possível acessar o registro do contato." +#: mod/directory.php:207 +msgid "Find on this site" +msgstr "Pesquisar neste site" -#: ../../mod/contacts.php:157 -msgid "Could not locate selected profile." -msgstr "Não foi possível localizar o perfil selecionado." +#: mod/directory.php:209 +msgid "Results for:" +msgstr "" -#: ../../mod/contacts.php:190 -msgid "Contact updated." -msgstr "O contato foi atualizado." +#: mod/directory.php:211 +msgid "Site Directory" +msgstr "Diretório do site" -#: ../../mod/contacts.php:192 ../../mod/dfrn_request.php:576 -msgid "Failed to update contact record." -msgstr "Não foi possível atualizar o registro do contato." +#: mod/directory.php:218 +msgid "No entries (some entries may be hidden)." +msgstr "Nenhuma entrada (algumas entradas podem estar ocultas)." -#: ../../mod/contacts.php:291 -msgid "Contact has been blocked" -msgstr "O contato foi bloqueado" +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Erro no protocolo OpenID. Não foi retornada nenhuma ID." -#: ../../mod/contacts.php:291 -msgid "Contact has been unblocked" -msgstr "O contato foi desbloqueado" - -#: ../../mod/contacts.php:302 -msgid "Contact has been ignored" -msgstr "O contato foi ignorado" - -#: ../../mod/contacts.php:302 -msgid "Contact has been unignored" -msgstr "O contato deixou de ser ignorado" - -#: ../../mod/contacts.php:314 -msgid "Contact has been archived" -msgstr "O contato foi arquivado" - -#: ../../mod/contacts.php:314 -msgid "Contact has been unarchived" -msgstr "O contato foi desarquivado" - -#: ../../mod/contacts.php:339 ../../mod/contacts.php:727 -msgid "Do you really want to delete this contact?" -msgstr "Você realmente deseja deletar esse contato?" - -#: ../../mod/contacts.php:356 -msgid "Contact has been removed." -msgstr "O contato foi removido." - -#: ../../mod/contacts.php:394 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Você possui uma amizade mútua com %s" - -#: ../../mod/contacts.php:398 -#, php-format -msgid "You are sharing with %s" -msgstr "Você está compartilhando com %s" - -#: ../../mod/contacts.php:403 -#, php-format -msgid "%s is sharing with you" -msgstr "%s está compartilhando com você" - -#: ../../mod/contacts.php:423 -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:426 ../../mod/admin.php:569 -msgid "Never" -msgstr "Nunca" - -#: ../../mod/contacts.php:430 -msgid "(Update was successful)" -msgstr "(A atualização foi bem sucedida)" - -#: ../../mod/contacts.php:430 -msgid "(Update was not successful)" -msgstr "(A atualização não foi bem sucedida)" - -#: ../../mod/contacts.php:432 -msgid "Suggest friends" -msgstr "Sugerir amigos" - -#: ../../mod/contacts.php:436 -#, php-format -msgid "Network type: %s" -msgstr "Tipo de rede: %s" - -#: ../../mod/contacts.php:444 -msgid "View all contacts" -msgstr "Ver todos os contatos" - -#: ../../mod/contacts.php:449 ../../mod/contacts.php:518 -#: ../../mod/contacts.php:730 ../../mod/admin.php:1009 -msgid "Unblock" -msgstr "Desbloquear" - -#: ../../mod/contacts.php:449 ../../mod/contacts.php:518 -#: ../../mod/contacts.php:730 ../../mod/admin.php:1008 -msgid "Block" -msgstr "Bloquear" - -#: ../../mod/contacts.php:452 -msgid "Toggle Blocked status" -msgstr "Alternar o status de bloqueio" - -#: ../../mod/contacts.php:455 ../../mod/contacts.php:519 -#: ../../mod/contacts.php:731 -msgid "Unignore" -msgstr "Deixar de ignorar" - -#: ../../mod/contacts.php:458 -msgid "Toggle Ignored status" -msgstr "Alternar o status de ignorado" - -#: ../../mod/contacts.php:462 ../../mod/contacts.php:732 -msgid "Unarchive" -msgstr "Desarquivar" - -#: ../../mod/contacts.php:462 ../../mod/contacts.php:732 -msgid "Archive" -msgstr "Arquivar" - -#: ../../mod/contacts.php:465 -msgid "Toggle Archive status" -msgstr "Alternar o status de arquivamento" - -#: ../../mod/contacts.php:468 -msgid "Repair" -msgstr "Reparar" - -#: ../../mod/contacts.php:471 -msgid "Advanced Contact Settings" -msgstr "Configurações avançadas do contato" - -#: ../../mod/contacts.php:477 -msgid "Communications lost with this contact!" -msgstr "As comunicações com esse contato foram perdidas!" - -#: ../../mod/contacts.php:480 -msgid "Fetch further information for feeds" -msgstr "Pega mais informações para feeds" - -#: ../../mod/contacts.php:481 -msgid "Disabled" -msgstr "Desabilitado" - -#: ../../mod/contacts.php:481 -msgid "Fetch information" -msgstr "Buscar informações" - -#: ../../mod/contacts.php:481 -msgid "Fetch information and keywords" -msgstr "Buscar informação e palavras-chave" - -#: ../../mod/contacts.php:490 -msgid "Contact Editor" -msgstr "Editor de contatos" - -#: ../../mod/contacts.php:493 -msgid "Profile Visibility" -msgstr "Visibilidade do perfil" - -#: ../../mod/contacts.php:494 -#, php-format +#: mod/openid.php:60 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." +"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/contacts.php:495 -msgid "Contact Information / Notes" -msgstr "Informações sobre o contato / Anotações" +#: 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/contacts.php:496 -msgid "Edit contact notes" -msgstr "Editar as anotações do contato" +#: mod/uimport.php:64 mod/register.php:286 +msgid "Import" +msgstr "Importar" -#: ../../mod/contacts.php:501 ../../mod/contacts.php:695 -#: ../../mod/nogroup.php:40 ../../mod/viewcontacts.php:64 +#: 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/contacts.php:502 -msgid "Block/Unblock contact" -msgstr "Bloquear/desbloquear o contato" - -#: ../../mod/contacts.php:503 -msgid "Ignore contact" -msgstr "Ignorar o contato" - -#: ../../mod/contacts.php:504 -msgid "Repair URL settings" -msgstr "Reparar as definições de URL" - -#: ../../mod/contacts.php:505 -msgid "View conversations" -msgstr "Ver as conversas" - -#: ../../mod/contacts.php:507 -msgid "Delete contact" -msgstr "Excluir o contato" - -#: ../../mod/contacts.php:511 -msgid "Last update:" -msgstr "Última atualização:" - -#: ../../mod/contacts.php:513 -msgid "Update public posts" -msgstr "Atualizar publicações públicas" - -#: ../../mod/contacts.php:515 ../../mod/admin.php:1503 -msgid "Update now" -msgstr "Atualizar agora" - -#: ../../mod/contacts.php:522 -msgid "Currently blocked" -msgstr "Atualmente bloqueado" - -#: ../../mod/contacts.php:523 -msgid "Currently ignored" -msgstr "Atualmente ignorado" - -#: ../../mod/contacts.php:524 -msgid "Currently archived" -msgstr "Atualmente arquivado" - -#: ../../mod/contacts.php:525 -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:526 -msgid "Notification for new posts" -msgstr "Notificações para novas publicações" - -#: ../../mod/contacts.php:526 -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:529 -msgid "Blacklisted keywords" -msgstr "Palavras-chave na Lista Negra" - -#: ../../mod/contacts.php:529 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "Lista 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:580 -msgid "Suggestions" -msgstr "Sugestões" - -#: ../../mod/contacts.php:583 -msgid "Suggest potential friends" -msgstr "Sugerir amigos em potencial" - -#: ../../mod/contacts.php:589 -msgid "Show all contacts" -msgstr "Exibe todos os contatos" - -#: ../../mod/contacts.php:592 -msgid "Unblocked" -msgstr "Desbloquear" - -#: ../../mod/contacts.php:595 -msgid "Only show unblocked contacts" -msgstr "Exibe somente contatos desbloqueados" - -#: ../../mod/contacts.php:599 -msgid "Blocked" -msgstr "Bloqueado" - -#: ../../mod/contacts.php:602 -msgid "Only show blocked contacts" -msgstr "Exibe somente contatos bloqueados" - -#: ../../mod/contacts.php:606 -msgid "Ignored" -msgstr "Ignorados" - -#: ../../mod/contacts.php:609 -msgid "Only show ignored contacts" -msgstr "Exibe somente contatos ignorados" - -#: ../../mod/contacts.php:613 -msgid "Archived" -msgstr "Arquivados" - -#: ../../mod/contacts.php:616 -msgid "Only show archived contacts" -msgstr "Exibe somente contatos arquivados" - -#: ../../mod/contacts.php:620 -msgid "Hidden" -msgstr "Ocultos" - -#: ../../mod/contacts.php:623 -msgid "Only show hidden contacts" -msgstr "Exibe somente contatos ocultos" - -#: ../../mod/contacts.php:671 -msgid "Mutual Friendship" -msgstr "Amizade mútua" - -#: ../../mod/contacts.php:675 -msgid "is a fan of yours" -msgstr "é um fã seu" - -#: ../../mod/contacts.php:679 -msgid "you are a fan of" -msgstr "você é um fã de" - -#: ../../mod/contacts.php:696 ../../mod/nogroup.php:41 +#: mod/nogroup.php:42 mod/contacts.php:945 msgid "Edit contact" msgstr "Editar o contato" -#: ../../mod/contacts.php:722 -msgid "Search your contacts" -msgstr "Pesquisar seus contatos" +#: 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/contacts.php:723 ../../mod/directory.php:61 -msgid "Finding: " -msgstr "Pesquisando: " +#: 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/wall_attach.php:75 -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/match.php:86 +msgid "is interested in:" +msgstr "se interessa por:" -#: ../../mod/wall_attach.php:75 -msgid "Or - did you try to upload an empty file?" -msgstr "Ou - você tentou enviar um arquivo vazio?" +#: mod/match.php:100 +msgid "Profile Match" +msgstr "Correspondência de perfil" -#: ../../mod/wall_attach.php:81 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "O arquivo excedeu o tamanho limite de %d" +#: mod/match.php:107 mod/dirfind.php:240 +msgid "No matches" +msgstr "Nenhuma correspondência" -#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 -msgid "File upload failed." -msgstr "Não foi possível enviar o arquivo." - -#: ../../mod/update_community.php:18 ../../mod/update_network.php:25 -#: ../../mod/update_notes.php:37 ../../mod/update_display.php:22 -#: ../../mod/update_profile.php:41 -msgid "[Embedded content - reload page to view]" -msgstr "[Conteúdo incorporado - recarregue a página para ver]" - -#: ../../mod/uexport.php:77 +#: mod/uexport.php:29 msgid "Export account" msgstr "Exportar conta" -#: ../../mod/uexport.php:77 +#: 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:78 +#: mod/uexport.php:30 msgid "Export all" msgstr "Exportar tudo" -#: ../../mod/uexport.php:78 +#: 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/register.php:90 -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/uexport.php:37 mod/settings.php:95 +msgid "Export personal data" +msgstr "Exportar dados pessoais" -#: ../../mod/register.php:96 +#: 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 "" -"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." +"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/register.php:105 -msgid "Your registration can not be processed." -msgstr "Não foi possível processar o seu registro." - -#: ../../mod/register.php:148 -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:186 ../../mod/uimport.php:50 +#: mod/invite.php:122 +#, php-format 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ã." +"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/register.php:214 +#: mod/invite.php:123 +#, php-format 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'." +"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/register.php:215 +#: mod/invite.php:126 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." +"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/register.php:216 -msgid "Your OpenID (optional): " -msgstr "Seu OpenID (opcional): " +#: mod/invite.php:132 +msgid "Send invitations" +msgstr "Enviar convites." -#: ../../mod/register.php:230 -msgid "Include your profile in member directory?" -msgstr "Incluir o seu perfil no diretório de membros?" +#: mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "Digite os endereços de e-mail, um por linha:" -#: ../../mod/register.php:251 -msgid "Membership on this site is by invitation only." -msgstr "A associação a este site só pode ser feita mediante convite." +#: mod/invite.php:134 mod/wallmessage.php:151 mod/message.php:351 +#: mod/message.php:541 +msgid "Your message:" +msgstr "Sua mensagem:" -#: ../../mod/register.php:252 -msgid "Your invitation ID: " -msgstr "A ID do seu convite: " - -#: ../../mod/register.php:255 ../../mod/admin.php:621 -msgid "Registration" -msgstr "Registro" - -#: ../../mod/register.php:263 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Seu nome completo (ex: José da Silva): " - -#: ../../mod/register.php:264 -msgid "Your Email Address: " -msgstr "Seu endereço de e-mail: " - -#: ../../mod/register.php:265 +#: mod/invite.php:135 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'" +"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/register.php:266 -msgid "Choose a nickname: " -msgstr "Escolha uma identificação: " +#: 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/register.php:275 ../../mod/uimport.php:64 -msgid "Import" -msgstr "Importar" +#: 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/register.php:276 -msgid "Import your profile to this friendica instance" -msgstr "Importa seu perfil desta instância do friendica" +#: 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/oexchange.php:25 -msgid "Post successful." -msgstr "Publicado com sucesso." +#: 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/maintenance.php:5 +#: 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 msgid "System down for maintenance" msgstr "Sistema em manutenção" -#: ../../mod/profile.php:155 ../../mod/display.php:332 +#: mod/profperm.php:19 mod/group.php:72 index.php:396 +msgid "Permission denied" +msgstr "Permissão negada" + +#: mod/profperm.php:25 mod/profperm.php:56 +msgid "Invalid profile identifier." +msgstr "Identificador de perfil inválido." + +#: mod/profperm.php:102 +msgid "Profile Visibility Editor" +msgstr "Editor de visibilidade do 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/profperm.php:115 +msgid "Visible To" +msgstr "Visível para" + +#: 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/profile.php:180 +#: 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/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Bemvindo ao Friendica" + +#: mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Dicas para os novos membros" + +#: 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 "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." + +#: mod/newmember.php:14 +msgid "Getting Started" +msgstr "Do Início" + +#: mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "Passo-a-passo da friendica" + +#: mod/newmember.php:18 +msgid "" +"On your Quick Start page - find a brief introduction to your " +"profile and network tabs, make some new connections, and find some groups to" +" join." +msgstr "Na 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." + +#: mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "Ir para as suas configurações" + +#: 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 "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." + +#: 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 "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 +msgid "Upload Profile Photo" +msgstr "Enviar foto do 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 "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." + +#: mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "Editar seu 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 "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." + +#: mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "Palavras-chave do 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 "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." + +#: mod/newmember.php:44 +msgid "Connecting" +msgstr "Conexões" + +#: mod/newmember.php:51 +msgid "Importing Emails" +msgstr "Importação de e-mails" + +#: 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 "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" + +#: mod/newmember.php:53 +msgid "Go to Your Contacts Page" +msgstr "Ir para a sua página de contatos" + +#: 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 "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." + +#: mod/newmember.php:55 +msgid "Go to Your Site's Directory" +msgstr "Ir para o diretório do seu site" + +#: 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 "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." + +#: mod/newmember.php:57 +msgid "Finding New People" +msgstr "Pesquisar por novas pessoas" + +#: 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 "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." + +#: mod/newmember.php:65 +msgid "Group Your Contacts" +msgstr "Agrupe seus contatos" + +#: 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 "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." + +#: mod/newmember.php:68 +msgid "Why Aren't My Posts Public?" +msgstr "Por que as minhas publicações não são 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 "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." + +#: mod/newmember.php:73 +msgid "Getting Help" +msgstr "Obtendo ajuda" + +#: mod/newmember.php:77 +msgid "Go to the Help Section" +msgstr "Ir para a seção de ajuda" + +#: mod/newmember.php:77 +msgid "" +"Our help pages may be consulted for detail on other program" +" 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 +msgid "Remove My Account" +msgstr "Remover minha conta" + +#: mod/removeme.php:47 +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 +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/editpost.php:40 +msgid "Edit post" +msgstr "Editar a publicação" + +#: mod/network.php:398 +#, php-format +msgid "Warning: This group contains %s member from an insecure network." +msgid_plural "" +"Warning: This group contains %s members from an insecure network." +msgstr[0] "Aviso: Este grupo contém %s membro de uma rede insegura." +msgstr[1] "Aviso: Este grupo contém %s membros de uma rede insegura." + +#: 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/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 +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/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 +#, 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 +msgid "No recipient selected." +msgstr "Não foi selecionado nenhum destinatário." + +#: mod/wallmessage.php:59 +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 +msgid "Message could not be sent." +msgstr "Não foi possível enviar a mensagem." + +#: mod/wallmessage.php:65 mod/message.php:81 +msgid "Message collection failure." +msgstr "Falha na coleta de mensagens." + +#: mod/wallmessage.php:68 mod/message.php:84 +msgid "Message sent." +msgstr "A mensagem foi enviada." + +#: mod/wallmessage.php:86 mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Nenhum destinatário." + +#: mod/wallmessage.php:142 mod/message.php:341 +msgid "Send Private Message" +msgstr "Enviar mensagem privada" + +#: mod/wallmessage.php:143 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "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 +msgid "To:" +msgstr "Para:" + +#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538 +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 +msgid "Source (bbcode) text:" +msgstr "Texto fonte (bbcode):" + +#: mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Texto fonte (Diaspora) a converter para BBcode:" + +#: mod/babel.php:31 +msgid "Source input: " +msgstr "Entrada fonte:" + +#: mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (HTML puro):" + +#: 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 "Fonte de entrada (formato Diaspora):" + +#: mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: mod/ostatus_subscribe.php:14 +msgid "Subscribing to OStatus contacts" +msgstr "" + +#: mod/ostatus_subscribe.php:25 +msgid "No contact provided." +msgstr "" + +#: mod/ostatus_subscribe.php:30 +msgid "Couldn't fetch information for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:38 +msgid "Couldn't fetch friends for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:65 +msgid "success" +msgstr "sucesso" + +#: mod/ostatus_subscribe.php:67 +msgid "failed" +msgstr "" + +#: mod/ostatus_subscribe.php:69 mod/content.php:792 object/Item.php:245 +msgid "ignored" +msgstr "Ignorado" + +#: 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/profile.php:179 msgid "Tips for New Members" msgstr "Dicas para novos membros" -#: ../../mod/videos.php:115 ../../mod/dfrn_request.php:762 -#: ../../mod/viewcontacts.php:19 ../../mod/photos.php:920 -#: ../../mod/search.php:89 ../../mod/community.php:18 -#: ../../mod/display.php:212 ../../mod/directory.php:33 -msgid "Public access denied." -msgstr "Acesso público negado." +#: mod/message.php:75 +msgid "Unable to locate contact information." +msgstr "Não foi possível localizar informação do contato." -#: ../../mod/videos.php:125 -msgid "No videos selected" -msgstr "Nenhum vídeo selecionado" +#: mod/message.php:215 +msgid "Do you really want to delete this message?" +msgstr "Você realmente deseja deletar essa mensagem?" -#: ../../mod/videos.php:226 ../../mod/photos.php:1031 -msgid "Access to this item is restricted." -msgstr "O acesso a este item é restrito." +#: mod/message.php:235 +msgid "Message deleted." +msgstr "A mensagem foi excluída." -#: ../../mod/videos.php:308 ../../mod/photos.php:1808 -msgid "View Album" -msgstr "Ver álbum" +#: mod/message.php:266 +msgid "Conversation removed." +msgstr "A conversa foi removida." -#: ../../mod/videos.php:317 -msgid "Recent Videos" -msgstr "Vídeos Recentes" +#: mod/message.php:383 +msgid "No messages." +msgstr "Nenhuma mensagem." -#: ../../mod/videos.php:319 -msgid "Upload New Videos" -msgstr "Envie Novos Vídeos" +#: mod/message.php:426 +msgid "Message not available." +msgstr "A mensagem não está disponível." -#: ../../mod/manage.php:106 +#: 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 +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:535 +msgid "Send Reply" +msgstr "Enviar resposta" + +#: mod/message.php:579 +#, php-format +msgid "Unknown sender - %s" +msgstr "Remetente desconhecido - %s" + +#: mod/message.php:581 +#, php-format +msgid "You and %s" +msgstr "Você e %s" + +#: mod/message.php:583 +#, php-format +msgid "%s and You" +msgstr "%s e você" + +#: 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:107 +#: mod/manage.php:140 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "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:108 +#: mod/manage.php:141 msgid "Select an identity to manage: " msgstr "Selecione uma identidade para gerenciar: " -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" -msgstr "O item não foi encontrado" +#: mod/crepair.php:87 +msgid "Contact settings applied." +msgstr "As configurações do contato foram aplicadas." -#: ../../mod/editpost.php:39 -msgid "Edit post" -msgstr "Editar a publicação" +#: mod/crepair.php:89 +msgid "Contact update failed." +msgstr "Não foi possível atualizar o contato." -#: ../../mod/dirfind.php:26 -msgid "People Search" -msgstr "Pesquisar pessoas" +#: 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/dirfind.php:60 ../../mod/match.php:65 -msgid "No matches" -msgstr "Nenhuma correspondência" +#: 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/regmod.php:55 -msgid "Account approved." -msgstr "A conta foi aprovada." +#: 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/regmod.php:92 -#, php-format -msgid "Registration revoked for %s" -msgstr "O registro de %s foi revogado" +#: mod/crepair.php:134 mod/crepair.php:136 +msgid "No mirroring" +msgstr "Nenhum espelhamento" -#: ../../mod/regmod.php:104 -msgid "Please login." -msgstr "Por favor, autentique-se." +#: mod/crepair.php:134 +msgid "Mirror as forwarded posting" +msgstr "Espelhar como postagem encaminhada" -#: ../../mod/dfrn_request.php:95 +#: 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 msgid "This introduction has already been accepted." msgstr "Esta apresentação já foi aceita." -#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518 +#: mod/dfrn_request.php:123 mod/dfrn_request.php:518 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:125 ../../mod/dfrn_request.php:523 +#: mod/dfrn_request.php:128 mod/dfrn_request.php:523 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:127 ../../mod/dfrn_request.php:525 +#: mod/dfrn_request.php:130 mod/dfrn_request.php:525 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:130 ../../mod/dfrn_request.php:528 +#: mod/dfrn_request.php:133 mod/dfrn_request.php:528 #, php-format msgid "%d required parameter was not found at the given location" msgid_plural "%d required parameters were not found at the given location" msgstr[0] "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:172 +#: mod/dfrn_request.php:178 msgid "Introduction complete." msgstr "A apresentação foi finalizada." -#: ../../mod/dfrn_request.php:214 +#: mod/dfrn_request.php:220 msgid "Unrecoverable protocol error." msgstr "Ocorreu um erro irrecuperável de protocolo." -#: ../../mod/dfrn_request.php:242 +#: mod/dfrn_request.php:248 msgid "Profile unavailable." msgstr "O perfil não está disponível." -#: ../../mod/dfrn_request.php:267 +#: mod/dfrn_request.php:273 #, 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:268 +#: mod/dfrn_request.php:274 msgid "Spam protection measures have been invoked." msgstr "As medidas de proteção contra spam foram ativadas." -#: ../../mod/dfrn_request.php:269 +#: mod/dfrn_request.php:275 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:331 +#: mod/dfrn_request.php:337 msgid "Invalid locator" msgstr "Localizador inválido" -#: ../../mod/dfrn_request.php:340 +#: mod/dfrn_request.php:346 msgid "Invalid email address." msgstr "Endereço de e-mail inválido." -#: ../../mod/dfrn_request.php:367 +#: mod/dfrn_request.php:373 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:463 -msgid "Unable to resolve your name at the provided location." -msgstr "Não foi possível encontrar a sua identificação no endereço indicado." - -#: ../../mod/dfrn_request.php:476 +#: mod/dfrn_request.php:476 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:480 #, 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:501 msgid "Invalid profile URL." msgstr "URL de perfil inválida." -#: ../../mod/dfrn_request.php:597 +#: 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 msgid "Your introduction has been sent." msgstr "A sua apresentação foi enviada." -#: ../../mod/dfrn_request.php:650 +#: mod/dfrn_request.php:640 +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 msgid "Please login to confirm introduction." msgstr "Por favor, autentique-se para confirmar a apresentação." -#: ../../mod/dfrn_request.php:660 +#: mod/dfrn_request.php:673 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:671 +#: mod/dfrn_request.php:687 mod/dfrn_request.php:704 +msgid "Confirm" +msgstr "Confirmar" + +#: mod/dfrn_request.php:699 msgid "Hide this contact" msgstr "Ocultar este contato" -#: ../../mod/dfrn_request.php:674 +#: mod/dfrn_request.php:702 #, php-format msgid "Welcome home %s." msgstr "Bem-vindo(a) à sua página pessoal %s." -#: ../../mod/dfrn_request.php:675 +#: mod/dfrn_request.php:703 #, 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:804 +#: mod/dfrn_request.php:832 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:824 +#: mod/dfrn_request.php:853 +#, php-format msgid "" "If you are not yet a member of the free social web, follow this link to find a public" -" Friendica site and join us today." -msgstr "Caso você ainda não seja membro da rede social livre, clique aqui para encontrar um site Friendica público e junte-se à nós." +"href=\"%s/siteinfo\">follow this link to find a public Friendica site and " +"join us today." +msgstr "" -#: ../../mod/dfrn_request.php:827 +#: mod/dfrn_request.php:858 msgid "Friend/Connection Request" msgstr "Solicitação de amizade/conexão" -#: ../../mod/dfrn_request.php:828 +#: mod/dfrn_request.php:859 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:829 -msgid "Please answer the following:" -msgstr "Por favor, entre com as informações solicitadas:" - -#: ../../mod/dfrn_request.php:830 -#, php-format -msgid "Does %s know you?" -msgstr "%s conhece você?" - -#: ../../mod/dfrn_request.php:834 -msgid "Add a personal note:" -msgstr "Adicione uma anotação pessoal:" - -#: ../../mod/dfrn_request.php:837 +#: mod/dfrn_request.php:868 msgid "StatusNet/Federated Social Web" msgstr "StatusNet/Federated Social Web" -#: ../../mod/dfrn_request.php:839 +#: mod/dfrn_request.php:870 #, 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/dfrn_request.php:840 -msgid "Your Identity Address:" -msgstr "Seu endereço de identificação:" +#: mod/content.php:325 object/Item.php:95 +msgid "This entry was edited" +msgstr "Essa entrada foi editada" -#: ../../mod/dfrn_request.php:843 -msgid "Submit Request" -msgstr "Enviar solicitação" - -#: ../../mod/fbrowser.php:113 -msgid "Files" -msgstr "Arquivos" - -#: ../../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/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Você realmente deseja deletar essa sugestão?" - -#: ../../mod/suggest.php:74 -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:92 -msgid "Ignore/Hide" -msgstr "Ignorar/Ocultar" - -#: ../../mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Contatos que não são membros de um grupo" - -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -#: ../../mod/crepair.php:133 ../../mod/dfrn_confirm.php:120 -msgid "Contact not found." -msgstr "O contato não foi encontrado." - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "A sugestão de amigo foi enviada" - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Sugerir amigos" - -#: ../../mod/fsuggest.php:99 +#: mod/content.php:621 object/Item.php:429 #, php-format -msgid "Suggest a friend for %s" -msgstr "Sugerir um amigo para %s" +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d comentário" +msgstr[1] "%d comentários" -#: ../../mod/share.php:44 -msgid "link" -msgstr "ligação" +#: mod/content.php:638 mod/photos.php:1405 object/Item.php:117 +msgid "Private Message" +msgstr "Mensagem privada" -#: ../../mod/viewcontacts.php:41 -msgid "No contacts." -msgstr "Nenhum contato." +#: mod/content.php:702 mod/photos.php:1594 object/Item.php:263 +msgid "I like this (toggle)" +msgstr "Eu gostei disso (alternar)" -#: ../../mod/admin.php:57 +#: 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:104 ../../mod/admin.php:619 +#: mod/admin.php:156 mod/admin.php:925 msgid "Site" msgstr "Site" -#: ../../mod/admin.php:105 ../../mod/admin.php:998 ../../mod/admin.php:1013 +#: mod/admin.php:157 mod/admin.php:869 mod/admin.php:1382 mod/admin.php:1397 msgid "Users" msgstr "Usuários" -#: ../../mod/admin.php:107 ../../mod/admin.php:1323 ../../mod/admin.php:1357 +#: 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:108 +#: 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:123 ../../mod/admin.php:132 ../../mod/admin.php:1444 +#: 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:124 +#: 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:125 +#: mod/admin.php:180 msgid "check webfinger" msgstr "verifica webfinger" -#: ../../mod/admin.php:131 +#: mod/admin.php:187 msgid "Plugin Features" msgstr "Recursos do plugin" -#: ../../mod/admin.php:133 +#: mod/admin.php:189 msgid "diagnostics" msgstr "diagnóstico" -#: ../../mod/admin.php:134 +#: mod/admin.php:190 msgid "User registrations waiting for confirmation" msgstr "Cadastros de novos usuários aguardando confirmação" -#: ../../mod/admin.php:193 ../../mod/admin.php:952 -msgid "Normal Account" -msgstr "Conta normal" +#: 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:194 ../../mod/admin.php:953 -msgid "Soapbox Account" -msgstr "Conta de vitrine" +#: 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:195 ../../mod/admin.php:954 -msgid "Community/Celebrity Account" -msgstr "Conta de comunidade/celebridade" - -#: ../../mod/admin.php:196 ../../mod/admin.php:955 -msgid "Automatic Friend Account" -msgstr "Conta de amigo automático" - -#: ../../mod/admin.php:197 -msgid "Blog Account" -msgstr "Conta de blog" - -#: ../../mod/admin.php:198 -msgid "Private Forum" -msgstr "Fórum privado" - -#: ../../mod/admin.php:217 -msgid "Message queues" -msgstr "Fila de mensagens" - -#: ../../mod/admin.php:222 ../../mod/admin.php:618 ../../mod/admin.php:997 -#: ../../mod/admin.php:1101 ../../mod/admin.php:1154 ../../mod/admin.php:1322 -#: ../../mod/admin.php:1356 ../../mod/admin.php:1443 +#: mod/admin.php: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:223 +#: 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:225 +#: mod/admin.php:463 msgid "Registered users" msgstr "Usuários registrados" -#: ../../mod/admin.php:227 +#: mod/admin.php:465 msgid "Pending registrations" msgstr "Registros pendentes" -#: ../../mod/admin.php:228 +#: mod/admin.php:466 msgid "Version" msgstr "Versão" -#: ../../mod/admin.php:232 +#: mod/admin.php:471 msgid "Active plugins" msgstr "Plugins ativos" -#: ../../mod/admin.php:255 +#: 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:516 +#: 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:562 +#: 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:563 +#: 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:564 +#: mod/admin.php:854 msgid "Global community page" msgstr "Página global da comunidade" -#: ../../mod/admin.php:570 +#: 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:579 +#: 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:602 +#: mod/admin.php:906 msgid "Closed" msgstr "Fechado" -#: ../../mod/admin.php:603 +#: mod/admin.php:907 msgid "Requires approval" msgstr "Requer aprovação" -#: ../../mod/admin.php:604 +#: mod/admin.php:908 msgid "Open" msgstr "Aberto" -#: ../../mod/admin.php:608 +#: 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:609 +#: mod/admin.php:913 msgid "Force all links to use SSL" msgstr "Forçar todos os links a utilizar SSL" -#: ../../mod/admin.php:610 +#: 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:622 +#: 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:623 +#: mod/admin.php:929 msgid "Policies" msgstr "Políticas" -#: ../../mod/admin.php:624 -msgid "Advanced" -msgstr "Avançado" +#: mod/admin.php:931 +msgid "Auto Discovered Contact Directory" +msgstr "" -#: ../../mod/admin.php:625 +#: mod/admin.php:932 msgid "Performance" msgstr "Performance" -#: ../../mod/admin.php:626 +#: 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:629 +#: mod/admin.php:937 msgid "Site name" msgstr "Nome do site" -#: ../../mod/admin.php:630 +#: mod/admin.php:938 msgid "Host name" msgstr "Nome do host" -#: ../../mod/admin.php:631 +#: mod/admin.php:939 msgid "Sender Email" msgstr "enviador de email" -#: ../../mod/admin.php:632 +#: 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:633 +#: mod/admin.php:941 msgid "Shortcut icon" msgstr "ícone de atalho" -#: ../../mod/admin.php:634 +#: 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:635 +#: 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:635 +#: mod/admin.php:943 +#, php-format msgid "" "For public servers: you can add additional information here that will be " -"listed at dir.friendica.com/siteinfo." -msgstr "Para servidores públicos: você pode adicionar informações aqui que serão listadas em dir.friendica.com/siteinfo." +"listed at %s/siteinfo." +msgstr "" -#: ../../mod/admin.php:636 +#: mod/admin.php:944 msgid "System language" msgstr "Idioma do sistema" -#: ../../mod/admin.php:637 +#: mod/admin.php:945 msgid "System theme" msgstr "Tema do sistema" -#: ../../mod/admin.php:637 +#: 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:638 +#: mod/admin.php:946 msgid "Mobile system theme" msgstr "Tema do sistema para dispositivos móveis" -#: ../../mod/admin.php:638 +#: mod/admin.php:946 msgid "Theme for mobile devices" msgstr "Tema para dispositivos móveis" -#: ../../mod/admin.php:639 +#: mod/admin.php:947 msgid "SSL link policy" msgstr "Política de link SSL" -#: ../../mod/admin.php:639 +#: 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:640 +#: mod/admin.php:948 msgid "Force SSL" msgstr "Forçar SSL" -#: ../../mod/admin.php:640 +#: 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:641 +#: mod/admin.php:949 msgid "Old style 'Share'" msgstr "Estilo antigo do 'Compartilhar' " -#: ../../mod/admin.php:641 +#: 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:642 +#: mod/admin.php:950 msgid "Hide help entry from navigation menu" msgstr "Oculta a entrada 'Ajuda' do menu de navegação" -#: ../../mod/admin.php:642 +#: 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:643 +#: mod/admin.php:951 msgid "Single user instance" msgstr "Instância de usuário único" -#: ../../mod/admin.php:643 +#: 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:644 +#: mod/admin.php:952 msgid "Maximum image size" msgstr "Tamanho máximo da imagem" -#: ../../mod/admin.php:644 +#: 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:645 +#: mod/admin.php:953 msgid "Maximum image length" msgstr "Tamanho máximo da imagem" -#: ../../mod/admin.php:645 +#: 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:646 +#: mod/admin.php:954 msgid "JPEG image quality" msgstr "Qualidade da imagem JPEG" -#: ../../mod/admin.php:646 +#: 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:648 +#: mod/admin.php:956 msgid "Register policy" msgstr "Política de registro" -#: ../../mod/admin.php:649 +#: mod/admin.php:957 msgid "Maximum Daily Registrations" msgstr "Registros Diários Máximos" -#: ../../mod/admin.php:649 +#: 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:650 +#: mod/admin.php:958 msgid "Register text" msgstr "Texto de registro" -#: ../../mod/admin.php:650 +#: 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:651 +#: mod/admin.php:959 msgid "Accounts abandoned after x days" msgstr "Contas abandonadas após x dias" -#: ../../mod/admin.php:651 +#: 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:652 +#: mod/admin.php:960 msgid "Allowed friend domains" msgstr "Domínios de amigos permitidos" -#: ../../mod/admin.php:652 +#: 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:653 +#: mod/admin.php:961 msgid "Allowed email domains" msgstr "Domínios de e-mail permitidos" -#: ../../mod/admin.php:653 +#: 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:654 +#: mod/admin.php:962 msgid "Block public" msgstr "Bloquear acesso público" -#: ../../mod/admin.php:654 +#: 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:655 +#: mod/admin.php:963 msgid "Force publish" msgstr "Forçar a listagem" -#: ../../mod/admin.php:655 +#: 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:656 -msgid "Global directory update URL" -msgstr "URL de atualização do diretório global" +#: mod/admin.php:964 +msgid "Global directory URL" +msgstr "" -#: ../../mod/admin.php:656 +#: mod/admin.php:964 msgid "" -"URL to update the global directory. If this is not set, the global directory" -" is completely unavailable to the application." -msgstr "URL para atualizar o diretório global. Se isso não for definido, o diretório global não estará disponível neste site." +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "" -#: ../../mod/admin.php:657 +#: mod/admin.php:965 msgid "Allow threaded items" msgstr "Habilita itens aninhados" -#: ../../mod/admin.php:657 +#: 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:658 +#: 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:658 +#: 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:659 +#: 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:659 +#: 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:660 +#: 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:660 +#: 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:661 +#: mod/admin.php:969 msgid "Don't embed private images in posts" msgstr "Não inclua imagens privadas em publicações" -#: ../../mod/admin.php:661 +#: 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 " @@ -5381,319 +5409,521 @@ msgid "" "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:662 +#: mod/admin.php:970 msgid "Allow Users to set remote_self" msgstr "Permite usuários configurarem remote_self" -#: ../../mod/admin.php:662 +#: 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:663 +#: mod/admin.php:971 msgid "Block multiple registrations" msgstr "Bloquear registros repetidos" -#: ../../mod/admin.php:663 +#: 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:664 +#: mod/admin.php:972 msgid "OpenID support" msgstr "Suporte ao OpenID" -#: ../../mod/admin.php:664 +#: mod/admin.php:972 msgid "OpenID support for registration and logins." msgstr "Suporte ao OpenID para registros e autenticações." -#: ../../mod/admin.php:665 +#: mod/admin.php:973 msgid "Fullname check" msgstr "Verificar nome completo" -#: ../../mod/admin.php:665 +#: 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:666 +#: mod/admin.php:974 msgid "UTF-8 Regular expressions" msgstr "Expressões regulares UTF-8" -#: ../../mod/admin.php:666 +#: mod/admin.php:974 msgid "Use PHP UTF8 regular expressions" msgstr "Use expressões regulares do PHP em UTF8" -#: ../../mod/admin.php:667 +#: mod/admin.php:975 msgid "Community Page Style" msgstr "Estilo da página de comunidade" -#: ../../mod/admin.php:667 +#: 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:668 +#: mod/admin.php:976 msgid "Posts per user on community page" msgstr "Textos por usuário na página da comunidade" -#: ../../mod/admin.php:668 +#: 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:669 +#: mod/admin.php:977 msgid "Enable OStatus support" msgstr "Habilitar suporte ao OStatus" -#: ../../mod/admin.php:669 +#: 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:670 +#: mod/admin.php:978 msgid "OStatus conversation completion interval" msgstr "Intervalo de finalização da conversação OStatus " -#: ../../mod/admin.php:670 +#: 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:671 +#: 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:671 +#: mod/admin.php:983 msgid "Provide built-in Diaspora network compatibility." msgstr "Fornece compatibilidade nativa com a rede Diaspora." -#: ../../mod/admin.php:672 +#: mod/admin.php:984 msgid "Only allow Friendica contacts" msgstr "Permitir somente contatos Friendica" -#: ../../mod/admin.php:672 +#: 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:673 +#: mod/admin.php:985 msgid "Verify SSL" msgstr "Verificar SSL" -#: ../../mod/admin.php:673 +#: 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:674 +#: mod/admin.php:986 msgid "Proxy user" msgstr "Usuário do proxy" -#: ../../mod/admin.php:675 +#: mod/admin.php:987 msgid "Proxy URL" msgstr "URL do proxy" -#: ../../mod/admin.php:676 +#: mod/admin.php:988 msgid "Network timeout" msgstr "Limite de tempo da rede" -#: ../../mod/admin.php:676 +#: 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:677 +#: mod/admin.php:989 msgid "Delivery interval" msgstr "Intervalo de envio" -#: ../../mod/admin.php:677 +#: 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:678 +#: mod/admin.php:990 msgid "Poll interval" msgstr "Intervalo da busca (polling)" -#: ../../mod/admin.php:678 +#: 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:679 +#: mod/admin.php:991 msgid "Maximum Load Average" msgstr "Média de Carga Máxima" -#: ../../mod/admin.php:679 +#: 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:681 +#: 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:681 +#: 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:682 +#: mod/admin.php:1005 msgid "Suppress Language" msgstr "Retira idioma" -#: ../../mod/admin.php:682 +#: 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:683 +#: mod/admin.php:1006 msgid "Suppress Tags" msgstr "Suprime etiquetas" -#: ../../mod/admin.php:683 +#: 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:684 +#: mod/admin.php:1007 msgid "Path to item cache" msgstr "Diretório do cache de item" -#: ../../mod/admin.php:685 +#: 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:685 +#: 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:686 +#: 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:686 +#: 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:687 +#: mod/admin.php:1010 msgid "Path for lock file" msgstr "Diretório do arquivo de trava" -#: ../../mod/admin.php:688 +#: 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:689 +#: 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:690 +#: 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:690 +#: 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:691 +#: mod/admin.php:1014 msgid "Enable old style pager" msgstr "Habilita estilo antigo de paginação" -#: ../../mod/admin.php:691 +#: 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:692 +#: mod/admin.php:1015 msgid "Only search in tags" msgstr "Somente pesquisa nas estiquetas" -#: ../../mod/admin.php:692 +#: 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:694 +#: mod/admin.php:1017 msgid "New base url" msgstr "Nova URL base" -#: ../../mod/admin.php:711 +#: 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:719 +#: 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:722 +#: 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:734 +#: 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:737 +#: mod/admin.php:1080 #, php-format msgid "Update %s was successfully applied." msgstr "A atualização %s foi aplicada com sucesso." -#: ../../mod/admin.php:741 +#: 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:743 +#: 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:762 +#: mod/admin.php:1105 msgid "No failed updates." msgstr "Nenhuma atualização com falha." -#: ../../mod/admin.php:763 +#: mod/admin.php:1106 msgid "Check database structure" msgstr "Verifique a estrutura do banco de dados" -#: ../../mod/admin.php:768 +#: mod/admin.php:1111 msgid "Failed Updates" msgstr "Atualizações com falha" -#: ../../mod/admin.php:769 +#: 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:770 +#: 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:771 +#: mod/admin.php:1114 msgid "Attempt to execute this update step automatically" msgstr "Tentar executar esse passo da atualização automaticamente" -#: ../../mod/admin.php:803 +#: mod/admin.php:1146 #, php-format msgid "" "\n" @@ -5701,7 +5931,7 @@ msgid "" "\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:806 +#: mod/admin.php:1149 #, php-format msgid "" "\n" @@ -5731,2207 +5961,2874 @@ msgid "" "\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:850 +#: 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:857 +#: 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:896 +#: mod/admin.php:1247 #, php-format msgid "User '%s' deleted" msgstr "O usuário '%s' foi excluído" -#: ../../mod/admin.php:904 +#: mod/admin.php:1255 #, php-format msgid "User '%s' unblocked" msgstr "O usuário '%s' foi desbloqueado" -#: ../../mod/admin.php:904 +#: mod/admin.php:1255 #, php-format msgid "User '%s' blocked" msgstr "O usuário '%s' foi bloqueado" -#: ../../mod/admin.php:999 -msgid "Add User" -msgstr "Adicionar usuário" - -#: ../../mod/admin.php:1000 -msgid "select all" -msgstr "selecionar todos" - -#: ../../mod/admin.php:1001 -msgid "User registrations waiting for confirm" -msgstr "Registros de usuário aguardando confirmação" - -#: ../../mod/admin.php:1002 -msgid "User waiting for permanent deletion" -msgstr "Usuário aguardando por fim permanente da conta." - -#: ../../mod/admin.php:1003 -msgid "Request date" -msgstr "Solicitar data" - -#: ../../mod/admin.php:1004 -msgid "No registrations." -msgstr "Nenhum registro." - -#: ../../mod/admin.php:1006 -msgid "Deny" -msgstr "Negar" - -#: ../../mod/admin.php:1010 -msgid "Site admin" -msgstr "Administração do site" - -#: ../../mod/admin.php:1011 -msgid "Account expired" -msgstr "Conta expirou" - -#: ../../mod/admin.php:1014 -msgid "New User" -msgstr "Novo usuário" - -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 +#: mod/admin.php:1374 mod/admin.php:1399 msgid "Register date" msgstr "Data de registro" -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 +#: mod/admin.php:1374 mod/admin.php:1399 msgid "Last login" msgstr "Última entrada" -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 +#: mod/admin.php:1374 mod/admin.php:1399 msgid "Last item" msgstr "Último item" -#: ../../mod/admin.php:1015 +#: 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:1018 +#: 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:1019 +#: 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:1029 +#: mod/admin.php:1415 msgid "Name of the new user." -msgstr "Nome do novo usuários." +msgstr "Nome do novo usuário." -#: ../../mod/admin.php:1030 +#: mod/admin.php:1416 msgid "Nickname" msgstr "Apelido" -#: ../../mod/admin.php:1030 +#: mod/admin.php:1416 msgid "Nickname of the new user." msgstr "Apelido para o novo usuário." -#: ../../mod/admin.php:1031 +#: mod/admin.php:1417 msgid "Email address of the new user." msgstr "Endereço de e-mail do novo usuário." -#: ../../mod/admin.php:1064 +#: mod/admin.php:1460 #, php-format msgid "Plugin %s disabled." msgstr "O plugin %s foi desabilitado." -#: ../../mod/admin.php:1068 +#: mod/admin.php:1464 #, php-format msgid "Plugin %s enabled." msgstr "O plugin %s foi habilitado." -#: ../../mod/admin.php:1078 ../../mod/admin.php:1294 +#: mod/admin.php:1475 mod/admin.php:1711 msgid "Disable" msgstr "Desabilitar" -#: ../../mod/admin.php:1080 ../../mod/admin.php:1296 +#: mod/admin.php:1477 mod/admin.php:1713 msgid "Enable" msgstr "Habilitar" -#: ../../mod/admin.php:1103 ../../mod/admin.php:1324 +#: mod/admin.php:1500 mod/admin.php:1758 msgid "Toggle" msgstr "Alternar" -#: ../../mod/admin.php:1111 ../../mod/admin.php:1334 +#: mod/admin.php:1508 mod/admin.php:1767 msgid "Author: " msgstr "Autor: " -#: ../../mod/admin.php:1112 ../../mod/admin.php:1335 +#: mod/admin.php:1509 mod/admin.php:1768 msgid "Maintainer: " msgstr "Mantenedor: " -#: ../../mod/admin.php:1254 +#: 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:1316 +#: mod/admin.php:1749 msgid "Screenshot" msgstr "Captura de tela" -#: ../../mod/admin.php:1362 +#: 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:1363 +#: mod/admin.php:1816 msgid "[Unsupported]" msgstr "[Não suportado]" -#: ../../mod/admin.php:1390 +#: mod/admin.php:1840 msgid "Log settings updated." msgstr "As configurações de relatórios foram atualizadas." -#: ../../mod/admin.php:1446 +#: mod/admin.php:1877 msgid "Clear" msgstr "Limpar" -#: ../../mod/admin.php:1452 +#: mod/admin.php:1882 msgid "Enable Debugging" -msgstr "Habilitar Debugging" +msgstr "Habilitar depuração" -#: ../../mod/admin.php:1453 +#: mod/admin.php:1883 msgid "Log file" msgstr "Arquivo do relatório" -#: ../../mod/admin.php:1453 +#: 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:1454 +#: mod/admin.php:1884 msgid "Log level" msgstr "Nível do relatório" -#: ../../mod/admin.php:1504 -msgid "Close" -msgstr "Fechar" +#: mod/admin.php:1887 +msgid "PHP logging" +msgstr "" -#: ../../mod/admin.php:1510 -msgid "FTP Host" -msgstr "Endereço do FTP" - -#: ../../mod/admin.php:1511 -msgid "FTP Path" -msgstr "Caminho do FTP" - -#: ../../mod/admin.php:1512 -msgid "FTP User" -msgstr "Usuário do FTP" - -#: ../../mod/admin.php:1513 -msgid "FTP Password" -msgstr "Senha do FTP" - -#: ../../mod/wall_upload.php:122 ../../mod/profile_photo.php:144 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "A imagem excede o limite de tamanho de %d" - -#: ../../mod/wall_upload.php:144 ../../mod/photos.php:807 -#: ../../mod/profile_photo.php:153 -msgid "Unable to process image." -msgstr "Não foi possível processar a imagem." - -#: ../../mod/wall_upload.php:172 ../../mod/photos.php:834 -#: ../../mod/profile_photo.php:301 -msgid "Image upload failed." -msgstr "Não foi possível enviar a imagem." - -#: ../../mod/home.php:35 -#, php-format -msgid "Welcome to %s" -msgstr "Bem-vindo(a) a %s" - -#: ../../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:53 +#: mod/admin.php:1888 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." +"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/network.php:142 -msgid "Search Results For:" -msgstr "Resultados de Busca Por:" +#: mod/admin.php:2014 mod/admin.php:2015 mod/settings.php:763 +msgid "Off" +msgstr "Off" -#: ../../mod/network.php:185 ../../mod/search.php:21 -msgid "Remove term" -msgstr "Remover o termo" +#: mod/admin.php:2014 mod/admin.php:2015 mod/settings.php:763 +msgid "On" +msgstr "On" -#: ../../mod/network.php:356 -msgid "Commented Order" -msgstr "Ordem dos comentários" - -#: ../../mod/network.php:359 -msgid "Sort by Comment Date" -msgstr "Ordenar pela data do comentário" - -#: ../../mod/network.php:362 -msgid "Posted Order" -msgstr "Ordem das publicações" - -#: ../../mod/network.php:365 -msgid "Sort by Post Date" -msgstr "Ordenar pela data de publicação" - -#: ../../mod/network.php:374 -msgid "Posts that mention or involve you" -msgstr "Publicações que mencionem ou envolvam você" - -#: ../../mod/network.php:380 -msgid "New" -msgstr "Nova" - -#: ../../mod/network.php:383 -msgid "Activity Stream - by date" -msgstr "Fluxo de atividades - por data" - -#: ../../mod/network.php:389 -msgid "Shared Links" -msgstr "Links compartilhados" - -#: ../../mod/network.php:392 -msgid "Interesting Links" -msgstr "Links interessantes" - -#: ../../mod/network.php:398 -msgid "Starred" -msgstr "Destacada" - -#: ../../mod/network.php:401 -msgid "Favourite Posts" -msgstr "Publicações favoritas" - -#: ../../mod/network.php:463 +#: mod/admin.php:2015 #, 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 "Lock feature %s" +msgstr "Bloquear funcionalidade %s" -#: ../../mod/network.php:466 -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/admin.php:2023 +msgid "Manage Additional Features" +msgstr "Gerenciar funcionalidades adicionais" -#: ../../mod/network.php:520 ../../mod/content.php:119 -msgid "No such group" -msgstr "Este grupo não existe" - -#: ../../mod/network.php:537 ../../mod/content.php:130 -msgid "Group is empty" -msgstr "O grupo está vazio" - -#: ../../mod/network.php:544 ../../mod/content.php:134 -msgid "Group: " -msgstr "Grupo: " - -#: ../../mod/network.php:554 -msgid "Contact: " -msgstr "Contato: " - -#: ../../mod/network.php:556 -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:561 -msgid "Invalid contact." -msgstr "Contato inválido." - -#: ../../mod/filer.php:30 -msgid "- select -" -msgstr "-selecione-" - -#: ../../mod/friendica.php:59 -msgid "This is Friendica, version" -msgstr "Este é o Friendica, versão" - -#: ../../mod/friendica.php:60 -msgid "running at web location" -msgstr "sendo executado no endereço web" - -#: ../../mod/friendica.php:62 -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:64 -msgid "Bug reports and issues: please visit" -msgstr "Relatos e acompanhamentos de erros podem ser encontrados em" - -#: ../../mod/friendica.php:65 -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:79 -msgid "Installed plugins/addons/apps:" -msgstr "Plugins/complementos/aplicações instaladas:" - -#: ../../mod/friendica.php:92 -msgid "No installed plugins/addons/apps" -msgstr "Nenhum plugin/complemento/aplicativo instalado" - -#: ../../mod/apps.php:11 -msgid "Applications" -msgstr "Aplicativos" - -#: ../../mod/apps.php:14 -msgid "No installed applications." -msgstr "Nenhum aplicativo instalado" - -#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819 -msgid "Upload New Photos" -msgstr "Enviar novas fotos" - -#: ../../mod/photos.php:144 -msgid "Contact information unavailable" -msgstr "A informação de contato não está disponível" - -#: ../../mod/photos.php:165 -msgid "Album not found." -msgstr "O álbum não foi encontrado." - -#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 -msgid "Delete Album" -msgstr "Excluir o álbum" - -#: ../../mod/photos.php:198 -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:278 ../../mod/photos.php:289 ../../mod/photos.php:1515 -msgid "Delete Photo" -msgstr "Excluir a foto" - -#: ../../mod/photos.php:287 -msgid "Do you really want to delete this photo?" -msgstr "Você realmente deseja deletar essa foto?" - -#: ../../mod/photos.php:662 +#: mod/contacts.php:128 #, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s foi marcado em %2$s por %3$s" +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "" +msgstr[1] "" -#: ../../mod/photos.php:662 -msgid "a photo" -msgstr "uma foto" +#: 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/photos.php:767 -msgid "Image exceeds size limit of " -msgstr "A imagem excede o tamanho máximo de " +#: mod/contacts.php:173 +msgid "Could not locate selected profile." +msgstr "Não foi possível localizar o perfil selecionado." -#: ../../mod/photos.php:775 -msgid "Image file is empty." -msgstr "O arquivo de imagem está vazio." +#: mod/contacts.php:206 +msgid "Contact updated." +msgstr "O contato foi atualizado." -#: ../../mod/photos.php:930 -msgid "No photos selected" -msgstr "Não foi selecionada nenhuma foto" +#: mod/contacts.php:389 +msgid "Contact has been blocked" +msgstr "O contato foi bloqueado" -#: ../../mod/photos.php:1094 +#: 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 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." +msgid "You are mutual friends with %s" +msgstr "Você tem uma amizade mútua com %s" -#: ../../mod/photos.php:1129 -msgid "Upload Photos" -msgstr "Enviar fotos" - -#: ../../mod/photos.php:1133 ../../mod/photos.php:1199 -msgid "New album name: " -msgstr "Nome do novo álbum: " - -#: ../../mod/photos.php:1134 -msgid "or existing album name: " -msgstr "ou o nome de um álbum já existente: " - -#: ../../mod/photos.php:1135 -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:1137 ../../mod/photos.php:1510 -msgid "Permissions" -msgstr "Permissões" - -#: ../../mod/photos.php:1148 -msgid "Private Photo" -msgstr "Foto Privada" - -#: ../../mod/photos.php:1149 -msgid "Public Photo" -msgstr "Foto Pública" - -#: ../../mod/photos.php:1212 -msgid "Edit Album" -msgstr "Editar o álbum" - -#: ../../mod/photos.php:1218 -msgid "Show Newest First" -msgstr "Exibir as mais recentes primeiro" - -#: ../../mod/photos.php:1220 -msgid "Show Oldest First" -msgstr "Exibir as mais antigas primeiro" - -#: ../../mod/photos.php:1248 ../../mod/photos.php:1802 -msgid "View Photo" -msgstr "Ver a foto" - -#: ../../mod/photos.php:1294 -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:1296 -msgid "Photo not available" -msgstr "A foto não está disponível" - -#: ../../mod/photos.php:1352 -msgid "View photo" -msgstr "Ver a imagem" - -#: ../../mod/photos.php:1352 -msgid "Edit photo" -msgstr "Editar a foto" - -#: ../../mod/photos.php:1353 -msgid "Use as profile photo" -msgstr "Usar como uma foto de perfil" - -#: ../../mod/photos.php:1378 -msgid "View Full Size" -msgstr "Ver no tamanho real" - -#: ../../mod/photos.php:1457 -msgid "Tags: " -msgstr "Etiquetas: " - -#: ../../mod/photos.php:1460 -msgid "[Remove any tag]" -msgstr "[Remover qualquer etiqueta]" - -#: ../../mod/photos.php:1500 -msgid "Rotate CW (right)" -msgstr "Rotacionar para direita" - -#: ../../mod/photos.php:1501 -msgid "Rotate CCW (left)" -msgstr "Rotacionar para esquerda" - -#: ../../mod/photos.php:1503 -msgid "New album name" -msgstr "Novo nome para o álbum" - -#: ../../mod/photos.php:1506 -msgid "Caption" -msgstr "Legenda" - -#: ../../mod/photos.php:1508 -msgid "Add a Tag" -msgstr "Adicionar uma etiqueta" - -#: ../../mod/photos.php:1512 -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:1521 -msgid "Private photo" -msgstr "Foto privada" - -#: ../../mod/photos.php:1522 -msgid "Public photo" -msgstr "Foto pública" - -#: ../../mod/photos.php:1817 -msgid "Recent Photos" -msgstr "Fotos recentes" - -#: ../../mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "O texto foi criado" - -#: ../../mod/follow.php:27 -msgid "Contact added" -msgstr "O contato foi adicionado" - -#: ../../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 (statusnet/identi.ca) or from Diaspora" -msgstr "Esse recurso é experimental. Nós não podemos importar contatos de uma rede OStatus (statusnet/identi.ca) ou do 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/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "Limite de convites totais excedido." - -#: ../../mod/invite.php:49 +#: mod/contacts.php:502 #, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Não é um endereço de e-mail válido." +msgid "You are sharing with %s" +msgstr "Você está compartilhando com %s" -#: ../../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 +#: mod/contacts.php:507 #, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Não foi possível enviar a mensagem." +msgid "%s is sharing with you" +msgstr "%s está compartilhando com você" -#: ../../mod/invite.php:93 +#: 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 "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d mensagem enviada." -msgstr[1] "%d mensagens enviadas." +msgid "Network type: %s" +msgstr "Tipo de rede: %s" -#: ../../mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "Você não possui mais convites disponíveis" +#: mod/contacts.php:553 +msgid "Communications lost with this contact!" +msgstr "As comunicações com esse contato foram perdidas!" -#: ../../mod/invite.php:120 +#: 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 "" -"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." +"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/invite.php:122 -#, php-format +#: 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 "" -"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." +"Replies/likes to your public posts may still be visible" +msgstr "Respostas/gostadas associados às suas publicações ainda podem estar visíveis" -#: ../../mod/invite.php:123 -#, php-format +#: 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 "" -"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." +"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/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/contacts.php:633 +msgid "Actions" +msgstr "" -#: ../../mod/invite.php:132 -msgid "Send invitations" -msgstr "Enviar convites." +#: mod/contacts.php:636 +msgid "Contact Settings" +msgstr "" -#: ../../mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "Digite os endereços de e-mail, um por linha:" +#: mod/contacts.php:682 +msgid "Suggestions" +msgstr "Sugestões" -#: ../../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/contacts.php:685 +msgid "Suggest potential friends" +msgstr "Sugerir amigos em potencial" -#: ../../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/contacts.php:693 +msgid "Show all contacts" +msgstr "Exibe todos os contatos" -#: ../../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/contacts.php:698 +msgid "Unblocked" +msgstr "Desbloquear" -#: ../../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/contacts.php:701 +msgid "Only show unblocked contacts" +msgstr "Exibe somente contatos desbloqueados" -#: ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Acesso negado." +#: mod/contacts.php:707 +msgid "Blocked" +msgstr "Bloqueado" -#: ../../mod/lostpass.php:19 -msgid "No valid account found." -msgstr "Não foi encontrada nenhuma conta válida." +#: mod/contacts.php:710 +msgid "Only show blocked contacts" +msgstr "Exibe somente contatos bloqueados" -#: ../../mod/lostpass.php:35 -msgid "Password reset request issued. Check your email." -msgstr "A solicitação para reiniciar sua senha foi encaminhada. Verifique seu e-mail." +#: mod/contacts.php:716 +msgid "Ignored" +msgstr "Ignorados" -#: ../../mod/lostpass.php:42 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" -"\t\tpassword. In order to confirm this request, please select the verification link\n" -"\t\tbelow or paste it into your web browser address bar.\n" -"\n" -"\t\tIf you did NOT request this change, please DO NOT follow the link\n" -"\t\tprovided and ignore and/or delete this email.\n" -"\n" -"\t\tYour password will not be changed unless we can verify that you\n" -"\t\tissued this request." -msgstr "\n\t\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/contacts.php:719 +msgid "Only show ignored contacts" +msgstr "Exibe somente contatos ignorados" -#: ../../mod/lostpass.php:53 -#, php-format -msgid "" -"\n" -"\t\tFollow this link to verify your identity:\n" -"\n" -"\t\t%1$s\n" -"\n" -"\t\tYou will then receive a follow-up message containing the new password.\n" -"\t\tYou may change that password from your account settings page after logging in.\n" -"\n" -"\t\tThe login details are as follows:\n" -"\n" -"\t\tSite Location:\t%2$s\n" -"\t\tLogin Name:\t%3$s" -msgstr "\n\t\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/contacts.php:725 +msgid "Archived" +msgstr "Arquivados" -#: ../../mod/lostpass.php:72 -#, php-format -msgid "Password reset requested at %s" -msgstr "Foi feita uma solicitação de reiniciação da senha em %s" +#: mod/contacts.php:728 +msgid "Only show archived contacts" +msgstr "Exibe somente contatos arquivados" -#: ../../mod/lostpass.php:92 -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/contacts.php:734 +msgid "Hidden" +msgstr "Ocultos" -#: ../../mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "Sua senha foi reiniciada, conforme solicitado." +#: mod/contacts.php:737 +msgid "Only show hidden contacts" +msgstr "Exibe somente contatos ocultos" -#: ../../mod/lostpass.php:111 -msgid "Your new password is" -msgstr "Sua nova senha é" +#: mod/contacts.php:794 +msgid "Search your contacts" +msgstr "Pesquisar seus contatos" -#: ../../mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "Grave ou copie a sua nova senha e, então" +#: mod/contacts.php:802 mod/settings.php:158 mod/settings.php:689 +msgid "Update" +msgstr "Atualizar" -#: ../../mod/lostpass.php:113 -msgid "click here to login" -msgstr "clique aqui para entrar" +#: mod/contacts.php:805 mod/contacts.php:1013 +msgid "Archive" +msgstr "Arquivar" -#: ../../mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Sua senha pode ser alterada na página de Configurações após você entrar em seu perfil." +#: mod/contacts.php:805 mod/contacts.php:1013 +msgid "Unarchive" +msgstr "Desarquivar" -#: ../../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\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" +#: mod/contacts.php:808 +msgid "Batch Actions" +msgstr "" -#: ../../mod/lostpass.php:131 -#, php-format -msgid "" -"\n" -"\t\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\t\tSite Location:\t%1$s\n" -"\t\t\t\tLogin Name:\t%2$s\n" -"\t\t\t\tPassword:\t%3$s\n" -"\n" -"\t\t\t\tYou may change that password from your account settings page after logging in.\n" -"\t\t\t" -msgstr "\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" +#: mod/contacts.php:854 +msgid "View all contacts" +msgstr "Ver todos os contatos" -#: ../../mod/lostpass.php:147 -#, php-format -msgid "Your password has been changed at %s" -msgstr "Sua senha foi modifica às %s" +#: mod/contacts.php:864 +msgid "View all common friends" +msgstr "" -#: ../../mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "Esqueceu a sua senha?" +#: mod/contacts.php:871 +msgid "Advanced Contact Settings" +msgstr "Configurações avançadas do contato" -#: ../../mod/lostpass.php:160 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"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/contacts.php:916 +msgid "Mutual Friendship" +msgstr "Amizade mútua" -#: ../../mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "Identificação ou e-mail: " +#: mod/contacts.php:920 +msgid "is a fan of yours" +msgstr "é um fã seu" -#: ../../mod/lostpass.php:162 -msgid "Reset" -msgstr "Reiniciar" +#: mod/contacts.php:924 +msgid "you are a fan of" +msgstr "você é um fã de" -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Texto fonte (bbcode):" +#: mod/contacts.php:999 +msgid "Toggle Blocked status" +msgstr "Alternar o status de bloqueio" -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Texto fonte (Diaspora) a converter para BBcode:" +#: mod/contacts.php:1007 +msgid "Toggle Ignored status" +msgstr "Alternar o status de ignorado" -#: ../../mod/babel.php:31 -msgid "Source input: " -msgstr "Entrada fonte:" +#: mod/contacts.php:1015 +msgid "Toggle Archive status" +msgstr "Alternar o status de arquivamento" -#: ../../mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (HTML puro):" +#: mod/contacts.php:1023 +msgid "Delete contact" +msgstr "Excluir o contato" -#: ../../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 "Fonte de entrada (formato Diaspora):" - -#: ../../mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " - -#: ../../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/removeme.php:46 ../../mod/removeme.php:49 -msgid "Remove My Account" -msgstr "Remover minha conta" - -#: ../../mod/removeme.php:47 -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 -msgid "Please enter your password for verification:" -msgstr "Por favor, digite a sua senha para verificação:" - -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "Identificador de perfil inválido." - -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "Editor de visibilidade do perfil" - -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "Visível para" - -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "Todos os contatos (com acesso a perfil seguro)" - -#: ../../mod/match.php:12 -msgid "Profile Match" -msgstr "Correspondência de perfil" - -#: ../../mod/match.php:20 -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:57 -msgid "is interested in:" -msgstr "se interessa por:" - -#: ../../mod/events.php:66 -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:291 -msgid "l, F j" -msgstr "l, F j" - -#: ../../mod/events.php:313 -msgid "Edit event" -msgstr "Editar o evento" - -#: ../../mod/events.php:371 -msgid "Create New Event" -msgstr "Criar um novo evento" - -#: ../../mod/events.php:372 -msgid "Previous" -msgstr "Anterior" - -#: ../../mod/events.php:373 ../../mod/install.php:207 -msgid "Next" -msgstr "Próximo" - -#: ../../mod/events.php:446 -msgid "hour:minute" -msgstr "hora:minuto" - -#: ../../mod/events.php:456 -msgid "Event details" -msgstr "Detalhes do evento" - -#: ../../mod/events.php:457 -#, php-format -msgid "Format is %s %s. Starting date and Title are required." -msgstr "O formato é %s %s. O título e a data de início são obrigatórios." - -#: ../../mod/events.php:459 -msgid "Event Starts:" -msgstr "Início do evento:" - -#: ../../mod/events.php:459 ../../mod/events.php:473 -msgid "Required" -msgstr "Obrigatório" - -#: ../../mod/events.php:462 -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:464 -msgid "Event Finishes:" -msgstr "Término do evento:" - -#: ../../mod/events.php:467 -msgid "Adjust for viewer timezone" -msgstr "Ajustar para o fuso horário do visualizador" - -#: ../../mod/events.php:469 -msgid "Description:" -msgstr "Descrição:" - -#: ../../mod/events.php:473 -msgid "Title:" -msgstr "Título:" - -#: ../../mod/events.php:475 -msgid "Share this event" -msgstr "Compartilhar este evento" - -#: ../../mod/ping.php:240 -msgid "{0} wants to be your friend" -msgstr "{0} deseja ser seu amigo" - -#: ../../mod/ping.php:245 -msgid "{0} sent you a message" -msgstr "{0} lhe enviou uma mensagem" - -#: ../../mod/ping.php:250 -msgid "{0} requested registration" -msgstr "{0} solicitou registro" - -#: ../../mod/ping.php:256 -#, php-format -msgid "{0} commented %s's post" -msgstr "{0} comentou a publicação de %s" - -#: ../../mod/ping.php:261 -#, php-format -msgid "{0} liked %s's post" -msgstr "{0} gostou da publicação de %s" - -#: ../../mod/ping.php:266 -#, php-format -msgid "{0} disliked %s's post" -msgstr "{0} desgostou da publicação de %s" - -#: ../../mod/ping.php:271 -#, php-format -msgid "{0} is now friends with %s" -msgstr "{0} agora é amigo de %s" - -#: ../../mod/ping.php:276 -msgid "{0} posted" -msgstr "{0} publicou" - -#: ../../mod/ping.php:281 -#, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} etiquetou a publicação de %s com #%s" - -#: ../../mod/ping.php:287 -msgid "{0} mentioned you in a post" -msgstr "{0} mencionou você em uma publicação" - -#: ../../mod/mood.php:133 -msgid "Mood" -msgstr "Humor" - -#: ../../mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Defina o seu humor e conte aos seus amigos" - -#: ../../mod/search.php:174 ../../mod/community.php:62 -#: ../../mod/community.php:71 -msgid "No results." -msgstr "Nenhum resultado." - -#: ../../mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "Não foi possível localizar informação do contato." - -#: ../../mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "Você realmente deseja deletar essa mensagem?" - -#: ../../mod/message.php:227 -msgid "Message deleted." -msgstr "A mensagem foi excluída." - -#: ../../mod/message.php:258 -msgid "Conversation removed." -msgstr "A conversa foi removida." - -#: ../../mod/message.php:371 -msgid "No messages." -msgstr "Nenhuma mensagem." - -#: ../../mod/message.php:378 -#, php-format -msgid "Unknown sender - %s" -msgstr "Remetente desconhecido - %s" - -#: ../../mod/message.php:381 -#, php-format -msgid "You and %s" -msgstr "Você e %s" - -#: ../../mod/message.php:384 -#, php-format -msgid "%s and You" -msgstr "%s e você" - -#: ../../mod/message.php:405 ../../mod/message.php:546 -msgid "Delete conversation" -msgstr "Excluir conversa" - -#: ../../mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: ../../mod/message.php:411 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d mensagem" -msgstr[1] "%d mensagens" - -#: ../../mod/message.php:450 -msgid "Message not available." -msgstr "A mensagem não está disponível." - -#: ../../mod/message.php:520 -msgid "Delete message" -msgstr "Excluir a mensagem" - -#: ../../mod/message.php:548 -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:552 -msgid "Send Reply" -msgstr "Enviar resposta" - -#: ../../mod/community.php:23 -msgid "Not available." -msgstr "Não disponível." - -#: ../../mod/profiles.php:18 ../../mod/profiles.php:133 -#: ../../mod/profiles.php:179 ../../mod/profiles.php:630 -#: ../../mod/dfrn_confirm.php:64 +#: 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/profiles.php:37 -msgid "Profile deleted." -msgstr "O perfil foi excluído." - -#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 -msgid "Profile-" -msgstr "Perfil-" - -#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 -msgid "New profile created." -msgstr "O novo perfil foi criado." - -#: ../../mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "O perfil não está disponível para clonagem." - -#: ../../mod/profiles.php:189 -msgid "Profile Name is required." -msgstr "É necessário informar o nome do perfil." - -#: ../../mod/profiles.php:340 -msgid "Marital Status" -msgstr "Situação amorosa" - -#: ../../mod/profiles.php:344 -msgid "Romantic Partner" -msgstr "Parceiro romântico" - -#: ../../mod/profiles.php:348 -msgid "Likes" -msgstr "Gosta de" - -#: ../../mod/profiles.php:352 -msgid "Dislikes" -msgstr "Não gosta de" - -#: ../../mod/profiles.php:356 -msgid "Work/Employment" -msgstr "Trabalho/emprego" - -#: ../../mod/profiles.php:359 -msgid "Religion" -msgstr "Religião" - -#: ../../mod/profiles.php:363 -msgid "Political Views" -msgstr "Posicionamento político" - -#: ../../mod/profiles.php:367 -msgid "Gender" -msgstr "Gênero" - -#: ../../mod/profiles.php:371 -msgid "Sexual Preference" -msgstr "Preferência sexual" - -#: ../../mod/profiles.php:375 -msgid "Homepage" -msgstr "Página Principal" - -#: ../../mod/profiles.php:379 ../../mod/profiles.php:698 -msgid "Interests" -msgstr "Interesses" - -#: ../../mod/profiles.php:383 -msgid "Address" -msgstr "Endereço" - -#: ../../mod/profiles.php:390 ../../mod/profiles.php:694 -msgid "Location" -msgstr "Localização" - -#: ../../mod/profiles.php:473 -msgid "Profile updated." -msgstr "O perfil foi atualizado." - -#: ../../mod/profiles.php:568 -msgid " and " -msgstr " e " - -#: ../../mod/profiles.php:576 -msgid "public profile" -msgstr "perfil público" - -#: ../../mod/profiles.php:579 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s mudou %2$s para “%3$s”" - -#: ../../mod/profiles.php:580 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr " - Visite %2$s de %1$s" - -#: ../../mod/profiles.php:583 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s foi atualizado %2$s, mudando %3$s." - -#: ../../mod/profiles.php:658 -msgid "Hide contacts and friends:" -msgstr "Esconder contatos e amigos:" - -#: ../../mod/profiles.php:663 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Ocultar sua lista de contatos/amigos dos visitantes no seu perfil?" - -#: ../../mod/profiles.php:685 -msgid "Edit Profile Details" -msgstr "Editar os detalhes do perfil" - -#: ../../mod/profiles.php:687 -msgid "Change Profile Photo" -msgstr "Mudar Foto do Perfil" - -#: ../../mod/profiles.php:688 -msgid "View this profile" -msgstr "Ver este perfil" - -#: ../../mod/profiles.php:689 -msgid "Create a new profile using these settings" -msgstr "Criar um novo perfil usando estas configurações" - -#: ../../mod/profiles.php:690 -msgid "Clone this profile" -msgstr "Clonar este perfil" - -#: ../../mod/profiles.php:691 -msgid "Delete this profile" -msgstr "Excluir este perfil" - -#: ../../mod/profiles.php:692 -msgid "Basic information" -msgstr "Informação básica" - -#: ../../mod/profiles.php:693 -msgid "Profile picture" -msgstr "Foto do perfil" - -#: ../../mod/profiles.php:695 -msgid "Preferences" -msgstr "Preferências" - -#: ../../mod/profiles.php:696 -msgid "Status information" -msgstr "Informação de Status" - -#: ../../mod/profiles.php:697 -msgid "Additional information" -msgstr "Informações adicionais" - -#: ../../mod/profiles.php:699 ../../mod/newmember.php:36 -#: ../../mod/profile_photo.php:244 -msgid "Upload Profile Photo" -msgstr "Enviar foto do perfil" - -#: ../../mod/profiles.php:700 -msgid "Profile Name:" -msgstr "Nome do perfil:" - -#: ../../mod/profiles.php:701 -msgid "Your Full Name:" -msgstr "Seu nome completo:" - -#: ../../mod/profiles.php:702 -msgid "Title/Description:" -msgstr "Título/Descrição:" - -#: ../../mod/profiles.php:703 -msgid "Your Gender:" -msgstr "Seu gênero:" - -#: ../../mod/profiles.php:704 -#, php-format -msgid "Birthday (%s):" -msgstr "Aniversário (%s):" - -#: ../../mod/profiles.php:705 -msgid "Street Address:" -msgstr "Endereço:" - -#: ../../mod/profiles.php:706 -msgid "Locality/City:" -msgstr "Localidade/Cidade:" - -#: ../../mod/profiles.php:707 -msgid "Postal/Zip Code:" -msgstr "CEP:" - -#: ../../mod/profiles.php:708 -msgid "Country:" -msgstr "País:" - -#: ../../mod/profiles.php:709 -msgid "Region/State:" -msgstr "Região/Estado:" - -#: ../../mod/profiles.php:710 -msgid " Marital Status:" -msgstr " Situação amorosa:" - -#: ../../mod/profiles.php:711 -msgid "Who: (if applicable)" -msgstr "Quem: (se pertinente)" - -#: ../../mod/profiles.php:712 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Exemplos: fulano123, Fulano de Tal, fulano@exemplo.com" - -#: ../../mod/profiles.php:713 -msgid "Since [date]:" -msgstr "Desde [data]:" - -#: ../../mod/profiles.php:715 -msgid "Homepage URL:" -msgstr "Endereço do site web:" - -#: ../../mod/profiles.php:718 -msgid "Religious Views:" -msgstr "Orientação religiosa:" - -#: ../../mod/profiles.php:719 -msgid "Public Keywords:" -msgstr "Palavras-chave públicas:" - -#: ../../mod/profiles.php:720 -msgid "Private Keywords:" -msgstr "Palavras-chave privadas:" - -#: ../../mod/profiles.php:723 -msgid "Example: fishing photography software" -msgstr "Exemplo: pesca fotografia software" - -#: ../../mod/profiles.php:724 -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:725 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Usado na pesquisa de perfis, nunca é exibido para os outros)" - -#: ../../mod/profiles.php:726 -msgid "Tell us about yourself..." -msgstr "Fale um pouco sobre você..." - -#: ../../mod/profiles.php:727 -msgid "Hobbies/Interests" -msgstr "Passatempos/Interesses" - -#: ../../mod/profiles.php:728 -msgid "Contact information and Social Networks" -msgstr "Informações de contato e redes sociais" - -#: ../../mod/profiles.php:729 -msgid "Musical interests" -msgstr "Preferências musicais" - -#: ../../mod/profiles.php:730 -msgid "Books, literature" -msgstr "Livros, literatura" - -#: ../../mod/profiles.php:731 -msgid "Television" -msgstr "Televisão" - -#: ../../mod/profiles.php:732 -msgid "Film/dance/culture/entertainment" -msgstr "Filme/dança/cultura/entretenimento" - -#: ../../mod/profiles.php:733 -msgid "Love/romance" -msgstr "Amor/romance" - -#: ../../mod/profiles.php:734 -msgid "Work/employment" -msgstr "Trabalho/emprego" - -#: ../../mod/profiles.php:735 -msgid "School/education" -msgstr "Escola/educação" - -#: ../../mod/profiles.php:740 -msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." -msgstr "Este é o seu perfil público.
Ele pode estar visível para qualquer um que acesse a Internet." - -#: ../../mod/profiles.php:750 ../../mod/directory.php:113 -msgid "Age: " -msgstr "Idade: " - -#: ../../mod/profiles.php:803 -msgid "Edit/Manage Profiles" -msgstr "Editar/Gerenciar perfis" - -#: ../../mod/install.php:117 -msgid "Friendica Communications Server - Setup" -msgstr "Servidor de Comunicações Friendica - Configuração" - -#: ../../mod/install.php:123 -msgid "Could not connect to database." -msgstr "Não foi possível conectar ao banco de dados." - -#: ../../mod/install.php:127 -msgid "Could not create table." -msgstr "Não foi possível criar tabela." - -#: ../../mod/install.php:133 -msgid "Your Friendica site database has been installed." -msgstr "O banco de dados do seu site Friendica foi instalado." - -#: ../../mod/install.php:138 -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:139 ../../mod/install.php:206 -#: ../../mod/install.php:525 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Por favor, dê uma olhada no arquivo \"INSTALL.TXT\"." - -#: ../../mod/install.php:203 -msgid "System check" -msgstr "Checagem do sistema" - -#: ../../mod/install.php:208 -msgid "Check again" -msgstr "Checar novamente" - -#: ../../mod/install.php:227 -msgid "Database connection" -msgstr "Conexão de banco de dados" - -#: ../../mod/install.php:228 -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:229 -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:230 -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:234 -msgid "Database Server Name" -msgstr "Nome do servidor de banco de dados" - -#: ../../mod/install.php:235 -msgid "Database Login Name" -msgstr "Nome do usuário do banco de dados" - -#: ../../mod/install.php:236 -msgid "Database Login Password" -msgstr "Senha do usuário do banco de dados" - -#: ../../mod/install.php:237 -msgid "Database Name" -msgstr "Nome do banco de dados" - -#: ../../mod/install.php:238 ../../mod/install.php:277 -msgid "Site administrator email address" -msgstr "Endereço de email do administrador do site" - -#: ../../mod/install.php:238 ../../mod/install.php:277 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "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:242 ../../mod/install.php:280 -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:267 -msgid "Site settings" -msgstr "Configurações do site" - -#: ../../mod/install.php:321 -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:322 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron. See 'Activating scheduled tasks'" -msgstr "Caso você não tenha uma versão de linha de comando do PHP instalado no seu servidor, você não será capaz de executar a captação em segundo plano. Dê uma olhada em 'Activating scheduled tasks'" - -#: ../../mod/install.php:326 -msgid "PHP executable path" -msgstr "Caminho para o executável do PhP" - -#: ../../mod/install.php:326 -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:331 -msgid "Command line PHP" -msgstr "PHP em linha de comando" - -#: ../../mod/install.php:340 -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:341 -msgid "Found PHP version: " -msgstr "Encontrado PHP versão:" - -#: ../../mod/install.php:343 -msgid "PHP cli binary" -msgstr "Binário cli do PHP" - -#: ../../mod/install.php:354 -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:355 -msgid "This is required for message delivery to work." -msgstr "Isto é necessário para o funcionamento do envio de mensagens." - -#: ../../mod/install.php:357 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: ../../mod/install.php:378 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Erro: a função \"openssl_pkey_new\" no seu sistema não é capaz de gerar as chaves de criptografia" - -#: ../../mod/install.php:379 -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:381 -msgid "Generate encryption keys" -msgstr "Gerar chaves de encriptação" - -#: ../../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 GD graphics" - -#: ../../mod/install.php:390 -msgid "OpenSSL PHP module" -msgstr "Módulo PHP OpenSSL" - -#: ../../mod/install.php:391 -msgid "mysqli PHP module" -msgstr "Módulo PHP mysqli" - -#: ../../mod/install.php:392 -msgid "mb_string PHP module" -msgstr "Módulo PHP mb_string " - -#: ../../mod/install.php:397 ../../mod/install.php:399 -msgid "Apache mod_rewrite module" -msgstr "Módulo mod_rewrite do Apache" - -#: ../../mod/install.php:397 -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:405 -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:409 -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:413 -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:417 -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:421 -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:438 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "O instalador web precisa criar um arquivo chamado \".htconfig.php\" na pasta raiz da instalação e não está conseguindo." - -#: ../../mod/install.php:439 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "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:440 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "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:441 -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:444 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php tem permissão de escrita" - -#: ../../mod/install.php:454 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Friendica usa o engine de template Smarty3 para renderizar suas web views. Smarty3 compila templates para PHP para acelerar a renderização." - -#: ../../mod/install.php:455 -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory view/smarty3/ under the Friendica top level " -"folder." -msgstr "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:456 -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:457 -msgid "" -"Note: as a security measure, you should give the web server write access to " -"view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "Nota: 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:460 -msgid "view/smarty3 is writable" -msgstr "view/smarty3 tem escrita permitida" - -#: ../../mod/install.php:472 -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:474 -msgid "Url rewrite is working" -msgstr "A reescrita de URLs está funcionando" - -#: ../../mod/install.php:484 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "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:523 -msgid "

What next

" -msgstr "

A seguir

" - -#: ../../mod/install.php:524 -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/help.php:31 -msgid "Help:" -msgstr "Ajuda:" - -#: ../../mod/crepair.php:106 -msgid "Contact settings applied." -msgstr "As configurações do contato foram aplicadas." - -#: ../../mod/crepair.php:108 -msgid "Contact update failed." -msgstr "Não foi possível atualizar o contato." - -#: ../../mod/crepair.php:139 -msgid "Repair Contact Settings" -msgstr "Corrigir configurações do contato" - -#: ../../mod/crepair.php:141 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "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:142 -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:148 -msgid "Return to contact editor" -msgstr "Voltar ao editor de contatos" - -#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 -msgid "No mirroring" -msgstr "Nenhum espelhamento" - -#: ../../mod/crepair.php:159 -msgid "Mirror as forwarded posting" -msgstr "Espelhar como postagem encaminhada" - -#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 -msgid "Mirror as my own posting" -msgstr "Espelhar como minha própria postagem" - -#: ../../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/crepair.php:174 -msgid "Remote Self" -msgstr "Auto remoto" - -#: ../../mod/crepair.php:176 -msgid "Mirror postings from this contact" -msgstr "Espelhar publicações deste contato" - -#: ../../mod/crepair.php:176 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "Marcar este contato como auto remoto fará com que o friendica republique novas entradas deste usuário." - -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Bemvindo ao Friendica" - -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Dicas para os novos membros" - -#: ../../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 "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." - -#: ../../mod/newmember.php:14 -msgid "Getting Started" -msgstr "Do Início" - -#: ../../mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "Passo-a-passo da friendica" - -#: ../../mod/newmember.php:18 -msgid "" -"On your Quick Start page - find a brief introduction to your " -"profile and network tabs, make some new connections, and find some groups to" -" join." -msgstr "Na 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." - -#: ../../mod/newmember.php:26 -msgid "Go to Your Settings" -msgstr "Ir para as suas configurações" - -#: ../../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 "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." - -#: ../../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 "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 -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 "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." - -#: ../../mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "Editar seu 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 "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." - -#: ../../mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "Palavras-chave do 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 "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." - -#: ../../mod/newmember.php:44 -msgid "Connecting" -msgstr "Conexões" - -#: ../../mod/newmember.php:49 -msgid "" -"Authorise the Facebook Connector if you currently have a Facebook account " -"and we will (optionally) import all your Facebook friends and conversations." -msgstr "Autorize o Conector com Facebook, caso você tenha uma conta lá e nós (opcionalmente) importaremos todos os seus amigos e conversas do Facebook." - -#: ../../mod/newmember.php:51 -msgid "" -"If this is your own personal server, installing the Facebook addon " -"may ease your transition to the free social web." -msgstr "Se esse é o seu servidor pessoal, instalar o complemento do Facebook talvez facilite a transição para a rede social livre." - -#: ../../mod/newmember.php:56 -msgid "Importing Emails" -msgstr "Importação de e-mails" - -#: ../../mod/newmember.php:56 -msgid "" -"Enter your email access information on your Connector Settings page if you " -"wish to import and interact with friends or mailing lists from your email " -"INBOX" -msgstr "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" - -#: ../../mod/newmember.php:58 -msgid "Go to Your Contacts Page" -msgstr "Ir para a sua página de contatos" - -#: ../../mod/newmember.php:58 -msgid "" -"Your Contacts page is your gateway to managing friendships and connecting " -"with friends on other networks. Typically you enter their address or site " -"URL in the Add New Contact dialog." -msgstr "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." - -#: ../../mod/newmember.php:60 -msgid "Go to Your Site's Directory" -msgstr "Ir para o diretório do seu site" - -#: ../../mod/newmember.php:60 -msgid "" -"The Directory page lets you find other people in this network or other " -"federated sites. Look for a Connect or Follow link on " -"their profile page. Provide your own Identity Address if requested." -msgstr "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." - -#: ../../mod/newmember.php:62 -msgid "Finding New People" -msgstr "Pesquisar por novas pessoas" - -#: ../../mod/newmember.php:62 -msgid "" -"On the side panel of the Contacts page are several tools to find new " -"friends. We can match people by interest, look up people by name or " -"interest, and provide suggestions based on network relationships. On a brand" -" new site, friend suggestions will usually begin to be populated within 24 " -"hours." -msgstr "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." - -#: ../../mod/newmember.php:70 -msgid "Group Your Contacts" -msgstr "Agrupe seus contatos" - -#: ../../mod/newmember.php:70 -msgid "" -"Once you have made some friends, organize them into private conversation " -"groups from the sidebar of your Contacts page and then you can interact with" -" each group privately on your Network page." -msgstr "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." - -#: ../../mod/newmember.php:73 -msgid "Why Aren't My Posts Public?" -msgstr "Por que as minhas publicações não são públicas?" - -#: ../../mod/newmember.php:73 -msgid "" -"Friendica respects your privacy. By default, your posts will only show up to" -" people you've added as friends. For more information, see the help section " -"from the link above." -msgstr "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." - -#: ../../mod/newmember.php:78 -msgid "Getting Help" -msgstr "Obtendo ajuda" - -#: ../../mod/newmember.php:82 -msgid "Go to the Help Section" -msgstr "Ir para a seção de ajuda" - -#: ../../mod/newmember.php:82 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "Nossas páginas de ajuda podem ser consultadas para mais detalhes sobre características e recursos do programa." - -#: ../../mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Cutucar/Incitar" - -#: ../../mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "Cutuca, incita ou faz outras coisas com alguém" - -#: ../../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/display.php:496 -msgid "Item has been removed." -msgstr "O item foi removido." - -#: ../../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/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s dá as boas vinda à %2$s" - -#: ../../mod/dfrn_confirm.php:121 +#: 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:240 +#: 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:249 ../../mod/dfrn_confirm.php:254 +#: 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:263 +#: mod/dfrn_confirm.php:265 msgid "Confirmation completed successfully." msgstr "A confirmação foi completada com sucesso." -#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279 -#: ../../mod/dfrn_confirm.php:286 +#: 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:277 +#: 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:284 +#: 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:429 +#: 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:571 +#: 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:581 +#: 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:592 +#: 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:613 +#: 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:627 +#: 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:647 +#: 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:658 +#: 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:725 +#: 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:797 +#: mod/dfrn_confirm.php:771 #, php-format msgid "%1$s has joined %2$s" msgstr "%1$s se associou a %2$s" -#: ../../mod/item.php:114 +#: mod/dirfind.php:36 +#, php-format +msgid "People Search - %s" +msgstr "" + +#: mod/dirfind.php:47 +#, php-format +msgid "Forum Search - %s" +msgstr "" + +#: mod/events.php:95 mod/events.php:97 +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 +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 +msgid "Create New Event" +msgstr "Criar um novo evento" + +#: mod/events.php:483 +msgid "Event details" +msgstr "Detalhes do evento" + +#: mod/events.php:484 +msgid "Starting date and Title are required." +msgstr "" + +#: mod/events.php:485 mod/events.php:486 +msgid "Event Starts:" +msgstr "Início do evento:" + +#: mod/events.php:485 mod/events.php:497 mod/profiles.php:709 +msgid "Required" +msgstr "Obrigatório" + +#: mod/events.php:487 mod/events.php:503 +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 +msgid "Event Finishes:" +msgstr "Término do evento:" + +#: mod/events.php:491 mod/events.php:504 +msgid "Adjust for viewer timezone" +msgstr "Ajustar para o fuso horário do visualizador" + +#: mod/events.php:493 +msgid "Description:" +msgstr "Descrição:" + +#: mod/events.php:497 mod/events.php:499 +msgid "Title:" +msgstr "Título:" + +#: mod/events.php:500 mod/events.php:501 +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/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Sugerir amigos" + +#: mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Sugerir um amigo para %s" + +#: mod/item.php:116 msgid "Unable to locate original post." msgstr "Não foi possível localizar a publicação original." -#: ../../mod/item.php:346 +#: mod/item.php:334 msgid "Empty post discarded." msgstr "A publicação em branco foi descartada." -#: ../../mod/item.php:839 +#: mod/item.php:867 msgid "System error. Post not saved." msgstr "Erro no sistema. A publicação não foi salva." -#: ../../mod/item.php:965 +#: mod/item.php:993 #, 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:967 +#: mod/item.php:995 #, php-format msgid "You may visit them online at %s" msgstr "Você pode visitá-lo em %s" -#: ../../mod/item.php:968 +#: mod/item.php:996 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:972 +#: mod/item.php:1000 #, php-format msgid "%s posted an update." msgstr "%s publicou uma atualização." -#: ../../mod/profile_photo.php:44 +#: mod/mood.php:133 +msgid "Mood" +msgstr "Humor" + +#: mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Defina o seu humor e conte aos seus amigos" + +#: mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Cutucar/Incitar" + +#: mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "Cutuca, incita ou faz outras coisas com alguém" + +#: 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:308 +#: 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 "Não foi possível reduzir o tamanho da imagem [%s]." -#: ../../mod/profile_photo.php:118 +#: mod/profile_photo.php:124 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "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:128 +#: mod/profile_photo.php:134 msgid "Unable to process image" msgstr "Não foi possível processar a imagem" -#: ../../mod/profile_photo.php:242 +#: mod/profile_photo.php:248 msgid "Upload File:" msgstr "Enviar arquivo:" -#: ../../mod/profile_photo.php:243 +#: mod/profile_photo.php:249 msgid "Select a profile:" msgstr "Selecione um perfil:" -#: ../../mod/profile_photo.php:245 +#: mod/profile_photo.php:251 msgid "Upload" msgstr "Enviar" -#: ../../mod/profile_photo.php:248 +#: mod/profile_photo.php:254 +msgid "or" +msgstr "ou" + +#: mod/profile_photo.php:254 msgid "skip this step" msgstr "pule esta etapa" -#: ../../mod/profile_photo.php:248 +#: mod/profile_photo.php:254 msgid "select a photo from your photo albums" msgstr "selecione uma foto de um álbum de fotos" -#: ../../mod/profile_photo.php:262 +#: mod/profile_photo.php:268 msgid "Crop Image" msgstr "Cortar a imagem" -#: ../../mod/profile_photo.php:263 +#: 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:265 +#: mod/profile_photo.php:271 msgid "Done Editing" msgstr "Encerrar a edição" -#: ../../mod/profile_photo.php:299 +#: mod/profile_photo.php:305 msgid "Image uploaded successfully." msgstr "A imagem foi enviada com sucesso." -#: ../../mod/allfriends.php:34 +#: mod/profiles.php:38 +msgid "Profile deleted." +msgstr "O perfil foi excluído." + +#: mod/profiles.php:56 mod/profiles.php:90 +msgid "Profile-" +msgstr "Perfil-" + +#: mod/profiles.php:75 mod/profiles.php:118 +msgid "New profile created." +msgstr "O novo perfil foi criado." + +#: mod/profiles.php:96 +msgid "Profile unavailable to clone." +msgstr "O perfil não está disponível para clonagem." + +#: mod/profiles.php:190 +msgid "Profile Name is required." +msgstr "É necessário informar o nome do perfil." + +#: mod/profiles.php:337 +msgid "Marital Status" +msgstr "Situação amorosa" + +#: mod/profiles.php:341 +msgid "Romantic Partner" +msgstr "Parceiro romântico" + +#: mod/profiles.php:353 +msgid "Work/Employment" +msgstr "Trabalho/emprego" + +#: mod/profiles.php:356 +msgid "Religion" +msgstr "Religião" + +#: mod/profiles.php:360 +msgid "Political Views" +msgstr "Posicionamento político" + +#: mod/profiles.php:364 +msgid "Gender" +msgstr "Gênero" + +#: mod/profiles.php:368 +msgid "Sexual Preference" +msgstr "Preferência sexual" + +#: mod/profiles.php:372 +msgid "Homepage" +msgstr "Página Principal" + +#: mod/profiles.php:376 mod/profiles.php:695 +msgid "Interests" +msgstr "Interesses" + +#: mod/profiles.php:380 +msgid "Address" +msgstr "Endereço" + +#: mod/profiles.php:387 mod/profiles.php:691 +msgid "Location" +msgstr "Localização" + +#: mod/profiles.php:470 +msgid "Profile updated." +msgstr "O perfil foi atualizado." + +#: mod/profiles.php:557 +msgid " and " +msgstr " e " + +#: mod/profiles.php:565 +msgid "public profile" +msgstr "perfil público" + +#: mod/profiles.php:568 #, php-format -msgid "Friends of %s" -msgstr "Amigos de %s" +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s mudou %2$s para “%3$s”" -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "Nenhum amigo para exibir." +#: mod/profiles.php:569 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr " - Visite %2$s de %1$s" -#: ../../mod/directory.php:59 -msgid "Find on this site" -msgstr "Pesquisar neste site" +#: mod/profiles.php:572 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s foi atualizado %2$s, mudando %3$s." -#: ../../mod/directory.php:62 -msgid "Site Directory" -msgstr "Diretório do site" +#: mod/profiles.php:638 +msgid "Hide contacts and friends:" +msgstr "Esconder contatos e amigos:" -#: ../../mod/directory.php:116 -msgid "Gender: " -msgstr "Gênero: " +#: mod/profiles.php:643 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Ocultar sua lista de contatos/amigos dos visitantes no seu perfil?" -#: ../../mod/directory.php:189 -msgid "No entries (some entries may be hidden)." -msgstr "Nenhuma entrada (algumas entradas podem estar ocultas)." +#: mod/profiles.php:667 +msgid "Show more profile fields:" +msgstr "" -#: ../../mod/localtime.php:24 -msgid "Time Conversion" -msgstr "Conversão de tempo" +#: mod/profiles.php:679 +msgid "Profile Actions" +msgstr "" -#: ../../mod/localtime.php:26 +#: mod/profiles.php:680 +msgid "Edit Profile Details" +msgstr "Editar os detalhes do perfil" + +#: mod/profiles.php:682 +msgid "Change Profile Photo" +msgstr "Mudar Foto do Perfil" + +#: mod/profiles.php:683 +msgid "View this profile" +msgstr "Ver este perfil" + +#: mod/profiles.php:685 +msgid "Create a new profile using these settings" +msgstr "Criar um novo perfil usando estas configurações" + +#: mod/profiles.php:686 +msgid "Clone this profile" +msgstr "Clonar este perfil" + +#: mod/profiles.php:687 +msgid "Delete this profile" +msgstr "Excluir este perfil" + +#: mod/profiles.php:689 +msgid "Basic information" +msgstr "Informação básica" + +#: mod/profiles.php:690 +msgid "Profile picture" +msgstr "Foto do perfil" + +#: mod/profiles.php:692 +msgid "Preferences" +msgstr "Preferências" + +#: mod/profiles.php:693 +msgid "Status information" +msgstr "Informação de Status" + +#: mod/profiles.php:694 +msgid "Additional information" +msgstr "Informações adicionais" + +#: mod/profiles.php:697 +msgid "Relation" +msgstr "" + +#: mod/profiles.php:701 +msgid "Your Gender:" +msgstr "Seu gênero:" + +#: mod/profiles.php:702 +msgid " Marital Status:" +msgstr " Situação amorosa:" + +#: mod/profiles.php:704 +msgid "Example: fishing photography software" +msgstr "Exemplo: pesca fotografia software" + +#: mod/profiles.php:709 +msgid "Profile Name:" +msgstr "Nome do perfil:" + +#: mod/profiles.php:711 msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "Friendica provê esse serviço para compartilhar eventos com outras redes e amigos em fuso-horários desconhecidos." +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "Este é o seu perfil público.
Ele pode estar visível para qualquer um que acesse a Internet." -#: ../../mod/localtime.php:30 +#: mod/profiles.php:712 +msgid "Your Full Name:" +msgstr "Seu nome completo:" + +#: mod/profiles.php:713 +msgid "Title/Description:" +msgstr "Título/Descrição:" + +#: mod/profiles.php:716 +msgid "Street Address:" +msgstr "Endereço:" + +#: mod/profiles.php:717 +msgid "Locality/City:" +msgstr "Localidade/Cidade:" + +#: mod/profiles.php:718 +msgid "Region/State:" +msgstr "Região/Estado:" + +#: mod/profiles.php:719 +msgid "Postal/Zip Code:" +msgstr "CEP:" + +#: mod/profiles.php:720 +msgid "Country:" +msgstr "País:" + +#: mod/profiles.php:724 +msgid "Who: (if applicable)" +msgstr "Quem: (se pertinente)" + +#: mod/profiles.php:724 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Exemplos: fulano123, Fulano de Tal, fulano@exemplo.com" + +#: mod/profiles.php:725 +msgid "Since [date]:" +msgstr "Desde [data]:" + +#: mod/profiles.php:727 +msgid "Tell us about yourself..." +msgstr "Fale um pouco sobre você..." + +#: mod/profiles.php:728 +msgid "Homepage URL:" +msgstr "Endereço do site web:" + +#: mod/profiles.php:731 +msgid "Religious Views:" +msgstr "Orientação religiosa:" + +#: mod/profiles.php:732 +msgid "Public Keywords:" +msgstr "Palavras-chave públicas:" + +#: mod/profiles.php:732 +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 +msgid "Private Keywords:" +msgstr "Palavras-chave privadas:" + +#: mod/profiles.php:733 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Usado na pesquisa de perfis, nunca é exibido para os outros)" + +#: mod/profiles.php:736 +msgid "Musical interests" +msgstr "Preferências musicais" + +#: mod/profiles.php:737 +msgid "Books, literature" +msgstr "Livros, literatura" + +#: mod/profiles.php:738 +msgid "Television" +msgstr "Televisão" + +#: mod/profiles.php:739 +msgid "Film/dance/culture/entertainment" +msgstr "Filme/dança/cultura/entretenimento" + +#: mod/profiles.php:740 +msgid "Hobbies/Interests" +msgstr "Passatempos/Interesses" + +#: mod/profiles.php:741 +msgid "Love/romance" +msgstr "Amor/romance" + +#: mod/profiles.php:742 +msgid "Work/employment" +msgstr "Trabalho/emprego" + +#: mod/profiles.php:743 +msgid "School/education" +msgstr "Escola/educação" + +#: mod/profiles.php:744 +msgid "Contact information and Social Networks" +msgstr "Informações de contato e redes sociais" + +#: mod/profiles.php:786 +msgid "Edit/Manage Profiles" +msgstr "Editar/Gerenciar perfis" + +#: mod/register.php:92 +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 #, php-format -msgid "UTC time: %s" -msgstr "Hora UTC: %s" +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/localtime.php:33 +#: mod/register.php:104 +msgid "Registration successful." +msgstr "" + +#: mod/register.php:110 +msgid "Your registration can not be processed." +msgstr "Não foi possível processar o seu registro." + +#: mod/register.php:153 +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 +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 +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 +msgid "Your OpenID (optional): " +msgstr "Seu OpenID (opcional): " + +#: mod/register.php:235 +msgid "Include your profile in member directory?" +msgstr "Incluir o seu perfil no diretório de membros?" + +#: mod/register.php:259 +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 +msgid "Your invitation ID: " +msgstr "A ID do seu convite: " + +#: mod/register.php:271 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "" + +#: mod/register.php:272 +msgid "Your Email Address: " +msgstr "Seu endereço de e-mail: " + +#: mod/register.php:274 mod/settings.php:1221 +msgid "New Password:" +msgstr "Nova senha:" + +#: mod/register.php:274 +msgid "Leave empty for an auto generated password." +msgstr "" + +#: mod/register.php:275 mod/settings.php:1222 +msgid "Confirm:" +msgstr "Confirme:" + +#: mod/register.php:276 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "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 +msgid "Choose a nickname: " +msgstr "Escolha uma identificação: " + +#: mod/register.php:287 +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/regmod.php:92 #, php-format -msgid "Current timezone: %s" -msgstr "Fuso horário atual: %s" +msgid "Registration revoked for %s" +msgstr "O registro de %s foi revogado" -#: ../../mod/localtime.php:36 +#: mod/regmod.php:104 +msgid "Please login." +msgstr "Por favor, autentique-se." + +#: mod/settings.php:36 mod/photos.php:118 +msgid "everybody" +msgstr "todos" + +#: mod/settings.php:60 +msgid "Display" +msgstr "Tela" + +#: mod/settings.php:67 mod/settings.php:871 +msgid "Social Networks" +msgstr "Redes Sociais" + +#: mod/settings.php:88 +msgid "Connected apps" +msgstr "Aplicações conectadas" + +#: mod/settings.php:102 +msgid "Remove account" +msgstr "Remover a conta" + +#: mod/settings.php:155 +msgid "Missing some important data!" +msgstr "Está faltando algum dado importante!" + +#: mod/settings.php:269 +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 +msgid "Email settings updated." +msgstr "As configurações de e-mail foram atualizadas." + +#: mod/settings.php:289 +msgid "Features updated" +msgstr "Funcionalidades atualizadas" + +#: mod/settings.php:356 +msgid "Relocate message has been send to your contacts" +msgstr "A mensagem de relocação foi enviada para seus contatos" + +#: mod/settings.php:375 +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 +msgid "Wrong password." +msgstr "Senha errada." + +#: mod/settings.php:394 +msgid "Password changed." +msgstr "A senha foi modificada." + +#: mod/settings.php:396 +msgid "Password update failed. Please try again." +msgstr "Não foi possível atualizar a senha. Por favor, tente novamente." + +#: mod/settings.php:465 +msgid " Please use a shorter name." +msgstr " Por favor, use um nome mais curto." + +#: mod/settings.php:467 +msgid " Name too short." +msgstr " O nome é muito curto." + +#: mod/settings.php:476 +msgid "Wrong Password" +msgstr "Senha Errada" + +#: mod/settings.php:481 +msgid " Not valid email." +msgstr " Não é um e-mail válido." + +#: mod/settings.php:487 +msgid " Cannot change to that email." +msgstr " Não foi possível alterar para esse e-mail." + +#: mod/settings.php:543 +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 +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 +msgid "Settings updated." +msgstr "As configurações foram atualizadas." + +#: mod/settings.php:662 mod/settings.php:688 mod/settings.php:724 +msgid "Add application" +msgstr "Adicionar aplicação" + +#: mod/settings.php:666 mod/settings.php:692 +msgid "Consumer Key" +msgstr "Chave do consumidor" + +#: mod/settings.php:667 mod/settings.php:693 +msgid "Consumer Secret" +msgstr "Segredo do consumidor" + +#: mod/settings.php:668 mod/settings.php:694 +msgid "Redirect" +msgstr "Redirecionar" + +#: mod/settings.php:669 mod/settings.php:695 +msgid "Icon url" +msgstr "URL do ícone" + +#: mod/settings.php:680 +msgid "You can't edit this application." +msgstr "Você não pode editar esta aplicação." + +#: mod/settings.php:723 +msgid "Connected Apps" +msgstr "Aplicações conectadas" + +#: mod/settings.php:727 +msgid "Client key starts with" +msgstr "A chave do cliente inicia com" + +#: mod/settings.php:728 +msgid "No name" +msgstr "Sem nome" + +#: mod/settings.php:729 +msgid "Remove authorization" +msgstr "Remover autorização" + +#: mod/settings.php:741 +msgid "No Plugin settings configured" +msgstr "Não foi definida nenhuma configuração de plugin" + +#: mod/settings.php:749 +msgid "Plugin Settings" +msgstr "Configurações do plugin" + +#: mod/settings.php:771 +msgid "Additional Features" +msgstr "Funcionalidades Adicionais" + +#: mod/settings.php:781 mod/settings.php:785 +msgid "General Social Media Settings" +msgstr "" + +#: mod/settings.php:791 +msgid "Disable intelligent shortening" +msgstr "" + +#: mod/settings.php:793 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "" + +#: mod/settings.php:799 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "" + +#: mod/settings.php:801 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "" + +#: mod/settings.php:807 +msgid "Default group for OStatus contacts" +msgstr "" + +#: mod/settings.php:813 +msgid "Your legacy GNU Social account" +msgstr "" + +#: mod/settings.php:815 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "" + +#: mod/settings.php:818 +msgid "Repair OStatus subscriptions" +msgstr "" + +#: mod/settings.php:827 mod/settings.php:828 #, php-format -msgid "Converted localtime: %s" -msgstr "Horário local convertido: %s" +msgid "Built-in support for %s connectivity is %s" +msgstr "O suporte interno para conectividade de %s está %s" -#: ../../mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Por favor, selecione seu fuso horário:" +#: mod/settings.php:827 mod/settings.php:828 +msgid "enabled" +msgstr "habilitado" + +#: mod/settings.php:827 mod/settings.php:828 +msgid "disabled" +msgstr "desabilitado" + +#: mod/settings.php:828 +msgid "GNU Social (OStatus)" +msgstr "" + +#: mod/settings.php:864 +msgid "Email access is disabled on this site." +msgstr "O acesso ao e-mail está desabilitado neste site." + +#: mod/settings.php:876 +msgid "Email/Mailbox Setup" +msgstr "Configurações do e-mail/caixa postal" + +#: mod/settings.php:877 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "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 +msgid "Last successful email check:" +msgstr "Última checagem bem sucedida de e-mail:" + +#: mod/settings.php:880 +msgid "IMAP server name:" +msgstr "Nome do servidor IMAP:" + +#: mod/settings.php:881 +msgid "IMAP port:" +msgstr "Porta do IMAP:" + +#: mod/settings.php:882 +msgid "Security:" +msgstr "Segurança:" + +#: mod/settings.php:882 mod/settings.php:887 +msgid "None" +msgstr "Nenhuma" + +#: mod/settings.php:883 +msgid "Email login name:" +msgstr "Nome de usuário do e-mail:" + +#: mod/settings.php:884 +msgid "Email password:" +msgstr "Senha do e-mail:" + +#: mod/settings.php:885 +msgid "Reply-to address:" +msgstr "Endereço de resposta (Reply-to):" + +#: mod/settings.php:886 +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 +msgid "Action after import:" +msgstr "Ação após a importação:" + +#: mod/settings.php:887 +msgid "Move to folder" +msgstr "Mover para pasta" + +#: mod/settings.php:888 +msgid "Move to folder:" +msgstr "Mover para pasta:" + +#: mod/settings.php:974 +msgid "Display Settings" +msgstr "Configurações de exibição" + +#: mod/settings.php:980 mod/settings.php:1001 +msgid "Display Theme:" +msgstr "Tema do perfil:" + +#: mod/settings.php:981 +msgid "Mobile Theme:" +msgstr "Tema para dispositivos móveis:" + +#: mod/settings.php:982 +msgid "Update browser every xx seconds" +msgstr "Atualizar o navegador a cada xx segundos" + +#: mod/settings.php:982 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "" + +#: mod/settings.php:983 +msgid "Number of items to display per page:" +msgstr "Número de itens a serem exibidos por página:" + +#: mod/settings.php:983 mod/settings.php:984 +msgid "Maximum of 100 items" +msgstr "Máximo de 100 itens" + +#: mod/settings.php:984 +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 +msgid "Don't show emoticons" +msgstr "Não exibir emoticons" + +#: mod/settings.php:986 +msgid "Calendar" +msgstr "Agenda" + +#: mod/settings.php:987 +msgid "Beginning of week:" +msgstr "" + +#: mod/settings.php:988 +msgid "Don't show notices" +msgstr "Não mostra avisos" + +#: mod/settings.php:989 +msgid "Infinite scroll" +msgstr "rolamento infinito" + +#: mod/settings.php:990 +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 +msgid "General Theme Settings" +msgstr "" + +#: mod/settings.php:993 +msgid "Custom Theme Settings" +msgstr "" + +#: mod/settings.php:994 +msgid "Content Settings" +msgstr "" + +#: mod/settings.php:995 view/theme/frio/config.php:61 +#: view/theme/cleanzero/config.php:82 view/theme/quattro/config.php:66 +#: view/theme/dispy/config.php:72 view/theme/vier/config.php:109 +#: view/theme/diabook/config.php:150 view/theme/duepuntozero/config.php:61 +msgid "Theme settings" +msgstr "Configurações do tema" + +#: mod/settings.php:1072 +msgid "User Types" +msgstr "Tipos de Usuários" + +#: mod/settings.php:1073 +msgid "Community Types" +msgstr "Tipos de Comunidades" + +#: mod/settings.php:1074 +msgid "Normal Account Page" +msgstr "Página de conta normal" + +#: mod/settings.php:1075 +msgid "This account is a normal personal profile" +msgstr "Essa conta é um perfil pessoal normal" + +#: mod/settings.php:1078 +msgid "Soapbox Page" +msgstr "Página de vitrine" + +#: mod/settings.php:1079 +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: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:1086 +msgid "Automatic Friend Page" +msgstr "Página de amigo automático" + +#: mod/settings.php:1087 +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 +msgid "Private Forum [Experimental]" +msgstr "Fórum privado [Experimental]" + +#: mod/settings.php:1091 +msgid "Private forum - approved members only" +msgstr "Fórum privado - somente membros aprovados" + +#: mod/settings.php:1103 +msgid "OpenID:" +msgstr "OpenID:" + +#: mod/settings.php:1103 +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 +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 +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 +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 +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 +msgid "Allow friends to post to your profile page?" +msgstr "Permitir aos amigos publicarem na sua página de perfil?" + +#: mod/settings.php:1142 +msgid "Allow friends to tag your posts?" +msgstr "Permitir aos amigos etiquetarem suas publicações?" + +#: mod/settings.php:1148 +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 +msgid "Permit unknown people to send you private mail?" +msgstr "Permitir que pessoas desconhecidas lhe enviem mensagens privadas?" + +#: mod/settings.php:1162 +msgid "Profile is not published." +msgstr "O perfil não está publicado." + +#: mod/settings.php:1170 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "" + +#: mod/settings.php:1177 +msgid "Automatically expire posts after this many days:" +msgstr "Expirar automaticamente publicações após tantos dias:" + +#: mod/settings.php:1177 +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 +msgid "Advanced expiration settings" +msgstr "Configurações avançadas de expiração" + +#: mod/settings.php:1179 +msgid "Advanced Expiration" +msgstr "Expiração avançada" + +#: mod/settings.php:1180 +msgid "Expire posts:" +msgstr "Expirar publicações:" + +#: mod/settings.php:1181 +msgid "Expire personal notes:" +msgstr "Expirar notas pessoais:" + +#: mod/settings.php:1182 +msgid "Expire starred posts:" +msgstr "Expirar publicações destacadas:" + +#: mod/settings.php:1183 +msgid "Expire photos:" +msgstr "Expirar fotos:" + +#: mod/settings.php:1184 +msgid "Only expire posts by others:" +msgstr "Expirar somente as publicações de outras pessoas:" + +#: mod/settings.php:1212 +msgid "Account Settings" +msgstr "Configurações da conta" + +#: mod/settings.php:1220 +msgid "Password Settings" +msgstr "Configurações da senha" + +#: mod/settings.php:1222 +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 +msgid "Current Password:" +msgstr "Senha Atual:" + +#: mod/settings.php:1223 mod/settings.php:1224 +msgid "Your current password to confirm the changes" +msgstr "Sua senha atual para confirmar as mudanças" + +#: mod/settings.php:1224 +msgid "Password:" +msgstr "Senha:" + +#: mod/settings.php:1228 +msgid "Basic Settings" +msgstr "Configurações básicas" + +#: mod/settings.php:1230 +msgid "Email Address:" +msgstr "Endereço de e-mail:" + +#: mod/settings.php:1231 +msgid "Your Timezone:" +msgstr "Seu fuso horário:" + +#: mod/settings.php:1232 +msgid "Your Language:" +msgstr "Seu idioma:" + +#: mod/settings.php:1232 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "" + +#: mod/settings.php:1233 +msgid "Default Post Location:" +msgstr "Localização padrão de suas publicações:" + +#: mod/settings.php:1234 +msgid "Use Browser Location:" +msgstr "Usar localizador do navegador:" + +#: mod/settings.php:1237 +msgid "Security and Privacy Settings" +msgstr "Configurações de segurança e privacidade" + +#: mod/settings.php:1239 +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 +msgid "(to prevent spam abuse)" +msgstr "(para prevenir abuso de spammers)" + +#: mod/settings.php:1240 +msgid "Default Post Permissions" +msgstr "Permissões padrão de publicação" + +#: mod/settings.php:1241 +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 +msgid "Default Private Post" +msgstr "Publicação Privada Padrão" + +#: mod/settings.php:1253 +msgid "Default Public Post" +msgstr "Publicação Pública Padrão" + +#: mod/settings.php:1257 +msgid "Default Permissions for New Posts" +msgstr "Permissões Padrão para Publicações Novas" + +#: mod/settings.php:1269 +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 +msgid "Notification Settings" +msgstr "Configurações de notificação" + +#: mod/settings.php:1273 +msgid "By default post a status message when:" +msgstr "Por padrão, publicar uma mensagem de status quando:" + +#: mod/settings.php:1274 +msgid "accepting a friend request" +msgstr "aceitar uma requisição de amizade" + +#: mod/settings.php:1275 +msgid "joining a forum/community" +msgstr "associar-se a um fórum/comunidade" + +#: mod/settings.php:1276 +msgid "making an interesting profile change" +msgstr "fazer uma modificação interessante em seu perfil" + +#: mod/settings.php:1277 +msgid "Send a notification email when:" +msgstr "Enviar um e-mail de notificação sempre que:" + +#: mod/settings.php:1278 +msgid "You receive an introduction" +msgstr "Você recebeu uma apresentação" + +#: mod/settings.php:1279 +msgid "Your introductions are confirmed" +msgstr "Suas apresentações forem confirmadas" + +#: mod/settings.php:1280 +msgid "Someone writes on your profile wall" +msgstr "Alguém escrever no mural do seu perfil" + +#: mod/settings.php:1281 +msgid "Someone writes a followup comment" +msgstr "Alguém comentar a sua mensagem" + +#: mod/settings.php:1282 +msgid "You receive a private message" +msgstr "Você recebeu uma mensagem privada" + +#: mod/settings.php:1283 +msgid "You receive a friend suggestion" +msgstr "Você recebe uma suggestão de amigo" + +#: mod/settings.php:1284 +msgid "You are tagged in a post" +msgstr "Você foi etiquetado em uma publicação" + +#: mod/settings.php:1285 +msgid "You are poked/prodded/etc. in a post" +msgstr "Você está cutucado/incitado/etc. em uma publicação" + +#: mod/settings.php:1287 +msgid "Activate desktop notifications" +msgstr "" + +#: mod/settings.php:1287 +msgid "Show desktop popup on new notifications" +msgstr "" + +#: mod/settings.php:1289 +msgid "Text-only notification emails" +msgstr "Emails de notificação apenas de texto" + +#: mod/settings.php:1291 +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 +msgid "Advanced Account/Page Type Settings" +msgstr "Conta avançada/Configurações do tipo de página" + +#: mod/settings.php:1294 +msgid "Change the behaviour of this account for special situations" +msgstr "Modificar o comportamento desta conta em situações especiais" + +#: mod/settings.php:1297 +msgid "Relocate" +msgstr "Relocação" + +#: mod/settings.php:1298 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "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 +msgid "Resend relocate message to contacts" +msgstr "Reenviar mensagem de relocação para os contatos" + +#: mod/videos.php:123 +msgid "Do you really want to delete this video?" +msgstr "" + +#: mod/videos.php:128 +msgid "Delete Video" +msgstr "" + +#: mod/videos.php:207 +msgid "No videos selected" +msgstr "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 +msgid "Recent Videos" +msgstr "Vídeos Recentes" + +#: mod/videos.php:401 +msgid "Upload New Videos" +msgstr "Envie Novos Vídeos" + +#: mod/install.php:139 +msgid "Friendica Communications Server - Setup" +msgstr "Servidor de Comunicações Friendica - Configuração" + +#: mod/install.php:145 +msgid "Could not connect to database." +msgstr "Não foi possível conectar ao banco de dados." + +#: mod/install.php:149 +msgid "Could not create table." +msgstr "Não foi possível criar tabela." + +#: mod/install.php:155 +msgid "Your Friendica site database has been installed." +msgstr "O banco de dados do seu site Friendica foi instalado." + +#: mod/install.php:160 +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 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Por favor, dê uma olhada no arquivo \"INSTALL.TXT\"." + +#: mod/install.php:173 +msgid "Database already in use." +msgstr "" + +#: mod/install.php:227 +msgid "System check" +msgstr "Checagem do sistema" + +#: mod/install.php:232 +msgid "Check again" +msgstr "Checar novamente" + +#: mod/install.php:251 +msgid "Database connection" +msgstr "Conexão de banco de dados" + +#: mod/install.php:252 +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 +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 +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 +msgid "Database Server Name" +msgstr "Nome do servidor de banco de dados" + +#: mod/install.php:259 +msgid "Database Login Name" +msgstr "Nome do usuário do banco de dados" + +#: mod/install.php:260 +msgid "Database Login Password" +msgstr "Senha do usuário do banco de dados" + +#: mod/install.php:261 +msgid "Database Name" +msgstr "Nome do banco de dados" + +#: mod/install.php:262 mod/install.php:303 +msgid "Site administrator email address" +msgstr "Endereço de email do administrador do site" + +#: 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 "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 +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 +msgid "Site settings" +msgstr "Configurações do site" + +#: mod/install.php:307 +msgid "System Language:" +msgstr "" + +#: mod/install.php:307 +msgid "" +"Set the default language for your Friendica installation interface and to " +"send emails." +msgstr "" + +#: mod/install.php:347 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "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 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron. See 'Setup the poller'" +msgstr "" + +#: mod/install.php:352 +msgid "PHP executable path" +msgstr "Caminho para o executável do PhP" + +#: mod/install.php:352 +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 +msgid "Command line PHP" +msgstr "PHP em linha de comando" + +#: mod/install.php:366 +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 +msgid "Found PHP version: " +msgstr "Encontrado PHP versão:" + +#: mod/install.php:369 +msgid "PHP cli binary" +msgstr "Binário cli do PHP" + +#: mod/install.php:380 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "\"register_argc_argv\" não está habilitado na versão de linha de comando do PHP no seu sistema." + +#: mod/install.php:381 +msgid "This is required for message delivery to work." +msgstr "Isto é necessário para o funcionamento do envio de mensagens." + +#: 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 "Erro: a função \"openssl_pkey_new\" no seu sistema não é capaz de gerar as chaves de criptografia" + +#: mod/install.php:405 +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 +msgid "Generate encryption keys" +msgstr "Gerar chaves de encriptação" + +#: mod/install.php:414 +msgid "libCurl PHP module" +msgstr "Módulo PHP libCurl" + +#: mod/install.php:415 +msgid "GD graphics PHP module" +msgstr "Módulo PHP GD graphics" + +#: mod/install.php:416 +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:418 +msgid "mb_string PHP module" +msgstr "Módulo PHP mb_string " + +#: mod/install.php:419 +msgid "mcrypt PHP module" +msgstr "" + +#: mod/install.php:420 +msgid "XML PHP module" +msgstr "" + +#: mod/install.php:421 +msgid "iconv module" +msgstr "" + +#: mod/install.php:425 mod/install.php:427 +msgid "Apache mod_rewrite module" +msgstr "Módulo mod_rewrite do Apache" + +#: mod/install.php:425 +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 +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 +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 +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:449 +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 +msgid "Error: iconv PHP module required but not installed." +msgstr "" + +#: mod/install.php:466 +msgid "" +"If you are using php_cli, please make sure that mcrypt module is enabled in " +"its config file" +msgstr "" + +#: mod/install.php:469 +msgid "" +"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 " +"encryption layer." +msgstr "" + +#: mod/install.php:471 +msgid "mcrypt_create_iv() function" +msgstr "" + +#: mod/install.php:479 +msgid "Error, XML PHP module required but not installed." +msgstr "Erro: o módulo XML do PHP é necessário, mas não está instalado." + +#: 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 "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 +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 +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 +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 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php tem permissão de escrita" + +#: 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 o engine de template Smarty3 para renderizar suas web views. Smarty3 compila templates para PHP para acelerar a renderização." + +#: 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 "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 +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 +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 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 tem escrita permitida" + +#: mod/install.php:532 +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 +msgid "Url rewrite is working" +msgstr "A reescrita de URLs está funcionando" + +#: mod/install.php:551 +msgid "ImageMagick PHP extension is installed" +msgstr "" + +#: mod/install.php:553 +msgid "ImageMagick supports GIF" +msgstr "" + +#: mod/install.php:561 +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 +msgid "

What next

" +msgstr "

A seguir

" + +#: mod/install.php:601 +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/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 +msgid "Discard" +msgstr "Descartar" + +#: mod/notifications.php:105 +msgid "Network Notifications" +msgstr "Notificações de rede" + +#: mod/notifications.php:117 +msgid "Personal Notifications" +msgstr "Notificações pessoais" + +#: mod/notifications.php:123 +msgid "Home Notifications" +msgstr "Notificações pessoais" + +#: mod/notifications.php:152 +msgid "Show Ignored Requests" +msgstr "Exibir solicitações ignoradas" + +#: mod/notifications.php:152 +msgid "Hide Ignored Requests" +msgstr "Ocultar solicitações ignoradas" + +#: mod/notifications.php:164 mod/notifications.php:222 +msgid "Notification type: " +msgstr "Tipo de notificação:" + +#: mod/notifications.php:167 +#, php-format +msgid "suggested by %s" +msgstr "sugerido por %s" + +#: mod/notifications.php:173 mod/notifications.php:240 +msgid "Post a new friend activity" +msgstr "Publicar a adição de amigo" + +#: mod/notifications.php:173 mod/notifications.php:240 +msgid "if applicable" +msgstr "se aplicável" + +#: mod/notifications.php:195 +msgid "Claims to be known to you: " +msgstr "Alega ser conhecido por você: " + +#: mod/notifications.php:196 +msgid "yes" +msgstr "sim" + +#: mod/notifications.php:196 +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: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 "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:" + +#: mod/notifications.php:209 +msgid "Friend" +msgstr "Amigo" + +#: mod/notifications.php:210 +msgid "Sharer" +msgstr "Compartilhador" + +#: mod/notifications.php:210 +msgid "Fan/Admirer" +msgstr "Fã/Admirador" + +#: mod/notifications.php:260 +msgid "No introductions." +msgstr "Sem apresentações." + +#: mod/notifications.php:299 +msgid "Show unread" +msgstr "" + +#: mod/notifications.php:299 +msgid "Show all" +msgstr "" + +#: mod/notifications.php:305 +#, php-format +msgid "No more %s notifications." +msgstr "" + +#: mod/photos.php:101 mod/photos.php:1886 +msgid "Recent Photos" +msgstr "Fotos recentes" + +#: mod/photos.php:104 mod/photos.php:1308 mod/photos.php:1888 +msgid "Upload New Photos" +msgstr "Enviar novas fotos" + +#: mod/photos.php:182 +msgid "Contact information unavailable" +msgstr "A informação de contato não está disponível" + +#: mod/photos.php:203 +msgid "Album not found." +msgstr "O álbum não foi encontrado." + +#: mod/photos.php:233 mod/photos.php:245 mod/photos.php:1250 +msgid "Delete Album" +msgstr "Excluir o álbum" + +#: 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/photos.php:323 mod/photos.php:334 mod/photos.php:1567 +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: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/photos.php:707 +msgid "a photo" +msgstr "uma foto" + +#: mod/photos.php:814 +msgid "Image file is empty." +msgstr "O arquivo de imagem está vazio." + +#: mod/photos.php:974 +msgid "No photos selected" +msgstr "Não foi selecionada nenhuma foto" + +#: 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/photos.php:1170 +msgid "Upload Photos" +msgstr "Enviar fotos" + +#: mod/photos.php:1174 mod/photos.php:1245 +msgid "New album name: " +msgstr "Nome do novo álbum: " + +#: mod/photos.php:1175 +msgid "or existing album name: " +msgstr "ou o nome de um álbum já existente: " + +#: 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/photos.php:1189 +msgid "Private Photo" +msgstr "Foto Privada" + +#: mod/photos.php:1190 +msgid "Public Photo" +msgstr "Foto Pública" + +#: mod/photos.php:1258 +msgid "Edit Album" +msgstr "Editar o álbum" + +#: mod/photos.php:1264 +msgid "Show Newest First" +msgstr "Exibir as mais recentes primeiro" + +#: mod/photos.php:1266 +msgid "Show Oldest First" +msgstr "Exibir as mais antigas primeiro" + +#: mod/photos.php:1294 mod/photos.php:1871 +msgid "View Photo" +msgstr "Ver a foto" + +#: 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 +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" +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" +msgstr "" + +#: object/Item.php:370 +msgid "via" +msgstr "via" + +#: view/theme/frio/php/Image.php:23 +msgid "Repeat the image" +msgstr "Lado a lado" + +#: view/theme/frio/php/Image.php:23 +msgid "Will repeat your image to fill the background." +msgstr "Repete a imagem para preencher o plano de fundo." + +#: view/theme/frio/php/Image.php:25 +msgid "Stretch" +msgstr "Esticar" + +#: view/theme/frio/php/Image.php:25 +msgid "Will stretch to width/height of the image." +msgstr "Estica até a largura/altura da imagem." + +#: view/theme/frio/php/Image.php:27 +msgid "Resize fill and-clip" +msgstr "Preencher e cortar" + +#: view/theme/frio/php/Image.php:27 +msgid "Resize to fill and retain aspect ratio." +msgstr "Redimensiona para preencher o plano de fundo, mantendo proporções." + +#: view/theme/frio/php/Image.php:29 +msgid "Resize best fit" +msgstr "Ajustar" + +#: view/theme/frio/php/Image.php:29 +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" + +#: view/theme/frio/theme.php:232 +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 +msgid "Alignment" +msgstr "Alinhamento" + +#: view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Esquerda" + +#: view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Centro" + +#: view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "Tamanho da fonte para publicações" + +#: view/theme/quattro/config.php:70 +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 +msgid "Comma separated list of helper forums" +msgstr "" + +#: view/theme/vier/config.php:110 +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 +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 +msgid "Help or @NewHere ?" +msgstr "Ajuda ou @NewHere ?" + +#: view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "Seus contatos" + +#: view/theme/diabook/theme.php:128 +msgid "Your personal photos" +msgstr "Suas fotos pessoais" + +#: 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/diabook/theme.php:486 view/theme/diabook/theme.php:631 +#: view/theme/diabook/config.php:165 +msgid "Last photos" +msgstr "Últimas fotos" + +#: 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/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 +msgid "toggle mobile" +msgstr "habilita mobile" + +#: boot.php:901 +msgid "Delete this item?" +msgstr "Excluir este item?" + +#: boot.php:904 +msgid "show fewer" +msgstr "exibir menos" + +#: boot.php:1518 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Atualização %s falhou. Vide registro de erros (log)." + +#: boot.php:1630 +msgid "Create a New Account" +msgstr "Criar uma nova conta" + +#: boot.php:1659 +msgid "Password: " +msgstr "Senha: " + +#: boot.php:1660 +msgid "Remember me" +msgstr "Lembre-se de mim" + +#: boot.php:1663 +msgid "Or login using OpenID: " +msgstr "Ou login usando OpendID:" + +#: boot.php:1669 +msgid "Forgot your password?" +msgstr "Esqueceu a sua senha?" + +#: boot.php:1672 +msgid "Website Terms of Service" +msgstr "Termos de Serviço do Website" + +#: boot.php:1673 +msgid "terms of service" +msgstr "termos de serviço" + +#: boot.php:1675 +msgid "Website Privacy Policy" +msgstr "Política de Privacidade do Website" + +#: boot.php:1676 +msgid "privacy policy" +msgstr "política de privacidade" diff --git a/view/pt-br/strings.php b/view/pt-br/strings.php index 7021e98026..2dddd531af 100644 --- a/view/pt-br/strings.php +++ b/view/pt-br/strings.php @@ -5,202 +5,33 @@ function string_plural_select_pt_br($n){ return ($n > 1);; }} ; -$a->strings["Submit"] = "Enviar"; -$a->strings["Theme settings"] = "Configurações do tema"; -$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["Set style"] = "escolha estilo"; -$a->strings["default"] = "padrão"; -$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["don't show"] = "não exibir"; -$a->strings["show"] = "exibir"; -$a->strings["Set line-height for posts and comments"] = "Escolha comprimento da linha para publicações e comentários"; -$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["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["Community Pages"] = "Páginas da Comunidade"; -$a->strings["Earth Layers"] = "Camadas da Terra"; -$a->strings["Community Profiles"] = "Profiles Comunitários"; -$a->strings["Help or @NewHere ?"] = "Ajuda ou @NewHere ?"; -$a->strings["Connect Services"] = "Conectar serviços"; -$a->strings["Find Friends"] = "Encontrar amigos"; -$a->strings["Last users"] = "Últimos usuários"; -$a->strings["Last photos"] = "Últimas fotos"; -$a->strings["Last likes"] = "Últimas gostadas"; -$a->strings["Home"] = "Pessoal"; -$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["Contacts"] = "Contatos"; -$a->strings["Your contacts"] = "Seus contatos"; -$a->strings["Photos"] = "Fotos"; -$a->strings["Your photos"] = "Suas fotos"; -$a->strings["Events"] = "Eventos"; -$a->strings["Your events"] = "Seus eventos"; -$a->strings["Personal notes"] = "Suas anotações pessoais"; -$a->strings["Your personal photos"] = "Suas fotos pessoais"; -$a->strings["Community"] = "Comunidade"; -$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["Contact Photos"] = "Fotos dos contatos"; -$a->strings["Profile Photos"] = "Fotos do perfil"; -$a->strings["Local Directory"] = "Diretório Local"; -$a->strings["Global Directory"] = "Diretório global"; -$a->strings["Similar Interests"] = "Interesses Parecidos"; -$a->strings["Friend Suggestions"] = "Sugestões de amigos"; -$a->strings["Invite Friends"] = "Convidar amigos"; -$a->strings["Settings"] = "Configurações"; -$a->strings["Set zoomfactor for Earth Layers"] = "Configure o zoom para Camadas da Terra"; -$a->strings["Show/hide boxes at right-hand column:"] = "Mostre/esconda caixas na coluna à direita:"; -$a->strings["Alignment"] = "Alinhamento"; -$a->strings["Left"] = "Esquerda"; -$a->strings["Center"] = "Centro"; -$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 colour scheme"] = "Configure o esquema de cores"; -$a->strings["You must be logged in to use addons. "] = "Você precisa estar logado para usar os addons."; -$a->strings["Not Found"] = "Não encontrada"; -$a->strings["Page not found."] = "Página não encontrada."; -$a->strings["Permission denied"] = "Permissão negada"; -$a->strings["Permission denied."] = "Permissão negada."; -$a->strings["toggle mobile"] = "habilita mobile"; -$a->strings["Do you wish to confirm your identity (%s) with %s"] = "Você deseja confirmar sua identidade (%s) com %s"; -$a->strings["Confirm"] = "Confirmar"; -$a->strings["Do not confirm"] = "Não confirma"; -$a->strings["Trust This Site"] = "Confia neste site"; -$a->strings["No Identifier Sent"] = "Nenhum identificador enviado"; -$a->strings["Requested identity don't match logged in user."] = "Identidade solicitada não corresponde ao usuário conectado"; -$a->strings["Please wait; you are being redirected to <%s>"] = "Por favor aguarde; você será redirecionado para <%s>"; -$a->strings["Delete this item?"] = "Excluir este item?"; -$a->strings["Comment"] = "Comentar"; -$a->strings["show more"] = "exibir mais"; -$a->strings["show fewer"] = "exibir menos"; -$a->strings["Update %s failed. See error logs."] = "Atualização %s falhou. Vide registro de erros (log)."; -$a->strings["Create a New Account"] = "Criar uma nova conta"; -$a->strings["Register"] = "Registrar"; -$a->strings["Logout"] = "Sair"; -$a->strings["Login"] = "Entrar"; -$a->strings["Nickname or Email address: "] = "Identificação ou endereço de e-mail: "; -$a->strings["Password: "] = "Senha: "; -$a->strings["Remember me"] = "Lembre-se de mim"; -$a->strings["Or login using OpenID: "] = "Ou login usando OpendID:"; -$a->strings["Forgot your password?"] = "Esqueceu a sua senha?"; -$a->strings["Password Reset"] = "Redifinir a senha"; -$a->strings["Website Terms of Service"] = "Termos de Serviço do Website"; -$a->strings["terms of service"] = "termos de serviço"; -$a->strings["Website Privacy Policy"] = "Política de Privacidade do Website"; -$a->strings["privacy policy"] = "política de privacidade"; -$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"; -$a->strings["Connect"] = "Conectar"; -$a->strings["Message"] = "Mensagem"; -$a->strings["Profiles"] = "Perfis"; -$a->strings["Manage/edit profiles"] = "Gerenciar/editar perfis"; -$a->strings["Change profile photo"] = "Mudar a foto do perfil"; -$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["Location:"] = "Localização:"; -$a->strings["Gender:"] = "Gênero:"; -$a->strings["Status:"] = "Situação:"; -$a->strings["Homepage:"] = "Página web:"; -$a->strings["About:"] = "Sobre:"; -$a->strings["Network:"] = "Rede:"; -$a->strings["g A l F d"] = "G l d F"; -$a->strings["F d"] = "F d"; -$a->strings["[today]"] = "[hoje]"; -$a->strings["Birthday Reminders"] = "Lembretes de aniversário"; -$a->strings["Birthdays this week:"] = "Aniversários nesta semana:"; -$a->strings["[No description]"] = "[Sem descrição]"; -$a->strings["Event Reminders"] = "Lembretes de eventos"; -$a->strings["Events this week:"] = "Eventos esta semana:"; -$a->strings["Status"] = "Status"; -$a->strings["Status Messages and Posts"] = "Mensagem de Estado (status) e Publicações"; -$a->strings["Profile Details"] = "Detalhe do Perfil"; -$a->strings["Photo Albums"] = "Álbuns de fotos"; -$a->strings["Videos"] = "Vídeos"; -$a->strings["Events and Calendar"] = "Eventos e Agenda"; -$a->strings["Personal Notes"] = "Notas pessoais"; -$a->strings["Only You Can See This"] = "Somente Você Pode Ver Isso"; -$a->strings["General Features"] = "Funcionalidades Gerais"; -$a->strings["Multiple Profiles"] = "Perfís Múltiplos"; -$a->strings["Ability to create multiple profiles"] = "Capacidade de criar perfis múltiplos"; -$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["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["Saved Folders"] = "Pastas salvas"; -$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["%s's birthday"] = "aniversários de %s's"; -$a->strings["Happy Birthday %s"] = "Feliz Aniversário %s"; -$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["Cancel"] = "Cancelar"; -$a->strings["Archives"] = "Arquivos"; -$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 group"] = "Editar grupo"; -$a->strings["Create a new group"] = "Criar um novo 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["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["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", @@ -210,18 +41,24 @@ $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"; @@ -266,58 +103,251 @@ $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 acepted your connection request at %2\$s"] = "'%1\$s' sua solicitação de conexão foi aceita em %2\$s"; +$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\n\twithout restriction."] = "Você agora são amigos em comum e podem trocar atualizações de status, fotos e e-mail\n\tsem restrições."; -$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["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. "] = "'%1\$s' pode optar no futuro por estender isso para um relacionamento bidirecional ou superior permissivo."; +$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["User not found."] = "Usuário não encontrado."; -$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["There is no status with this id."] = "Não existe status com esse id."; -$a->strings["There is no conversation with this id."] = "Não existe conversas com esse id."; -$a->strings["Invalid request."] = "Solicitação inválida."; -$a->strings["Invalid item."] = "Ítem inválido."; -$a->strings["Invalid action. "] = "Ação inválida."; -$a->strings["DB error"] = "Erro do Banco de Dados"; -$a->strings["view full size"] = "ver na tela inteira"; -$a->strings[" on Last.fm"] = "na Last.fm"; -$a->strings["Full Name:"] = "Nome completo:"; -$a->strings["j F, Y"] = "j de F, Y"; -$a->strings["j F"] = "j de F"; -$a->strings["Birthday:"] = "Aniversário:"; -$a->strings["Age:"] = "Idade:"; -$a->strings["for %1\$d %2\$s"] = "para %1\$d %2\$s"; -$a->strings["Sexual Preference:"] = "Preferência sexual:"; -$a->strings["Hometown:"] = "Cidade:"; -$a->strings["Tags:"] = "Etiquetas:"; -$a->strings["Political Views:"] = "Posição política:"; -$a->strings["Religion:"] = "Religião:"; -$a->strings["Hobbies/Interests:"] = "Passatempos/Interesses:"; -$a->strings["Likes:"] = "Gosta de:"; -$a->strings["Dislikes:"] = "Não gosta de:"; -$a->strings["Contact information and Social Networks:"] = "Informações de contato e redes sociais:"; -$a->strings["Musical interests:"] = "Preferências musicais:"; -$a->strings["Books, literature:"] = "Livros, literatura:"; -$a->strings["Television:"] = "Televisão:"; -$a->strings["Film/dance/culture/entertainment:"] = "Filmes/dança/cultura/entretenimento:"; -$a->strings["Love/Romance:"] = "Amor/romance:"; -$a->strings["Work/employment:"] = "Trabalho/emprego:"; -$a->strings["School/education:"] = "Escola/educaçã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["Male"] = "Masculino"; +$a->strings["Female"] = "Feminino"; +$a->strings["Currently Male"] = "Atualmente masculino"; +$a->strings["Currently Female"] = "Atualmente feminino"; +$a->strings["Mostly Male"] = "Masculino a maior parte do tempo"; +$a->strings["Mostly Female"] = "Feminino a maior parte do tempo"; +$a->strings["Transgender"] = "Transgênero"; +$a->strings["Intersex"] = "Intersexual"; +$a->strings["Transsexual"] = "Transexual"; +$a->strings["Hermaphrodite"] = "Hermafrodita"; +$a->strings["Neuter"] = "Neutro"; +$a->strings["Non-specific"] = "Não específico"; +$a->strings["Other"] = "Outro"; +$a->strings["Undecided"] = array( + 0 => "", + 1 => "", +); +$a->strings["Males"] = "Homens"; +$a->strings["Females"] = "Mulheres"; +$a->strings["Gay"] = "Gays"; +$a->strings["Lesbian"] = "Lésbicas"; +$a->strings["No Preference"] = "Sem preferência"; +$a->strings["Bisexual"] = "Bissexuais"; +$a->strings["Autosexual"] = "Autossexuais"; +$a->strings["Abstinent"] = "Abstêmios"; +$a->strings["Virgin"] = "Virgens"; +$a->strings["Deviant"] = "Desviantes"; +$a->strings["Fetish"] = "Fetiches"; +$a->strings["Oodles"] = "Insaciável"; +$a->strings["Nonsexual"] = "Não sexual"; +$a->strings["Single"] = "Solteiro(a)"; +$a->strings["Lonely"] = "Solitário(a)"; +$a->strings["Available"] = "Disponível"; +$a->strings["Unavailable"] = "Não disponível"; +$a->strings["Has crush"] = "Tem uma paixão"; +$a->strings["Infatuated"] = "Apaixonado"; +$a->strings["Dating"] = "Saindo com alguém"; +$a->strings["Unfaithful"] = "Infiel"; +$a->strings["Sex Addict"] = "Viciado(a) em sexo"; +$a->strings["Friends"] = "Amigos"; +$a->strings["Friends/Benefits"] = "Amigos/Benefícios"; +$a->strings["Casual"] = "Casual"; +$a->strings["Engaged"] = "Envolvido(a)"; +$a->strings["Married"] = "Casado(a)"; +$a->strings["Imaginarily married"] = "Casado imaginariamente"; +$a->strings["Partners"] = "Parceiros"; +$a->strings["Cohabiting"] = "Coabitando"; +$a->strings["Common law"] = "Direito comum"; +$a->strings["Happy"] = "Feliz"; +$a->strings["Not looking"] = "Não estou procurando"; +$a->strings["Swinger"] = "Swinger"; +$a->strings["Betrayed"] = "Traído(a)"; +$a->strings["Separated"] = "Separado(a)"; +$a->strings["Unstable"] = "Instável"; +$a->strings["Divorced"] = "Divorciado(a)"; +$a->strings["Imaginarily divorced"] = "Divorciado imaginariamente"; +$a->strings["Widowed"] = "Viúvo(a)"; +$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["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"; @@ -325,8 +355,13 @@ $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"; @@ -339,6 +374,7 @@ $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"; @@ -349,76 +385,15 @@ $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["Disallowed profile URL."] = "URL de perfil não permitida."; -$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."; -$a->strings["The profile address specified does not provide adequate information."] = "O endereço de perfil especificado não fornece informação adequada."; -$a->strings["An author or name was not found."] = "Não foi encontrado nenhum autor ou nome."; -$a->strings["No browser URL could be matched to this address."] = "Não foi possível encontrar nenhuma URL de navegação neste endereço."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Não foi possível casa o estilo @ de Endereço de Identidade com um protocolo conhecido ou contato de email."; -$a->strings["Use mailto: in front of address to force email check."] = "Use mailto: antes do endereço para forçar a checagem de email."; -$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["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["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["stopped following"] = "parou de acompanhar"; -$a->strings["Poke"] = "Cutucar"; -$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["Drop Contact"] = "Excluir o contato"; -$a->strings["Send PM"] = "Enviar MP"; -$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["Miscellaneous"] = "Miscelânea"; -$a->strings["year"] = "ano"; -$a->strings["month"] = "mês"; -$a->strings["day"] = "dia"; -$a->strings["never"] = "nunca"; -$a->strings["less than a second ago"] = "menos de um segundo atrás"; -$a->strings["years"] = "anos"; -$a->strings["months"] = "meses"; -$a->strings["week"] = "semana"; -$a->strings["weeks"] = "semanas"; -$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["[no subject]"] = "[sem assunto]"; -$a->strings["(no subject)"] = "(sem assunto)"; $a->strings["Unknown | Not categorised"] = "Desconhecido | Não categorizado"; $a->strings["Block immediately"] = "Bloquear imediatamente"; $a->strings["Shady, spammer, self-marketer"] = "Dissimulado, spammer, propagandista"; @@ -445,17 +420,31 @@ $a->strings["Google+"] = "Google+"; $a->strings["pump.io"] = "pump.io"; $a->strings["Twitter"] = "Twitter"; $a->strings["Diaspora Connector"] = "Conector do Diáspora"; -$a->strings["Statusnet"] = "Statusnet"; +$a->strings["GNU Social"] = "GNU Social"; $a->strings["App.net"] = "App.net"; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s agora é amigo de %2\$s"; -$a->strings["Sharing notification from Diaspora network"] = "Notificação de compartilhamento da rede Diaspora"; -$a->strings["Attachments:"] = "Anexos:"; +$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["%1\$s attends %2\$s's %3\$s"] = ""; +$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = ""; +$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = ""; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s agora é amigo de %2\$s"; $a->strings["%1\$s poked %2\$s"] = "%1\$s cutucou %2\$s"; $a->strings["%1\$s is currently %2\$s"] = "%1\$s atualmente está %2\$s"; $a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s etiquetou %3\$s de %2\$s com %4\$s"; $a->strings["post/item"] = "postagem/item"; $a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s marcou %3\$s de %2\$s como favorito"; +$a->strings["Likes"] = "Gosta de"; +$a->strings["Dislikes"] = "Não gosta de"; +$a->strings["Attending"] = array( + 0 => "", + 1 => "", +); +$a->strings["Not attending"] = ""; +$a->strings["Might attend"] = ""; $a->strings["Select"] = "Selecionar"; $a->strings["Delete"] = "Excluir"; $a->strings["View %s's profile @ %s"] = "Ver o perfil de %s @ %s"; @@ -467,14 +456,30 @@ $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["%2\$d people like this"] = "%2\$d pessoas gostaram disso"; -$a->strings["%2\$d people don't like this"] = "%2\$d pessoas não gostaram disso"; +$a->strings["%s attends."] = ""; +$a->strings["%s doesn't attend."] = ""; +$a->strings["%s attends maybe."] = ""; $a->strings["and"] = "e"; $a->strings[", and %d other people"] = ", e mais %d outras pessoas"; -$a->strings["%s like this."] = "%s gostaram disso."; -$a->strings["%s don't like this."] = "%s não gostaram disso."; +$a->strings["%2\$d people like this"] = "%2\$d pessoas gostaram disso"; +$a->strings["%s like this."] = "%s curtiu."; +$a->strings["%2\$d people don't like this"] = "%2\$d pessoas não gostaram disso"; +$a->strings["%s don't like this."] = "%s não curtiu."; +$a->strings["%2\$d people attend"] = ""; +$a->strings["%s attend."] = ""; +$a->strings["%2\$d people don't attend"] = ""; +$a->strings["%s don't attend."] = ""; +$a->strings["%2\$d people anttend maybe"] = ""; +$a->strings["%s anttend maybe."] = ""; $a->strings["Visible to everybody"] = "Visível para todos"; $a->strings["Please enter a link URL:"] = "Por favor, digite uma URL:"; $a->strings["Please enter a video link/URL:"] = "Favor fornecer um link/URL de vídeo"; @@ -483,9 +488,6 @@ $a->strings["Tag term:"] = "Etiqueta:"; $a->strings["Save to Folder:"] = "Salvar na pasta:"; $a->strings["Where are you right now?"] = "Onde você está agora?"; $a->strings["Delete item(s)?"] = "Deletar item(s)?"; -$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["Share"] = "Compartilhar"; $a->strings["Upload photo"] = "Enviar foto"; $a->strings["upload photo"] = "upload de foto"; @@ -505,13 +507,129 @@ $a->strings["Set title"] = "Definir o título"; $a->strings["Categories (comma-separated list)"] = "Categorias (lista separada por vírgulas)"; $a->strings["Permission settings"] = "Configurações de permissão"; $a->strings["permissions"] = "permissões"; -$a->strings["CC: email addresses"] = "CC: endereço de e-mail"; $a->strings["Public post"] = "Publicação pública"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Por exemplo: joao@exemplo.com, maria@exemplo.com"; $a->strings["Preview"] = "Pré-visualização"; +$a->strings["Cancel"] = "Cancelar"; $a->strings["Post to Groups"] = "Postar em Grupos"; $a->strings["Post to Contacts"] = "Publique para Contatos"; $a->strings["Private post"] = "Publicação privada"; +$a->strings["Message"] = "Mensagem"; +$a->strings["Browser"] = "Navegador"; +$a->strings["View all"] = ""; +$a->strings["Like"] = array( + 0 => "Curtida", + 1 => "Curtidas", +); +$a->strings["Dislike"] = array( + 0 => "Não curtiu", + 1 => "Não curtiram", +); +$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["Disallowed profile URL."] = "URL de perfil não permitida."; +$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."; +$a->strings["The profile address specified does not provide adequate information."] = "O endereço de perfil especificado não fornece informação adequada."; +$a->strings["An author or name was not found."] = "Não foi encontrado nenhum autor ou nome."; +$a->strings["No browser URL could be matched to this address."] = "Não foi possível encontrar nenhuma URL de navegação neste endereço."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Não foi possível casa o estilo @ de Endereço de Identidade com um protocolo conhecido ou contato de email."; +$a->strings["Use mailto: in front of address to force email check."] = "Use mailto: antes do endereço para forçar a checagem de email."; +$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["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"; +$a->strings["Atom feed"] = ""; +$a->strings["Manage/edit profiles"] = "Gerenciar/editar perfis"; +$a->strings["Change profile photo"] = "Mudar a foto do perfil"; +$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["Network:"] = "Rede:"; +$a->strings["g A l F d"] = "G l d F"; +$a->strings["F d"] = "F d"; +$a->strings["[today]"] = "[hoje]"; +$a->strings["Birthday Reminders"] = "Lembretes de aniversário"; +$a->strings["Birthdays this week:"] = "Aniversários nesta semana:"; +$a->strings["[No description]"] = "[Sem descrição]"; +$a->strings["Event Reminders"] = "Lembretes de eventos"; +$a->strings["Events this week:"] = "Eventos esta semana:"; +$a->strings["Full Name:"] = "Nome completo:"; +$a->strings["j F, Y"] = "j de F, Y"; +$a->strings["j F"] = "j de F"; +$a->strings["Age:"] = "Idade:"; +$a->strings["for %1\$d %2\$s"] = "para %1\$d %2\$s"; +$a->strings["Sexual Preference:"] = "Preferência sexual:"; +$a->strings["Hometown:"] = "Cidade:"; +$a->strings["Tags:"] = "Etiquetas:"; +$a->strings["Political Views:"] = "Posição política:"; +$a->strings["Religion:"] = "Religião:"; +$a->strings["Hobbies/Interests:"] = "Passatempos/Interesses:"; +$a->strings["Likes:"] = "Gosta de:"; +$a->strings["Dislikes:"] = "Não gosta de:"; +$a->strings["Contact information and Social Networks:"] = "Informações de contato e redes sociais:"; +$a->strings["Musical interests:"] = "Preferências musicais:"; +$a->strings["Books, literature:"] = "Livros, literatura:"; +$a->strings["Television:"] = "Televisão:"; +$a->strings["Film/dance/culture/entertainment:"] = "Filmes/dança/cultura/entretenimento:"; +$a->strings["Love/Romance:"] = "Amor/romance:"; +$a->strings["Work/employment:"] = "Trabalho/emprego:"; +$a->strings["School/education:"] = "Escola/educação:"; +$a->strings["Forums:"] = "Fóruns:"; +$a->strings["Basic"] = ""; +$a->strings["Advanced"] = "Avançado"; +$a->strings["Status Messages and Posts"] = "Mensagem de Estado (status) e Publicações"; +$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["[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["newer"] = "mais recente"; $a->strings["older"] = "antigo"; $a->strings["prev"] = "anterior"; @@ -559,30 +677,11 @@ $a->strings["frustrated"] = "frustrado"; $a->strings["motivated"] = "motivado"; $a->strings["relaxed"] = "relaxado"; $a->strings["surprised"] = "surpreso"; -$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["Sunday"] = "Domingo"; -$a->strings["January"] = "Janeiro"; -$a->strings["February"] = "Fevereiro"; -$a->strings["March"] = "Março"; -$a->strings["April"] = "Abril"; -$a->strings["May"] = "Maio"; -$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["View Video"] = "Ver Vídeo"; $a->strings["bytes"] = "bytes"; $a->strings["Click to open/close"] = "Clique para abrir/fechar"; -$a->strings["link to source"] = "exibir a origem"; -$a->strings["Select an alternate language"] = "Selecione um idioma alternativo"; +$a->strings["View on separate page"] = "Ver em uma página separada"; +$a->strings["view on separate page"] = "ver em uma página separada"; $a->strings["activity"] = "atividade"; $a->strings["comment"] = array( 0 => "comentário", @@ -590,137 +689,275 @@ $a->strings["comment"] = array( ); $a->strings["post"] = "publicação"; $a->strings["Item filed"] = "O item foi arquivado"; -$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["Image/photo"] = "Imagem/foto"; -$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; -$a->strings["%s wrote the following post"] = "%s escreveu a seguinte publicação"; -$a->strings["$1 wrote:"] = "$1 escreveu:"; -$a->strings["Encrypted content"] = "Conteúdo criptografado"; -$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["Embedded content"] = "Conteúdo incorporado"; -$a->strings["Embedding disabled"] = "A incorporação está desabilitada"; -$a->strings["Male"] = "Masculino"; -$a->strings["Female"] = "Feminino"; -$a->strings["Currently Male"] = "Atualmente masculino"; -$a->strings["Currently Female"] = "Atualmente feminino"; -$a->strings["Mostly Male"] = "Masculino a maior parte do tempo"; -$a->strings["Mostly Female"] = "Feminino a maior parte do tempo"; -$a->strings["Transgender"] = "Transgênero"; -$a->strings["Intersex"] = "Intersexual"; -$a->strings["Transsexual"] = "Transexual"; -$a->strings["Hermaphrodite"] = "Hermafrodita"; -$a->strings["Neuter"] = "Neutro"; -$a->strings["Non-specific"] = "Não específico"; -$a->strings["Other"] = "Outro"; -$a->strings["Undecided"] = "Indeciso"; -$a->strings["Males"] = "Homens"; -$a->strings["Females"] = "Mulheres"; -$a->strings["Gay"] = "Gays"; -$a->strings["Lesbian"] = "Lésbicas"; -$a->strings["No Preference"] = "Sem preferência"; -$a->strings["Bisexual"] = "Bissexuais"; -$a->strings["Autosexual"] = "Autossexuais"; -$a->strings["Abstinent"] = "Abstêmios"; -$a->strings["Virgin"] = "Virgens"; -$a->strings["Deviant"] = "Desviantes"; -$a->strings["Fetish"] = "Fetiches"; -$a->strings["Oodles"] = "Insaciável"; -$a->strings["Nonsexual"] = "Não sexual"; -$a->strings["Single"] = "Solteiro(a)"; -$a->strings["Lonely"] = "Solitário(a)"; -$a->strings["Available"] = "Disponível"; -$a->strings["Unavailable"] = "Não disponível"; -$a->strings["Has crush"] = "Tem uma paixão"; -$a->strings["Infatuated"] = "Apaixonado"; -$a->strings["Dating"] = "Saindo com alguém"; -$a->strings["Unfaithful"] = "Infiel"; -$a->strings["Sex Addict"] = "Viciado(a) em sexo"; -$a->strings["Friends"] = "Amigos"; -$a->strings["Friends/Benefits"] = "Amigos/Benefícios"; -$a->strings["Casual"] = "Casual"; -$a->strings["Engaged"] = "Envolvido(a)"; -$a->strings["Married"] = "Casado(a)"; -$a->strings["Imaginarily married"] = "Casado imaginariamente"; -$a->strings["Partners"] = "Parceiros"; -$a->strings["Cohabiting"] = "Coabitando"; -$a->strings["Common law"] = "Direito comum"; -$a->strings["Happy"] = "Feliz"; -$a->strings["Not looking"] = "Não estou procurando"; -$a->strings["Swinger"] = "Swinger"; -$a->strings["Betrayed"] = "Traído(a)"; -$a->strings["Separated"] = "Separado(a)"; -$a->strings["Unstable"] = "Instável"; -$a->strings["Divorced"] = "Divorciado(a)"; -$a->strings["Imaginarily divorced"] = "Divorciado imaginariamente"; -$a->strings["Widowed"] = "Viúvo(a)"; -$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["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 \"_\", and must also begin with a letter."] = "A sua identificação pode conter somente os caracteres \"a-z\", \"0-9\", \"-\", e \"_\", além disso, deve começar com uma letra."; -$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["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["\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["Visible to everybody"] = "Visível para todos"; -$a->strings["This entry was edited"] = "Essa entrada foi editada"; -$a->strings["Private Message"] = "Mensagem privada"; -$a->strings["Edit"] = "Editar"; -$a->strings["save to folder"] = "salvar na pasta"; -$a->strings["add star"] = "destacar"; -$a->strings["remove star"] = "remover o destaque"; -$a->strings["toggle star status"] = "ativa/desativa o destaque"; -$a->strings["starred"] = "marcado com estrela"; -$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["add tag"] = "adicionar etiqueta"; -$a->strings["I like this (toggle)"] = "Eu gostei disso (alternar)"; -$a->strings["like"] = "gostei"; -$a->strings["I don't like this (toggle)"] = "Eu não gostei disso (alternar)"; -$a->strings["dislike"] = "desgostar"; -$a->strings["Share this"] = "Compartilhar isso"; -$a->strings["share"] = "compartilhar"; -$a->strings["to"] = "para"; -$a->strings["via"] = "via"; -$a->strings["Wall-to-Wall"] = "Mural-para-mural"; -$a->strings["via Wall-To-Wall:"] = "via Mural-para-mural"; -$a->strings["%d comment"] = array( - 0 => "%d comentário", - 1 => "%d comentários", +$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["This is you"] = "Este(a) é você"; -$a->strings["Bold"] = "Negrito"; -$a->strings["Italic"] = "Itálico"; -$a->strings["Underline"] = "Sublinhado"; -$a->strings["Quote"] = "Citação"; -$a->strings["Code"] = "Código"; -$a->strings["Image"] = "Imagem"; -$a->strings["Link"] = "Link"; -$a->strings["Video"] = "Vídeo"; +$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."; @@ -732,358 +969,75 @@ $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["Your message:"] = "Sua mensagem:"; -$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 Name: "] = "Nome do grupo: "; -$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["Click on a contact to add or remove."] = "Clique em um contato para adicionar ou remover."; -$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["Invalid request identifier."] = "Identificador de solicitação inválido"; -$a->strings["Discard"] = "Descartar"; -$a->strings["Ignore"] = "Ignorar"; -$a->strings["System"] = "Sistema"; -$a->strings["Personal"] = "Pessoal"; -$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["Friend Suggestion"] = "Sugestão de amigo"; -$a->strings["suggested by %s"] = "sugerido por %s"; -$a->strings["Hide this contact from others"] = "Ocultar este contato dos outros"; -$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? \"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["Friend/Connect Request"] = "Solicitação de amizade/conexão"; -$a->strings["New Follower"] = "Novo acompanhante"; -$a->strings["No introductions."] = "Sem apresentações."; -$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 now friends with %s"] = "%s agora é amigo de %s"; -$a->strings["%s created a new post"] = "%s criou uma nova publicação"; -$a->strings["%s commented on %s's post"] = "%s comentou uma publicação de %s"; -$a->strings["No more network notifications."] = "Nenhuma notificação de rede."; -$a->strings["Network Notifications"] = "Notificações de rede"; -$a->strings["No more system notifications."] = "Não fazer notificações de sistema."; -$a->strings["System Notifications"] = "Notificações de sistema"; -$a->strings["No more personal notifications."] = "Nenhuma notificação pessoal."; -$a->strings["Personal Notifications"] = "Notificações pessoais"; -$a->strings["No more home notifications."] = "Não existe mais nenhuma notificação pessoal."; -$a->strings["Home Notifications"] = "Notificações pessoais"; -$a->strings["No profile"] = "Nenhum perfil"; -$a->strings["everybody"] = "todos"; -$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["Update"] = "Atualizar"; -$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["Passwords do not match. Password unchanged."] = "As senhas não correspondem. A senha não foi modificada."; -$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["Name"] = "Nome"; -$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["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["StatusNet"] = "StatusNet"; -$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["Mark as seen"] = "Marcar como visto"; -$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["Update browser every xx seconds"] = "Atualizar o navegador a cada xx segundos"; -$a->strings["Minimum of 10 seconds, no maximum"] = "Mínimo de 10 segundos, não possui máximo"; -$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["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["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["No"] = "Não"; -$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["or"] = "ou"; -$a->strings["Your Identity Address is"] = "O endereço da sua identidade é"; -$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["New Password:"] = "Nova senha:"; -$a->strings["Confirm:"] = "Confirme:"; -$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["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["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["Common Friends"] = "Amigos em Comum"; -$a->strings["No contacts in common."] = "Nenhum contato em comum."; -$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["%d contact edited."] = array( - 0 => "%d contato editado", - 1 => "%d contatos editados", -); -$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["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["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ê possui 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["View all contacts"] = "Ver todos os contatos"; -$a->strings["Unblock"] = "Desbloquear"; -$a->strings["Block"] = "Bloquear"; -$a->strings["Toggle Blocked status"] = "Alternar o status de bloqueio"; -$a->strings["Unignore"] = "Deixar de ignorar"; -$a->strings["Toggle Ignored status"] = "Alternar o status de ignorado"; -$a->strings["Unarchive"] = "Desarquivar"; -$a->strings["Archive"] = "Arquivar"; -$a->strings["Toggle Archive status"] = "Alternar o status de arquivamento"; -$a->strings["Repair"] = "Reparar"; -$a->strings["Advanced Contact Settings"] = "Configurações avançadas do contato"; -$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 Editor"] = "Editor de contatos"; -$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["Delete contact"] = "Excluir o contato"; -$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["Currently blocked"] = "Atualmente bloqueado"; -$a->strings["Currently ignored"] = "Atualmente ignorado"; -$a->strings["Currently archived"] = "Atualmente arquivado"; -$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["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["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["Search your contacts"] = "Pesquisar seus contatos"; -$a->strings["Finding: "] = "Pesquisando: "; -$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 %d"] = "O arquivo excedeu o tamanho limite de %d"; -$a->strings["File upload failed."] = "Não foi possível enviar o arquivo."; -$a->strings["[Embedded content - reload page to view]"] = "[Conteúdo incorporado - recarregue a página para ver]"; -$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["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["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["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["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["Registration"] = "Registro"; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Seu nome completo (ex: José da Silva): "; -$a->strings["Your Email Address: "] = "Seu endereço de e-mail: "; -$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"] = "Importar"; -$a->strings["Import your profile to this friendica instance"] = "Importa seu perfil desta instância do friendica"; -$a->strings["Post successful."] = "Publicado com sucesso."; -$a->strings["System down for maintenance"] = "Sistema em manutenção"; -$a->strings["Access to this profile has been restricted."] = "O acesso a este perfil está restrito."; +$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["Public access denied."] = "Acesso público negado."; -$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["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["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["Item not found"] = "O item não foi encontrado"; -$a->strings["Edit post"] = "Editar a publicação"; -$a->strings["People Search"] = "Pesquisar pessoas"; -$a->strings["No matches"] = "Nenhuma correspondência"; -$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["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."; @@ -1101,53 +1055,88 @@ $a->strings["Friends are advised to please try again in 24 hours."] = "Os amigos $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["Unable to resolve your name at the provided location."] = "Não foi possível encontrar a sua identificação no endereço indicado."; $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["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."] = "Caso você ainda não seja membro da rede social livre, clique aqui para encontrar um site Friendica público e junte-se à nós."; +$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["Files"] = "Arquivos"; -$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["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["Contacts who are not members of a group"] = "Contatos que não são membros de um grupo"; -$a->strings["Contact not found."] = "O contato não foi encontrado."; -$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["link"] = "ligação"; -$a->strings["No contacts."] = "Nenhum contato."; +$a->strings["This entry was edited"] = "Essa entrada foi editada"; +$a->strings["%d comment"] = array( + 0 => "%d comentário", + 1 => "%d comentários", +); +$a->strings["Private Message"] = "Mensagem privada"; +$a->strings["I like this (toggle)"] = "Eu gostei disso (alternar)"; +$a->strings["like"] = "gostei"; +$a->strings["I don't like this (toggle)"] = "Eu não gostei disso (alternar)"; +$a->strings["dislike"] = "desgostar"; +$a->strings["Share this"] = "Compartilhar isso"; +$a->strings["share"] = "compartilhar"; +$a->strings["This is you"] = "Este(a) é você"; +$a->strings["Comment"] = "Comentar"; +$a->strings["Bold"] = "Negrito"; +$a->strings["Italic"] = "Itálico"; +$a->strings["Underline"] = "Sublinhado"; +$a->strings["Quote"] = "Citação"; +$a->strings["Code"] = "Código"; +$a->strings["Image"] = "Imagem"; +$a->strings["Link"] = "Link"; +$a->strings["Video"] = "Vídeo"; +$a->strings["Edit"] = "Editar"; +$a->strings["add star"] = "destacar"; +$a->strings["remove star"] = "remover o destaque"; +$a->strings["toggle star status"] = "ativa/desativa o destaque"; +$a->strings["starred"] = "marcado com estrela"; +$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["save to folder"] = "salvar na pasta"; +$a->strings["I will attend"] = "Eu vou"; +$a->strings["I will not attend"] = "Eu não vou"; +$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["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["Federation Statistics"] = ""; $a->strings["Logs"] = "Relatórios"; +$a->strings["View Logs"] = ""; $a->strings["probe address"] = "prova endereço"; $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["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"] = ""; +$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["Normal Account"] = "Conta normal"; $a->strings["Soapbox Account"] = "Conta de vitrine"; $a->strings["Community/Celebrity Account"] = "Conta de comunidade/celebridade"; @@ -1155,18 +1144,27 @@ $a->strings["Automatic Friend Account"] = "Conta de amigo automático"; $a->strings["Blog Account"] = "Conta de blog"; $a->strings["Private Forum"] = "Fórum privado"; $a->strings["Message queues"] = "Fila de mensagens"; -$a->strings["Administration"] = "Administração"; $a->strings["Summary"] = "Resumo"; $a->strings["Registered users"] = "Usuários registrados"; $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"; +$a->strings["Three months"] = "Três meses"; +$a->strings["Half a year"] = "Seis meses"; +$a->strings["One year"] = "Um ano"; $a->strings["Multi user instance"] = "Instância multi usuário"; $a->strings["Closed"] = "Fechado"; $a->strings["Requires approval"] = "Requer aprovação"; @@ -1174,19 +1172,25 @@ $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["Advanced"] = "Avançado"; +$a->strings["Auto Discovered Contact Directory"] = ""; $a->strings["Performance"] = "Performance"; +$a->strings["Worker"] = ""; $a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Relocação - ATENÇÃO: função avançada. Pode tornar esse servidor inacessível."; $a->strings["Site name"] = "Nome do site"; $a->strings["Host name"] = "Nome do host"; $a->strings["Sender Email"] = "enviador de email"; +$a->strings["The email address your server shall use to send notification emails from."] = ""; $a->strings["Banner/Logo"] = "Banner/Logo"; $a->strings["Shortcut icon"] = "ícone de atalho"; +$a->strings["Link to an icon that will be used for browsers."] = ""; $a->strings["Touch icon"] = "ícone de toque"; +$a->strings["Link to an icon that will be used for tablets and mobiles."] = ""; $a->strings["Additional Info"] = "Informação adicional"; -$a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = "Para servidores públicos: você pode adicionar informações aqui que serão listadas em dir.friendica.com/siteinfo."; +$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = ""; $a->strings["System language"] = "Idioma do sistema"; $a->strings["System theme"] = "Tema do sistema"; $a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Tema padrão do sistema. Pode ser substituído nos perfis de usuário - alterar configurações do tema"; @@ -1223,8 +1227,8 @@ $a->strings["Block public"] = "Bloquear acesso público"; $a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "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."; $a->strings["Force publish"] = "Forçar a listagem"; $a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Marque para forçar todos os perfis desse site a serem listados no diretório do site."; -$a->strings["Global directory update URL"] = "URL de atualização do diretório global"; -$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL para atualizar o diretório global. Se isso não for definido, o diretório global não estará disponível neste site."; +$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"] = "Habilita itens aninhados"; $a->strings["Allow infinite level threading for items on this site."] = "Habilita nível infinito de aninhamento (threading) para itens."; $a->strings["Private posts by default for new users"] = "Publicações privadas por padrão para novos usuários"; @@ -1253,6 +1257,10 @@ $a->strings["Enable OStatus support"] = "Habilitar suporte ao 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."] = "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."; $a->strings["OStatus conversation completion interval"] = "Intervalo de finalização da conversação OStatus "; $a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "De quanto em quanto tempo o \"buscador\" (poller) deve checar por novas entradas numa conversação OStatus? Essa pode ser uma tarefa bem demorada."; +$a->strings["Only import OStatus threads from our contacts"] = ""; +$a->strings["Normally we import every content from our OStatus contacts. With this option we only store threads that are started by a contact that is known on our system."] = ""; +$a->strings["OStatus support can only be enabled if threading is enabled."] = ""; +$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = ""; $a->strings["Enable Diaspora support"] = "Habilitar suporte ao Diaspora"; $a->strings["Provide built-in Diaspora network compatibility."] = "Fornece compatibilidade nativa com a rede Diaspora."; $a->strings["Only allow Friendica contacts"] = "Permitir somente contatos Friendica"; @@ -1269,6 +1277,24 @@ $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["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"] = "Checagem periódica dos contatos globais"; +$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'."] = "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'."; +$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"] = "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"; @@ -1276,13 +1302,17 @@ $a->strings["Suppress language information in meta information about a posting." $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"; +$a->strings["The item caches buffers generated bbcode and external images."] = ""; $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"; @@ -1290,6 +1320,19 @@ $a->strings["The old style pager has page numbers but slows down massively the p $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["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"; @@ -1316,23 +1359,27 @@ $a->strings["%s user deleted"] = array( $a->strings["User '%s' deleted"] = "O usuário '%s' foi excluído"; $a->strings["User '%s' unblocked"] = "O usuário '%s' foi desbloqueado"; $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["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"; -$a->strings["Register date"] = "Data de registro"; -$a->strings["Last login"] = "Última entrada"; -$a->strings["Last item"] = "Último item"; $a->strings["Deleted since"] = "Apagado 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?"] = "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?"; $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?"] = "O usuário {0} será excluído!\\n\\nTudo o que este usuário publicou neste site será permanentemente excluído!\\n\\nDeseja continuar?"; -$a->strings["Name of the new user."] = "Nome do novo usuários."; +$a->strings["Name of the new user."] = "Nome do novo usuário."; $a->strings["Nickname"] = "Apelido"; $a->strings["Nickname of the new user."] = "Apelido para o novo usuário."; $a->strings["Email address of the new user."] = "Endereço de e-mail do novo usuário."; @@ -1343,418 +1390,108 @@ $a->strings["Enable"] = "Habilitar"; $a->strings["Toggle"] = "Alternar"; $a->strings["Author: "] = "Autor: "; $a->strings["Maintainer: "] = "Mantenedor: "; +$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."] = "Nenhum tema encontrado"; $a->strings["Screenshot"] = "Captura de tela"; +$a->strings["Reload active themes"] = ""; +$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["Clear"] = "Limpar"; -$a->strings["Enable Debugging"] = "Habilitar Debugging"; +$a->strings["Enable Debugging"] = "Habilitar depuração"; $a->strings["Log file"] = "Arquivo do relatório"; $a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "O servidor web precisa ter permissão de escrita. Relativa ao diretório raiz do seu Friendica."; $a->strings["Log level"] = "Nível do relatório"; -$a->strings["Close"] = "Fechar"; -$a->strings["FTP Host"] = "Endereço do FTP"; -$a->strings["FTP Path"] = "Caminho do FTP"; -$a->strings["FTP User"] = "Usuário do FTP"; -$a->strings["FTP Password"] = "Senha do FTP"; -$a->strings["Image exceeds size limit of %d"] = "A imagem excede o limite de tamanho de %d"; -$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["Welcome to %s"] = "Bem-vindo(a) a %s"; -$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["Search Results For:"] = "Resultados de Busca Por:"; -$a->strings["Remove term"] = "Remover o termo"; -$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["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["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["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: "] = "Grupo: "; -$a->strings["Contact: "] = "Contato: "; -$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["- select -"] = "-selecione-"; -$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"] = "Relatos e acompanhamentos de erros podem ser encontrados em"; -$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["Applications"] = "Aplicativos"; -$a->strings["No installed applications."] = "Nenhum aplicativo instalado"; -$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 exceeds size limit of "] = "A imagem excede o tamanho máximo de "; -$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["Permissions"] = "Permissões"; -$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["Rotate CW (right)"] = "Rotacionar para direita"; -$a->strings["Rotate CCW (left)"] = "Rotacionar para esquerda"; -$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["Private photo"] = "Foto privada"; -$a->strings["Public photo"] = "Foto pública"; -$a->strings["Recent Photos"] = "Fotos recentes"; -$a->strings["The post was created"] = "O texto foi criado"; -$a->strings["Contact added"] = "O contato foi adicionado"; -$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 (statusnet/identi.ca) or from Diaspora"] = "Esse recurso é experimental. Nós não podemos importar contatos de uma rede OStatus (statusnet/identi.ca) ou do 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["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["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["Access denied."] = "Acesso negado."; -$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["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["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["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 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["Invalid profile identifier."] = "Identificador de perfil inválido."; -$a->strings["Profile Visibility Editor"] = "Editor de visibilidade do perfil"; -$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["Profile Match"] = "Correspondência de perfil"; -$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["Event title and start time are required."] = "O título do evento e a hora de início são obrigatórios."; -$a->strings["l, F j"] = "l, F j"; -$a->strings["Edit event"] = "Editar o evento"; -$a->strings["Create New Event"] = "Criar um novo evento"; -$a->strings["Previous"] = "Anterior"; -$a->strings["Next"] = "Próximo"; -$a->strings["hour:minute"] = "hora:minuto"; -$a->strings["Event details"] = "Detalhes do evento"; -$a->strings["Format is %s %s. Starting date and Title are required."] = "O formato é %s %s. O título e a data de início são obrigatórios."; -$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["{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["{0} commented %s's post"] = "{0} comentou a publicação de %s"; -$a->strings["{0} liked %s's post"] = "{0} gostou da publicação de %s"; -$a->strings["{0} disliked %s's post"] = "{0} desgostou da publicação de %s"; -$a->strings["{0} is now friends with %s"] = "{0} agora é amigo de %s"; -$a->strings["{0} posted"] = "{0} publicou"; -$a->strings["{0} tagged %s's post with #%s"] = "{0} etiquetou a publicação de %s com #%s"; -$a->strings["{0} mentioned you in a post"] = "{0} mencionou você em uma publicaçã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["No results."] = "Nenhum resultado."; -$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["Unknown sender - %s"] = "Remetente desconhecido - %s"; -$a->strings["You and %s"] = "Você e %s"; -$a->strings["%s and You"] = "%s e você"; -$a->strings["Delete conversation"] = "Excluir conversa"; -$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["Message not available."] = "A mensagem não está disponível."; -$a->strings["Delete message"] = "Excluir a mensagem"; -$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["Not available."] = "Não disponível."; +$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["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["Likes"] = "Gosta de"; -$a->strings["Dislikes"] = "Não gosta de"; -$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["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["Upload Profile Photo"] = "Enviar foto do perfil"; -$a->strings["Profile Name:"] = "Nome do perfil:"; -$a->strings["Your Full Name:"] = "Seu nome completo:"; -$a->strings["Title/Description:"] = "Título/Descrição:"; -$a->strings["Your Gender:"] = "Seu gênero:"; -$a->strings["Birthday (%s):"] = "Aniversário (%s):"; -$a->strings["Street Address:"] = "Endereço:"; -$a->strings["Locality/City:"] = "Localidade/Cidade:"; -$a->strings["Postal/Zip Code:"] = "CEP:"; -$a->strings["Country:"] = "País:"; -$a->strings["Region/State:"] = "Região/Estado:"; -$a->strings[" Marital Status:"] = " Situação amorosa:"; -$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["Homepage URL:"] = "Endereço do site web:"; -$a->strings["Religious Views:"] = "Orientação religiosa:"; -$a->strings["Public Keywords:"] = "Palavras-chave públicas:"; -$a->strings["Private Keywords:"] = "Palavras-chave privadas:"; -$a->strings["Example: fishing photography software"] = "Exemplo: pesca fotografia software"; -$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["(Used for searching profiles, never shown to others)"] = "(Usado na pesquisa de perfis, nunca é exibido para os outros)"; -$a->strings["Tell us about yourself..."] = "Fale um pouco sobre você..."; -$a->strings["Hobbies/Interests"] = "Passatempos/Interesses"; -$a->strings["Contact information and Social Networks"] = "Informações de contato e redes sociais"; -$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["Love/romance"] = "Amor/romance"; -$a->strings["Work/employment"] = "Trabalho/emprego"; -$a->strings["School/education"] = "Escola/educação"; -$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["Age: "] = "Idade: "; -$a->strings["Edit/Manage Profiles"] = "Editar/Gerenciar perfis"; -$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["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["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 'Activating scheduled tasks'"] = "Caso você não tenha uma versão de linha de comando do PHP instalado no seu servidor, você não será capaz de executar a captação em segundo plano. Dê uma olhada em 'Activating scheduled tasks'"; -$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["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["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["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["Help:"] = "Ajuda:"; -$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["Repair Contact Settings"] = "Corrigir configurações do contato"; -$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["Return to contact editor"] = "Voltar ao editor de contatos"; -$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["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["Remote Self"] = "Auto 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 auto remoto fará com que o friendica republique novas entradas deste usuário."; -$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 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["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Autorize o Conector com Facebook, caso você tenha uma conta lá e nós (opcionalmente) importaremos todos os seus amigos e conversas do Facebook."; -$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Se esse é o seu servidor pessoal, instalar o complemento do Facebook talvez facilite a transição para a rede social livre."; -$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."] = "Nossas páginas de ajuda podem ser consultadas para mais detalhes sobre características e recursos do programa."; -$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["Item has been removed."] = "O item foi removido."; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está seguindo %2\$s's %3\$s"; -$a->strings["%1\$s welcomes %2\$s"] = "%1\$s dá as boas vinda à %2\$s"; $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: "; @@ -1772,6 +1509,24 @@ $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."] = "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."; @@ -1779,6 +1534,13 @@ $a->strings["This message was sent to you by %s, a member of the Friendica socia $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"; @@ -1786,21 +1548,483 @@ $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["Friends of %s"] = "Amigos de %s"; -$a->strings["No friends to display."] = "Nenhum amigo para exibir."; -$a->strings["Find on this site"] = "Pesquisar neste site"; -$a->strings["Site Directory"] = "Diretório do site"; -$a->strings["Gender: "] = "Gênero: "; -$a->strings["No entries (some entries may be hidden)."] = "Nenhuma entrada (algumas entradas podem estar ocultas)."; -$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 provê esse serviço para compartilhar eventos com outras redes e amigos em fuso-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["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["Default"] = "Padrão"; +$a->strings["Note: "] = "Observação:"; +$a->strings["Check image permissions if all users are allowed to visit the image"] = ""; +$a->strings["Select scheme"] = "Selecionar esquema de cores"; +$a->strings["Navigation bar background color"] = "Cor de fundo da barra de navegação"; +$a->strings["Navigation bar icon color "] = "Cor do ícone da barra de navegação"; +$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["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["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["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["toggle mobile"] = "habilita mobile"; +$a->strings["Delete this item?"] = "Excluir este item?"; +$a->strings["show fewer"] = "exibir menos"; +$a->strings["Update %s failed. See error logs."] = "Atualização %s falhou. Vide registro de erros (log)."; +$a->strings["Create a New Account"] = "Criar uma nova conta"; +$a->strings["Password: "] = "Senha: "; +$a->strings["Remember me"] = "Lembre-se de mim"; +$a->strings["Or login using OpenID: "] = "Ou login usando OpendID:"; +$a->strings["Forgot your password?"] = "Esqueceu a sua senha?"; +$a->strings["Website Terms of Service"] = "Termos de Serviço do Website"; +$a->strings["terms of service"] = "termos de serviço"; +$a->strings["Website Privacy Policy"] = "Política de Privacidade do Website"; +$a->strings["privacy policy"] = "política de privacidade"; diff --git a/view/templates/admin_logs.tpl b/view/templates/admin_logs.tpl index e79c7d7af7..b2e6357a9a 100644 --- a/view/templates/admin_logs.tpl +++ b/view/templates/admin_logs.tpl @@ -14,6 +14,7 @@

{{$phpheader}}

+

{{$phplogenabled}}

{{$phphint}}

{{$phplogcode}}
diff --git a/view/templates/admin_summary.tpl b/view/templates/admin_summary.tpl index 70f95ca5ef..08e84b0085 100644 --- a/view/templates/admin_summary.tpl +++ b/view/templates/admin_summary.tpl @@ -4,7 +4,7 @@
{{$queues.label}}
-
{{$queues.deliverq}} - {{$queues.queue}}{{if $queues.workerq}} - {{$queues.workerq}}{{/if}}
+
{{$queues.deliverq}} - {{$queues.queue}}{{if $workeractive}} - {{$queues.workerq}}{{/if}}
{{$pending.0}}
diff --git a/view/theme/frio/frameworks/autosize/LICENSE.md b/view/theme/frio/frameworks/autosize/LICENSE.md new file mode 100644 index 0000000000..2de673bfa0 --- /dev/null +++ b/view/theme/frio/frameworks/autosize/LICENSE.md @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2015 Jack Moore + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/view/theme/frio/frameworks/autosize/autosize.js b/view/theme/frio/frameworks/autosize/autosize.js new file mode 100644 index 0000000000..49b8b0b957 --- /dev/null +++ b/view/theme/frio/frameworks/autosize/autosize.js @@ -0,0 +1,262 @@ +/*! + Autosize 3.0.17 + license: MIT + http://www.jacklmoore.com/autosize +*/ +(function (global, factory) { + if (typeof define === 'function' && define.amd) { + define(['exports', 'module'], factory); + } else if (typeof exports !== 'undefined' && typeof module !== 'undefined') { + factory(exports, module); + } else { + var mod = { + exports: {} + }; + factory(mod.exports, mod); + global.autosize = mod.exports; + } +})(this, function (exports, module) { + 'use strict'; + + var set = typeof Set === 'function' ? new Set() : (function () { + var list = []; + + return { + has: function has(key) { + return Boolean(list.indexOf(key) > -1); + }, + add: function add(key) { + list.push(key); + }, + 'delete': function _delete(key) { + list.splice(list.indexOf(key), 1); + } }; + })(); + + var createEvent = function createEvent(name) { + return new Event(name); + }; + try { + new Event('test'); + } catch (e) { + // IE does not support `new Event()` + createEvent = function (name) { + var evt = document.createEvent('Event'); + evt.initEvent(name, true, false); + return evt; + }; + } + + function assign(ta) { + if (!ta || !ta.nodeName || ta.nodeName !== 'TEXTAREA' || set.has(ta)) return; + + var heightOffset = null; + var clientWidth = ta.clientWidth; + var cachedHeight = null; + + function init() { + var style = window.getComputedStyle(ta, null); + + if (style.resize === 'vertical') { + ta.style.resize = 'none'; + } else if (style.resize === 'both') { + ta.style.resize = 'horizontal'; + } + + if (style.boxSizing === 'content-box') { + heightOffset = -(parseFloat(style.paddingTop) + parseFloat(style.paddingBottom)); + } else { + heightOffset = parseFloat(style.borderTopWidth) + parseFloat(style.borderBottomWidth); + } + // Fix when a textarea is not on document body and heightOffset is Not a Number + if (isNaN(heightOffset)) { + heightOffset = 0; + } + + update(); + } + + function changeOverflow(value) { + { + // Chrome/Safari-specific fix: + // When the textarea y-overflow is hidden, Chrome/Safari do not reflow the text to account for the space + // made available by removing the scrollbar. The following forces the necessary text reflow. + var width = ta.style.width; + ta.style.width = '0px'; + // Force reflow: + /* jshint ignore:start */ + ta.offsetWidth; + /* jshint ignore:end */ + ta.style.width = width; + } + + ta.style.overflowY = value; + + resize(); + } + + function getParentOverflows(el) { + var arr = []; + + while (el && el.parentNode && el.parentNode instanceof Element) { + if (el.parentNode.scrollTop) { + arr.push({ + node: el.parentNode, + scrollTop: el.parentNode.scrollTop }); + } + el = el.parentNode; + } + + return arr; + } + + function resize() { + var originalHeight = ta.style.height; + var overflows = getParentOverflows(ta); + var docTop = document.documentElement && document.documentElement.scrollTop; // Needed for Mobile IE (ticket #240) + + ta.style.height = 'auto'; + + var endHeight = ta.scrollHeight + heightOffset; + + if (ta.scrollHeight === 0) { + // If the scrollHeight is 0, then the element probably has display:none or is detached from the DOM. + ta.style.height = originalHeight; + return; + } + + ta.style.height = endHeight + 'px'; + + // used to check if an update is actually necessary on window.resize + clientWidth = ta.clientWidth; + + // prevents scroll-position jumping + overflows.forEach(function (el) { + el.node.scrollTop = el.scrollTop; + }); + + if (docTop) { + document.documentElement.scrollTop = docTop; + } + } + + function update() { + resize(); + + var computed = window.getComputedStyle(ta, null); + var computedHeight = Math.round(parseFloat(computed.height)); + var styleHeight = Math.round(parseFloat(ta.style.height)); + + // The computed height not matching the height set via resize indicates that + // the max-height has been exceeded, in which case the overflow should be set to visible. + if (computedHeight !== styleHeight) { + if (computed.overflowY !== 'visible') { + changeOverflow('visible'); + } + } else { + // Normally keep overflow set to hidden, to avoid flash of scrollbar as the textarea expands. + if (computed.overflowY !== 'hidden') { + changeOverflow('hidden'); + } + } + + if (cachedHeight !== computedHeight) { + cachedHeight = computedHeight; + var evt = createEvent('autosize:resized'); + ta.dispatchEvent(evt); + } + } + + var pageResize = function pageResize() { + if (ta.clientWidth !== clientWidth) { + update(); + } + }; + + var destroy = (function (style) { + window.removeEventListener('resize', pageResize, false); + ta.removeEventListener('input', update, false); + ta.removeEventListener('keyup', update, false); + ta.removeEventListener('autosize:destroy', destroy, false); + ta.removeEventListener('autosize:update', update, false); + set['delete'](ta); + + Object.keys(style).forEach(function (key) { + ta.style[key] = style[key]; + }); + }).bind(ta, { + height: ta.style.height, + resize: ta.style.resize, + overflowY: ta.style.overflowY, + overflowX: ta.style.overflowX, + wordWrap: ta.style.wordWrap }); + + ta.addEventListener('autosize:destroy', destroy, false); + + // IE9 does not fire onpropertychange or oninput for deletions, + // so binding to onkeyup to catch most of those events. + // There is no way that I know of to detect something like 'cut' in IE9. + if ('onpropertychange' in ta && 'oninput' in ta) { + ta.addEventListener('keyup', update, false); + } + + window.addEventListener('resize', pageResize, false); + ta.addEventListener('input', update, false); + ta.addEventListener('autosize:update', update, false); + set.add(ta); + ta.style.overflowX = 'hidden'; + ta.style.wordWrap = 'break-word'; + + init(); + } + + function destroy(ta) { + if (!(ta && ta.nodeName && ta.nodeName === 'TEXTAREA')) return; + var evt = createEvent('autosize:destroy'); + ta.dispatchEvent(evt); + } + + function update(ta) { + if (!(ta && ta.nodeName && ta.nodeName === 'TEXTAREA')) return; + var evt = createEvent('autosize:update'); + ta.dispatchEvent(evt); + } + + var autosize = null; + + // Do nothing in Node.js environment and IE8 (or lower) + if (typeof window === 'undefined' || typeof window.getComputedStyle !== 'function') { + autosize = function (el) { + return el; + }; + autosize.destroy = function (el) { + return el; + }; + autosize.update = function (el) { + return el; + }; + } else { + autosize = function (el, options) { + if (el) { + Array.prototype.forEach.call(el.length ? el : [el], function (x) { + return assign(x, options); + }); + } + return el; + }; + autosize.destroy = function (el) { + if (el) { + Array.prototype.forEach.call(el.length ? el : [el], destroy); + } + return el; + }; + autosize.update = function (el) { + if (el) { + Array.prototype.forEach.call(el.length ? el : [el], update); + } + return el; + }; + } + + module.exports = autosize; +}); \ No newline at end of file diff --git a/view/theme/frio/frameworks/autosize/autosize.min.js b/view/theme/frio/frameworks/autosize/autosize.min.js new file mode 100644 index 0000000000..2108e9033e --- /dev/null +++ b/view/theme/frio/frameworks/autosize/autosize.min.js @@ -0,0 +1,6 @@ +/*! + Autosize 3.0.17 + license: MIT + http://www.jacklmoore.com/autosize +*/ +!function(e,t){if("function"==typeof define&&define.amd)define(["exports","module"],t);else if("undefined"!=typeof exports&&"undefined"!=typeof module)t(exports,module);else{var n={exports:{}};t(n.exports,n),e.autosize=n.exports}}(this,function(e,t){"use strict";function n(e){function t(){var t=window.getComputedStyle(e,null);"vertical"===t.resize?e.style.resize="none":"both"===t.resize&&(e.style.resize="horizontal"),l="content-box"===t.boxSizing?-(parseFloat(t.paddingTop)+parseFloat(t.paddingBottom)):parseFloat(t.borderTopWidth)+parseFloat(t.borderBottomWidth),isNaN(l)&&(l=0),a()}function n(t){var n=e.style.width;e.style.width="0px",e.offsetWidth,e.style.width=n,e.style.overflowY=t,r()}function o(e){for(var t=[];e&&e.parentNode&&e.parentNode instanceof Element;)e.parentNode.scrollTop&&t.push({node:e.parentNode,scrollTop:e.parentNode.scrollTop}),e=e.parentNode;return t}function r(){var t=e.style.height,n=o(e),r=document.documentElement&&document.documentElement.scrollTop;e.style.height="auto";var i=e.scrollHeight+l;return 0===e.scrollHeight?void(e.style.height=t):(e.style.height=i+"px",s=e.clientWidth,n.forEach(function(e){e.node.scrollTop=e.scrollTop}),void(r&&(document.documentElement.scrollTop=r)))}function a(){r();var t=window.getComputedStyle(e,null),o=Math.round(parseFloat(t.height)),i=Math.round(parseFloat(e.style.height));if(o!==i?"visible"!==t.overflowY&&n("visible"):"hidden"!==t.overflowY&&n("hidden"),u!==o){u=o;var a=d("autosize:resized");e.dispatchEvent(a)}}if(e&&e.nodeName&&"TEXTAREA"===e.nodeName&&!i.has(e)){var l=null,s=e.clientWidth,u=null,c=function(){e.clientWidth!==s&&a()},p=function(t){window.removeEventListener("resize",c,!1),e.removeEventListener("input",a,!1),e.removeEventListener("keyup",a,!1),e.removeEventListener("autosize:destroy",p,!1),e.removeEventListener("autosize:update",a,!1),i["delete"](e),Object.keys(t).forEach(function(n){e.style[n]=t[n]})}.bind(e,{height:e.style.height,resize:e.style.resize,overflowY:e.style.overflowY,overflowX:e.style.overflowX,wordWrap:e.style.wordWrap});e.addEventListener("autosize:destroy",p,!1),"onpropertychange"in e&&"oninput"in e&&e.addEventListener("keyup",a,!1),window.addEventListener("resize",c,!1),e.addEventListener("input",a,!1),e.addEventListener("autosize:update",a,!1),i.add(e),e.style.overflowX="hidden",e.style.wordWrap="break-word",t()}}function o(e){if(e&&e.nodeName&&"TEXTAREA"===e.nodeName){var t=d("autosize:destroy");e.dispatchEvent(t)}}function r(e){if(e&&e.nodeName&&"TEXTAREA"===e.nodeName){var t=d("autosize:update");e.dispatchEvent(t)}}var i="function"==typeof Set?new Set:function(){var e=[];return{has:function(t){return Boolean(e.indexOf(t)>-1)},add:function(t){e.push(t)},"delete":function(t){e.splice(e.indexOf(t),1)}}}(),d=function(e){return new Event(e)};try{new Event("test")}catch(a){d=function(e){var t=document.createEvent("Event");return t.initEvent(e,!0,!1),t}}var l=null;"undefined"==typeof window||"function"!=typeof window.getComputedStyle?(l=function(e){return e},l.destroy=function(e){return e},l.update=function(e){return e}):(l=function(e,t){return e&&Array.prototype.forEach.call(e.length?e:[e],function(e){return n(e,t)}),e},l.destroy=function(e){return e&&Array.prototype.forEach.call(e.length?e:[e],o),e},l.update=function(e){return e&&Array.prototype.forEach.call(e.length?e:[e],r),e}),t.exports=l}); \ No newline at end of file diff --git a/view/theme/frio/frameworks/autosize/changelog.md b/view/theme/frio/frameworks/autosize/changelog.md new file mode 100644 index 0000000000..61d73e4ff0 --- /dev/null +++ b/view/theme/frio/frameworks/autosize/changelog.md @@ -0,0 +1,79 @@ +## Changelog + +##### v.3.0.17 - 2016-7-25 +* Fixed Chromium issue where getComputedStyle pixel value did not exactly match the style pixel value. Fixes #306. +* Removed undocumented argument, minor refactoring, more comments. + +##### v.3.0.16 - 2016-7-13 +* Fixed issue with overflowing parent elements. Fixes #298. + +##### v.3.0.15 - 2016-1-26 +* Used newer Event constructor, when available. Fixes #280. + +##### v.3.0.14 - 2015-11-11 +* Fixed memory leak on destroy. Merged #271, fixes #270. +* Fixed bug in old versions of Firefox (1-5), fixes #246. + +##### v.3.0.13 - 2015-09-26 +* Fixed scroll-bar jumpiness in iOS. Merged #261, fixes #207. +* Fixed reflowing of initial text in Chrome and Safari. + +##### v.3.0.12 - 2015-09-14 +* Merged changes were discarded when building new dist files. Merged #255, Fixes #257 for real this time. + +##### v.3.0.11 - 2015-09-14 +* Fixed regression from 3.0.10 that caused an error with ES5 browsers. Merged #255, Fixes #257. + +##### v.3.0.10 - 2015-09-10 +* Removed data attribute as a way of tracking which elements autosize has been assigned to. fixes #254, fixes #200. + +##### v.3.0.9 - 2015-09-02 +* Fixed issue with assigning autosize to detached nodes. Merged #253, Fixes #234. + +##### v.3.0.8 - 2015-06-29 +* Fixed the `autosize:resized` event not being triggered when the overflow changes. Fixes #244. + +##### v.3.0.7 - 2015-06-29 +* Fixed jumpy behavior in Windows 8.1 mobile. Fixes #239. + +##### v.3.0.6 - 2015-05-19 +* Renamed 'dest' folder to 'dist' to follow common conventions. + +##### v.3.0.5 - 2015-05-18 +* Do nothing in Node.js environment. + +##### v.3.0.4 - 2015-05-05 +* Added options object for indicating if the script should set the overflowX and overflowY. The default behavior lets the script control the overflows, which will normalize the appearance between browsers. Fixes #220. + +##### v.3.0.3 - 2015-04-23 +* Avoided adjusting the height for hidden textarea elements. Fixes #155. + +##### v.3.0.2 - 2015-04-23 +* Reworked to respect max-height of any unit-type. Fixes #191. + +##### v.3.0.1 - 2015-04-23 +* Fixed the destroy event so that it removes its own event handler. Fixes #218. + +##### v.3.0.0 - 2015-04-15 +* Added new methods for updating and destroying: + + * autosize.update(elements) + * autosize.destroy(elements) + +* Renamed custom events as to not use jQuery's custom events namespace: + + * autosize.resized renamed to autosize:resized + * autosize.update renamed to autosize:update + * autosize.destroy renamed to autosize:destroy + +##### v.2.0.1 - 2015-04-15 +* Version bump for NPM publishing purposes + +##### v.2.0.0 - 2015-02-25 + +* Smaller, simplier code-base +* New API. Example usage: `autosize(document.querySelectorAll(textarea));` +* Dropped jQuery dependency +* Dropped IE7-IE8 support +* Dropped optional parameters +* Closes #98, closes #106, closes #123, fixes #129, fixes #132, fixes #139, closes #140, closes #166, closes #168, closes #192, closes #193, closes #197 \ No newline at end of file diff --git a/view/theme/frio/frameworks/autosize/readme.md b/view/theme/frio/frameworks/autosize/readme.md new file mode 100644 index 0000000000..385782917d --- /dev/null +++ b/view/theme/frio/frameworks/autosize/readme.md @@ -0,0 +1,35 @@ +## Summary + +Autosize is a small, stand-alone script to automatically adjust textarea height to fit text. + +#### Demo + +Full documentation and a demo can be found at [jacklmoore.com/autosize](http://jacklmoore.com/autosize) + +#### Install via NPM +```bash +npm install autosize +``` + +#### Browser compatibility + +Chrome | Firefox | IE | Safari | iOS Safari | Android | Opera Mini | Windows Phone IE +------ | --------|----|--------|------------|---------|------------|------------------ +yes | yes | 9 | yes | yes | 4 | ? | 8.1 + +#### Usage + +The autosize function accepts a single textarea element, or an array or array-like object (such as a NodeList or jQuery collection) of textarea elements. + +```javascript +// from a NodeList +autosize(document.querySelectorAll('textarea')); + +// from a single Node +autosize(document.querySelector('textarea')); + +// from a jQuery collection +autosize($('textarea')); +``` + +Released under the [MIT License](http://www.opensource.org/licenses/mit-license.php) diff --git a/view/theme/frio/js/filebrowser.js b/view/theme/frio/js/filebrowser.js index 0fe501d548..768db3a705 100644 --- a/view/theme/frio/js/filebrowser.js +++ b/view/theme/frio/js/filebrowser.js @@ -135,11 +135,13 @@ var FileBrowser = { this.dataset.filename, embed, FileBrowser.id, - this.dataset.img + this.dataset.img, ]); // close model $('#modal').modal('hide'); + // update autosize for this textarea + autosize.update($(".text-autosize")); // if (id!=="") { // commentExpand(FileBrowser.id); // //$("#comment-edit-text-558").empty(); diff --git a/view/theme/frio/js/textedit.js b/view/theme/frio/js/textedit.js index 39957dbf06..a3ffdc4a34 100644 --- a/view/theme/frio/js/textedit.js +++ b/view/theme/frio/js/textedit.js @@ -93,6 +93,8 @@ function commentOpenUI(obj, id) { $("#comment-edit-text-" + id).attr('tabindex','9'); $("#comment-edit-submit-" + id).attr('tabindex','10'); $("#comment-edit-submit-wrapper-" + id).show(); + // initiale autosize for this comment + autosize($("#comment-edit-text-" + id + ".text-autosize")); } }; @@ -109,6 +111,8 @@ function commentCloseUI(obj, id) { $("#comment-edit-text-" + id).removeAttr('tabindex'); $("#comment-edit-submit-" + id).removeAttr('tabindex'); $("#comment-edit-submit-wrapper-" + id).hide(); + // destroy the automatic textarea resizing + autosize.destroy($("#comment-edit-text-" + id + ".text-autosize")); } }; @@ -120,6 +124,8 @@ function jotTextOpenUI(obj) { if(obj.value == aStr.share) { obj.value = ''; $(".modal-body #profile-jot-text").addClass("profile-jot-text-full").removeClass("profile-jot-text-empty"); + // initiale autosize for the jot + autosize($(".modal-body #profile-jot-text")); } } @@ -129,6 +135,8 @@ function jotTextCloseUI(obj) { if(obj.value === '') { obj.value = aStr.share; $(".modal-body #profile-jot-text").removeClass("profile-jot-text-full").addClass("profile-jot-text-empty"); + // destroy the automatic textarea resizing + autosize.destroy($(".modal-body #profile-jot-text")); } } diff --git a/view/theme/frio/php/default.php b/view/theme/frio/php/default.php index db3a92a626..bfc11a3580 100644 --- a/view/theme/frio/php/default.php +++ b/view/theme/frio/php/default.php @@ -17,7 +17,7 @@ <?php if(x($page,'title')) echo $page['title'] ?> - + get_baseurl(); ?> diff --git a/view/theme/frio/php/standard.php b/view/theme/frio/php/standard.php index 5535b9ed71..4a92a6aecf 100644 --- a/view/theme/frio/php/standard.php +++ b/view/theme/frio/php/standard.php @@ -11,7 +11,7 @@ <?php if(x($page,'title')) echo $page['title'] ?> - + get_baseurl(); ?> diff --git a/view/theme/frio/templates/comment_item.tpl b/view/theme/frio/templates/comment_item.tpl index 116a7b7d4d..405a859642 100644 --- a/view/theme/frio/templates/comment_item.tpl +++ b/view/theme/frio/templates/comment_item.tpl @@ -18,7 +18,7 @@
-->
- +
{{if $qcomment}} +